mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-17 20:50:34 +01:00
Compare commits
15 Commits
Fix_compil
...
QetGraphic
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5e2da1d937 | ||
|
|
cdf610b669 | ||
|
|
008e16eb14 | ||
|
|
b206f749e8 | ||
|
|
f80052a424 | ||
|
|
871b0d9ee9 | ||
|
|
4d27728773 | ||
|
|
43182871d6 | ||
|
|
60e61a9f20 | ||
|
|
035709b70f | ||
|
|
b7d3db1ce6 | ||
|
|
46350c3860 | ||
|
|
8819146a01 | ||
|
|
66abfbe180 | ||
|
|
fb7cc6fd3e |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1 @@
|
||||
*.snap
|
||||
.flatpak-builder
|
||||
|
||||
@@ -1,27 +0,0 @@
|
||||
# How to contribute
|
||||
|
||||
I'm really glad you're reading this, because we need volunteer developers to help this project come to fruition.
|
||||
|
||||
|
||||
Here are some important resources:
|
||||
|
||||
* [wiki](https://qelectrotech.org/wiki_new/doc/qt_creator#on_ajoute_le_style_de_code_qet)Qet code style
|
||||
|
||||
## Testing
|
||||
|
||||
## Submitting changes
|
||||
|
||||
Always write a clear log message for your commits. One-line messages are fine for small changes, but bigger changes should look like this:
|
||||
|
||||
$ git commit -m "A brief summary of the commit
|
||||
>
|
||||
> A paragraph describing what changed and its impact."
|
||||
|
||||
## Coding conventions
|
||||
|
||||
Start reading our code and you'll get the hang of it. We optimize for readability:
|
||||
|
||||
* We indent using tab, see https://qelectrotech.org/wiki_new/doc/qt_creator#on_ajoute_le_style_de_code_qet
|
||||
|
||||
Thanks,
|
||||
QElectroTech
|
||||
14
Doxyfile
14
Doxyfile
@@ -31,7 +31,7 @@ PROJECT_NAME = QElectroTech
|
||||
# This could be handy for archiving the generated documentation or
|
||||
# if some version control system is used.
|
||||
|
||||
PROJECT_NUMBER = 0.80
|
||||
PROJECT_NUMBER = 0.70
|
||||
|
||||
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
||||
# base path where the generated documentation will be put.
|
||||
@@ -47,7 +47,7 @@ OUTPUT_DIRECTORY = doc
|
||||
# source files, where putting all generated files in the same directory would
|
||||
# otherwise cause performance problems for the file system.
|
||||
|
||||
CREATE_SUBDIRS = YES
|
||||
CREATE_SUBDIRS = NO
|
||||
|
||||
# The OUTPUT_LANGUAGE tag is used to specify the language in which all
|
||||
# documentation generated by doxygen is written. Doxygen will use this
|
||||
@@ -124,7 +124,7 @@ FULL_PATH_NAMES = NO
|
||||
# If left blank the directory from which doxygen is run is used as the
|
||||
# path to strip.
|
||||
|
||||
STRIP_FROM_PATH =
|
||||
STRIP_FROM_PATH = /home/laurent/Qet-svn/git/qet/
|
||||
|
||||
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
|
||||
# the path mentioned in the documentation of a class, which tells
|
||||
@@ -890,19 +890,19 @@ TOC_EXPAND = NO
|
||||
# Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated
|
||||
# HTML documentation.
|
||||
|
||||
GENERATE_QHP = YES
|
||||
GENERATE_QHP = NO
|
||||
|
||||
# If the QHG_LOCATION tag is specified, the QCH_FILE tag can
|
||||
# be used to specify the file name of the resulting .qch file.
|
||||
# The path specified is relative to the HTML output folder.
|
||||
|
||||
QCH_FILE = "QElectroTech.qch"
|
||||
QCH_FILE =
|
||||
|
||||
# The QHP_NAMESPACE tag specifies the namespace to use when generating
|
||||
# Qt Help Project output. For more information please see
|
||||
# http://doc.trolltech.com/qthelpproject.html#namespace
|
||||
|
||||
QHP_NAMESPACE = "my_namespace"
|
||||
QHP_NAMESPACE =
|
||||
|
||||
# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating
|
||||
# Qt Help Project output. For more information please see
|
||||
@@ -932,7 +932,7 @@ QHP_SECT_FILTER_ATTRS =
|
||||
# If non-empty doxygen will try to run qhelpgenerator on the generated
|
||||
# .qhp file.
|
||||
|
||||
QHG_LOCATION = "/usr/lib/x86_64-linux-gnu/qt5/bin/qhelpgenerator"
|
||||
QHG_LOCATION =
|
||||
|
||||
# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
|
||||
# top of each HTML page. The value NO (the default) enables the index and
|
||||
|
||||
@@ -25,10 +25,7 @@
|
||||
#include <QtCore/QDateTime>
|
||||
#include <QtCore/QByteArray>
|
||||
#include <QtCore/QSharedMemory>
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 10, 0) // ### Qt 6: remove
|
||||
#else
|
||||
#include <QRandomGenerator>
|
||||
#endif
|
||||
|
||||
#include "singleapplication.h"
|
||||
#include "singleapplication_p.h"
|
||||
|
||||
@@ -85,7 +82,7 @@ SingleApplication::SingleApplication( int &argc, char *argv[], bool allowSeconda
|
||||
}
|
||||
|
||||
InstancesInfo* inst = static_cast<InstancesInfo*>( d->memory->data() );
|
||||
QElapsedTimer time;
|
||||
QTime time;
|
||||
time.start();
|
||||
|
||||
// Make sure the shared memory block is initialised and in consistent state
|
||||
@@ -102,13 +99,8 @@ SingleApplication::SingleApplication( int &argc, char *argv[], bool allowSeconda
|
||||
d->memory->unlock();
|
||||
|
||||
// Random sleep here limits the probability of a collision between two racing apps
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 10, 0) // ### Qt 6: remove
|
||||
qsrand( QDateTime::currentMSecsSinceEpoch() % std::numeric_limits<uint>::max() );
|
||||
QThread::sleep( 8 + static_cast <unsigned long>( static_cast <float>( qrand() ) / RAND_MAX * 10 ) );
|
||||
#else
|
||||
quint32 value = QRandomGenerator::global()->generate();
|
||||
QThread::sleep( 8 + static_cast <unsigned long>( static_cast <float>( value ) / RAND_MAX * 10 ) );
|
||||
#endif
|
||||
}
|
||||
|
||||
if( inst->primary == false) {
|
||||
|
||||
@@ -25,7 +25,6 @@
|
||||
|
||||
#include <QtCore/QtGlobal>
|
||||
#include <QtNetwork/QLocalSocket>
|
||||
#include <QElapsedTimer>
|
||||
|
||||
#ifndef QAPPLICATION_CLASS
|
||||
#define QAPPLICATION_CLASS QCoreApplication
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
{
|
||||
"id": "org.qelectrotech.QElectroTech",
|
||||
"runtime": "org.kde.Platform",
|
||||
"runtime-version": "5.14",
|
||||
"sdk": "org.kde.Sdk",
|
||||
"command": "qelectrotech",
|
||||
"rename-desktop-file": "qelectrotech.desktop",
|
||||
"rename-appdata-file": "qelectrotech.appdata.xml",
|
||||
"rename-icon": "qelectrotech",
|
||||
"copy-icon": true,
|
||||
"finish-args": [
|
||||
"--socket=wayland",
|
||||
"--socket=x11",
|
||||
"--device=dri",
|
||||
"--share=ipc",
|
||||
"--filesystem=host"
|
||||
],
|
||||
"modules": [
|
||||
{
|
||||
"name": "qelectrotech",
|
||||
"buildsystem": "qmake",
|
||||
"post-install": [
|
||||
"mv /app/share/mime/packages/qelectrotech.xml /app/share/mime/packages/org.qelectrotech.QElectroTech.xml"
|
||||
],
|
||||
"sources": [
|
||||
{
|
||||
"type": "dir",
|
||||
"path": "../.."
|
||||
},
|
||||
{
|
||||
"type": "patch",
|
||||
"path": "patches/0001-build-Fix-the-installation-paths.patch"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,44 +0,0 @@
|
||||
From 579ee22f1d2bef560ec90d324a0e476b81faf495 Mon Sep 17 00:00:00 2001
|
||||
From: Mathieu Bridon <mathieu@hashbang.fr>
|
||||
Date: Tue, 7 Jan 2020 14:39:08 +0100
|
||||
Subject: [PATCH] build: Fix the installation paths
|
||||
|
||||
---
|
||||
qelectrotech.pro | 14 +++++++-------
|
||||
1 file changed, 7 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/qelectrotech.pro b/qelectrotech.pro
|
||||
index 07e51fb..2a86b91 100644
|
||||
--- a/qelectrotech.pro
|
||||
+++ b/qelectrotech.pro
|
||||
@@ -5,20 +5,20 @@
|
||||
# Chemins utilises pour la compilation et l'installation de QET
|
||||
unix {
|
||||
# Chemins UNIX
|
||||
- COMPIL_PREFIX = '/usr/local/'
|
||||
- INSTALL_PREFIX = '/usr/local/'
|
||||
+ COMPIL_PREFIX = '/app/'
|
||||
+ INSTALL_PREFIX = '/app/'
|
||||
QET_BINARY_PATH = 'bin/'
|
||||
QET_COMMON_COLLECTION_PATH = 'share/qelectrotech/elements/'
|
||||
QET_COMMON_TBT_PATH = 'share/qelectrotech/titleblocks/'
|
||||
QET_LANG_PATH = 'share/qelectrotech/lang/'
|
||||
QET_EXAMPLES_PATH = 'share/qelectrotech/examples/'
|
||||
- QET_LICENSE_PATH = 'doc/qelectrotech/'
|
||||
- QET_MIME_XML_PATH = '../share/mime/application/'
|
||||
- QET_MIME_DESKTOP_PATH = '../share/mimelnk/application/'
|
||||
- QET_MIME_PACKAGE_PATH = '../share/mime/packages/'
|
||||
+ QET_LICENSE_PATH = 'share/doc/qelectrotech/'
|
||||
+ QET_MIME_XML_PATH = 'share/mime/application/'
|
||||
+ QET_MIME_DESKTOP_PATH = 'share/mimelnk/application/'
|
||||
+ QET_MIME_PACKAGE_PATH = 'share/mime/packages/'
|
||||
QET_DESKTOP_PATH = 'share/applications/'
|
||||
QET_ICONS_PATH = 'share/icons/hicolor/'
|
||||
- QET_MAN_PATH = 'man/'
|
||||
+ QET_MAN_PATH = 'share/man/'
|
||||
QET_APPDATA_PATH = 'share/appdata'
|
||||
}
|
||||
win32 {
|
||||
--
|
||||
2.24.1
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# a KDE session forces the KDE Plasma platformtheme which is incompatible with QET
|
||||
# unset the ENV vars in that case to prevent loading of the theme
|
||||
if [ ! -z "$KDE_FULL_SESSION" ]; then
|
||||
unset KDE_FULL_SESSION
|
||||
fi
|
||||
|
||||
if echo "$XDG_CURRENT_DESKTOP" | grep -q KDE; then
|
||||
unset XDG_CURRENT_DESKTOP
|
||||
fi
|
||||
|
||||
# migrate .qet directory from SNAP_USER_DATA to SNAP_USER_COMMON
|
||||
from="$SNAP_USER_DATA/.qet"
|
||||
to="$SNAP_USER_COMMON/.qet"
|
||||
if [ ! -d "$to" ] && [ -d "$from" ]; then
|
||||
echo "Migrating user data from $from to $to"
|
||||
mkdir "$to"
|
||||
cp -av "$from/." "$to"
|
||||
fi
|
||||
|
||||
# link DXFtoQET so that QET finds it
|
||||
mkdir -p "$HOME/.qet"
|
||||
ln -snf "$SNAP/bin/DXFtoQET" "$HOME/.qet/DXFtoQET"
|
||||
|
||||
# start desktop portal. Open & save dialogs might fail if it is not running
|
||||
dbus-send --print-reply \
|
||||
--dest=org.freedesktop.DBus \
|
||||
/org/freedesktop/DBus \
|
||||
org.freedesktop.DBus.StartServiceByName \
|
||||
string:org.freedesktop.portal.Desktop \
|
||||
uint32:0
|
||||
|
||||
exec "${@}"
|
||||
@@ -1,122 +0,0 @@
|
||||
name: qelectrotech
|
||||
title: QElectroTech
|
||||
base: core18
|
||||
adopt-info: qelectrotech
|
||||
license: GPL-2.0
|
||||
summary: Electrical diagram editor
|
||||
description: |
|
||||
QElectroTech, or QET in short, is a libre and open source desktop application
|
||||
to create diagrams and schematics.
|
||||
|
||||
grade: stable
|
||||
confinement: strict
|
||||
|
||||
architectures:
|
||||
- build-on: amd64
|
||||
run-on: amd64
|
||||
|
||||
layout:
|
||||
/usr/local/share/qelectrotech:
|
||||
symlink: $SNAP/usr/local/share/qelectrotech
|
||||
/usr/share/libdrm/amdgpu.ids:
|
||||
symlink: $SNAP/kf5/usr/share/libdrm/amdgpu.ids
|
||||
|
||||
apps:
|
||||
qelectrotech:
|
||||
command: usr/local/bin/qelectrotech
|
||||
command-chain:
|
||||
- bin/qelectrotech-launch
|
||||
desktop: usr/local/share/applications/qelectrotech.desktop
|
||||
extensions: [kde-neon]
|
||||
plugs: &plugs [opengl, unity7, home, removable-media, gsettings, network, cups-control]
|
||||
environment: &env
|
||||
__EGL_VENDOR_LIBRARY_DIRS: $SNAP/kf5/usr/share/glvnd/egl_vendor.d:$SNAP/usr/share/glvnd/egl_vendor.d
|
||||
TCL_LIBRARY: $SNAP/usr/share/tcltk/tcl8.6
|
||||
QT_QPA_PLATFORMTHEME: gtk3
|
||||
QT_AUTO_SCREEN_SCALE_FACTOR: 1
|
||||
HOME: $SNAP_USER_COMMON
|
||||
PYTHONPATH: $SNAP:$SNAP/lib/python3.6/site-packages:$SNAP/usr/lib/python3.6:$SNAP/usr/lib/python3.6/lib-dynload
|
||||
|
||||
qet-tb-generator:
|
||||
command: bin/qelectrotech-launch $SNAP/bin/qet_tb_generator
|
||||
extensions: [kde-neon]
|
||||
plugs: *plugs
|
||||
environment: *env
|
||||
|
||||
dxf-to-qet:
|
||||
command: bin/DXFtoQET
|
||||
extensions: [kde-neon]
|
||||
plugs: *plugs
|
||||
environment: *env
|
||||
|
||||
parts:
|
||||
launchers:
|
||||
plugin: dump
|
||||
source: build-aux/snap/local/launchers
|
||||
organize:
|
||||
'*': bin/
|
||||
|
||||
qet-tb-generator:
|
||||
plugin: python
|
||||
python-version: python3
|
||||
source: https://github.com/qelectrotech/qet_tb_generator.git
|
||||
stage-packages:
|
||||
- python3-lxml
|
||||
- python3-tk
|
||||
- libtk8.6
|
||||
|
||||
kde-sdk-setup:
|
||||
plugin: nil
|
||||
build-snaps:
|
||||
- kde-frameworks-5-core18-sdk
|
||||
build-packages:
|
||||
- g++
|
||||
- mesa-common-dev
|
||||
- libglvnd-dev
|
||||
- rsync
|
||||
override-build: |
|
||||
rsync -a --ignore-existing /snap/kde-frameworks-5-core18-sdk/current/ /
|
||||
|
||||
dxf-to-qet:
|
||||
after: [kde-sdk-setup]
|
||||
plugin: nil
|
||||
source: https://github.com/qelectrotech/DXFtoQET-2020.git
|
||||
override-build: |
|
||||
qmake "$SNAPCRAFT_PART_SRC/DXFtoQET.pro"
|
||||
make -j$(nproc)
|
||||
mkdir -p "$SNAPCRAFT_PART_INSTALL/bin"
|
||||
cp DXFtoQET "$SNAPCRAFT_PART_INSTALL/bin/"
|
||||
|
||||
qelectrotech:
|
||||
after: [kde-sdk-setup]
|
||||
plugin: nil
|
||||
source: .
|
||||
build-packages:
|
||||
- git
|
||||
override-pull: |
|
||||
snapcraftctl pull
|
||||
snap_version=$(git describe --dirty)
|
||||
modified_displayed_version=$snap_version".snap"
|
||||
sed -i -E "s|const QString displayedVersion =.*|const QString displayedVersion =\"$modified_displayed_version\";|" sources/qet.h
|
||||
snapcraftctl set-version "$snap_version"
|
||||
override-build: |
|
||||
qmake "$SNAPCRAFT_PART_SRC/qelectrotech.pro"
|
||||
make -j$(nproc)
|
||||
make install INSTALL_ROOT="$SNAPCRAFT_PART_INSTALL"
|
||||
override-stage: |
|
||||
snapcraftctl stage
|
||||
# patch desktop file with correct icon path
|
||||
SED_CMD="sed -i -E s|^Icon=(.*)|Icon=\${SNAP}/usr/local/share/icons/hicolor/128x128/apps/\1.png|g"
|
||||
$SED_CMD usr/local/share/applications/qelectrotech.desktop
|
||||
|
||||
cleanup:
|
||||
after: [qelectrotech, dxf-to-qet, qet-tb-generator]
|
||||
plugin: nil
|
||||
build-snaps: [core18, kde-frameworks-5-core18]
|
||||
override-prime: |
|
||||
# Remove all files from snap that are already included in the base snap or in
|
||||
# any connected content snaps
|
||||
set -eux
|
||||
for snap in "core18" "kde-frameworks-5-core18"; do # List all content-snaps and base snaps you're using here
|
||||
cd "/snap/$snap/current" && find . -type f,l -exec rm -f "$SNAPCRAFT_PRIME/{}" \;
|
||||
done
|
||||
@@ -1,37 +0,0 @@
|
||||
<definition type="element" orientation="dyyy" height="80" hotspot_y="40" version="0.70" width="50" hotspot_x="23" link_type="simple">
|
||||
<uuid uuid="{65b9e889-c2eb-4d85-aa9e-c1dff55678f5}"/>
|
||||
<names>
|
||||
<name lang="en">Three-pole source + PEN</name>
|
||||
<name lang="el">Τριφασικό + PEN</name>
|
||||
<name lang="es">Fuente tripolar + PEN</name>
|
||||
<name lang="nl">driefasen + aardenul</name>
|
||||
<name lang="pl">Linia trójfazowa (PEN)</name>
|
||||
<name lang="it">Sorgente tripolare + PEN</name>
|
||||
<name lang="de">Drehstrom + PEN</name>
|
||||
<name lang="ru">Трёхполюсный + PEN</name>
|
||||
<name lang="fr">Source tripolaire + PEN</name>
|
||||
<name lang="ar">مصدر ثلاثي القطبيّة + PEN</name>
|
||||
<name lang="cs">3 fáze + PEN pravý</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<dynamic_text z="1" Valignment="AlignTop" x="-7" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{7c68cf51-b979-4e89-97b2-a93b5ad61f95}" y="-60.45" Halignment="AlignLeft" frame="false" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="33" text="PEN" color="#000000"/>
|
||||
<text x="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="13" text="L3" color="#000000"/>
|
||||
<text x="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-7" text="L2" color="#000000"/>
|
||||
<text x="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-27" text="L1" color="#000000"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="-30" end1="none" y1="-30" length1="1.5" length2="1.5" antialias="false" x2="-5"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="-10" end1="none" y1="-10" length1="1.5" length2="1.5" antialias="false" x2="-5"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="10" end1="none" y1="10" length1="1.5" length2="1.5" antialias="false" x2="-5"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-14" y2="30" end1="none" y1="30" length1="1.5" length2="1.5" antialias="false" x2="-5"/>
|
||||
<terminal orientation="w" x="-15" y="-30"/>
|
||||
<terminal orientation="w" x="-15" y="-10"/>
|
||||
<terminal orientation="w" x="-15" y="30"/>
|
||||
<terminal orientation="w" x="-15" y="10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,40 +0,0 @@
|
||||
<definition type="element" orientation="dyyy" height="100" hotspot_y="40" version="0.70" width="40" hotspot_x="20" link_type="simple">
|
||||
<uuid uuid="{b4b70d3d-8784-4323-b17b-d8ff3677cdc1}"/>
|
||||
<names>
|
||||
<name lang="en">Three-pole source + PEN</name>
|
||||
<name lang="el">Τριφασικό + PEN</name>
|
||||
<name lang="es">Fuente tripolar + PEN</name>
|
||||
<name lang="nl">driefasen + aardenul</name>
|
||||
<name lang="pl">Linia trójfazowa (PEN)</name>
|
||||
<name lang="it">Sorgente tripolare + PEN</name>
|
||||
<name lang="de">Drehstrom + PEN</name>
|
||||
<name lang="ru">Трёхполюсный + PEN</name>
|
||||
<name lang="fr">Source tripolaire + PEN</name>
|
||||
<name lang="ar">مصدر ثلاثي القطبيّة + PEN</name>
|
||||
<name lang="cs">3 fáze + N+PE pravý</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<dynamic_text z="1" Valignment="AlignTop" x="-7" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{1955f25e-b33b-4106-8b36-46862006122c}" y="-60.45" Halignment="AlignLeft" frame="false" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="53" text="PE" color="#000000"/>
|
||||
<text x="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="33" text="N" color="#000000"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="50" end1="none" y1="50" length1="1.5" length2="1.5" antialias="false" x2="-5"/>
|
||||
<text x="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="13" text="L3" color="#000000"/>
|
||||
<text x="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-7" text="L2" color="#000000"/>
|
||||
<text x="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-27" text="L1" color="#000000"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="-30" end1="none" y1="-30" length1="1.5" length2="1.5" antialias="false" x2="-5"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="-10" end1="none" y1="-10" length1="1.5" length2="1.5" antialias="false" x2="-5"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="10" end1="none" y1="10" length1="1.5" length2="1.5" antialias="false" x2="-5"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="30" end1="none" y1="30" length1="1.5" length2="1.5" antialias="false" x2="-5"/>
|
||||
<terminal orientation="w" x="-15" y="50"/>
|
||||
<terminal orientation="w" x="-15" y="-30"/>
|
||||
<terminal orientation="w" x="-15" y="-10"/>
|
||||
<terminal orientation="w" x="-15" y="30"/>
|
||||
<terminal orientation="w" x="-15" y="10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -17,8 +17,8 @@
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
<definition width="20" height="20" hotspot_y="9" type="element" orientation="dyyy" link_type="simple" hotspot_x="9" version="0.60">
|
||||
<uuid uuid="{079913f8-18b5-4524-84bd-aadf75dfefbf}"/>
|
||||
<names>
|
||||
<name lang="cs">Bod</name>
|
||||
</names>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<circle diameter="4" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false" y="-2" x="-2"/>
|
||||
<input rotate="true" text=" " tagg="label" size="9" y="-3" x="-11"/>
|
||||
<terminal orientation="e" y="0" x="2"/>
|
||||
<terminal orientation="w" y="0" x="-2"/>
|
||||
<terminal orientation="s" y="2" x="0"/>
|
||||
<terminal orientation="n" y="-2" x="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,19 +0,0 @@
|
||||
<definition version="0.70" height="30" type="element" width="30" hotspot_x="14" link_type="simple" hotspot_y="12" orientation="dyyy">
|
||||
<uuid uuid="{3015326e-2599-495e-8ef0-c12ff5313dd0}"/>
|
||||
<names>
|
||||
<name lang="cs">Všestranný spoj</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<polygon x6="6" x2="-5" x8="6" y5="5" y2="0" closed="false" x10="0" x3="0" x7="10" y7="0" y4="10" y11="-5" antialias="false" x9="0" x11="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x5="0" y9="5" y10="-5" y1="0" y6="0" x4="0" x1="-10" y8="0" y3="5"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-13" text_from="ElementInfo" y="-12" z="2" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{14c0b70c-c028-49ef-bf72-3c3c9cd64669}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="-5" orientation="n"/>
|
||||
<terminal x="0" y="10" orientation="s"/>
|
||||
<terminal x="-10" y="0" orientation="w"/>
|
||||
<terminal x="10" y="0" orientation="e"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,17 +0,0 @@
|
||||
<definition type="element" hotspot_x="35" orientation="dyyy" version="0.80" width="70" height="80" hotspot_y="46" link_type="simple">
|
||||
<uuid uuid="{e5a46987-e259-4ca4-9e40-eedc3652f738}"/>
|
||||
<names>
|
||||
<name lang="cs">Pokus</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect width="60" x="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" height="65" rx="0" y="-35" antialias="false" ry="0"/>
|
||||
<dynamic_text z="3" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" uuid="{cec75afa-b854-41b8-aed8-6edba82c76ff}" text_from="ElementInfo" x="-45" text_width="-1" y="-20" frame="false" rotation="0" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal orientation="n" x="20" y="-40"/>
|
||||
<terminal orientation="n" x="-20" y="-40"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,33 +0,0 @@
|
||||
<definition width="70" hotspot_x="35" hotspot_y="5" orientation="dyyy" version="0.80" type="element" height="10" link_type="simple">
|
||||
<uuid uuid="{3cfdc90d-f114-4ecd-9ab2-37786c279287}"/>
|
||||
<names>
|
||||
<name lang="de">Kabel 3G</name>
|
||||
<name lang="fr">Cable 3G</name>
|
||||
<name lang="cs">Kabel 3G</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<line x2="1.95" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-2.05" length2="1.5" antialias="true" y2="1.95" end2="none" x1="-2.05" length1="1.5"/>
|
||||
<line x2="22" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-2" length2="1.5" antialias="true" y2="2" end2="none" x1="18" length1="1.5"/>
|
||||
<dynamic_text text_width="-1" font="Sans Serif,7,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" z="3" Valignment="AlignTop" frame="false" x="-50" uuid="{fe752adf-2e2b-4005-a272-42dd6976c493}" y="0.5" text_from="UserText" rotation="0">
|
||||
<text>3G</text>
|
||||
</dynamic_text>
|
||||
<line x2="30" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" length2="1.5" antialias="false" y2="0" end2="none" x1="-29.9373" length1="1.5"/>
|
||||
<line x2="-18" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-2" length2="1.5" antialias="true" y2="2" end2="none" x1="-22" length1="1.5"/>
|
||||
<dynamic_text text_width="-1" font="Sans Serif,7,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" z="6" Valignment="AlignTop" frame="false" x="-51" uuid="{65bfd07e-7af5-4193-a5ba-b3dc967da121}" y="-18.5" text_from="ElementInfo" rotation="0">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" z="7" Valignment="AlignTop" frame="false" x="-22" uuid="{df01c7dd-b2e7-4b24-9057-b8bc3478ff67}" y="-11" text_from="UserText" rotation="0">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" z="8" Valignment="AlignTop" frame="false" x="-2" uuid="{ce5a0030-5247-47ab-a975-63256db0d2bd}" y="-11" text_from="UserText" rotation="0">
|
||||
<text>2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" z="9" Valignment="AlignTop" frame="false" x="18" uuid="{e0a00f86-dd76-48fe-be8b-8ff6f510e651}" y="-11" text_from="UserText" rotation="0">
|
||||
<text>PE</text>
|
||||
</dynamic_text>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,27 +0,0 @@
|
||||
<definition type="element" height="10" link_type="simple" version="0.60" hotspot_x="36" hotspot_y="5" orientation="dyyy" width="90">
|
||||
<uuid uuid="{e02f4582-b5dd-4f81-ba71-e3d5521b4152}"/>
|
||||
<names>
|
||||
<name lang="ru">Кабель 3 жилы + PE</name>
|
||||
<name lang="pl">Oznaczenie przewodu czterożyłowego</name>
|
||||
<name lang="cs">Kabel 4G</name>
|
||||
<name lang="de">Kabel 4G</name>
|
||||
<name lang="es">Cable 3 fases+tierra</name>
|
||||
<name lang="it">Cavo 3 fasi + terra</name>
|
||||
<name lang="fr">Cable 3 phases+terre</name>
|
||||
</names>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<line x1="-2.05" y1="-2.05" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="1.95" y2="1.95" antialias="true"/>
|
||||
<line x1="37.95" y1="-2.05" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="41.95" y2="1.95" antialias="true"/>
|
||||
<line x1="18" y1="-2" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="22" y2="2" antialias="true"/>
|
||||
<input size="7" tagg="none" rotate="true" x="-50" y="10" text="4G"/>
|
||||
<line x1="-29.9373" y1="0" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="47.932" y2="0" antialias="false"/>
|
||||
<line x1="-22" y1="-2" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="-18" y2="2" antialias="true"/>
|
||||
<input size="7" tagg="label" rotate="true" x="-51" y="-9" text="_"/>
|
||||
<input size="4" tagg="none" rotate="true" x="-22" y="-4" text="1"/>
|
||||
<input size="4" tagg="none" rotate="true" x="-2" y="-4" text="2"/>
|
||||
<input size="4" tagg="none" rotate="true" x="18" y="-4" text="3"/>
|
||||
<input size="4" tagg="none" rotate="true" x="38" y="-4" text="PE"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,33 +0,0 @@
|
||||
<definition type="element" height="10" link_type="simple" version="0.60" hotspot_x="73" hotspot_y="5" orientation="dyyy" width="150">
|
||||
<uuid uuid="{d1007c67-032b-4925-8560-aac9e547d6ae}"/>
|
||||
<names>
|
||||
<name lang="ru">Кабель 6 жилы + PE</name>
|
||||
<name lang="pl">Oznaczenie przewodu czterożyłowego</name>
|
||||
<name lang="cs">Kabel 7G</name>
|
||||
<name lang="de">Kabel 7G</name>
|
||||
<name lang="es">Cable 6 fases+tierra</name>
|
||||
<name lang="it">Cavo fasi + terra</name>
|
||||
<name lang="fr">Cable 6 phases+terre</name>
|
||||
</names>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<input size="4" tagg="none" rotate="true" x="38" y="-4" text="6"/>
|
||||
<input size="4" tagg="none" rotate="true" x="18" y="-4" text="5"/>
|
||||
<input size="4" tagg="none" rotate="true" x="-2" y="-4" text="4"/>
|
||||
<line x1="57.95" y1="-2.05" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="61.95" y2="1.95" antialias="true"/>
|
||||
<line x1="-42.05" y1="-2.05" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="-38.05" y2="1.95" antialias="true"/>
|
||||
<line x1="37.95" y1="-2.05" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="41.95" y2="1.95" antialias="true"/>
|
||||
<line x1="17.95" y1="-2.05" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="21.95" y2="1.95" antialias="true"/>
|
||||
<line x1="-2.05" y1="-2.05" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="1.95" y2="1.95" antialias="true"/>
|
||||
<line x1="-22" y1="-2" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="-18" y2="2" antialias="true"/>
|
||||
<input size="7" tagg="none" rotate="true" x="-89" y="10" text="7G"/>
|
||||
<line x1="-67.9373" y1="0" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="71" y2="0" antialias="false"/>
|
||||
<line x1="-62" y1="-2" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" length2="1.5" x2="-58" y2="2" antialias="true"/>
|
||||
<input size="7" tagg="label" rotate="true" x="-90" y="-9" text="_"/>
|
||||
<input size="4" tagg="none" rotate="true" x="-62" y="-4" text="1"/>
|
||||
<input size="4" tagg="none" rotate="true" x="-42" y="-4" text="2"/>
|
||||
<input size="4" tagg="none" rotate="true" x="-22" y="-4" text="3"/>
|
||||
<input size="4" tagg="none" rotate="true" x="58" y="-4" text="PE"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,31 +0,0 @@
|
||||
<definition height="30" hotspot_y="13" orientation="dyyy" width="60" hotspot_x="38" type="element" version="0.70" link_type="simple">
|
||||
<uuid uuid="{b227d208-45f2-417b-af50-eedad266c492}"/>
|
||||
<names>
|
||||
<name lang="cs">C091D 3p fem</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="10" x2="7" end1="none" y2="13" x1="10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="-13" end1="none" y2="13" x1="-10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-5" x2="-30" end1="none" y2="10" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="-7" end1="none" y2="13" x1="-10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="13" end1="none" y2="13" x1="10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-5" x2="-10" end1="none" y2="10" x1="-10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-5" x2="10" end1="none" y2="10" x1="10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="5" x2="10" end1="none" y2="5" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="8" x2="10" end1="none" y2="8" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="-33" end1="none" y2="13" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="-27" end1="none" y2="13" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<text x="-28" y="-1" color="#000000" text="1" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-8" y="-1" color="#000000" text="2" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="12" y="-1" color="#000000" text="3" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<dynamic_text x="-60" uuid="{dffe6cad-58c7-478b-9e86-5bce11c771f8}" y="-5" text_from="ElementInfo" rotation="0" text_width="-1" Valignment="AlignTop" Halignment="AlignLeft" z="19" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="-10" y="-5" orientation="n"/>
|
||||
<terminal x="-30" y="-5" orientation="n"/>
|
||||
<terminal x="10" y="-5" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,31 +0,0 @@
|
||||
<definition height="30" hotspot_y="11" orientation="dyyy" width="60" hotspot_x="38" type="element" version="0.70" link_type="simple">
|
||||
<uuid uuid="{4d574353-1963-46a7-80b4-f3bdd9e8e018}"/>
|
||||
<names>
|
||||
<name lang="cs">C091A 3p male</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="-1" x2="10" end1="none" y2="-4" x1="7" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-1" x2="-10" end1="none" y2="-4" x1="-13" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-4" x2="13" end1="none" y2="-1" x1="10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-4" x2="-7" end1="none" y2="-1" x1="-10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="-10" end1="none" y2="-3" x1="-10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="10" end1="none" y2="-3" x1="10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-1" x2="-30" end1="none" y2="-4" x1="-33" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-4" x2="-27" end1="none" y2="-1" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="-30" end1="none" y2="-3" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="1" x2="10" end1="none" y2="1" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="3" x2="10" end1="none" y2="3" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<text x="-28" y="10" color="#000000" text="1" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-8" y="10" color="#000000" text="2" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="12" y="10" color="#000000" text="3" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<dynamic_text x="-64" uuid="{1640ef0e-7d5c-4342-a5c8-90b708c32e4c}" y="-9" text_from="ElementInfo" rotation="0" text_width="-1" Valignment="AlignTop" Halignment="AlignLeft" z="19" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="-10" y="10" orientation="s"/>
|
||||
<terminal x="-30" y="10" orientation="s"/>
|
||||
<terminal x="10" y="10" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,36 +0,0 @@
|
||||
<definition height="30" hotspot_y="11" orientation="dyyy" width="80" hotspot_x="38" type="element" version="0.70" link_type="simple">
|
||||
<uuid uuid="{d5abdd14-98c0-41c8-b2f7-8d46e176f5a2}"/>
|
||||
<names>
|
||||
<name lang="cs">C091A 4p male</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="-1" x2="30" end1="none" y2="-4" x1="27" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-1" x2="10" end1="none" y2="-4" x1="7" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-1" x2="-10" end1="none" y2="-4" x1="-13" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-4" x2="13" end1="none" y2="-1" x1="10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-4" x2="-7" end1="none" y2="-1" x1="-10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-4" x2="33" end1="none" y2="-1" x1="30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="30" end1="none" y2="-3" x1="30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="-10" end1="none" y2="-3" x1="-10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="10" end1="none" y2="-3" x1="10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-1" x2="-30" end1="none" y2="-4" x1="-33" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-4" x2="-27" end1="none" y2="-1" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="-30" end1="none" y2="-3" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="1" x2="30" end1="none" y2="1" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="3" x2="30" end1="none" y2="3" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<text x="-28" y="10" color="#000000" text="1" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-8" y="10" color="#000000" text="2" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="12" y="10" color="#000000" text="3" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="32" y="10" color="#000000" text="4" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<dynamic_text x="-64" uuid="{1640ef0e-7d5c-4342-a5c8-90b708c32e4c}" y="-9" text_from="ElementInfo" rotation="0" text_width="-1" Valignment="AlignTop" Halignment="AlignLeft" z="19" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="10" y="10" orientation="s"/>
|
||||
<terminal x="-30" y="10" orientation="s"/>
|
||||
<terminal x="30" y="10" orientation="s"/>
|
||||
<terminal x="-10" y="10" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,36 +0,0 @@
|
||||
<definition height="30" hotspot_y="13" orientation="dyyy" width="80" hotspot_x="38" type="element" version="0.70" link_type="simple">
|
||||
<uuid uuid="{fef81b16-3fcc-48f3-a3f3-55cedf052d7e}"/>
|
||||
<names>
|
||||
<name lang="cs">C091D 4p fem</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="10" x2="27" end1="none" y2="13" x1="30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="7" end1="none" y2="13" x1="10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="-13" end1="none" y2="13" x1="-10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-5" x2="-30" end1="none" y2="10" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="33" end1="none" y2="13" x1="30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="-7" end1="none" y2="13" x1="-10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="13" end1="none" y2="13" x1="10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-5" x2="-10" end1="none" y2="10" x1="-10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-5" x2="10" end1="none" y2="10" x1="10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="-5" x2="30" end1="none" y2="10" x1="30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="5" x2="30" end1="none" y2="5" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="8" x2="30" end1="none" y2="8" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="-33" end1="none" y2="13" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<line y1="10" x2="-27" end1="none" y2="13" x1="-30" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
|
||||
<text x="-28" y="-1" color="#000000" text="1" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-8" y="-1" color="#000000" text="2" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="12" y="-1" color="#000000" text="3" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="32" y="-1" color="#000000" text="4" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<dynamic_text x="-60" uuid="{dffe6cad-58c7-478b-9e86-5bce11c771f8}" y="-5" text_from="ElementInfo" rotation="0" text_width="-1" Valignment="AlignTop" Halignment="AlignLeft" z="19" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="-10" y="-5" orientation="n"/>
|
||||
<terminal x="10" y="-5" orientation="n"/>
|
||||
<terminal x="30" y="-5" orientation="n"/>
|
||||
<terminal x="-30" y="-5" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,36 +0,0 @@
|
||||
<definition version="0.70" height="30" type="element" width="80" hotspot_x="36" link_type="simple" hotspot_y="12" orientation="dyyy">
|
||||
<uuid uuid="{31f82044-30db-4191-9619-12ba7924322a}"/>
|
||||
<names>
|
||||
<name lang="cs">C16 4p fem</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="27"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="7"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="-13"/>
|
||||
<line y1="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="-30"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="33"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="-7"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="13"/>
|
||||
<line y1="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="-10"/>
|
||||
<line y1="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="10"/>
|
||||
<line y1="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="30"/>
|
||||
<line y1="5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="5" end1="none" x2="30"/>
|
||||
<line y1="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="30"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="-33"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="-27"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-28" color="#000000" text="1" y="-1" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-8" color="#000000" text="2" y="-1" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="12" color="#000000" text="3" y="-1" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="32" color="#000000" text="PE" y="-1" rotation="0"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-60" text_from="ElementInfo" y="-5" z="19" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{dffe6cad-58c7-478b-9e86-5bce11c771f8}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="-10" y="-5" orientation="n"/>
|
||||
<terminal x="10" y="-5" orientation="n"/>
|
||||
<terminal x="30" y="-5" orientation="n"/>
|
||||
<terminal x="-30" y="-5" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,36 +0,0 @@
|
||||
<definition version="0.70" height="30" type="element" width="80" hotspot_x="36" link_type="simple" hotspot_y="10" orientation="dyyy">
|
||||
<uuid uuid="{975dd87a-7ff8-439e-a7d3-f61f02bd5f6a}"/>
|
||||
<names>
|
||||
<name lang="cs">C16 4p male</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="-1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="27" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-4" end1="none" x2="30"/>
|
||||
<line y1="-1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="7" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-4" end1="none" x2="10"/>
|
||||
<line y1="-1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-13" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-4" end1="none" x2="-10"/>
|
||||
<line y1="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-1" end1="none" x2="13"/>
|
||||
<line y1="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-1" end1="none" x2="-7"/>
|
||||
<line y1="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-1" end1="none" x2="33"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-3" end1="none" x2="30"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-3" end1="none" x2="-10"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-3" end1="none" x2="10"/>
|
||||
<line y1="-1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-33" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-4" end1="none" x2="-30"/>
|
||||
<line y1="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-1" end1="none" x2="-27"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-3" end1="none" x2="-30"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="1" end1="none" x2="30"/>
|
||||
<line y1="3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="3" end1="none" x2="30"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-28" color="#000000" text="1" y="10" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-8" color="#000000" text="2" y="10" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="12" color="#000000" text="3" y="10" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="32" color="#000000" text="PE" y="10" rotation="0"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-64" text_from="ElementInfo" y="-9" z="19" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{1640ef0e-7d5c-4342-a5c8-90b708c32e4c}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="10" y="10" orientation="s"/>
|
||||
<terminal x="-30" y="10" orientation="s"/>
|
||||
<terminal x="30" y="10" orientation="s"/>
|
||||
<terminal x="-10" y="10" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,51 +0,0 @@
|
||||
<definition version="0.70" height="30" type="element" width="140" hotspot_x="66" link_type="simple" hotspot_y="14" orientation="dyyy">
|
||||
<uuid uuid="{2ce35704-86b4-4002-a3cb-bed1b0c22249}"/>
|
||||
<names>
|
||||
<name lang="cs">C16 7p fem</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="13" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-3" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="0"/>
|
||||
<line y1="13" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="57" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="60"/>
|
||||
<line y1="13" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="17" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="20"/>
|
||||
<line y1="13" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-23" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="-20"/>
|
||||
<line y1="13" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-43" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="-40"/>
|
||||
<line y1="13" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="37" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="40"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="63"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="23"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="3"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="-60"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="43"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="-37"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="-17"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="-40"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="-20"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="0"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="20"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="40"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="60"/>
|
||||
<line y1="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="60"/>
|
||||
<line y1="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="4" end1="none" x2="-60"/>
|
||||
<line y1="13" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-63" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="-60"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="13" end1="none" x2="-57"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-58" color="#000000" text="1" y="-5" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-38" color="#000000" text="2" y="-5" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-18" color="#000000" text="3" y="-5" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="2" color="#000000" text="4" y="-5" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="22" color="#000000" text="5" y="-5" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="42" color="#000000" text="6" y="-5" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="62" color="#000000" text="PE" y="-5" rotation="0"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-100" text_from="ElementInfo" y="-6" z="31" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{2af59052-6066-4b7a-92bd-8d8f01cfe3cf}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="60" y="-10" orientation="n"/>
|
||||
<terminal x="0" y="-10" orientation="n"/>
|
||||
<terminal x="-40" y="-10" orientation="n"/>
|
||||
<terminal x="-60" y="-10" orientation="n"/>
|
||||
<terminal x="40" y="-10" orientation="n"/>
|
||||
<terminal x="20" y="-10" orientation="n"/>
|
||||
<terminal x="-20" y="-10" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,51 +0,0 @@
|
||||
<definition version="0.70" height="30" type="element" width="140" hotspot_x="66" link_type="simple" hotspot_y="7" orientation="dyyy">
|
||||
<uuid uuid="{4c2b787a-ceed-4e87-a370-5e698f7ba2da}"/>
|
||||
<names>
|
||||
<name lang="cs">C16 7p male</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-3" end1="none" x2="20"/>
|
||||
<line y1="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-3" end1="none" x2="0"/>
|
||||
<line y1="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-3" end1="none" x2="-20"/>
|
||||
<line y1="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-3" end1="none" x2="60"/>
|
||||
<line y1="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-3" end1="none" x2="40"/>
|
||||
<line y1="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-3" end1="none" x2="-40"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="37"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="17"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="57"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-3"/>
|
||||
<line y1="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-3" end1="none" x2="-60"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-43"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-23"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-63"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="23"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="3"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-17"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-37"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="63"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="43"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-57"/>
|
||||
<line y1="2" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="2" end1="none" x2="60"/>
|
||||
<line y1="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="60" length2="1.5" antialias="false" length1="1.5" end2="none" y2="4" end1="none" x2="-60"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-59" color="#000000" text="1" y="14" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-38" color="#000000" text="2" y="14" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-18" color="#000000" text="3" y="14" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="2" color="#000000" text="4" y="14" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="22" color="#000000" text="5" y="14" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="42" color="#000000" text="6" y="14" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="62" color="#000000" text="PE" y="14" rotation="0"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-95" text_from="ElementInfo" y="-9" z="31" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{cbfbb7a8-1d5b-4474-a071-295c178401c2}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="15" orientation="s"/>
|
||||
<terminal x="-40" y="15" orientation="s"/>
|
||||
<terminal x="-20" y="15" orientation="s"/>
|
||||
<terminal x="60" y="15" orientation="s"/>
|
||||
<terminal x="20" y="15" orientation="s"/>
|
||||
<terminal x="-60" y="15" orientation="s"/>
|
||||
<terminal x="40" y="15" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,66 +0,0 @@
|
||||
<definition type="element" orientation="dyyy" height="110" hotspot_y="73" version="0.70" width="40" hotspot_x="18" link_type="simple">
|
||||
<uuid uuid="{f97a8793-ff72-4408-9a5d-432b2ed9ce13}"/>
|
||||
<names>
|
||||
<name lang="cs">Konektor 10 pin pravý</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="13" end1="none" y1="10" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="9" text="8" color="#000000"/>
|
||||
<text x="-4" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="29" text="10" color="#000000"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-21" text="5" color="#000000"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-27" end1="none" y1="-30" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-47" end1="none" y1="-50" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-37" end1="none" y1="-40" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-11" text="6" color="#000000"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-51" text="2" color="#000000"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="3" color="#000000"/>
|
||||
<text x="-1.82692" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-31" text="4" color="#000000"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-1" text="7" color="#000000"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="19" text="9" color="#000000"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-57" end1="none" y1="-60" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-53" end1="none" y1="-50" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-43" end1="none" y1="-40" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="33" end1="none" y1="30" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-7" end1="none" y1="-10" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-33" end1="none" y1="-30" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-50" end1="none" y1="-50" length1="1.5" length2="1.5" antialias="false" x2="15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="3" end1="none" y1="0" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-63" end1="none" y1="-60" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-40" end1="none" y1="-40" length1="1.5" length2="1.5" antialias="false" x2="15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-30" end1="none" y1="-30" length1="1.5" length2="1.5" antialias="false" x2="15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-60" end1="none" y1="-60" length1="1.5" length2="1.5" antialias="false" x2="15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="23" end1="none" y1="20" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-17" end1="none" y1="-20" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="7" end1="none" y1="10" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-3" end1="none" y1="0" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-13" end1="none" y1="-10" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="27" end1="none" y1="30" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="0" end1="none" y1="0" length1="1.5" length2="1.5" antialias="false" x2="15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-10" end1="none" y1="-10" length1="1.5" length2="1.5" antialias="false" x2="15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="30" end1="none" y1="30" length1="1.5" length2="1.5" antialias="false" x2="15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="10" end1="none" y1="10" length1="1.5" length2="1.5" antialias="false" x2="15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="-23" end1="none" y1="-20" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="15" y2="17" end1="none" y1="20" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-20" end1="none" y1="-20" length1="1.5" length2="1.5" antialias="false" x2="15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="20" end1="none" y1="20" length1="1.5" length2="1.5" antialias="false" x2="15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="5" y2="30" end1="none" y1="-60" length1="1.5" length2="1.5" antialias="false" x2="5"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="8" y2="30" end1="none" y1="-60" length1="1.5" length2="1.5" antialias="false" x2="8"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-61" text="1" color="#000000"/>
|
||||
<dynamic_text z="43" Valignment="AlignTop" x="0" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{caa73b80-7618-492a-86de-52ab2469a058}" y="-86" Halignment="AlignLeft" frame="false" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal orientation="w" x="-10" y="-50"/>
|
||||
<terminal orientation="w" x="-10" y="-30"/>
|
||||
<terminal orientation="w" x="-10" y="-20"/>
|
||||
<terminal orientation="w" x="-10" y="-60"/>
|
||||
<terminal orientation="w" x="-10" y="-40"/>
|
||||
<terminal orientation="w" x="-10" y="0"/>
|
||||
<terminal orientation="w" x="-10" y="20"/>
|
||||
<terminal orientation="w" x="-10" y="-10"/>
|
||||
<terminal orientation="w" x="-10" y="30"/>
|
||||
<terminal orientation="w" x="-10" y="10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,66 +0,0 @@
|
||||
<definition type="element" orientation="dyyy" height="110" hotspot_y="73" version="0.70" width="40" hotspot_x="21" link_type="simple">
|
||||
<uuid uuid="{c438e710-e5c3-4a82-ae4d-3d1dfe111c13}"/>
|
||||
<names>
|
||||
<name lang="cs">Konektor 10 pin</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="10" end1="none" y1="7" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="9" text="8" color="#000000"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="29" text="10" color="#000000"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-21" text="5" color="#000000"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-30" end1="none" y1="-33" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-50" end1="none" y1="-53" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-40" end1="none" y1="-43" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-11" text="6" color="#000000"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-51" text="2" color="#000000"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="3" color="#000000"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-31" text="4" color="#000000"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-1" text="7" color="#000000"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="19" text="9" color="#000000"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-60" end1="none" y1="-63" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-50" end1="none" y1="-47" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-40" end1="none" y1="-37" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="30" end1="none" y1="27" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-10" end1="none" y1="-13" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-30" end1="none" y1="-27" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="-50" end1="none" y1="-50" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="0" end1="none" y1="-3" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-60" end1="none" y1="-57" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="-40" end1="none" y1="-40" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="-30" end1="none" y1="-30" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="-60" end1="none" y1="-60" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="20" end1="none" y1="17" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-20" end1="none" y1="-23" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="10" end1="none" y1="13" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="0" end1="none" y1="3" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-10" end1="none" y1="-7" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="30" end1="none" y1="33" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="0" end1="none" y1="0" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="-10" end1="none" y1="-10" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="30" end1="none" y1="30" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="10" end1="none" y1="10" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-20" end1="none" y1="-17" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="20" end1="none" y1="23" length1="1.5" length2="1.5" antialias="false" x2="-15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="-20" end1="none" y1="-20" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" y2="20" end1="none" y1="20" length1="1.5" length2="1.5" antialias="false" x2="10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-5" y2="30" end1="none" y1="-60" length1="1.5" length2="1.5" antialias="false" x2="-5"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-8" y2="30" end1="none" y1="-60" length1="1.5" length2="1.5" antialias="false" x2="-8"/>
|
||||
<text x="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-61" text="1" color="#000000"/>
|
||||
<dynamic_text z="43" Valignment="AlignTop" x="-30" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{4721a341-3fd5-411f-bacd-6a15692a0719}" y="-85" Halignment="AlignLeft" frame="false" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal orientation="e" x="10" y="-60"/>
|
||||
<terminal orientation="e" x="10" y="-50"/>
|
||||
<terminal orientation="e" x="10" y="-40"/>
|
||||
<terminal orientation="e" x="10" y="-30"/>
|
||||
<terminal orientation="e" x="10" y="10"/>
|
||||
<terminal orientation="e" x="10" y="0"/>
|
||||
<terminal orientation="e" x="10" y="-10"/>
|
||||
<terminal orientation="e" x="10" y="-20"/>
|
||||
<terminal orientation="e" x="10" y="30"/>
|
||||
<terminal orientation="e" x="10" y="20"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,26 +0,0 @@
|
||||
<definition version="0.70" height="40" type="element" width="10" hotspot_x="5" link_type="simple" hotspot_y="14" orientation="dyyy">
|
||||
<uuid uuid="{3a906aab-bfdf-43b8-97d1-61dd36477b0a}"/>
|
||||
<names>
|
||||
<name lang="cs">Pin konektoru</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<dynamic_text font="Sans Serif,8,-1,5,50,0,0,0,0,0" frame="false" x="-23" text_from="ElementInfo" y="-11.5" z="1" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{678859fa-88de-44b5-b142-7f1d3692566d}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-1" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="-1"/>
|
||||
<line y1="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="1" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="1"/>
|
||||
<line y1="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="20" end1="none" x2="0"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="0"/>
|
||||
<arc height="6" x="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="-84" y="0" width="6" start="-180" antialias="true"/>
|
||||
<arc height="6" x="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="-84" y="0" width="6" start="83" antialias="true"/>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="-3" text_from="UserText" y="-12" z="8" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{834fd33c-baf9-4d10-9a3a-0e9887fbf191}" Halignment="AlignLeft">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="-10" orientation="n"/>
|
||||
<terminal x="0" y="20" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,50 +0,0 @@
|
||||
<definition version="0.70" height="40" type="element" width="60" hotspot_x="26" link_type="simple" hotspot_y="25" orientation="dyyy">
|
||||
<uuid uuid="{53b03e02-5180-493e-88dd-74291bffa0b6}"/>
|
||||
<names>
|
||||
<name lang="cs">Vidlice 3f 5p</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="11" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="1" end1="none" x2="-20"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-21" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="-21"/>
|
||||
<line y1="11" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-19" length2="1.5" antialias="false" length1="1.5" end2="none" y2="1" end1="none" x2="-19"/>
|
||||
<line y1="11" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="1" end1="none" x2="-10"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-11" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="-11"/>
|
||||
<line y1="11" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-9" length2="1.5" antialias="false" length1="1.5" end2="none" y2="1" end1="none" x2="-9"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-1" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="-1"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="0"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="1" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="1"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="9" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="9"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="10"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="11" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="11"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="19" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="19"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="20"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" length2="1.5" antialias="false" length1="1.5" end2="none" y2="11" end1="none" x2="21"/>
|
||||
<line y1="-1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-1" end1="none" x2="20"/>
|
||||
<line y1="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-3" end1="none" x2="20"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-20" end1="none" x2="-20"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-20" end1="none" x2="-10"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-20" end1="none" x2="0"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-20" end1="none" x2="10"/>
|
||||
<line y1="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-20" end1="none" x2="20"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-19" color="#000000" text="L1" y="-6" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-9" color="#000000" text="L2" y="-6" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="1" color="#000000" text="L3" y="-6" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="11.0338" color="#000000" text="N" y="-6" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="21" color="#000000" text="PE" y="-6" rotation="0"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-44" text_from="ElementInfo" y="-15" z="28" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{a140fb51-d49b-4cd4-ac03-7e50fb952ebc}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-36" text_from="ElementInfo" y="27" z="29" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{fac882df-99ed-4478-9caf-b17da41163c5}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>tension-protocol</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="20" y="-20" orientation="n"/>
|
||||
<terminal x="-20" y="-20" orientation="n"/>
|
||||
<terminal x="10" y="-20" orientation="n"/>
|
||||
<terminal x="0" y="-20" orientation="n"/>
|
||||
<terminal x="-10" y="-20" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,72 +0,0 @@
|
||||
<definition type="element" orientation="dyyy" height="200" hotspot_y="98" version="0.70" width="90" hotspot_x="50" link_type="simple">
|
||||
<uuid uuid="{ed05e9b2-7e41-48c8-911c-b9deb67dcfac}"/>
|
||||
<names>
|
||||
<name lang="cs">Zásuvka s vypínačem Schurter</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="0" end1="none" y1="80" length1="1.5" length2="1.5" antialias="false" x2="-20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="19" y2="-15" end1="none" y1="-5" length1="1.5" length2="1.5" antialias="false" x2="19"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-21" y2="-15" end1="none" y1="-5" length1="1.5" length2="1.5" antialias="false" x2="-21"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="-15" end1="none" y1="-5" length1="1.5" length2="1.5" antialias="false" x2="-20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="20" y2="-15" end1="none" y1="-5" length1="1.5" length2="1.5" antialias="false" x2="20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="0" end1="none" y1="80" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-19" y2="-15" end1="none" y1="-5" length1="1.5" length2="1.5" antialias="false" x2="-19"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="21" y2="-15" end1="none" y1="-5" length1="1.5" length2="1.5" antialias="false" x2="21"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="20" y2="0" end1="none" y1="85" length1="1.5" length2="1.5" antialias="false" x2="20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-1" y2="-15" end1="none" y1="-5" length1="1.5" length2="1.5" antialias="false" x2="-1"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-21" y2="80" end1="none" y1="90" length1="1.5" length2="1.5" antialias="false" x2="-21"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="80" end1="none" y1="90" length1="1.5" length2="1.5" antialias="false" x2="-20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="-15" end1="none" y1="-5" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-19" y2="80" end1="none" y1="90" length1="1.5" length2="1.5" antialias="false" x2="-19"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="1" y2="-15" end1="none" y1="-5" length1="1.5" length2="1.5" antialias="false" x2="1"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-1" y2="80" end1="none" y1="90" length1="1.5" length2="1.5" antialias="false" x2="-1"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="80" end1="none" y1="90" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="1" y2="80" end1="none" y1="90" length1="1.5" length2="1.5" antialias="false" x2="1"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="15" height="10" width="10" start="90" angle="90" y="85" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="15" height="10" width="10" start="0" angle="90" y="85" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="-25" height="10" width="10" start="270" angle="90" y="-10" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="-25" height="10" width="10" start="180" angle="90" y="-10" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="-5" height="10" width="10" start="270" angle="90" y="-10" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="-5" height="10" width="10" start="180" angle="90" y="-10" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="15" height="10" width="10" start="270" angle="90" y="-10" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="15" height="10" width="10" start="180" angle="90" y="-10" antialias="true"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="78" end1="none" y1="78" length1="1.5" length2="1.5" antialias="false" x2="20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="76" end1="none" y1="76" length1="1.5" length2="1.5" antialias="false" x2="20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="2" end1="none" y1="2" length1="1.5" length2="1.5" antialias="false" x2="20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="4" end1="none" y1="4" length1="1.5" length2="1.5" antialias="false" x2="20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="-18" end1="none" y1="-18" length1="1.5" length2="1.5" antialias="false" x2="20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="-20" end1="none" y1="-20" length1="1.5" length2="1.5" antialias="false" x2="20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="-60" end1="none" y1="-15" length1="1.5" length2="1.5" antialias="false" x2="-20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="-60" end1="none" y1="-15" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="20" y2="-90" end1="none" y1="-15" length1="1.5" length2="1.5" antialias="false" x2="20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="-70" end1="none" y1="-60" length1="1.5" length2="1.5" antialias="false" x2="-24"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="-70" end1="none" y1="-60" length1="1.5" length2="1.5" antialias="false" x2="-4"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="-90" end1="none" y1="-70" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="-90" end1="none" y1="-70" length1="1.5" length2="1.5" antialias="false" x2="-20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-40" y2="-60" end1="none" y1="-60" length1="1.5" length2="1.5" antialias="false" x2="-35"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-35" y2="-70" end1="none" y1="-60" length1="1.5" length2="1.5" antialias="false" x2="-35"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-35" y2="-70" end1="none" y1="-70" length1="1.5" length2="1.5" antialias="false" x2="-30"/>
|
||||
<line style="line-style:dashed;line-weight:normal;filling:none;color:black" end2="none" x1="-35" y2="-65" end1="none" y1="-65" length1="1.5" length2="1.5" antialias="false" x2="-4"/>
|
||||
<text x="-18" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-78" text="L" color="#000000"/>
|
||||
<text x="2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-78" text="N" color="#000000"/>
|
||||
<text x="22" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-78" text="PE" color="#000000"/>
|
||||
<dynamic_text z="47" Valignment="AlignTop" x="-75" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{5aacdb73-7ec2-43ee-88b0-86c08eb2e70d}" y="-76" Halignment="AlignLeft" frame="false" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text z="48" Valignment="AlignTop" x="-48" text_from="ElementInfo" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" uuid="{942b1344-5162-4c74-b50a-4e3438266e10}" y="-49.5" Halignment="AlignLeft" frame="false" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>tension-protocol</info_name>
|
||||
</dynamic_text>
|
||||
<rect style="line-style:dashdotted;line-weight:normal;filling:none;color:black" x="-46" height="71" rx="0" width="81" y="-85" ry="0" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-23" height="20" rx="0" width="6" y="-50" ry="0" antialias="false"/>
|
||||
<text x="-18.8229" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="73.7507" text="L" color="#000000"/>
|
||||
<text x="1.17705" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="73.7507" text="N" color="#000000"/>
|
||||
<text x="21" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="74.1048" text="PE" color="#000000"/>
|
||||
<terminal orientation="n" x="-20" y="-90"/>
|
||||
<terminal orientation="n" x="20" y="-90"/>
|
||||
<terminal orientation="n" x="0" y="-90"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -16,13 +16,13 @@
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
|
||||
@@ -1,42 +0,0 @@
|
||||
<definition hotspot_y="19" link_type="simple" hotspot_x="13" orientation="dyyy" version="0.80" width="20" height="40" type="element">
|
||||
<uuid uuid="{db0d94b0-30de-4477-b693-49af4da70f3e}"/>
|
||||
<names>
|
||||
<name lang="fr">Porte fusible</name>
|
||||
<name lang="cs">Pojistkový odpínač</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<dynamic_text text_width="-1" text_from="UserText" y="-22" x="-3" z="1" Valignment="AlignTop" font="Sans Serif,5,-1,5,25,0,0,0,0,0" rotation="0" frame="false" uuid="{d3f026c2-4718-4cf6-b783-49b6080d3ec3}" Halignment="AlignLeft">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="UserText" y="4" x="-2" z="2" Valignment="AlignTop" font="Sans Serif,5,-1,5,25,0,0,0,0,0" rotation="0" frame="false" uuid="{f3c9c54f-bc4f-44b6-a691-e28a08f857d2}" Halignment="AlignLeft">
|
||||
<text>2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="ElementInfo" y="-15" x="-28" z="3" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" frame="false" uuid="{0e5e65df-6f92-4dc2-a46e-040c5e3e1d6c}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<polygon x3="-8.77479" y2="10.8817" y3="-6.81657" y1="8.87394" y4="-8.81219" x5="2.8423" x1="2.82578" x4="-3.13713" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-2.92493" closed="false" y5="8.89046" antialias="true"/>
|
||||
<line y2="10.0885" length2="1.5" y1="-7.79981" x1="-5.91596" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0.01823" antialias="true"/>
|
||||
<line y2="-10" length2="1.5" y1="-10" x1="-3" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="3" antialias="false"/>
|
||||
<dynamic_text text_width="-1" text_from="ElementInfo" y="2" x="-34" z="7" Valignment="AlignTop" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" rotation="0" frame="false" uuid="{f61998ec-d878-4737-9e74-8679a306af5a}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>comment</info_name>
|
||||
</dynamic_text>
|
||||
<line y2="-15" length2="1.5" y1="-10" x1="0" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" antialias="false"/>
|
||||
<line y2="15" length2="1.5" y1="10" x1="0" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" antialias="false"/>
|
||||
<terminal y="15" orientation="s" x="0"/>
|
||||
<terminal y="-15" orientation="n" x="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,46 +0,0 @@
|
||||
<definition hotspot_y="23" link_type="simple" hotspot_x="13" orientation="dyyy" version="0.80" width="40" height="50" type="element">
|
||||
<uuid uuid="{c05b1ed0-3c90-4883-b55e-5ce37456066e}"/>
|
||||
<names>
|
||||
<name lang="fr">Porte fusible 2p</name>
|
||||
<name lang="cs">Pojistkový odpínač 2p</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<dynamic_text text_width="-1" text_from="UserText" y="-22" x="-2" z="1" Valignment="AlignTop" font="Sans Serif,5,-1,5,25,0,0,0,0,0" rotation="0" frame="false" uuid="{f3c93a63-d77b-424b-9c18-d153bea32786}" Halignment="AlignLeft">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="UserText" y="-22" x="18" z="2" Valignment="AlignTop" font="Sans Serif,5,-1,5,25,0,0,0,0,0" rotation="0" frame="false" uuid="{38a6df9a-8413-46c8-aa7d-d1d5ef63881a}" Halignment="AlignLeft">
|
||||
<text>3</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="UserText" y="6" x="-3" z="3" Valignment="AlignTop" font="Sans Serif,5,-1,5,25,0,0,0,0,0" rotation="0" frame="false" uuid="{b31fc96e-a908-411c-b40a-b3a7f22198d5}" Halignment="AlignLeft">
|
||||
<text>2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="UserText" y="6" x="17" z="4" Valignment="AlignTop" font="Sans Serif,5,-1,5,25,0,0,0,0,0" rotation="0" frame="false" uuid="{466cd65b-73e6-45a3-8814-f355c2932228}" Halignment="AlignLeft">
|
||||
<text>4</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="ElementInfo" y="-17" x="-37" z="5" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" frame="false" uuid="{889abca0-c07a-45fb-8316-336ef36bf18d}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<polygon x3="10.8698" y2="12.4573" y3="-6.75574" y1="10.2834" y4="-8.81219" x5="22.7384" x1="22.4446" x4="16.8629" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="17.0979" closed="false" y5="9.98961" antialias="true"/>
|
||||
<polygon x3="-9.13021" y2="12.4573" y3="-6.75574" y1="10.2834" y4="-8.81219" x5="2.73843" x1="2.44465" x4="-3.13713" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-2.90211" closed="false" y5="9.98961" antialias="true"/>
|
||||
<line y2="11.0885" length2="1.5" y1="-7.51957" x1="13.8663" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20.0182" antialias="true"/>
|
||||
<line y2="-10" length2="1.5" y1="-10" x1="17" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="23" antialias="false"/>
|
||||
<line y2="11.0885" length2="1.5" y1="-7.51957" x1="-6.13367" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0.01823" antialias="true"/>
|
||||
<line y2="-10" length2="1.5" y1="-10" x1="-3" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="3" antialias="false"/>
|
||||
<line y2="0" length2="1.5" y1="0" x1="0" end2="none" end1="none" length1="1.5" style="line-style:dashed;line-weight:thin;filling:none;color:black" x2="12" antialias="false"/>
|
||||
<dynamic_text text_width="-1" text_from="ElementInfo" y="-1" x="-43" z="13" Valignment="AlignTop" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" rotation="0" frame="false" uuid="{26a975c5-2a42-4c0b-b887-0c1879ae28bc}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>comment</info_name>
|
||||
</dynamic_text>
|
||||
<line y2="-16" length2="1.5" y1="-10" x1="20" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" antialias="false"/>
|
||||
<line y2="-16" length2="1.5" y1="-10" x1="0" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" antialias="false"/>
|
||||
<line y2="18" length2="1.5" y1="12" x1="20" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" antialias="false"/>
|
||||
<line y2="18" length2="1.5" y1="12" x1="0" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" antialias="false"/>
|
||||
<terminal y="18" orientation="s" x="0"/>
|
||||
<terminal y="-16" orientation="n" x="20"/>
|
||||
<terminal y="18" orientation="s" x="20"/>
|
||||
<terminal y="-16" orientation="n" x="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,60 +0,0 @@
|
||||
<definition type="element" link_type="simple" hotspot_y="18" orientation="dyyy" hotspot_x="13" width="60" height="40" version="0.80">
|
||||
<uuid uuid="{bdaf5ba8-ac37-4518-b0ae-6e98828eaa6d}"/>
|
||||
<names>
|
||||
<name lang="cs">Pojistkový odpínač 3p</name>
|
||||
<name lang="fr">Porte Fusible 3p</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" z="1" frame="false" uuid="{a1bea68c-2f6b-47e9-95cb-796c23035510}" rotation="0" x="37" Halignment="AlignLeft" text_from="UserText" y="-22" text_width="-1" Valignment="AlignTop">
|
||||
<text>5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" z="2" frame="false" uuid="{fea18f19-a064-4c5f-89d3-394f1556c09f}" rotation="0" x="17" Halignment="AlignLeft" text_from="UserText" y="-22" text_width="-1" Valignment="AlignTop">
|
||||
<text>3</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" z="3" frame="false" uuid="{73eb4bf8-0b8d-4ef4-8608-ecf1dcb5ce68}" rotation="0" x="-3" Halignment="AlignLeft" text_from="UserText" y="-22" text_width="-1" Valignment="AlignTop">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" z="4" frame="false" uuid="{79b7fc2c-af09-4355-8472-41f49d3cbf41}" rotation="0" x="17" Halignment="AlignLeft" text_from="UserText" y="5" text_width="-1" Valignment="AlignTop">
|
||||
<text>4</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" z="5" frame="false" uuid="{a8895b11-8d45-40bd-a211-fe80d05f254e}" rotation="0" x="37" Halignment="AlignLeft" text_from="UserText" y="5" text_width="-1" Valignment="AlignTop">
|
||||
<text>6</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" z="6" frame="false" uuid="{7e5d1555-4bd8-4e16-97fa-41d95ed212b7}" rotation="0" x="-3" Halignment="AlignLeft" text_from="UserText" y="6" text_width="-1" Valignment="AlignTop">
|
||||
<text>2</text>
|
||||
</dynamic_text>
|
||||
<polygon y1="10.2834" style="line-style:normal;line-weight:normal;filling:none;color:black" x5="22.7384" closed="false" y3="-6.75574" x3="10.8698" y5="9.98961" x1="22.4446" y2="12.4573" x4="16.8629" y4="-8.81219" x2="17.0979" antialias="true"/>
|
||||
<polygon y1="10.2834" style="line-style:normal;line-weight:normal;filling:none;color:black" x5="42.7384" closed="false" y3="-6.75574" x3="30.8698" y5="9.98961" x1="42.4447" y2="12.4573" x4="36.8629" y4="-8.81219" x2="37.0979" antialias="true"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="9" frame="false" uuid="{f497d4a7-97ed-478a-8d51-e7712d3da71a}" rotation="0" x="-37" Halignment="AlignLeft" text_from="ElementInfo" y="-17" text_width="-1" Valignment="AlignTop">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="-7.51957" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="13.8663" y2="11.0885" length2="1.5" x2="20.0182" antialias="true"/>
|
||||
<line y1="-7.51957" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="33.8663" y2="11.0885" length2="1.5" x2="40.0182" antialias="true"/>
|
||||
<polygon y1="10.2834" style="line-style:normal;line-weight:normal;filling:none;color:black" x5="2.73843" closed="false" y3="-6.75574" x3="-9.13021" y5="9.98961" x1="2.44465" y2="12.4573" x4="-3.13713" y4="-8.81219" x2="-2.90211" antialias="true"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="17" y2="-10" length2="1.5" x2="23" antialias="false"/>
|
||||
<line y1="-7.51957" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="-6.13367" y2="11.0885" length2="1.5" x2="0.01823" antialias="true"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="37" y2="-10" length2="1.5" x2="43" antialias="false"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="-3" y2="-10" length2="1.5" x2="3" antialias="false"/>
|
||||
<line y1="0" style="line-style:dashed;line-weight:thin;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="0" y2="0" length2="1.5" x2="12" antialias="false"/>
|
||||
<line y1="0" style="line-style:dashed;line-weight:thin;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="20" y2="0" length2="1.5" x2="32" antialias="false"/>
|
||||
<dynamic_text font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" z="19" frame="false" uuid="{f70a1441-9e9b-40ca-b09f-35d65dfdd582}" rotation="0" x="-44" Halignment="AlignLeft" text_from="ElementInfo" y="0" text_width="-1" Valignment="AlignTop">
|
||||
<text></text>
|
||||
<info_name>comment</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="0" y2="-14" length2="1.5" x2="0" antialias="false"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="20" y2="-14" length2="1.5" x2="20" antialias="false"/>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="40" y2="-14" length2="1.5" x2="40" antialias="false"/>
|
||||
<line y1="12" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="40" y2="16" length2="1.5" x2="40" antialias="false"/>
|
||||
<line y1="12" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="20" y2="16" length2="1.5" x2="20" antialias="false"/>
|
||||
<line y1="12" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="0" y2="16" length2="1.5" x2="0" antialias="false"/>
|
||||
<terminal x="40" orientation="s" y="16"/>
|
||||
<terminal x="0" orientation="n" y="-14"/>
|
||||
<terminal x="40" orientation="n" y="-14"/>
|
||||
<terminal x="0" orientation="s" y="16"/>
|
||||
<terminal x="20" orientation="n" y="-14"/>
|
||||
<terminal x="20" orientation="s" y="16"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,32 +0,0 @@
|
||||
<definition hotspot_y="19" link_type="simple" hotspot_x="5" orientation="dyyy" version="0.80" width="10" height="40" type="element">
|
||||
<uuid uuid="{82d755cf-7766-41ec-847a-6e23987685d5}"/>
|
||||
<names>
|
||||
<name lang="fr">Fusible</name>
|
||||
<name lang="cs">Pojistka</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect y="-10" ry="0" x="-3" width="6" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" antialias="false"/>
|
||||
<line y2="10" length2="1.5" y1="-10" x1="0" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" antialias="false"/>
|
||||
<dynamic_text text_width="-1" text_from="UserText" y="-22" x="-2" z="3" Valignment="AlignTop" font="Sans Serif,5,-1,5,25,0,0,0,0,0" rotation="0" frame="false" uuid="{bfbf3256-ac23-4ce9-b4e0-729aa7338739}" Halignment="AlignLeft">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="UserText" y="5" x="-2" z="4" Valignment="AlignTop" font="Sans Serif,5,-1,5,25,0,0,0,0,0" rotation="0" frame="false" uuid="{b12232a5-c73b-4559-ba54-076c7a50bef5}" Halignment="AlignLeft">
|
||||
<text>2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="ElementInfo" y="-17" x="-30" z="5" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" frame="false" uuid="{dd6f5b99-eca8-4928-89f0-eb8204fb8854}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="ElementInfo" y="-1" x="-35" z="6" Valignment="AlignTop" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" rotation="0" frame="false" uuid="{77ff60fb-d245-4681-8f5e-ac827f675bab}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>comment</info_name>
|
||||
</dynamic_text>
|
||||
<line y2="-15" length2="1.5" y1="-10" x1="0" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" antialias="false"/>
|
||||
<line y2="15" length2="1.5" y1="10" x1="0" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" antialias="false"/>
|
||||
<line y2="15" length2="1.5" y1="-15" x1="0" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" antialias="false"/>
|
||||
<terminal y="-15" orientation="n" x="0"/>
|
||||
<terminal y="15" orientation="s" x="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,43 +0,0 @@
|
||||
<definition hotspot_y="19" link_type="simple" hotspot_x="5" orientation="dyyy" version="0.80" width="20" height="40" type="element">
|
||||
<uuid uuid="{329f82a5-7029-4192-ab32-2e8b11615564}"/>
|
||||
<names>
|
||||
<name lang="fr">Fusible 2p</name>
|
||||
<name lang="cs">Pojistka 2p</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect y="-10" ry="0" x="7" width="6" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" antialias="false"/>
|
||||
<rect y="-10" ry="0" x="-3" width="6" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" antialias="false"/>
|
||||
<line y2="10" length2="1.5" y1="-10" x1="0" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" antialias="false"/>
|
||||
<line y2="10" length2="1.5" y1="-10" x1="10" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="10" antialias="false"/>
|
||||
<dynamic_text text_width="-1" text_from="UserText" y="-22" x="7" z="5" Valignment="AlignTop" font="Sans Serif,5,-1,5,25,0,0,0,0,0" rotation="0" frame="false" uuid="{c37aa946-efa6-4e46-b228-9c8b1d8ce193}" Halignment="AlignLeft">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="UserText" y="-22" x="-3" z="6" Valignment="AlignTop" font="Sans Serif,5,-1,5,25,0,0,0,0,0" rotation="0" frame="false" uuid="{6190ce78-54fe-49ae-85b3-915fd3bcf431}" Halignment="AlignLeft">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="UserText" y="5" x="7" z="7" Valignment="AlignTop" font="Sans Serif,5,-1,5,25,0,0,0,0,0" rotation="0" frame="false" uuid="{caa6bbc0-5cda-4bd6-8c5d-14a8b1a19f5d}" Halignment="AlignLeft">
|
||||
<text>2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="UserText" y="5" x="-3" z="8" Valignment="AlignTop" font="Sans Serif,5,-1,5,25,0,0,0,0,0" rotation="0" frame="false" uuid="{9f060a2d-d66b-4b5b-b86b-d4c0c872f605}" Halignment="AlignLeft">
|
||||
<text>2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="ElementInfo" y="-17" x="-30" z="9" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" frame="false" uuid="{c8fdb551-ba1e-4910-9293-206116b3640f}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" text_from="ElementInfo" y="0" x="-36" z="10" Valignment="AlignTop" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" rotation="0" frame="false" uuid="{9a3517e6-3bbf-4a00-8ebb-198952257b50}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>comment</info_name>
|
||||
</dynamic_text>
|
||||
<line y2="-15" length2="1.5" y1="-10" x1="0" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" antialias="false"/>
|
||||
<line y2="-15" length2="1.5" y1="-10" x1="10" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="10" antialias="false"/>
|
||||
<line y2="15" length2="1.5" y1="10" x1="10" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="10" antialias="false"/>
|
||||
<line y2="15" length2="1.5" y1="10" x1="0" end2="none" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" antialias="false"/>
|
||||
<terminal y="15" orientation="s" x="0"/>
|
||||
<terminal y="-15" orientation="n" x="0"/>
|
||||
<terminal y="15" orientation="s" x="10"/>
|
||||
<terminal y="-15" orientation="n" x="10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,67 +0,0 @@
|
||||
<definition version="0.70" height="60" type="element" width="40" hotspot_x="30" link_type="master" hotspot_y="34" orientation="dyyy">
|
||||
<uuid uuid="{315bc1e6-0466-4d2f-a6e4-547252f6bd16}"/>
|
||||
<names>
|
||||
<name lang="ar">قطب ثنائي القطبية قطبين محميين</name>
|
||||
<name lang="de">Leitungsschutzschalter 2P</name>
|
||||
<name lang="en">Circuit-breaker</name>
|
||||
<name lang="es">Disyuntor termico magnetico en 2P</name>
|
||||
<name lang="it">Int. Aut. Magneto-termico 2P</name>
|
||||
<name lang="fr">Disjoncteur bipolaire 2 poles proteges</name>
|
||||
<name lang="pl">Wyłącznik</name>
|
||||
<name lang="nl">Lastscheider 2</name>
|
||||
<name lang="cs">Dvojpólový jistič 2 póly chránící</name>
|
||||
</names>>
|
||||
<kindInformations>
|
||||
<kindInformation name="type" show="1">protection</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<line y1="-10" style="line-style:dashed;line-weight:thin;filling:none;color:black" x1="-23" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-10" end1="none" x2="-3"/>
|
||||
<line y1="16" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="20" end1="none" x2="0"/>
|
||||
<arc height="5" x="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="-180" y="10.5" width="8" start="90" antialias="true"/>
|
||||
<line y1="16" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="20" end1="none" x2="-20"/>
|
||||
<line y1="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="0"/>
|
||||
<arc height="5" x="-24" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="-180" y="10.5" width="8" start="90" antialias="true"/>
|
||||
<polygon x3="-5" y1="3" y3="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" antialias="true" y2="0" closed="false" x2="0"/>
|
||||
<line y1="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="-20"/>
|
||||
<line y1="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="5"/>
|
||||
<polygon x3="-25" y1="3" y3="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" antialias="true" y2="0" closed="false" x2="-20"/>
|
||||
<line y1="3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="5" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="5"/>
|
||||
<line y1="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="-15"/>
|
||||
<line y1="3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="3" end1="none" x2="5"/>
|
||||
<line y1="3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-15" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="-15"/>
|
||||
<line y1="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-20" end1="none" x2="0"/>
|
||||
<line y1="3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="3" end1="none" x2="-15"/>
|
||||
<line y1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="2" length2="1.5" antialias="true" length1="1.5" end2="none" y2="-18" end1="none" x2="-2"/>
|
||||
<line y1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-2" length2="1.5" antialias="true" length1="1.5" end2="none" y2="-18" end1="none" x2="2"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-50.8598" text_from="ElementInfo" y="-20.6932" z="19" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{eb3e61e9-605d-4992-b5ea-7f0f84509000}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-20" end1="none" x2="-20"/>
|
||||
<line y1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-18" length2="1.5" antialias="true" length1="1.5" end2="none" y2="-18" end1="none" x2="-22"/>
|
||||
<line y1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-22" length2="1.5" antialias="true" length1="1.5" end2="none" y2="-18" end1="none" x2="-18"/>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="-22" text_from="UserText" y="-36" z="23" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{73b5a968-8936-4cd5-8ecc-cd7ab85d42a1}" Halignment="AlignLeft">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="-2" text_from="UserText" y="-36" z="24" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{20a7e985-c1d2-44e7-bb18-76aa73849729}" Halignment="AlignLeft">
|
||||
<text>3</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="-21" text_from="UserText" y="9" z="25" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{1c2a2b8e-1f38-49b3-9a86-61004e06cf0d}" Halignment="AlignLeft">
|
||||
<text>2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="-1" text_from="UserText" y="9" z="26" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{471cb447-49c7-4d4b-8e37-fe17d6251401}" Halignment="AlignLeft">
|
||||
<text>4</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" frame="false" x="-50" text_from="ElementInfo" y="-2" z="27" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{8d5fdb0a-e44b-4d3f-b448-ddb983b2658d}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>comment</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="20" orientation="s"/>
|
||||
<terminal x="0" y="-30" orientation="n"/>
|
||||
<terminal x="-20" y="20" orientation="s"/>
|
||||
<terminal x="-20" y="-30" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,84 +0,0 @@
|
||||
<definition version="0.70" height="60" type="element" width="60" hotspot_x="30" link_type="master" hotspot_y="34" orientation="dyyy">
|
||||
<uuid uuid="{458bcb69-d51d-4add-ab45-1830d8f42c0f}"/>
|
||||
<names>
|
||||
<name lang="cs">Trojpólový jistič</name>
|
||||
<name lang="ar">قاطع ثلاثي القطبية</name>
|
||||
<name lang="en">Circuit-breaker</name>
|
||||
<name lang="nl">Lastscheider 3</name>
|
||||
<name lang="pl">Wyłącznik</name>
|
||||
<name lang="it">Int. Aut. Magneto-termico 3P</name>
|
||||
<name lang="de">Leitungsschutzschalter 3P</name>
|
||||
<name lang="fr">Disjoncteur tripolaire</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="type" show="1">protection</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<line y1="-10" style="line-style:dashed;line-weight:thin;filling:none;color:black" x1="-23" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-10" end1="none" x2="17"/>
|
||||
<line y1="16" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="20" end1="none" x2="0"/>
|
||||
<arc height="5" x="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="-180" y="10.5" width="8" start="90" antialias="true"/>
|
||||
<line y1="16" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="20" end1="none" x2="-20"/>
|
||||
<line y1="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="0"/>
|
||||
<arc height="5" x="-24" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="-180" y="10.5" width="8" start="90" antialias="true"/>
|
||||
<polygon x3="-5" y1="3" y3="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" antialias="true" y2="0" closed="false" x2="0"/>
|
||||
<line y1="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="-20"/>
|
||||
<line y1="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="5"/>
|
||||
<polygon x3="-25" y1="3" y3="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" antialias="true" y2="0" closed="false" x2="-20"/>
|
||||
<line y1="3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="5" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="5"/>
|
||||
<line y1="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="-15"/>
|
||||
<line y1="3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="3" end1="none" x2="5"/>
|
||||
<line y1="3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-15" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="-15"/>
|
||||
<line y1="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-20" end1="none" x2="0"/>
|
||||
<line y1="3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="3" end1="none" x2="-15"/>
|
||||
<line y1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="2" length2="1.5" antialias="true" length1="1.5" end2="none" y2="-18" end1="none" x2="-2"/>
|
||||
<line y1="16" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="20" end1="none" x2="20"/>
|
||||
<line y1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-2" length2="1.5" antialias="true" length1="1.5" end2="none" y2="-18" end1="none" x2="2"/>
|
||||
<polygon x3="15" y1="3" y3="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" antialias="true" y2="0" closed="false" x2="20"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-58" text_from="ElementInfo" y="-17" z="21" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{c1498517-6b83-4819-acf9-40e73beeed6e}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<arc height="5" x="16" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="-180" y="10.5" width="8" start="90" antialias="true"/>
|
||||
<line y1="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-20" end1="none" x2="-20"/>
|
||||
<line y1="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="20"/>
|
||||
<line y1="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="25"/>
|
||||
<line y1="3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="25" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="25"/>
|
||||
<line y1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-18" length2="1.5" antialias="true" length1="1.5" end2="none" y2="-18" end1="none" x2="-22"/>
|
||||
<line y1="3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="3" end1="none" x2="25"/>
|
||||
<line y1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-22" length2="1.5" antialias="true" length1="1.5" end2="none" y2="-18" end1="none" x2="-18"/>
|
||||
<line y1="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-20" end1="none" x2="20"/>
|
||||
<line y1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="22" length2="1.5" antialias="true" length1="1.5" end2="none" y2="-18" end1="none" x2="18"/>
|
||||
<line y1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="18" length2="1.5" antialias="true" length1="1.5" end2="none" y2="-18" end1="none" x2="22"/>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="-22" text_from="UserText" y="-36" z="33" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{a2e86dba-725c-4b0c-903a-67538d17bc4e}" Halignment="AlignLeft">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="-2" text_from="UserText" y="-36" z="34" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{dad2c45a-8585-46a9-a90c-a8fd0d67cb27}" Halignment="AlignLeft">
|
||||
<text>3</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="18" text_from="UserText" y="-36" z="35" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{885a15ae-5164-4b25-b69d-ae08df7f26e6}" Halignment="AlignLeft">
|
||||
<text>5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="-21" text_from="UserText" y="9" z="36" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{192b9597-f3e8-4a9c-9b67-e46d9e7a645c}" Halignment="AlignLeft">
|
||||
<text>2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="-1" text_from="UserText" y="9" z="37" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{3c3c969f-f7f0-4606-afc2-14fec241addc}" Halignment="AlignLeft">
|
||||
<text>4</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="19" text_from="UserText" y="9" z="38" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{37c0d3b1-0e66-4d8c-b068-202e17d9c204}" Halignment="AlignLeft">
|
||||
<text>6</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" frame="false" x="-60" text_from="ElementInfo" y="0" z="39" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{2773a71b-e557-4b99-bdaf-be7d85d0257f}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>comment</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="-30" orientation="n"/>
|
||||
<terminal x="-20" y="20" orientation="s"/>
|
||||
<terminal x="20" y="-30" orientation="n"/>
|
||||
<terminal x="-20" y="-30" orientation="n"/>
|
||||
<terminal x="20" y="20" orientation="s"/>
|
||||
<terminal x="0" y="20" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -13,11 +13,11 @@
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="machine-manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="machine-manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
@@ -27,7 +27,7 @@
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer-reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>S.DEFFAUX
|
||||
Author: The QElectroTech team
|
||||
|
||||
@@ -17,14 +17,14 @@
|
||||
<kindInformation name="type" show="1">protection</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
|
||||
@@ -1,51 +0,0 @@
|
||||
<definition height="60" orientation="dyyy" hotspot_x="17" version="0.80" link_type="simple" type="element" width="40" hotspot_y="29">
|
||||
<uuid uuid="{be4fd303-d4a8-4222-ab41-18fff7abb2b9}"/>
|
||||
<names>
|
||||
<name lang="de">Blitz-/Überspannungsschutz</name>
|
||||
<name lang="nl">Overspanning beveiligig</name>
|
||||
<name lang="fr">Parafoudre</name>
|
||||
<name lang="it">Protez. alimentazione</name>
|
||||
<name lang="es">Protección contra descargas 2</name>
|
||||
<name lang="el">Προστασία από υπέρταση</name>
|
||||
<name lang="cs">Bleskojistka, ochrana proti nárazu</name>
|
||||
<name lang="pl">Ogranicznik przepięć</name>
|
||||
<name lang="ar">حامي من الصواعق</name>
|
||||
<name lang="en">Surge protection</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">SOFREL</elementInformation>
|
||||
<elementInformation show="1" name="machine-manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" y="15" rotation="0" Halignment="AlignLeft" text_width="0" z="1" frame="false" x="-105" Valignment="AlignTop" text_from="ElementInfo" uuid="{5e606185-3322-4161-9d6b-df27dc27e33e}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line length1="1.5" end1="none" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="-10" length2="1" y1="-20" end2="triangle" x2="-10" y2="-1" antialias="false"/>
|
||||
<line length1="1" end1="triangle" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="-10" length2="0.5" y1="1" end2="none" x2="-10" y2="12" antialias="false"/>
|
||||
<text font="Arial,4,-1,5,50,0,0,0,0,0,Normal" y="-17" rotation="0" x="-9" text="N" color="#000000"/>
|
||||
<text font="Sans Serif,4,-1,5,50,0,0,0,0,0" y="29" rotation="0" x="1" text="T" color="#000000"/>
|
||||
<text font="Arial,4,-1,5,50,0,0,0,0,0,Normal" y="-16.6667" rotation="0" x="11" text="L1" color="#000000"/>
|
||||
<line length1="1.5" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" y1="20" end2="none" x2="0" y2="12" antialias="false"/>
|
||||
<line length1="1.5" end1="none" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="10" length2="1" y1="-19" end2="triangle" x2="10" y2="-1" antialias="false"/>
|
||||
<line length1="1" end1="triangle" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="10" length2="0.5" y1="1" end2="none" x2="10" y2="7" antialias="false"/>
|
||||
<rect rx="0" y="-8" height="16" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" x="-13" width="6" antialias="false"/>
|
||||
<rect rx="0" y="-8" height="16" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" x="7" width="6" antialias="false"/>
|
||||
<line length1="2.5" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" length2="1.5" y1="8" end2="none" x2="10" y2="11" antialias="false"/>
|
||||
<line length1="1.5" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" length2="1.5" y1="12" end2="none" x2="-9" y2="12" antialias="false"/>
|
||||
<terminal y="22" orientation="s" x="0"/>
|
||||
<terminal y="-21" orientation="n" x="-10"/>
|
||||
<terminal y="-21" orientation="n" x="10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -15,13 +15,13 @@
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>EN 60617: 07-22-03</informations>
|
||||
<description>
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
<definition type="element" orientation="dyyy" height="50" hotspot_y="25" version="0.70" width="40" hotspot_x="23" link_type="master">
|
||||
<uuid uuid="{45a179e7-866e-4756-965f-d2445ced8dd2}"/>
|
||||
<names>
|
||||
<name lang="cs">Časové relé</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation show="1" name="type">coil</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-14" height="15" rx="0" width="28" y="-8" ry="0" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:black;color:black" x="-20" height="15" rx="0" width="5" y="-8" ry="0" antialias="false"/>
|
||||
<dynamic_text z="3" Valignment="AlignTop" x="-45" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{bf273769-c856-4d5c-a56a-6a014b357999}" y="-12" Halignment="AlignLeft" frame="false" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-10" text="A1" color="#000000"/>
|
||||
<text x="1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="15" text="A2" color="#000000"/>
|
||||
<text x="-9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-10" text="S" color="#000000"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="-15" end1="none" y1="-8" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="15" end1="none" y1="7" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-15" end1="none" y1="-8" length1="1.5" length2="1.5" antialias="false" x2="-10"/>
|
||||
<dynamic_text z="10" Valignment="AlignTop" x="-9" text_from="UserText" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" uuid="{02030033-c6b1-4a95-b990-74fa2f7d147d}" y="-9" Halignment="AlignLeft" frame="false" text_width="-1">
|
||||
<text>g</text>
|
||||
</dynamic_text>
|
||||
<terminal orientation="s" x="0" y="15"/>
|
||||
<terminal orientation="n" x="0" y="-15"/>
|
||||
<terminal orientation="n" x="-10" y="-15"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,28 +0,0 @@
|
||||
<definition type="element" orientation="dyyy" height="50" hotspot_y="25" version="0.70" width="40" hotspot_x="23" link_type="master">
|
||||
<uuid uuid="{2abf6e68-2359-4b1b-b468-f7842007f956}"/>
|
||||
<names>
|
||||
<name lang="cs">Timer T 816</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation show="1" name="type">coil</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-14" height="15" rx="0" width="28" y="-8" ry="0" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:black;color:black" x="-20" height="15" rx="0" width="5" y="-8" ry="0" antialias="false"/>
|
||||
<dynamic_text z="3" Valignment="AlignTop" x="-45" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{9b8efa95-7359-4c1f-84ce-b9787d530cd9}" y="-12" Halignment="AlignLeft" frame="false" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-10" text="2" color="#000000"/>
|
||||
<text x="1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="15" text="10" color="#000000"/>
|
||||
<text x="-9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-10" text="5" color="#000000"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="-15" end1="none" y1="-8" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="15" end1="none" y1="7" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-15" end1="none" y1="-8" length1="1.5" length2="1.5" antialias="false" x2="-10"/>
|
||||
<terminal orientation="n" x="-10" y="-15"/>
|
||||
<terminal orientation="n" x="0" y="-15"/>
|
||||
<terminal orientation="s" x="0" y="15"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,28 +0,0 @@
|
||||
<definition type="element" orientation="dyyy" height="50" hotspot_y="25" version="0.70" width="40" hotspot_x="23" link_type="master">
|
||||
<uuid uuid="{996f934d-7b3d-40fd-81a5-c62b585d5319}"/>
|
||||
<names>
|
||||
<name lang="cs">Timer TMR48</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation show="1" name="type">coil</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-14" height="15" rx="0" width="28" y="-8" ry="0" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:black;color:black" x="-20" height="15" rx="0" width="5" y="-8" ry="0" antialias="false"/>
|
||||
<dynamic_text z="3" Valignment="AlignTop" x="-45" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{ec3ddd44-7d10-4947-93f2-d66496e14415}" y="-12" Halignment="AlignLeft" frame="false" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-10" text="2" color="#000000"/>
|
||||
<text x="1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="15" text="10" color="#000000"/>
|
||||
<text x="-9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-10" text="6" color="#000000"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="-15" end1="none" y1="-8" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="15" end1="none" y1="7" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-15" end1="none" y1="-8" length1="1.5" length2="1.5" antialias="false" x2="-10"/>
|
||||
<terminal orientation="n" x="0" y="-15"/>
|
||||
<terminal orientation="n" x="-10" y="-15"/>
|
||||
<terminal orientation="s" x="0" y="15"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,31 +0,0 @@
|
||||
<definition version="0.70" height="50" type="element" width="30" hotspot_x="12" link_type="slave" hotspot_y="24" orientation="dyyy">
|
||||
<uuid uuid="{90fe1aa6-d017-4064-8ce7-242a4b7b416a}"/>
|
||||
<names>
|
||||
<name lang="cs">Zpožděný odpad </name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="state" show="1">NO</kindInformation>
|
||||
<kindInformation name="number" show="1">1</kindInformation>
|
||||
<kindInformation name="type" show="1">delayOff</kindInformation>
|
||||
</kindInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<polygon x3="10" y1="-10" y3="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="5" antialias="true" y2="10" closed="false" x2="10"/>
|
||||
<line y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-10" end1="none" x2="10"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-23" text_from="ElementInfo" y="-12" z="3" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{87554fe0-c02a-4473-81d1-4cb89205402c}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="7" text_from="UserText" y="-26" z="4" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{07fe6bcb-92fd-4fef-bef4-595fab066fa2}" Halignment="AlignLeft">
|
||||
<text>15</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="7" text_from="UserText" y="9" z="5" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{bbc34c0f-1331-4499-8663-978b944c8287}" Halignment="AlignLeft">
|
||||
<text>18</text>
|
||||
</dynamic_text>
|
||||
<line y1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="7" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="3"/>
|
||||
<arc height="10" x="-7" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="180" y="-5" width="10" start="270" antialias="true"/>
|
||||
<terminal x="10" y="20" orientation="s"/>
|
||||
<terminal x="10" y="-20" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,72 +0,0 @@
|
||||
<definition hotspot_x="4" height="40" type="element" version="0.80" orientation="dyyy" link_type="simple" width="50" hotspot_y="25">
|
||||
<uuid uuid="{f09cb4f3-8977-48d7-9996-e27c3cfc2414}"/>
|
||||
<names>
|
||||
<name lang="fr">Transformateur 230/400-12/24V</name>
|
||||
<name lang="cs">Trafo se třemi vinutími</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="description" show="1">Transformateur 230/400-12/24V</elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<arc antialias="true" height="10.0649" style="line-style:normal;line-weight:normal;filling:none;color:black" x="30" y="-0.103806" angle="180" width="10" start="0"/>
|
||||
<arc antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x="0" y="0" angle="180" width="10" start="0"/>
|
||||
<arc antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x="10" y="0" angle="180" width="10" start="0"/>
|
||||
<arc antialias="true" height="10.0649" style="line-style:normal;line-weight:normal;filling:none;color:black" x="20" y="-0.103806" angle="180" width="10" start="0"/>
|
||||
<arc antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x="0" y="-20" angle="90" width="10" start="270"/>
|
||||
<arc antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x="0" y="-20" angle="90" width="10" start="180"/>
|
||||
<arc antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x="10" y="-20" angle="90" width="10" start="270"/>
|
||||
<arc antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x="10" y="-20" angle="90" width="10" start="180"/>
|
||||
<arc antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x="20" y="-20" angle="90" width="10" start="270"/>
|
||||
<arc antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x="20" y="-20" angle="90" width="10" start="180"/>
|
||||
<arc antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x="30" y="-20" angle="90" width="10" start="270"/>
|
||||
<arc antialias="true" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x="30" y="-20" angle="90" width="10" start="180"/>
|
||||
<line antialias="false" y1="-6" length1="1.5" style="line-style:normal;line-weight:eleve;filling:none;color:black" y2="-6" x2="40" x1="0" end1="none" end2="none" length2="1.5"/>
|
||||
<line antialias="false" y1="-15" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-20" x2="0" x1="0" end1="none" end2="none" length2="1.5"/>
|
||||
<line antialias="false" y1="-15" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-20" x2="20" x1="20" end1="none" end2="none" length2="1.5"/>
|
||||
<line antialias="false" y1="-15" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-20" x2="40" x1="40" end1="none" end2="none" length2="1.5"/>
|
||||
<line antialias="false" y1="4.92863" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="9.96107" x2="40" x1="40" end1="none" end2="none" length2="1.5"/>
|
||||
<line antialias="false" y1="4.92863" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="9.96107" x2="20" x1="20" end1="none" end2="none" length2="1.5"/>
|
||||
<line antialias="false" y1="5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="10" x2="20" x1="20" end1="none" end2="none" length2="1.5"/>
|
||||
<line antialias="false" y1="5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="10" x2="0" x1="0" end1="none" end2="none" length2="1.5"/>
|
||||
<dynamic_text rotation="0" z="21" x="65" y="-10" frame="false" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" text_from="ElementInfo" uuid="{2070a050-464b-40d5-ba88-7b98dc7dc15f}" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="270" z="26" x="10" y="15" frame="false" Valignment="AlignTop" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" text_from="UserText" uuid="{6eaa911a-6dc2-4851-a347-e1a35e77ec31}" text_width="-1">
|
||||
<text>12V</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="270" z="27" x="30" y="15" frame="false" Valignment="AlignTop" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" text_from="UserText" uuid="{418e2800-549d-4af3-9720-7bff12dbe7fb}" text_width="-1">
|
||||
<text>24V</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="270" z="28" x="9" y="-12" frame="false" Valignment="AlignTop" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" text_from="UserText" uuid="{b57864dc-0c10-406c-9df6-a421b99dfdd9}" text_width="-1">
|
||||
<text>230V</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="270" z="28" x="30" y="-10" frame="false" Valignment="AlignTop" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" text_from="UserText" uuid="{b57864dc-0c10-406c-9df6-a421b99dfdd9}" text_width="-1">
|
||||
<text>400V</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="270" z="29" x="-4" y="15" frame="false" Valignment="AlignTop" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" Halignment="AlignLeft" text_from="UserText" uuid="{b306c581-73a2-4d80-a62a-1cb812327b9e}" text_width="-1">
|
||||
<text>0V</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="270" z="29" x="-4" y="-12" frame="false" Valignment="AlignTop" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" Halignment="AlignLeft" text_from="UserText" uuid="{b306c581-73a2-4d80-a62a-1cb812327b9e}" text_width="-1">
|
||||
<text>0V</text>
|
||||
</dynamic_text>
|
||||
<terminal name="" x="0" y="-20" orientation="n" uuid="{3df8699b-43a1-49c1-b3fa-7d796925f1ba}"/>
|
||||
<terminal name="" x="20" y="-20" orientation="n" uuid="{982f8530-4d05-4898-98d8-eff984bdee69}"/>
|
||||
<terminal name="" x="40" y="-21" orientation="n" uuid="{c2f4a1a9-a2d0-4b8c-bfcf-21b3fc086a1a}"/>
|
||||
<terminal name="" x="20" y="10" orientation="s" uuid="{4f7f506e-bf2f-4d24-ba5b-c00b97944b25}"/>
|
||||
<terminal name="" x="0" y="10" orientation="s" uuid="{0aaa2455-818f-4d41-a60a-7c49c97624fa}"/>
|
||||
<terminal name="" x="40" y="9.96107" orientation="s" uuid="{854f00a1-93ca-48e3-9084-f000c7d94518}"/>
|
||||
<terminal name="" x="20" y="9.96107" orientation="s" uuid="{c3b19e93-736b-4fd4-9575-1ab895e8b007}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -10,10 +10,10 @@
|
||||
<elementInformations>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">ABL8RPS24050</elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">schneider</elementInformation>
|
||||
|
||||
@@ -9,11 +9,11 @@
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="machine-manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
</elementInformations>
|
||||
|
||||
@@ -1,52 +0,0 @@
|
||||
<definition link_type="simple" height="110" width="90" orientation="dyyy" version="0.80" type="element" hotspot_y="54" hotspot_x="45">
|
||||
<uuid uuid="{80191a66-3b5f-465e-99b1-3479764a0b30}"/>
|
||||
<names>
|
||||
<name lang="cs">Převodník RS232/485 </name>
|
||||
<name lang="fr">Convertiseur RS232/RS485</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1">A</elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect ry="0" y="-45" rx="0" height="90" style="line-style:normal;line-weight:normal;filling:white;color:black" width="80" antialias="false" x="-40"/>
|
||||
<line x2="40" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-40" y1="45" length2="1.5" y2="-45" antialias="false" length1="1.5" end2="none"/>
|
||||
<text y="-30" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="RX" color="#000000" rotation="270" x="-26.75"/>
|
||||
<text y="-22" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="GND" color="#000000" rotation="270" x="-13.5"/>
|
||||
<text y="-30" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="TX" color="#000000" rotation="270" x="-3.75"/>
|
||||
<text y="-22.5" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="+Ub" color="#000000" rotation="270" x="16"/>
|
||||
<text y="-26.75" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="-Ub" color="#000000" rotation="270" x="25.25"/>
|
||||
<text y="43" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="DATA+" color="#000000" rotation="270" x="16.25"/>
|
||||
<text y="42.75" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="DATA-" color="#000000" rotation="270" x="23.5"/>
|
||||
<text y="-5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="RS232" color="#000000" rotation="0" x="-35"/>
|
||||
<text y="6.75" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="RS485" color="#000000" rotation="0" x="2.25"/>
|
||||
<line x2="-30" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" y1="-50" length2="1.5" y2="-45" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="-20" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" y1="-50" length2="1.5" y2="-45" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="-10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" y1="-50" length2="1.5" y2="-45" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" y1="-50" length2="1.5" y2="-45" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="20" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" y1="-50" length2="1.5" y2="-45" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" y1="50" length2="1.5" y2="45" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="20" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" y1="50" length2="1.5" y2="45" antialias="false" length1="1.5" end2="none"/>
|
||||
<dynamic_text text_width="-1" y="-50" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" text_from="ElementInfo" Halignment="AlignLeft" Valignment="AlignTop" uuid="{ef5d8163-a0af-4a7a-86ea-0f5ef18f6e7e}" frame="false" rotation="0" x="-60" z="19">
|
||||
<text>A</text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal y="50" orientation="s" x="20"/>
|
||||
<terminal y="-50" orientation="n" x="-30"/>
|
||||
<terminal y="-50" orientation="n" x="-20"/>
|
||||
<terminal y="-50" orientation="n" x="20"/>
|
||||
<terminal y="50" orientation="s" x="10"/>
|
||||
<terminal y="-50" orientation="n" x="-10"/>
|
||||
<terminal y="-50" orientation="n" x="10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,63 +0,0 @@
|
||||
<definition hotspot_x="45" link_type="simple" height="100" type="element" width="90" version="0.80" hotspot_y="49" orientation="dyyy">
|
||||
<uuid uuid="{a9abc5f7-020e-4b5e-b4e8-c0d39290d384}"/>
|
||||
<names>
|
||||
<name lang="cs">Převodník RS485 na I2C</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="machine-manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect antialias="false" y="-40" ry="0" height="80" style="line-style:normal;line-weight:normal;filling:white;color:black" width="80" x="-40" rx="0"/>
|
||||
<line antialias="false" x2="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-20" y1="-45" y2="-40" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="-10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-10" y1="-45" y2="-40" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="10" y1="-45" y2="-40" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="20" y1="-45" y2="-40" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-20" y1="40" y2="45" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="-10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-10" y1="40" y2="45" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="0" y1="40" y2="45" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="10" y1="40" y2="45" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="20" y1="40" y2="45" end2="none" length2="1.5"/>
|
||||
<text y="-5.25" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-17.25" rotation="270" text="DATA+" color="#000000"/>
|
||||
<text y="-5.25" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-4" rotation="270" text="DATA-" color="#000000"/>
|
||||
<text y="-17.75" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="15.5" rotation="270" text="+Ub" color="#000000"/>
|
||||
<text y="-21.5" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="25.75" rotation="270" text="-Ub" color="#000000"/>
|
||||
<text y="35" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-25" rotation="0" text="1" color="#000000"/>
|
||||
<text y="35" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-15" rotation="0" text="2" color="#000000"/>
|
||||
<text y="35" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-5" rotation="0" text="3" color="#000000"/>
|
||||
<text y="35" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="5" rotation="0" text="4" color="#000000"/>
|
||||
<text y="35" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="15" rotation="0" text="5" color="#000000"/>
|
||||
<text y="10" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-30" rotation="0" text="RS485/I2C" color="#000000"/>
|
||||
<dynamic_text y="-40" z="21" Valignment="AlignTop" text_from="ElementInfo" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" uuid="{a709e01c-eb4a-44af-9b5d-c57f1350b98b}" frame="false" x="-65" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-35" z="22" Valignment="AlignTop" text_from="ElementInfo" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" uuid="{ac9ea9a8-85a3-4a84-89c5-9f3af69804b3}" frame="false" x="-65" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-45" z="23" Valignment="AlignTop" text_from="UserText" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" uuid="{40770369-fcd3-40e2-ac97-1f3b0b903e5e}" frame="false" x="-65" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>A</text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal y="-45" orientation="n" x="10"/>
|
||||
<terminal y="45" orientation="s" x="-10"/>
|
||||
<terminal y="-45" orientation="n" x="20"/>
|
||||
<terminal y="45" orientation="s" x="-20"/>
|
||||
<terminal y="-45" orientation="n" x="-20"/>
|
||||
<terminal y="45" orientation="s" x="10"/>
|
||||
<terminal y="45" orientation="s" x="0"/>
|
||||
<terminal y="-45" orientation="n" x="-10"/>
|
||||
<terminal y="45" orientation="s" x="20"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,61 +0,0 @@
|
||||
<definition hotspot_x="26" link_type="simple" height="60" type="element" width="60" version="0.80" hotspot_y="29" orientation="dyyy">
|
||||
<uuid uuid="{f199d479-3cac-4ce9-ac7a-0459fe8fa72e}"/>
|
||||
<names>
|
||||
<name lang="cs">Filtr TS 811 1751</name>
|
||||
<name lang="fr">Filtr TS 811 1751</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation">Filtr TS 811 1751</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Almeto</elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect antialias="false" y="-20" ry="0" height="40" style="line-style:normal;line-weight:normal;filling:white;color:black" width="40" x="-20" rx="0"/>
|
||||
<arc antialias="true" y="-5" height="6" angle="90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" start="90" x="-8"/>
|
||||
<dynamic_text y="-26" z="3" Valignment="AlignTop" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{aa988639-f6d4-4274-acc5-6887be575636}" frame="false" x="-45" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<arc antialias="true" y="-5" height="6" angle="90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" start="0" x="-8"/>
|
||||
<arc antialias="true" y="-3" height="4" angle="90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" start="180" x="0"/>
|
||||
<arc antialias="true" y="1" height="6" angle="90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" start="90" x="-8"/>
|
||||
<arc antialias="true" y="-5" height="6" angle="90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" start="270" x="1"/>
|
||||
<arc antialias="true" y="1" height="6" angle="90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" start="0" x="-8"/>
|
||||
<arc antialias="true" y="3" height="4" angle="90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" start="180" x="0"/>
|
||||
<arc antialias="true" y="1" height="6" angle="90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" start="270" x="1"/>
|
||||
<line antialias="false" x2="1" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-3.94712" y1="-0.90022" y2="-6" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="4.70884" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-1.17721" y1="0.276991" y2="-5.88606" end2="none" length2="1.5"/>
|
||||
<dynamic_text y="-31" z="13" Valignment="AlignTop" text_from="UserText" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{da9a679c-f119-40fe-acfb-ea8d8c2f5d35}" frame="false" x="-12" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>L'</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-31" z="14" Valignment="AlignTop" text_from="UserText" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{283d6346-7d17-40a7-b723-a59101b0b0cc}" frame="false" x="8" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>N'</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="17" z="15" Valignment="AlignTop" text_from="UserText" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{2b8ed13b-fa20-4e97-94c6-06a03b313872}" frame="false" x="8" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>N</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="17" z="16" Valignment="AlignTop" text_from="UserText" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{484182d6-2f59-49b0-8887-b832af7ae015}" frame="false" x="-12" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>L</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-3" z="17" Valignment="AlignTop" text_from="UserText" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{84aa21a5-df3f-4e52-990c-85873ab34d15}" frame="false" x="18" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>PE</text>
|
||||
</dynamic_text>
|
||||
<line antialias="false" x2="-10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-10" y1="-20" y2="-25" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="10" y1="-20" y2="-25" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="20" y1="0" y2="0" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="10" y1="20" y2="25" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="-10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-10" y1="20" y2="25" end2="none" length2="1.5"/>
|
||||
<terminal y="-25" orientation="n" x="10"/>
|
||||
<terminal y="25" orientation="s" x="-10"/>
|
||||
<terminal y="-25" orientation="n" x="-10"/>
|
||||
<terminal y="25" orientation="s" x="10"/>
|
||||
<terminal y="0" orientation="e" x="25"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,42 +0,0 @@
|
||||
<definition hotspot_x="35" link_type="simple" height="80" type="element" width="70" version="0.80" hotspot_y="38" orientation="dyyy">
|
||||
<uuid uuid="{ea7ba465-17d2-4dd0-96f8-4abef454aa76}"/>
|
||||
<names>
|
||||
<name lang="cs">TSK 6711</name>
|
||||
<name lang="fr">TSK 6711</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation">TSK 6711</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Almeto</elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect antialias="false" y="-28" ry="0" height="58" style="line-style:normal;line-weight:normal;filling:white;color:black" width="60" x="-30" rx="0"/>
|
||||
<text y="-18" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-22" rotation="0" text="L" color="#000000"/>
|
||||
<text y="-18" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-3" rotation="0" text="N" color="#000000"/>
|
||||
<text y="-18" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="14" rotation="0" text="PE" color="#000000"/>
|
||||
<text y="27" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-12" rotation="0" text="L'" color="#000000"/>
|
||||
<text y="27" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="6" rotation="0" text="N'" color="#000000"/>
|
||||
<text y="-2" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-24" rotation="0" text="RFI Filter
TSK6711" color="#000000"/>
|
||||
<dynamic_text y="-33" z="8" Valignment="AlignTop" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{73313bd0-f4e7-438c-a074-0d733181576d}" frame="false" x="-48" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line antialias="false" x2="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-20" y1="-28" y2="-32" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="0" y1="-28" y2="-32" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="20" y1="-28" y2="-32" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="10" y1="30" y2="34" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="-10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-10" y1="30" y2="34" end2="none" length2="1.5"/>
|
||||
<terminal y="-32" orientation="n" x="0"/>
|
||||
<terminal y="-32" orientation="n" x="-20"/>
|
||||
<terminal y="-32" orientation="n" x="20"/>
|
||||
<terminal y="34" orientation="s" x="10"/>
|
||||
<terminal y="34" orientation="s" x="-10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,42 +0,0 @@
|
||||
<definition hotspot_x="35" link_type="simple" height="80" type="element" width="70" version="0.80" hotspot_y="38" orientation="dyyy">
|
||||
<uuid uuid="{9b6d7261-76a5-46a0-90a4-243589f7ff6d}"/>
|
||||
<names>
|
||||
<name lang="cs">TSK 6741</name>
|
||||
<name lang="fr">TSK 6741</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation">TSK 6741</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Almeto</elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect antialias="false" y="-28" ry="0" height="58" style="line-style:normal;line-weight:normal;filling:white;color:black" width="60" x="-30" rx="0"/>
|
||||
<text y="26" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-22" rotation="0" text="L" color="#000000"/>
|
||||
<text y="26" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-4" rotation="0" text="N" color="#000000"/>
|
||||
<text y="26" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="14" rotation="0" text="PE" color="#000000"/>
|
||||
<text y="-18" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-22" rotation="0" text="L'" color="#000000"/>
|
||||
<text y="-18" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-4" rotation="0" text="N'" color="#000000"/>
|
||||
<text y="-2" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-24" rotation="0" text="RFI Filter
TSK6741" color="#000000"/>
|
||||
<dynamic_text y="-33" z="8" Valignment="AlignTop" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{2ad88ce9-f1f1-425d-a05f-1a50118ebbc9}" frame="false" x="-48" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line antialias="false" x2="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-20" y1="-28" y2="-32" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="0" y1="-28" y2="-32" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-20" y1="30" y2="34" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="0" y1="30" y2="34" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="20" y1="30" y2="34" end2="none" length2="1.5"/>
|
||||
<terminal y="34" orientation="s" x="0"/>
|
||||
<terminal y="-32" orientation="n" x="0"/>
|
||||
<terminal y="34" orientation="s" x="20"/>
|
||||
<terminal y="-32" orientation="n" x="-20"/>
|
||||
<terminal y="34" orientation="s" x="-20"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,58 +0,0 @@
|
||||
<definition hotspot_x="35" link_type="simple" height="80" type="element" width="70" version="0.80" hotspot_y="40" orientation="dyyy">
|
||||
<uuid uuid="{617264c1-5351-4e5e-9a43-eeb1077403ce}"/>
|
||||
<names>
|
||||
<name lang="cs">Filtr KFS 4300</name>
|
||||
<name lang="fr">Filtre KFS 4300</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect antialias="false" y="-30" ry="0" height="60" style="line-style:normal;line-weight:normal;filling:white;color:black" width="60" x="-30" rx="0"/>
|
||||
<arc antialias="true" y="30" height="6" angle="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" start="0" x="-3"/>
|
||||
<dynamic_text y="-33" z="3" Valignment="AlignTop" text_from="UserText" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{2a587053-e9d5-486e-8426-2ce8b00de2b3}" frame="false" x="-6" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>N</text>
|
||||
</dynamic_text>
|
||||
<arc antialias="true" y="30" height="6" angle="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" start="0" x="17"/>
|
||||
<dynamic_text y="19" z="5" Valignment="AlignTop" text_from="UserText" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{cc5bfc34-c77d-40f2-963e-4415896c4644}" frame="false" x="-6" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>N</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="19" z="6" Valignment="AlignTop" text_from="UserText" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{044badff-81f8-42b3-ad05-ae83e0130580}" frame="false" x="12" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>PE</text>
|
||||
</dynamic_text>
|
||||
<arc antialias="true" y="30" height="6" angle="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" start="0" x="-23"/>
|
||||
<dynamic_text y="-33" z="8" Valignment="AlignTop" text_from="UserText" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{ac22be33-0c3a-4800-a4ee-c972333c01ab}" frame="false" x="12" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>PE</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-33" z="9" Valignment="AlignTop" text_from="UserText" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{33de4ed1-00ff-4393-80f9-f2fa8047f4ed}" frame="false" x="-26" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>L</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="19" z="10" Valignment="AlignTop" text_from="UserText" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{51c4bfff-f3a0-487e-b5c5-a62d5fafd0de}" frame="false" x="-26" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>L</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-16" z="11" Valignment="AlignTop" text_from="UserText" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{0d659559-bd21-47e3-b9f9-09a21cf1c7ee}" frame="false" x="-18" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text>Schurter
|
||||
KFS4300
|
||||
5055</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-33" z="12" Valignment="AlignTop" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{f309ca0f-77ef-4b89-99ae-1b82b81affb3}" frame="false" x="-50" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line antialias="false" x2="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-20" y1="-30" y2="-34" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="0" y1="-30" y2="-34" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="20" y1="-30" y2="-34" end2="none" length2="1.5"/>
|
||||
<terminal y="-34" orientation="n" x="0"/>
|
||||
<terminal y="-34" orientation="n" x="20"/>
|
||||
<terminal y="-34" orientation="n" x="-20"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,5 +0,0 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="cs">Schurter</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -4,14 +4,14 @@
|
||||
<name lang="fr">Carte à voyant</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Best</elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
|
||||
@@ -1,56 +0,0 @@
|
||||
<definition version="0.70" height="60" type="element" width="70" hotspot_x="17" link_type="master" hotspot_y="30" orientation="dyyy">
|
||||
<uuid uuid="{33213f58-54db-423e-9c10-89ca3adf538b}"/>
|
||||
<names>
|
||||
<name lang="cs">Nouzové zastavení</name>
|
||||
<name lang="ar">زرّ توقف طارئ (NC)</name>
|
||||
<name lang="pt">Paragem de emergência (NC)</name>
|
||||
<name lang="en">Emergency stop (NC)</name>
|
||||
<name lang="nl">Noodstop drukknop (NC)</name>
|
||||
<name lang="pl">Łącznik przyciskowy (przycisk bezpieczeństwa)</name>
|
||||
<name lang="ru">Аварийный стоп</name>
|
||||
<name lang="it">Arresto d'emergenza</name>
|
||||
<name lang="de">Pilzdrucktaster Öffner</name>
|
||||
<name lang="fr">Arrêt d'urgence (NF)</name>
|
||||
<name lang="es">Parada de emergencia (NC)</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="type" show="1">commutator</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="21" color="#000000" text="1" y="-17" rotation="0"/>
|
||||
<polygon x3="0" y1="-10" y3="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="5" antialias="true" y2="10" closed="false" x2="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="21" color="#000000" text="2" y="18" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="41" color="#000000" text="3" y="-17" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="1" color="#000000" text="2" y="18" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="41" color="#000000" text="4" y="18" rotation="0"/>
|
||||
<line y1="-2" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-4" length2="1.5" antialias="true" length1="1.5" end2="none" y2="0" end1="none" x2="-1"/>
|
||||
<arc height="10" x="-11" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="-180" y="-5" width="8" start="-90" antialias="true"/>
|
||||
<line y1="-2" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-4" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-4"/>
|
||||
<line y1="-9" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-9" end1="none" x2="6"/>
|
||||
<line y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-9" end1="none" x2="0"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-29" text_from="ElementInfo" y="-7" z="12" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{b5b7a461-b739-4958-92ac-3848d0ca99be}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-7" length2="1.5" antialias="false" length1="1.5" end2="none" y2="5" end1="none" x2="-7"/>
|
||||
<line y1="0" style="line-style:dashed;line-weight:normal;filling:none;color:black" x1="-1" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="36"/>
|
||||
<line y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-9" end1="none" x2="20"/>
|
||||
<line y1="-9" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-9" end1="none" x2="26"/>
|
||||
<line y1="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="20"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-10" end1="none" x2="25"/>
|
||||
<line y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-9" end1="none" x2="40"/>
|
||||
<line y1="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="10" end1="none" x2="40"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-9" end1="none" x2="33"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="1" color="#000000" text="1" y="-17" rotation="0"/>
|
||||
<line y1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-7" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-4"/>
|
||||
<terminal x="40" y="-20" orientation="n"/>
|
||||
<terminal x="0" y="-20" orientation="n"/>
|
||||
<terminal x="20" y="-20" orientation="n"/>
|
||||
<terminal x="40" y="20" orientation="s"/>
|
||||
<terminal x="0" y="20" orientation="s"/>
|
||||
<terminal x="20" y="20" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,41 +0,0 @@
|
||||
<definition version="0.70" height="60" type="element" width="30" hotspot_x="17" link_type="master" hotspot_y="30" orientation="dyyy">
|
||||
<uuid uuid="{0cd260bb-47bb-45ec-9f21-b5426b6587c6}"/>
|
||||
<names>
|
||||
<name lang="cs">Nouzové zastavení 1p</name>
|
||||
<name lang="ar">زرّ توقف طارئ (NC)</name>
|
||||
<name lang="pt">Paragem de emergência (NC)</name>
|
||||
<name lang="en">Emergency stop (NC)</name>
|
||||
<name lang="nl">Noodstop drukknop (NC)</name>
|
||||
<name lang="pl">Łącznik przyciskowy (przycisk bezpieczeństwa)</name>
|
||||
<name lang="ru">Аварийный стоп</name>
|
||||
<name lang="it">Arresto d'emergenza</name>
|
||||
<name lang="de">Pilzdrucktaster Öffner</name>
|
||||
<name lang="fr">Arrêt d'urgence (NF)</name>
|
||||
<name lang="es">Parada de emergencia (NC)</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="type" show="1">commutator</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<polygon x3="0" y1="-10" y3="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="5" antialias="true" y2="10" closed="false" x2="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="1" color="#000000" text="2" y="18" rotation="0"/>
|
||||
<line y1="-2" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-4" length2="1.5" antialias="true" length1="1.5" end2="none" y2="0" end1="none" x2="-1"/>
|
||||
<arc height="10" x="-11" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="-180" y="-5" width="8" start="-90" antialias="true"/>
|
||||
<line y1="-2" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-4" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-4"/>
|
||||
<line y1="-9" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-9" end1="none" x2="6"/>
|
||||
<line y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-9" end1="none" x2="0"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-29" text_from="ElementInfo" y="-7" z="8" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{c703c729-03a4-402b-a03a-857a56439457}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-7" length2="1.5" antialias="false" length1="1.5" end2="none" y2="5" end1="none" x2="-7"/>
|
||||
<line y1="0" style="line-style:dashed;line-weight:normal;filling:none;color:black" x1="-1" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="2"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="1" color="#000000" text="1" y="-17" rotation="0"/>
|
||||
<line y1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-4" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-7"/>
|
||||
<terminal x="0" y="20" orientation="s"/>
|
||||
<terminal x="0" y="-20" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,64 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_y="31" hotspot_x="29" width="80" version="0.80" type="element" height="60" link_type="simple">
|
||||
<uuid uuid="{b4edcab9-dda2-4ef4-839d-e3875c61fed7}"/>
|
||||
<names>
|
||||
<name lang="ar">زرّ توقف طارئ (NC)</name>
|
||||
<name lang="es">Parada de emergencia (NC)</name>
|
||||
<name lang="pl">Łącznik przyciskowy (przycisk bezpieczeństwa)</name>
|
||||
<name lang="it">Arresto d'emergenza</name>
|
||||
<name lang="de">Pilzdrucktaster Öffner</name>
|
||||
<name lang="pt">Paragem de emergência (NC)</name>
|
||||
<name lang="fr">Arrêt d'urgence (NF)</name>
|
||||
<name lang="cs">Dveřní spínač magnetický</name>
|
||||
<name lang="en">Emergency stop (NC)</name>
|
||||
<name lang="ru">Аварийный стоп</name>
|
||||
<name lang="nl">Noodstop drukknop (NC)</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<text x="21" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-17" text="1" rotation="0"/>
|
||||
<polygon x1="5" y1="-10" x2="0" x3="0" closed="false" antialias="true" y2="10" y3="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text x="21" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="18" text="2" rotation="0"/>
|
||||
<text x="41" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-17" text="3" rotation="0"/>
|
||||
<text x="1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="18" text="2" rotation="0"/>
|
||||
<text x="41" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="18" text="4" rotation="0"/>
|
||||
<line x1="0" y1="-9" end1="none" length1="1.5" length2="1.5" x2="6" antialias="false" end2="none" y2="-9" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" y1="-20" end1="none" length1="1.5" length2="1.5" x2="0" antialias="false" end2="none" y2="-9" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text z="9" text_width="-1" x="-42" uuid="{522765e1-81a1-4dfc-bba6-792fc10a339c}" Halignment="AlignLeft" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" text_from="ElementInfo" Valignment="AlignTop" y="-7" rotation="0">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line x1="20" y1="-18" end1="none" length1="1.5" length2="1.5" x2="20" antialias="false" end2="none" y2="-9" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="20" y1="-9" end1="none" length1="1.5" length2="1.5" x2="26" antialias="false" end2="none" y2="-9" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="20" y1="17" end1="none" length1="1.5" length2="1.5" x2="20" antialias="false" end2="none" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="20" y1="10" end1="none" length1="1.5" length2="1.5" x2="25" antialias="false" end2="none" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="40" y1="-16" end1="none" length1="1.5" length2="1.5" x2="40" antialias="false" end2="none" y2="-9" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="40" y1="16" end1="none" length1="1.5" length2="1.5" x2="40" antialias="false" end2="none" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="40" y1="10" end1="none" length1="1.5" length2="1.5" x2="33" antialias="false" end2="none" y2="-9" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text x="1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-17" text="1" rotation="0"/>
|
||||
<polygon x1="-10" y1="0" y7="0" y6="0" x2="-15" y5="0" x6="-10" x3="-20" x7="-10" closed="false" antialias="false" x5="-10" x4="-15" y2="-5" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y4="5"/>
|
||||
<line x1="-16" y1="-4" end1="none" length1="1.5" length2="1.5" x2="-16" antialias="false" end2="none" y2="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-14" y1="-4" end1="none" length1="1.5" length2="1.5" x2="-14" antialias="false" end2="none" y2="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon x8="-19" y6="-5" x6="-23" style="line-style:normal;line-weight:normal;filling:none;color:black" x3="-24" antialias="false" y7="5" y4="-6" x5="-19" y3="-6" x2="-24" y5="-5" x1="-19" x4="-19" y8="5" x7="-23" closed="false" y2="6" y1="6"/>
|
||||
<line x1="-20" y1="-6" end1="none" length1="1.5" length2="1.5" x2="-23" antialias="false" end2="none" y2="-6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon x1="-20" y1="-6" x2="-23" x3="-23" closed="false" antialias="false" x4="-19" y2="-6" y3="6" style="line-style:normal;line-weight:normal;filling:none;color:black" y4="6"/>
|
||||
<line x1="-10" y1="0" end1="none" length1="1.5" length2="1.5" x2="36" antialias="false" end2="none" y2="0" style="line-style:dashed;line-weight:thin;filling:none;color:black"/>
|
||||
<terminal orientation="n" x="0" y="-20"/>
|
||||
<terminal orientation="s" x="0" y="20"/>
|
||||
<terminal orientation="s" x="20" y="20"/>
|
||||
<terminal orientation="s" x="40" y="20"/>
|
||||
<terminal orientation="n" x="40" y="-20"/>
|
||||
<terminal orientation="n" x="20" y="-20"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,23 +0,0 @@
|
||||
<definition version="0.70" height="50" type="element" width="40" hotspot_x="29" link_type="simple" hotspot_y="25" orientation="dyyy">
|
||||
<uuid uuid="{caef4d22-3e62-462b-9b42-52fe7a7e7e6f}"/>
|
||||
<names>
|
||||
<name lang="cs">Otočný spínač</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-15" end1="none" x2="0"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="15" end1="none" x2="0"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-10" end1="none" x2="-5"/>
|
||||
<line y1="0" style="line-style:dashed;line-weight:normal;filling:none;color:black" x1="-5" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-20"/>
|
||||
<polygon x3="-20" y1="-5" y3="5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-15" antialias="false" y4="5" y2="-5" x4="-25" closed="false" x2="-20"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="1" color="#000000" text="3" y="-12" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="1" color="#000000" text="4" y="13" rotation="0"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-46" text_from="ElementInfo" y="-13" z="8" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{b09e55b6-81c8-438a-9bc4-c40573d99d3d}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="-15" orientation="n"/>
|
||||
<terminal x="0" y="15" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,24 +0,0 @@
|
||||
<definition version="0.70" height="50" type="element" width="30" hotspot_x="22" link_type="simple" hotspot_y="26" orientation="dyyy">
|
||||
<uuid uuid="{26747ab8-68b3-48bc-ba35-994bd72091e1}"/>
|
||||
<names>
|
||||
<name lang="cs">Rozpínací tlačítko</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-15" end1="none" x2="0"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="15" end1="none" x2="0"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-11" end1="none" x2="5"/>
|
||||
<line y1="0" style="line-style:dashed;line-weight:normal;filling:none;color:black" x1="1" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-20"/>
|
||||
<polygon x3="-20" y1="-5" y3="5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-15" antialias="false" y4="5" y2="-5" x4="-15" closed="false" x2="-20"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="1" color="#000000" text="1" y="-13" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="1" color="#000000" text="2" y="13" rotation="0"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-46" text_from="ElementInfo" y="-13" z="8" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{b6af45cd-f9bf-429a-83ad-5f06ff421d3b}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-10" end1="none" x2="6"/>
|
||||
<terminal x="0" y="-15" orientation="n"/>
|
||||
<terminal x="0" y="15" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,23 +0,0 @@
|
||||
<definition version="0.70" height="50" type="element" width="30" hotspot_x="22" link_type="simple" hotspot_y="25" orientation="dyyy">
|
||||
<uuid uuid="{9a1d4a4a-3715-4424-9b87-cb14c0e1cf65}"/>
|
||||
<names>
|
||||
<name lang="cs">Spínací tlačítko</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-15" end1="none" x2="0"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="15" end1="none" x2="0"/>
|
||||
<line y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-10" end1="none" x2="-5"/>
|
||||
<line y1="0" style="line-style:dashed;line-weight:normal;filling:none;color:black" x1="-5" length2="1.5" antialias="false" length1="1.5" end2="none" y2="0" end1="none" x2="-20"/>
|
||||
<polygon x3="-20" y1="-5" y3="5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-15" antialias="false" y4="5" y2="-5" x4="-15" closed="false" x2="-20"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="1" color="#000000" text="3" y="-12" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="1" color="#000000" text="4" y="13" rotation="0"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-46" text_from="ElementInfo" y="-13" z="8" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{6d243ebc-046d-41a5-a109-0885e709b987}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="15" orientation="s"/>
|
||||
<terminal x="0" y="-15" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -3,7 +3,6 @@
|
||||
<name lang="ro">Comutator bipolar n,d.</name>
|
||||
<name lang="pl">Zestyki zwierne o przełączaniu niezawodnym</name>
|
||||
<name lang="es">Conmutador bipolar NA</name>
|
||||
<name lang="fr">Conmutateur bipolaire NO</name>
|
||||
</names>
|
||||
<informations>Author:titus
|
||||
titus0818@yahoo.com</informations>
|
||||
|
||||
@@ -1,58 +0,0 @@
|
||||
<definition version="0.70" height="80" type="element" width="80" hotspot_x="28" link_type="simple" hotspot_y="57" orientation="dyyy">
|
||||
<uuid uuid="{9f3d68cf-4c3e-40b1-9331-ebcff6b3a54b}"/>
|
||||
<names>
|
||||
<name lang="cs">Jednofázový motor</name>
|
||||
<name lang="ar">محرّك ثلاثي الأوجه</name>
|
||||
<name lang="pt">Motor trifásico</name>
|
||||
<name lang="en">One-phase engine</name>
|
||||
<name lang="pl">Silnik trójfazowy</name>
|
||||
<name lang="nl">Draaistroommotor</name>
|
||||
<name lang="ru">Однофазный эл. мотор</name>
|
||||
<name lang="de">Drehstrom Motor</name>
|
||||
<name lang="it">Motore trifase</name>
|
||||
<name lang="fr">Moteur triphasé</name>
|
||||
<name lang="es">Motor trifásico</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="2" color="#000000" text="U2" y="-45" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="22" color="#000000" text="PE" y="-45" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-5" color="#000000" text="M" y="-2" rotation="0"/>
|
||||
<circle x="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-20" antialias="true" diameter="40"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-51" text_from="ElementInfo" y="-11.5" z="5" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{3afac6d2-0ab0-4395-883d-25092cbcf9f0}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="-51" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-30" end1="none" x2="0"/>
|
||||
<line y1="-51" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-23" end1="none" x2="-20"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-8" color="#000000" text="1 ~" y="8" rotation="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-18" color="#000000" text="U1" y="-45" rotation="0"/>
|
||||
<line y1="-45" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-23" end1="none" x2="20"/>
|
||||
<line y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-40" end1="none" x2="40"/>
|
||||
<line y1="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-22" end1="none" x2="40"/>
|
||||
<line y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-31" end1="none" x2="40"/>
|
||||
<circle x="-21" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-41" antialias="false" diameter="2"/>
|
||||
<line y1="-51" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-46" end1="none" x2="20"/>
|
||||
<line y1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="true" length1="1.5" end2="none" y2="-9" end1="none" x2="18"/>
|
||||
<line y1="-31" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="35" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-31" end1="none" x2="45"/>
|
||||
<line y1="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="35" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-29" end1="none" x2="45"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-30" text_from="ElementInfo" y="99" z="19" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{82cbe610-484f-4b00-977a-774877ace119}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>function</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="-23" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-15" end1="none" x2="-14"/>
|
||||
<line y1="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-20" end1="none" x2="0"/>
|
||||
<line y1="-23" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-15" end1="none" x2="14"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-25" text_from="UserText" y="23" z="23" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{786fb0d7-59c9-4f4f-913b-d023822c8ddb}" Halignment="AlignLeft">
|
||||
<text>0,37kW
|
||||
2800 rpm
|
||||
2,4A
|
||||
230V/50Hz</text>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="-50" orientation="n"/>
|
||||
<terminal x="-20" y="-50" orientation="n"/>
|
||||
<terminal x="20" y="-50" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,41 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_x="20" link_type="simple" type="element" height="50" version="0.80" hotspot_y="17" width="40">
|
||||
<uuid uuid="{6120eef2-bb1f-43e5-bdf2-ddbd1c034d6b}"/>
|
||||
<names>
|
||||
<name lang="es">Motormonofásico</name>
|
||||
<name lang="en">Motor single phase</name>
|
||||
<name lang="nl">Motor 1fase</name>
|
||||
<name lang="it">Motore monofase</name>
|
||||
<name lang="fr">Moteur monophasé</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Grundfos</elementInformation>
|
||||
<elementInformation show="1" name="machine-manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>S.DEFFAUX
|
||||
Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<circle antialias="true" x="-15" diameter="30" y="-5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text rotation="0" x="-11" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="1 ~" y="17" color="#000000"/>
|
||||
<text rotation="0" x="-4" font="Sans Serif,8,-1,5,50,0,0,0,0,0" text="M" y="7" color="#000000"/>
|
||||
<line x1="-10" end2="none" antialias="false" x2="-10" y1="-1" length2="1.5" y2="-10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="10" end2="none" antialias="false" x2="10" y1="-10" length2="1.5" y2="-1" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-10" end2="none" antialias="false" x2="-10" y1="21" length2="1.5" y2="25" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="ElementInfo" rotation="0" x="18" font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normal" z="9" text_width="-1" Halignment="AlignLeft" y="4" uuid="{02168a47-380e-4a8b-94ba-48ae684a0b3d}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal orientation="n" name="" x="-10" y="-10" uuid="{b9e2135d-c4f6-453b-b5b4-2ba35162e5c3}"/>
|
||||
<terminal orientation="s" name="" x="-10" y="25" uuid="{11d03113-9117-44b4-ba52-31c187dbaea2}"/>
|
||||
<terminal orientation="n" name="" x="10" y="-10" uuid="{680a5950-c6c5-4cd3-b778-8728fc66fa02}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,61 +0,0 @@
|
||||
<definition type="element" link_type="simple" hotspot_y="62" orientation="dyyy" hotspot_x="65" width="190" height="100" version="0.80">
|
||||
<uuid uuid="{36bee958-905e-4ab9-80a4-03ddd1de1d2b}"/>
|
||||
<names>
|
||||
<name lang="cs">Jednofázový motor 0,18kW</name>
|
||||
<name lang="ru">Однофазный эл. мотор</name>
|
||||
<name lang="pl">Silnik trójfazowy</name>
|
||||
<name lang="fr">Moteur triphasé</name>
|
||||
<name lang="it">Motore trifase</name>
|
||||
<name lang="ar">محرّك ثلاثي الأوجه</name>
|
||||
<name lang="nl">Draaistroommotor</name>
|
||||
<name lang="en">One-phase engine</name>
|
||||
<name lang="pt">Motor trifásico</name>
|
||||
<name lang="es">Motor trifásico</name>
|
||||
<name lang="de">Drehstrom Motor</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="2" text="Z1" y="-50" color="#000000"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="42" text="PE" y="-49" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="0" start="180" angle="180" y="5" width="9" height="8" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="-9" start="0" angle="180" y="5" width="9" height="8" antialias="true"/>
|
||||
<text font="Sans Serif,18,-1,5,50,0,0,0,0,0" rotation="0" x="-10.25" text="M" y="2" color="#000000"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="-30" diameter="60" y="-30" antialias="true"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="7" frame="false" uuid="{6e9844dc-4ef7-4d45-8a6b-5c34cb2227ac}" rotation="0" x="-51" Halignment="AlignLeft" text_from="ElementInfo" y="-11.5" text_width="-1" Valignment="AlignTop">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="-55" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="0" y2="-30" length2="1.5" x2="0" antialias="false"/>
|
||||
<line y1="-56" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="-20" y2="-22.8213" length2="1.5" x2="-20.067" antialias="false"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-17" text="1" y="11" color="#000000"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-18" text="U1" y="-50" color="#000000"/>
|
||||
<line y1="-55" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="20" y2="-22.7651" length2="1.5" x2="20.0143" antialias="false"/>
|
||||
<line y1="-56" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="20" y2="-51" length2="1.5" x2="20" antialias="false"/>
|
||||
<line y1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="40" y2="-16" length2="1.5" x2="26" antialias="true"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="19" frame="false" uuid="{40bbd647-1335-44e7-8727-8b665b9b4805}" rotation="0" x="-30" Halignment="AlignLeft" text_from="ElementInfo" y="99" text_width="-1" Valignment="AlignTop">
|
||||
<text></text>
|
||||
<info_name>function</info_name>
|
||||
</dynamic_text>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="21.6246" text="U2" y="-49.6447" color="#000000"/>
|
||||
<line y1="-55" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="40" y2="-22" length2="1.5" x2="40" antialias="false"/>
|
||||
<polygon y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x5="40" closed="false" y3="5" x3="45" y5="-10" x1="40" y2="10" x4="45" y4="-5" x2="40" antialias="false"/>
|
||||
<polygon y1="0" style="line-style:dashed;line-weight:normal;filling:none;color:black" closed="false" x1="45" y2="0" x2="60" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" x="60" y="-10" width="40" height="20" rx="0" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" x="60" y="-55" width="15" height="35" rx="0" antialias="false"/>
|
||||
<polygon y1="-50" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y3="-45" x3="60" x1="-20" y2="-45" x2="-15" antialias="false"/>
|
||||
<polygon y1="-35" y6="-30" y7="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x6="60" x5="60" closed="false" y3="-30" x3="55" y5="-30" x1="20" y2="-30" x4="55" x7="60" y4="-30" x2="25" antialias="false"/>
|
||||
<polygon y1="-41" style="line-style:normal;line-weight:normal;filling:none;color:black" x5="80" closed="false" y3="20" x3="105" y5="10" x1="75" y2="-41" x4="80" y4="20" x2="105" antialias="false"/>
|
||||
<polygon y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y3="-34" x3="75" x1="80" y2="-34" x2="80" antialias="false"/>
|
||||
<rect style="line-style:dashed;line-weight:normal;filling:none;color:black" ry="0" x="-60" y="-60" width="180" height="95" rx="0" antialias="false"/>
|
||||
<line y1="-42" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="69" y2="-34" length2="1.5" x2="69" antialias="false"/>
|
||||
<line y1="-38" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="69" y2="-38" length2="1.5" x2="72" antialias="false"/>
|
||||
<line y1="-38" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length1="1.5" end1="none" x1="65" y2="-38" length2="1.5" x2="62" antialias="false"/>
|
||||
<polygon y1="-38" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y3="-42" x3="65" x1="69" y2="-34" x4="69" y4="-38" x2="65" antialias="false"/>
|
||||
<terminal x="40" orientation="n" y="-55"/>
|
||||
<terminal x="0" orientation="n" y="-55"/>
|
||||
<terminal x="20" orientation="n" y="-55"/>
|
||||
<terminal x="-20" orientation="n" y="-55"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,54 +0,0 @@
|
||||
<definition hotspot_x="36" link_type="simple" height="80" type="element" width="100" version="0.80" hotspot_y="55" orientation="dyyy">
|
||||
<uuid uuid="{baf2df44-6d28-4ff3-8893-c3acc532b464}"/>
|
||||
<names>
|
||||
<name lang="ru">Однофазный эл. мотор</name>
|
||||
<name lang="it">Motore trifase</name>
|
||||
<name lang="en">One-phase engine</name>
|
||||
<name lang="pl">Silnik trójfazowy</name>
|
||||
<name lang="de">Drehstrom Motor</name>
|
||||
<name lang="cs">Jednofázový motor bez kondu</name>
|
||||
<name lang="es">Motor trifásico</name>
|
||||
<name lang="fr">Moteur triphasé</name>
|
||||
<name lang="nl">Draaistroommotor</name>
|
||||
<name lang="ar">محرّك ثلاثي الأوجه</name>
|
||||
<name lang="pt">Motor trifásico</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<text y="-44" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="31" rotation="0" text="Z2" color="#000000"/>
|
||||
<text y="-44" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="12" rotation="0" text="Z1" color="#000000"/>
|
||||
<text y="-44" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-8" rotation="0" text="U2" color="#000000"/>
|
||||
<text y="-44" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="51" rotation="0" text="PE" color="#000000"/>
|
||||
<text y="-3" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-5" rotation="0" text="M" color="#000000"/>
|
||||
<circle antialias="true" y="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="40" x="-20"/>
|
||||
<dynamic_text y="-11.5" z="7" Valignment="AlignTop" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{46ee6f24-8507-47e3-b3e0-0be0d2e6758d}" frame="false" x="-61" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line antialias="false" x2="-10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-10" y1="-50" y2="-30" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-30" y1="-50" y2="-23" end2="none" length2="1.5"/>
|
||||
<text y="9" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-8" rotation="0" text="1 ~" color="#000000"/>
|
||||
<text y="-44" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-28" rotation="0" text="U1" color="#000000"/>
|
||||
<line antialias="false" x2="10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="10" y1="-50" y2="-23" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="30" y1="-50" y2="-22" end2="none" length2="1.5"/>
|
||||
<line antialias="true" x2="16" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="30" y1="-22" y2="-12" end2="none" length2="1.5"/>
|
||||
<dynamic_text y="99" z="15" Valignment="AlignTop" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{178f74cc-65b3-449a-98de-77ab48dd8156}" frame="false" x="-30" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>function</info_name>
|
||||
</dynamic_text>
|
||||
<line antialias="false" x2="-16" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-30" y1="-23" y2="-12" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="-7" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="-10" y1="-30" y2="-19" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="8" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="10" y1="-23" y2="-19" end2="none" length2="1.5"/>
|
||||
<arc antialias="true" y="-23" height="46" angle="28" style="line-style:normal;line-weight:normal;filling:none;color:black" width="46" start="300" x="-23"/>
|
||||
<line antialias="false" x2="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="16" y1="17" y2="20" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="50" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="20" y1="20" y2="20" end2="none" length2="1.5"/>
|
||||
<line antialias="false" x2="50" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" x1="50" y1="20" y2="-50" end2="none" length2="1.5"/>
|
||||
<terminal y="-50" orientation="n" x="10"/>
|
||||
<terminal y="-50" orientation="n" x="-30"/>
|
||||
<terminal y="-50" orientation="n" x="-10"/>
|
||||
<terminal y="-50" orientation="n" x="50"/>
|
||||
<terminal y="-50" orientation="n" x="30"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,78 +0,0 @@
|
||||
<definition version="0.70" height="90" type="element" width="100" hotspot_x="39" link_type="simple" hotspot_y="44" orientation="dyyy">
|
||||
<uuid uuid="{1dc359e3-f208-4598-b694-3e3a3b5305c2}"/>
|
||||
<names>
|
||||
<name lang="cs">Motorový spouštěč</name>
|
||||
<name lang="el">Θερμομαγνητικό</name>
|
||||
<name lang="ar">قاطع مغناطيسي-حراري GV</name>
|
||||
<name lang="en">Magneto-thermal circuit breaker </name>
|
||||
<name lang="pl">Wyłącznik silnikowy</name>
|
||||
<name lang="it">Int. magneto-termico 3P+N</name>
|
||||
<name lang="de">Motorschutzschalter</name>
|
||||
<name lang="fr">Disjoncteur Magnéto-thermique </name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y1="39" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="28" end1="none" x2="40"/>
|
||||
<polygon x3="45" y1="14" y3="10" y6="-6" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" y5="4" x7="33" antialias="true" y4="4" y7="-25" y2="10" x4="45" x5="40" x6="40" closed="false" x2="40"/>
|
||||
<line y1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="30" length2="1.5" antialias="false" length1="1.5" end2="none" y2="28" end1="none" x2="30"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="36" color="#000000" text="I>" y="25" rotation="0"/>
|
||||
<polygon x3="25" y1="14" y3="10" y6="-6" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" y5="4" x7="13" antialias="true" y4="4" y7="-25" y2="10" x4="25" x5="20" x6="20" closed="false" x2="20"/>
|
||||
<line y1="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="42" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-25" end1="none" x2="38"/>
|
||||
<polygon x3="5" y1="14" y3="10" y6="-6" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" y5="4" x7="-7" antialias="true" y4="4" y7="-25" y2="10" x4="5" x5="0" x6="0" closed="false" x2="0"/>
|
||||
<line y1="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="38" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-25" end1="none" x2="42"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="16" color="#000000" text="I>" y="25" rotation="0"/>
|
||||
<line y1="-27" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-40" end1="none" x2="40"/>
|
||||
<rect height="28" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" y="0" rx="0" width="60" antialias="false" ry="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-4" color="#000000" text="I>" y="25" rotation="0"/>
|
||||
<line y1="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="2" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-25" end1="none" x2="-2"/>
|
||||
<line y1="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-2" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-25" end1="none" x2="2"/>
|
||||
<line y1="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="22" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-25" end1="none" x2="18"/>
|
||||
<line y1="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="18" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-25" end1="none" x2="22"/>
|
||||
<dynamic_text font="Sans Serif,8,-1,5,50,0,0,0,0,0" frame="false" x="-57.2888" text_from="ElementInfo" y="-24.4792" z="17" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{686f7173-763b-4c32-be08-225e2dad9901}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="14" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="14" end1="none" x2="49.5887"/>
|
||||
<line y1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="28" end1="none" x2="10"/>
|
||||
<line y1="40" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="29" end1="none" x2="0"/>
|
||||
<line y1="40" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="29" end1="none" x2="20"/>
|
||||
<line y1="-27" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-40" end1="none" x2="0"/>
|
||||
<line y1="-27" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-40" end1="none" x2="20"/>
|
||||
<rect height="12" x="-26" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-21" rx="0" width="12" antialias="false" ry="0"/>
|
||||
<line y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-14" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-15" end1="none" x2="-33"/>
|
||||
<line y1="-19" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-33" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-11" end1="none" x2="-33"/>
|
||||
<line y1="-9" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-20" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-21" end1="none" x2="-20"/>
|
||||
<line y1="-15" style="line-style:dashed;line-weight:normal;filling:none;color:black" x1="-13.5883" length2="1.5" antialias="false" length1="1.5" end2="none" y2="-15" end1="none" x2="53.554"/>
|
||||
<polygon x3="-20" y1="21" y3="-10" style="line-style:dashed;line-weight:normal;filling:none;color:black" x1="-10" antialias="false" y2="21" closed="false" x2="-20"/>
|
||||
<line y1="8" style="line-style:dashed;line-weight:normal;filling:none;color:black" x1="-10" length2="1.5" antialias="false" length1="1.5" end2="none" y2="8" end1="none" x2="-20"/>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="-3" text_from="UserText" y="-46" z="31" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{0f2a983e-22d1-47b5-a236-92162ee72893}" Halignment="AlignLeft">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="17" text_from="UserText" y="-46" z="32" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{2190f748-9053-4e24-ad92-f2f8e7b2d1f8}" Halignment="AlignLeft">
|
||||
<text>3</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="37" text_from="UserText" y="-46" z="33" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{87821190-b735-4126-9125-9f4fd0c9508c}" Halignment="AlignLeft">
|
||||
<text>5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="-3" text_from="UserText" y="29" z="34" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{80504c8a-745e-44e9-a059-9e479372faa2}" Halignment="AlignLeft">
|
||||
<text>2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="17" text_from="UserText" y="29" z="35" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{a1eb632f-d207-4a29-982d-8206fb22ea3c}" Halignment="AlignLeft">
|
||||
<text>4</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" x="37" text_from="UserText" y="28" z="36" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{63693833-6560-4ecf-b53b-c9d516b59048}" Halignment="AlignLeft">
|
||||
<text>6</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" frame="false" x="-65" text_from="ElementInfo" y="-5" z="37" rotation="0" Valignment="AlignTop" text_width="-1" uuid="{fe3e1a25-b058-460d-9210-28db267cfe2a}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>comment</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="20" y="40" orientation="s"/>
|
||||
<terminal x="0" y="40" orientation="s"/>
|
||||
<terminal x="40" y="39" orientation="s"/>
|
||||
<terminal x="40" y="-40" orientation="n"/>
|
||||
<terminal x="20" y="-40" orientation="n"/>
|
||||
<terminal x="0" y="-40" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,44 +0,0 @@
|
||||
<definition hotspot_x="34" link_type="simple" height="60" type="element" width="70" version="0.80" hotspot_y="38" orientation="dyyy">
|
||||
<uuid uuid="{fc322143-365e-480b-a75c-89171b76cf32}"/>
|
||||
<names>
|
||||
<name lang="cs">Krokový motor</name>
|
||||
<name lang="fr">moteur pas à pas</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<circle antialias="true" y="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="30" x="-15"/>
|
||||
<text y="1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-5" rotation="0" text="M" color="#000000"/>
|
||||
<dynamic_text y="-3" z="3" Valignment="AlignTop" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{5d6b4935-398b-4999-ae36-818b4796a984}" frame="false" x="-46" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="24" z="4" Valignment="AlignTop" text_from="ElementInfo" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{3f25d559-525f-4f82-ac21-8a51e33d9a4a}" frame="false" x="-20" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text></text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="69" z="5" Valignment="AlignTop" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{d2f22986-69e5-4e41-97b6-d9e2805837e7}" frame="false" x="-10" Halignment="AlignLeft" rotation="0" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>tension-protocol</info_name>
|
||||
</dynamic_text>
|
||||
<polygon antialias="false" x2="-7" y5="2" y4="2" x5="6" x3="6" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="5" x1="-7" y1="8" closed="false" y2="5" x4="6"/>
|
||||
<polygon antialias="false" x2="-10" x3="-7" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="-14" x1="-10" y1="-30" closed="false" y2="-20"/>
|
||||
<polygon antialias="false" x2="10" x3="7" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="-14" x1="10" y1="-30" closed="false" y2="-20"/>
|
||||
<polygon antialias="false" x2="30" x3="13" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="-8" x1="30" y1="-30" closed="false" y2="-20"/>
|
||||
<polygon antialias="false" x2="-30" x3="-13" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="-8" x1="-30" y1="-30" closed="false" y2="-20"/>
|
||||
<terminal y="-30" orientation="n" x="30"/>
|
||||
<terminal y="-30" orientation="n" x="-10"/>
|
||||
<terminal y="-30" orientation="n" x="10"/>
|
||||
<terminal y="-30" orientation="n" x="-30"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,48 +0,0 @@
|
||||
<definition type="element" orientation="dyyy" height="80" hotspot_y="57" version="0.70" width="60" hotspot_x="37" link_type="simple">
|
||||
<uuid uuid="{405b76b2-7aea-44a4-9248-386c70bd81ef}"/>
|
||||
<names>
|
||||
<name lang="en">Magnetic brake</name>
|
||||
<name lang="el">Μαγνητικό φρένο</name>
|
||||
<name lang="nl">Rem Magnetic</name>
|
||||
<name lang="it">Freno elettromagnetico</name>
|
||||
<name lang="pl">Hamulec elektromagnetyczny</name>
|
||||
<name lang="de">Bremse magnetisch</name>
|
||||
<name lang="ar">مكبح مغناطيسي</name>
|
||||
<name lang="fr">Frein magnetique</name>
|
||||
<name lang="cs">Elektromagnetická brzda Lenze</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<line style="line-style:dashed;line-weight:normal;filling:none;color:black" end2="none" x1="-30" y2="0" end1="none" y1="0" length1="1.5" length2="1.5" antialias="false" x2="-14"/>
|
||||
<polygon y5="6" x5="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" y6="6" x4="-35" x1="-30" x6="-30" y2="-6" y1="6" x3="-35" y4="10" antialias="true" x2="-30" y3="-10"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="-8" end1="none" y1="-30" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="20" end1="none" y1="9" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="14" y2="-8" end1="none" y1="8" length1="1.5" length2="1.5" antialias="false" x2="14"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-14" y2="8" end1="none" y1="8" length1="1.5" length2="1.5" antialias="false" x2="14"/>
|
||||
<dynamic_text z="7" Valignment="AlignTop" x="-18" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{8c284d0f-0e54-4a83-8f45-ed4bb2347e8a}" y="9" Halignment="AlignLeft" frame="false" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="14" y2="-8" end1="none" y1="-8" length1="1.5" length2="1.5" antialias="false" x2="-14"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-14" y2="8" end1="none" y1="-8" length1="1.5" length2="1.5" antialias="false" x2="-14"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-20" height="38" rx="0" width="10" y="-54" ry="0" antialias="false"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-10" y2="-30" end1="none" y1="-30" length1="1.5" length2="1.5" antialias="false" x2="0"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" y2="20" end1="none" y1="20" length1="1.5" length2="1.5" antialias="false" x2="20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="20" y2="-40" end1="none" y1="20" length1="1.5" length2="1.5" antialias="false" x2="20"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="20" y2="-40" end1="none" y1="-40" length1="1.5" length2="1.5" antialias="false" x2="-10"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="-18" diameter="6" y="-44" antialias="false"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="-18" diameter="6" y="-33" antialias="false"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="-18" diameter="6" y="-23" antialias="false"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="-18" diameter="6" y="-53" antialias="false"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-17" y2="-52" end1="none" y1="-48" length1="1.5" length2="1.5" antialias="false" x2="-13"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-17" y2="-43" end1="none" y1="-39" length1="1.5" length2="1.5" antialias="false" x2="-13"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-17" y2="-32" end1="none" y1="-28" length1="1.5" length2="1.5" antialias="false" x2="-13"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-17" y2="-22" end1="none" y1="-18" length1="1.5" length2="1.5" antialias="false" x2="-13"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="-50" end1="none" y1="-50" length1="1.5" length2="1.5" antialias="false" x2="-25"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-20" y2="-20" end1="none" y1="-20" length1="1.5" length2="1.5" antialias="false" x2="-25"/>
|
||||
<terminal orientation="w" x="-25" y="-20"/>
|
||||
<terminal orientation="w" x="-25" y="-50"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,44 +0,0 @@
|
||||
<definition link_type="simple" height="40" width="40" orientation="dyyy" version="0.80" type="element" hotspot_y="19" hotspot_x="19">
|
||||
<uuid uuid="{3b52c7d1-d848-4b39-be83-98dfb325fab7}"/>
|
||||
<names>
|
||||
<name lang="en">Graetz</name>
|
||||
<name lang="cs">Graetz</name>
|
||||
<name lang="fr">Pont de Graetz</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line x2="-3" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-3" y1="-3" length2="1.5" y2="3" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="2" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-3" y1="3" length2="1.5" y2="0" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="-3" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="2" y1="0" length2="1.5" y2="-3" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="2" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="2" y1="-3" length2="1.5" y2="3" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="-4" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-6" y1="0" length2="1.5" y2="0" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="5" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="2" y1="0" length2="1.5" y2="0" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="0" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" y1="0" length2="1.5" y2="-10" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" y1="-10" length2="1.5" y2="0" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="0" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" y1="0" length2="1.5" y2="10" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="-10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" y1="10" length2="1.5" y2="0" antialias="false" length1="1.5" end2="none"/>
|
||||
<dynamic_text text_width="-1" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" Halignment="AlignLeft" Valignment="AlignTop" uuid="{36037412-7fa8-4e88-8188-7675ed4ff88e}" frame="false" rotation="0" x="-23" z="11">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line x2="-10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-14" y1="0" length2="1.5" y2="0" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="0" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" y1="-14" length2="1.5" y2="-10" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="14" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" y1="0" length2="1.5" y2="0" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="0" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" y1="10" length2="1.5" y2="14" antialias="false" length1="1.5" end2="none"/>
|
||||
<terminal y="0" orientation="w" x="-15"/>
|
||||
<terminal y="15" orientation="s" x="0"/>
|
||||
<terminal y="-14" orientation="n" x="0"/>
|
||||
<terminal y="0" orientation="e" x="15"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -6,11 +6,11 @@
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="machine-manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer"></elementInformation>
|
||||
|
||||
@@ -1,41 +0,0 @@
|
||||
<definition link_type="simple" height="50" width="50" orientation="dyyy" version="0.80" type="element" hotspot_y="24" hotspot_x="17">
|
||||
<uuid uuid="{e9b44fe1-2a19-4d3a-95d9-22cb54906f8b}"/>
|
||||
<names>
|
||||
<name lang="pl">Transoptor 2</name>
|
||||
<name lang="en">Optocoupler 2</name>
|
||||
<name lang="ar">رابط ضوئي</name>
|
||||
<name lang="cs">Optický vazební člen 2</name>
|
||||
<name lang="de">Optokoppler 2</name>
|
||||
<name lang="nl">Opto koppelaar 2</name>
|
||||
<name lang="it">Accoppiatore ottico Fotoaccoppiatore 2</name>
|
||||
<name lang="el">Οπτοζεύκτης 2</name>
|
||||
<name lang="fr">Interface optocoupleur 2</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<polygon x2="4" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="8" y1="-5" y2="-1" y3="-4" antialias="true" x3="13"/>
|
||||
<rect ry="0" y="-10" rx="0" height="21" style="line-style:normal;line-weight:thin;filling:none;color:black" width="45" antialias="false" x="-15"/>
|
||||
<line x2="-2" end1="none" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="8" y1="-5" length2="0.5" y2="-2" antialias="true" length1="1.5" end2="triangle"/>
|
||||
<line x2="-10" end1="none" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="-5" y1="3" length2="1" y2="5" antialias="true" length1="1.5" end2="triangle"/>
|
||||
<line x2="-5" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" y1="-5" length2="1.5" y2="-4" antialias="true" length1="1.5" end2="none"/>
|
||||
<line x2="-5" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-5" y1="-7" length2="1.5" y2="7" antialias="false" length1="1.5" end2="none"/>
|
||||
<polygon x2="4" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="7" y1="1" y2="4" y3="1" antialias="true" x3="13"/>
|
||||
<line x2="-10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" y1="-20" length2="1.5" y2="-5" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="20" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" y1="-20" length2="1.5" y2="-5" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="-2" end1="none" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="7" y1="1" length2="0.5" y2="4" antialias="true" length1="1.5" end2="triangle"/>
|
||||
<line x2="-10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" y1="20" length2="1.5" y2="5" antialias="false" length1="1.5" end2="none"/>
|
||||
<line x2="20" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" y1="20" length2="1.5" y2="5" antialias="false" length1="1.5" end2="none"/>
|
||||
<polygon x2="25" x4="15" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="15" y4="-5" y1="-5" y2="-5" y3="5" antialias="true" x3="20"/>
|
||||
<line x2="25" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="15" y1="5" length2="1.5" y2="5" antialias="false" length1="1.5" end2="none"/>
|
||||
<dynamic_text text_width="-1" y="-40" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" Halignment="AlignLeft" Valignment="AlignTop" uuid="{944d4139-4c85-4637-9d2c-929d88cf5052}" frame="false" rotation="0" x="-30" z="15">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal y="20" orientation="s" x="-10"/>
|
||||
<terminal y="-20" orientation="n" x="20"/>
|
||||
<terminal y="-20" orientation="n" x="-10"/>
|
||||
<terminal y="20" orientation="s" x="20"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,17 @@
|
||||
<definition width="50" version="0.4" hotspot_x="25" hotspot_y="34" height="70" link_type="simple" type="element" orientation="dyyy">
|
||||
<uuid uuid="{1DC3220C-A0F2-4228-8020-63D961975AF4}"/><names>
|
||||
<name lang="ro">piezotransducer</name>
|
||||
<name lang="pl">Przetwornik piezoceramiczny</name>
|
||||
</names>
|
||||
<informations>Author:titus
|
||||
titus0818@yahoo.com</informations>
|
||||
<description>
|
||||
<circle x="-20" y="-20" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="40"/>
|
||||
<circle x="-16" y="-16" antialias="false" style="line-style:normal;line-weight:normal;filling:blue;color:black" diameter="32"/>
|
||||
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="8" x1="0" y2="28" x2="0"/>
|
||||
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-29.0385" x1="0" y2="-17.9615" x2="0"/>
|
||||
<input x="23" y="-23.7054" size="9" rotate="true" text="_" tagg="label"/>
|
||||
<terminal x="0" y="-30" orientation="n"/>
|
||||
<terminal x="0" y="30" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,21 @@
|
||||
<definition width="60" version="0.4" hotspot_x="36" hotspot_y="39" height="80" link_type="simple" type="element" orientation="dyyy">
|
||||
<uuid uuid="{652E6946-4A64-4A05-8750-A8B488AFB9DE}"/><names>
|
||||
<name lang="ro">piezotransducer</name>
|
||||
<name lang="pl">Przetwornik piezoceramiczny</name>
|
||||
</names>
|
||||
<informations>Author:titus
|
||||
titus0818@yahoo.com</informations>
|
||||
<description>
|
||||
<circle x="-20" y="-20" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="40"/>
|
||||
<ellipse width="32" x="-16" y="-17" antialias="false" height="34" style="line-style:normal;line-weight:normal;filling:blue;color:black"/>
|
||||
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10.6" x1="0" y2="27.4" x2="0"/>
|
||||
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-29.2308" x1="0" y2="-18.7692" x2="0"/>
|
||||
<input x="23" y="-23.7054" size="9" rotate="true" text="_" tagg="label"/>
|
||||
<arc width="6" x="-3" y="1" antialias="true" height="33" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="90"/>
|
||||
<arc width="5" x="-2" y="1" antialias="true" height="33" style="line-style:normal;line-weight:normal;filling:none;color:black" start="0" angle="90"/>
|
||||
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-25.875" y2="0" x2="-10.125"/>
|
||||
<terminal x="0" y="-30" orientation="n"/>
|
||||
<terminal x="0" y="30" orientation="s"/>
|
||||
<terminal x="-30" y="0" orientation="w"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,38 +1,19 @@
|
||||
<definition width="40" orientation="dyyy" hotspot_y="14" link_type="simple" version="0.80" height="40" hotspot_x="20" type="element">
|
||||
<uuid uuid="{9e072a82-da11-45c1-b218-89bb3778737c}"/>
|
||||
<names>
|
||||
<name lang="fr">78xx</name>
|
||||
<name lang="en">78xx</name>
|
||||
<name lang="pl">Układ scalony 78xx</name>
|
||||
<definition width="40" orientation="dyyy" height="40" link_type="simple" type="element" hotspot_x="20" hotspot_y="14" version="0.5">
|
||||
<uuid uuid="{10F6ED11-3343-45F9-BE20-F537FB65D156}"/><names>
|
||||
<name lang="ro">78xx</name>
|
||||
<name lang="pl">Układ scalony 78xx</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: Angelescu Constantin
|
||||
<informations>Author: Angelescu Constantin
|
||||
titus0818@yahoo.com</informations>
|
||||
<description>
|
||||
<rect width="30" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-15" y="-10" height="20" rx="0" antialias="false"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x1="-10" y1="10" y2="16" x2="-10" end2="none" length1="1.5" end1="none" antialias="false"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x1="0" y1="10.8333" y2="16.1667" x2="0" end2="none" length1="1.5" end1="none" antialias="false"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x1="10" y1="10.8333" y2="16.1667" x2="10" end2="none" length1="1.5" end1="none" antialias="false"/>
|
||||
<text text="78xx" x="-10" color="#000000" y="7" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<dynamic_text frame="false" Valignment="AlignTop" x="20" text_width="-1" uuid="{2687d3d8-003a-4385-9231-61d5d13e597c}" y="-11.5" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" Halignment="AlignLeft" z="6">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal orientation="s" x="0" uuid="{1172f0ce-993f-4023-abb6-c00a3e190629}" y="20" name=""/>
|
||||
<terminal orientation="s" x="10" uuid="{cb98556d-792d-4c8b-9187-d12608882c9b}" y="20" name=""/>
|
||||
<terminal orientation="s" x="-10" uuid="{6d0dfdc6-2d90-4470-af17-02b20d615a0f}" y="20" name=""/>
|
||||
<rect x="-15" width="30" y="-10" height="20" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line y1="10" y2="16" x1="-10" end1="none" antialias="false" x2="-10" length1="1.5" end2="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line y1="10.8333" y2="16.1667" x1="0" end1="none" antialias="false" x2="0" length1="1.5" end2="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line y1="10.8333" y2="16.1667" x1="10" end1="none" antialias="false" x2="10" length1="1.5" end2="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text x="-10" y="7" text="78xx" size="6"/>
|
||||
<input x="20" y="0" text="_" rotate="true" tagg="label" size="9"/>
|
||||
<terminal x="0" orientation="s" y="20"/>
|
||||
<terminal x="10" orientation="s" y="20"/>
|
||||
<terminal x="-10" orientation="s" y="20"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,53 +0,0 @@
|
||||
<definition type="element" hotspot_x="4" link_type="simple" orientation="dyyy" version="0.80" hotspot_y="4" width="110" height="110">
|
||||
<uuid uuid="{752ddd35-f414-4a80-ba61-75871adfaf61}"/>
|
||||
<names>
|
||||
<name lang="cs">Počítač PC</name>
|
||||
<name lang="de">Rechner</name>
|
||||
<name lang="fr">Ordinateur PC couleur</name>
|
||||
<name lang="en">Computer PC</name>
|
||||
<name lang="nl">Computer PC</name>
|
||||
<name lang="it">Computer PC</name>
|
||||
<name lang="pl">Komputer PC</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<rect x="0" antialias="false" y="0" rx="2" width="100" ry="2" style="line-style:normal;line-weight:normal;filling:HTMLBlueCornflowerBlue;color:black" height="70"/>
|
||||
<dynamic_text rotation="0" uuid="{0c9d986a-69c1-4e58-bac7-41a50693e4e4}" x="3" y="-20.45" Halignment="AlignLeft" text_from="ElementInfo" text_width="-1" frame="false" Valignment="AlignTop" z="2" font="Sans Serif,9,-1,5,50,0,0,0,0,0">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<rect x="0" antialias="false" y="80" rx="0" width="100" ry="0" style="line-style:normal;line-weight:normal;filling:gray;color:black" height="20"/>
|
||||
<circle x="9.5" antialias="true" y="82.5" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="1"/>
|
||||
<circle x="12.5" antialias="true" y="82.5" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="1"/>
|
||||
<polygon y9="70" y6="80" x1="47" y3="78" x7="38" x9="47" style="line-style:normal;line-weight:normal;filling:black;color:black" y4="78" x2="53" y2="70" y5="80" x4="63" x3="53" antialias="true" y1="70" x5="63" y7="78" x8="47" x6="38" y8="78"/>
|
||||
<rect x="67" antialias="false" y="84" rx="0" width="25" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="5"/>
|
||||
<circle x="5.5" antialias="true" y="88.5" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="3"/>
|
||||
<circle x="12" antialias="true" y="89" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="2"/>
|
||||
<circle x="6.5" antialias="true" y="82.5" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="1"/>
|
||||
<rect x="3" antialias="false" y="3" rx="2" width="94" ry="2" style="line-style:normal;line-weight:thin;filling:none;color:black" height="64"/>
|
||||
<dynamic_text rotation="0" uuid="{1b4efefa-c4ea-460f-9c90-01d7705dddfd}" x="20" y="15" Halignment="AlignLeft" text_from="UserText" text_width="-1" frame="false" Valignment="AlignTop" z="19" font="MS Shell Dlg 2,11,-1,5,50,0,0,0,0,0,Normal">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
<terminal uuid="{90be23ab-7aae-4bdb-9082-7122a9af8d97}" x="70" y="100" orientation="s" name=""/>
|
||||
<terminal uuid="{fa16fb1f-4534-441d-9df9-4c6582546ad6}" x="50" y="100" orientation="s" name=""/>
|
||||
<terminal uuid="{73c79a1d-1091-4a06-b37d-707b1287aec1}" x="60" y="100" orientation="s" name=""/>
|
||||
<terminal uuid="{4c269034-e465-4572-a4ff-0cb639a6b45b}" x="40" y="100" orientation="s" name=""/>
|
||||
<terminal uuid="{a595c179-7f78-4867-8008-d94161135130}" x="0" y="90" orientation="w" name=""/>
|
||||
<terminal uuid="{d79ad10e-ef34-434d-859c-d3ec3445521e}" x="100" y="90" orientation="e" name=""/>
|
||||
<terminal uuid="{b77e1735-cb7e-44db-8081-a8dace166c70}" x="30" y="100" orientation="s" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,54 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_x="26" link_type="master" type="element" height="190" version="0.80" hotspot_y="185" width="150">
|
||||
<uuid uuid="{64f745af-eff4-44e7-ae28-1703291d8955}"/>
|
||||
<names>
|
||||
<name lang="pl">Alarm</name>
|
||||
<name lang="en">Alarm</name>
|
||||
<name lang="fr">Alarme</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation show="1" name="type">protection</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>cbh41</informations>
|
||||
<description>
|
||||
<rect antialias="false" x="0" rx="0" height="85" width="120" y="-85" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-15" length2="1.5" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="29" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="5" text_width="-1" Halignment="AlignLeft" y="-44" uuid="{3926ff82-9140-4741-b09d-c8873f205d17}">
|
||||
<text>10</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="-2" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="7" text_width="-1" Halignment="AlignLeft" y="-63" uuid="{8faa4f1d-1ed6-4d65-9670-990d9b4f9be4}">
|
||||
<text>Local</text>
|
||||
</dynamic_text>
|
||||
<text rotation="0" x="58" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text=" kA C" y="-18" color="#000000"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-45" length2="1.5" y2="-45" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-65" length2="1.5" y2="-65" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text rotation="0" x="66" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="A" y="-32" color="#000000"/>
|
||||
<text rotation="0" x="58" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text=" mm²" y="-2" color="#000000"/>
|
||||
<line x1="27" end2="none" antialias="false" x2="27" y1="-139.375" length2="1.5" y2="-120.625" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<arc antialias="true" angle="90" x="-23" height="20" width="100" start="0" y="-120" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<arc antialias="true" angle="90" x="-23" height="20" width="100" start="270" y="-160" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="77" end2="none" antialias="false" x2="77" y1="-149.804" length2="1.5" y2="-110.196" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="31" end2="none" antialias="false" x2="31" y1="-139.232" length2="1.5" y2="-120.768" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="35" end2="none" antialias="false" x2="35" y1="-139.391" length2="1.5" y2="-120.609" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="82.2501" end2="none" antialias="false" x2="102.75" y1="-130" length2="1.5" y2="-130" end1="none" length1="1.5" style="line-style:dotted;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="82" end2="none" antialias="false" x2="104" y1="-140" length2="1.5" y2="-148" end1="none" length1="1.5" style="line-style:dotted;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="82" end2="none" antialias="false" x2="103" y1="-120" length2="1.5" y2="-114" end1="none" length1="1.5" style="line-style:dotted;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="82" end2="none" antialias="false" x2="103" y1="-135" length2="1.5" y2="-138" end1="none" length1="1.5" style="line-style:dotted;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="82" end2="none" antialias="false" x2="103" y1="-125" length2="1.5" y2="-121" end1="none" length1="1.5" style="line-style:dotted;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="30" font="Sans Serif,5,-1,5,50,0,0,0,0,0" z="41" text_width="-1" Halignment="AlignLeft" y="-28.5" uuid="{0cf2cb76-d04a-4b90-9bc2-44cd6d1aae76}">
|
||||
<text>4.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="28" font="Sans Serif,5,-1,5,50,0,0,0,0,0" z="42" text_width="-1" Halignment="AlignLeft" y="-13.5" uuid="{987024af-8043-4eb1-939b-331cbde51715}">
|
||||
<text>3 G1.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="-2" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="43" text_width="-1" Halignment="AlignLeft" y="-81.5" uuid="{4dfe2ab4-9c97-4790-8e49-3f61982d1984}">
|
||||
<text>Alarme</text>
|
||||
</dynamic_text>
|
||||
<line x1="40" end2="none" antialias="false" x2="40" y1="-180" length2="1.5" y2="-140" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="60" end2="none" antialias="false" x2="60" y1="-180" length2="1.5" y2="-142" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="50" end2="none" antialias="false" x2="50" y1="-110" length2="1.5" y2="-118" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal orientation="n" name="" x="60" y="-180" uuid="{8a24b0e5-af93-4b55-a585-2735bf871b4e}"/>
|
||||
<terminal orientation="s" name="" x="50" y="-110" uuid="{492f48b8-61d9-422e-9ca3-9c1c14be9321}"/>
|
||||
<terminal orientation="n" name="" x="40" y="-180" uuid="{1c88072a-41a6-4742-a8bc-2edc31b8c112}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,48 +0,0 @@
|
||||
<definition link_type="master" height="170" version="0.80" orientation="dyyy" type="element" width="130" hotspot_x="5" hotspot_y="165">
|
||||
<uuid uuid="{5e44db96-011d-473e-a5fe-491251b42033}"/>
|
||||
<names>
|
||||
<name lang="pl">Antena</name>
|
||||
<name lang="en">Antenna</name>
|
||||
<name lang="fr">Antenne</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="type" show="1">protection</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>cbh41</informations>
|
||||
<description>
|
||||
<ellipse height="43" antialias="false" style="line-style:normal;line-weight:normal;filling:lightgray;color:black" x="48" width="24" y="-160"/>
|
||||
<rect height="85" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="0" y="-85" width="120" rx="0"/>
|
||||
<line y2="-15" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-15" x1="0" end1="none" length1="1.5"/>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="7" x="29" y="-44" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{be78db24-5e41-4f8b-9df4-8db6b2cb7aba}" text_from="UserText">
|
||||
<text>2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="8" x="-2" y="-63" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{c9db7be2-509a-4bbf-a57e-442a16ea6dc1}" text_from="UserText">
|
||||
<text>Coffret</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" text=" kA C" rotation="0" x="58" y="-18" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<line y2="-45" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-45" x1="0" end1="none" length1="1.5"/>
|
||||
<line y2="-65" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-65" x1="0" end1="none" length1="1.5"/>
|
||||
<text color="#000000" text="A" rotation="0" x="66" y="-30" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" text=" mm²" rotation="0" x="58" y="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<ellipse height="40" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="50" width="20" y="-158"/>
|
||||
<line y2="-128" antialias="false" x2="86" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-118" x1="60" end1="none" length1="1.5"/>
|
||||
<rect height="3" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="82" y="-132" width="4" rx="0"/>
|
||||
<rect height="5" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="80" y="-133" width="2" rx="0"/>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="35" x="30" y="-28.5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{339d5edc-12c4-4bc4-82e7-a3d75ad60465}" text_from="UserText">
|
||||
<text>4.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="36" x="28" y="-13.5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{daeb4642-6352-4272-acd0-2a6a0c58ebca}" text_from="UserText">
|
||||
<text>3 G 1.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="38" x="-2" y="-81.5" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{0516c709-7754-4515-9b92-d333812618bf}" text_from="UserText">
|
||||
<text>Antenne</text>
|
||||
</dynamic_text>
|
||||
<line y2="-116" antialias="false" x2="60" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-110" x1="60" end1="none" length1="1.5"/>
|
||||
<line y2="-150" antialias="false" x2="50" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-160" x1="50" end1="none" length1="1.5"/>
|
||||
<line y2="-150" antialias="false" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-160" x1="70" end1="none" length1="1.5"/>
|
||||
<terminal orientation="s" x="60" name="" y="-110" uuid="{512f7c12-3641-44a1-993f-a6cca9f2b375}"/>
|
||||
<terminal orientation="n" x="50" name="" y="-160" uuid="{a7186089-1b70-4a30-b3a8-1a23d89abb2e}"/>
|
||||
<terminal orientation="n" x="70" name="" y="-160" uuid="{26208b89-66a0-4ff8-a5e4-d5da7fa4eed7}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,39 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_x="14" link_type="simple" type="element" height="50" version="0.80" hotspot_y="14" width="30">
|
||||
<uuid uuid="{644b8f1e-72ef-4929-9fe6-112ec12f62d0}"/>
|
||||
<names>
|
||||
<name lang="cs">Spotřebič na vaření</name>
|
||||
<name lang="pl">Kuchenka elektryczna</name>
|
||||
<name lang="ar">جهاز طبخ</name>
|
||||
<name lang="de">Kochgerät</name>
|
||||
<name lang="en">Cooking Appliance</name>
|
||||
<name lang="el">Μαγειρείο</name>
|
||||
<name lang="nl">Kook apparaat</name>
|
||||
<name lang="it">Cucina</name>
|
||||
<name lang="fr">Appareil de cuisson</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<line x1="-2.3114" end2="none" antialias="false" x2="3.6885" y1="20.7775" length2="1.5" y2="14.7775" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="ElementInfo" rotation="0" x="-7" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="2" text_width="-1" Halignment="AlignLeft" y="11" uuid="{4fb9478e-cab9-4049-bff8-e9d1acf9998a}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line x1="-3.822" end2="none" antialias="false" x2="2.1779" y1="19.0445" length2="1.5" y2="13.0445" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-4.2669" end2="none" antialias="false" x2="0.733" y1="17.733" length2="1.5" y2="12.733" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<circle antialias="true" x="-4.4721" diameter="8.9442" y="12.5279" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-4" end2="none" antialias="false" x2="-1" y1="16" length2="1.5" y2="13" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="1" end2="none" antialias="false" x2="4" y1="21" length2="1.5" y2="18" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-1" end2="none" antialias="false" x2="4" y1="21.0445" length2="1.5" y2="16.0445" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-3" end2="none" antialias="false" x2="3" y1="20" length2="1.5" y2="14" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<polygon x1="-12" antialias="false" y3="24" x2="-12" y1="0" y2="24" x3="12" style="line-style:normal;line-weight:normal;filling:none;color:black" y4="0" x4="12"/>
|
||||
<line x1="-12" end2="none" antialias="false" x2="12" y1="5" length2="1.5" y2="5" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-10" end2="none" antialias="false" x2="-10" y1="-10" length2="1.5" y2="-1" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="10" end2="none" antialias="false" x2="10" y1="-10" length2="1.5" y2="-1" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="0" y1="24" length2="1.5" y2="30" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal orientation="s" name="" x="0" y="30" uuid="{d23d5d6a-748b-48d2-a474-1d0a864cf539}"/>
|
||||
<terminal orientation="n" name="" x="-10" y="-10" uuid="{701b0f84-6e94-4e95-90c6-c3c99772b23e}"/>
|
||||
<terminal orientation="n" name="" x="10" y="-10" uuid="{55aa6d67-e3c4-4b76-9d08-05bf5fc819bd}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,31 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_x="14" link_type="simple" type="element" height="50" version="0.80" hotspot_y="14" width="30">
|
||||
<uuid uuid="{d26a4699-c6af-4e2d-8f8c-a3f5f97f19d6}"/>
|
||||
<names>
|
||||
<name lang="cs">Elektrický spotřebič</name>
|
||||
<name lang="pl">Kuchenka elektryczna</name>
|
||||
<name lang="ar">جهاز كهرومنزلي</name>
|
||||
<name lang="de">Haushaltsgerät</name>
|
||||
<name lang="en">Appliance</name>
|
||||
<name lang="el">Ηλεκτρική συσκευή</name>
|
||||
<name lang="nl">Elektrisch apparaat</name>
|
||||
<name lang="it">Apparecchio elettrico</name>
|
||||
<name lang="fr">Appareil électroménager</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="ElementInfo" rotation="0" x="-7" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="1" text_width="-1" Halignment="AlignLeft" y="11" uuid="{1b114bca-74ea-4b20-aed2-59fc13dce304}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<polygon x1="-12" antialias="false" y3="23" x2="-12" y1="-1" y2="23" x3="12" style="line-style:normal;line-weight:normal;filling:none;color:black" y4="-1" x4="12"/>
|
||||
<text rotation="0" x="-4" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="E" y="14.3333" color="#000000"/>
|
||||
<line x1="-10" end2="none" antialias="false" x2="-10" y1="-10" length2="1.5" y2="-1" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="10" end2="none" antialias="false" x2="10" y1="-1" length2="1.5" y2="-10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="0" y1="30" length2="1.5" y2="23" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal orientation="n" name="" x="10" y="-10" uuid="{f406d716-7aa1-4e8f-a89e-1e6e59511d19}"/>
|
||||
<terminal orientation="s" name="" x="0" y="30" uuid="{0e0f9fc5-4eda-43b8-869e-4961bf1cf69e}"/>
|
||||
<terminal orientation="n" name="" x="-10" y="-10" uuid="{9879b02c-8516-4315-93a8-be77fd0e4d9e}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,35 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_x="14" link_type="simple" type="element" height="50" version="0.80" hotspot_y="14" width="30">
|
||||
<uuid uuid="{68707aa4-7963-462a-82f3-598a9258b361}"/>
|
||||
<names>
|
||||
<name lang="cs">Sušička, sušící skříň</name>
|
||||
<name lang="pl">Suszarka</name>
|
||||
<name lang="ar">مُجفّف ملابس</name>
|
||||
<name lang="de">Trocknungsgerät</name>
|
||||
<name lang="en">Drying cabinet</name>
|
||||
<name lang="el">Στεγνωτήριο</name>
|
||||
<name lang="nl">Droog kast</name>
|
||||
<name lang="it">Asciugatrice</name>
|
||||
<name lang="fr">Armoire sèche-linge</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<arc antialias="true" angle="-180" x="-7.4982" height="4" width="4" start="-90" y="2.5849" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="10" end2="none" antialias="false" x2="10" y1="-10" length2="1.5" y2="-2" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="ElementInfo" rotation="0" x="-8" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="2" text_width="-1" Halignment="AlignLeft" y="10" uuid="{7b43fd44-becd-468c-b542-84326c4e6149}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line x1="4.9763" end2="none" antialias="false" x2="-5.0236" y1="2.5595" length2="1.5" y2="6.5595" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-5.0236" end2="none" antialias="false" x2="4.9763" y1="2.5595" length2="1.5" y2="6.5595" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" x="-2.5" diameter="5" y="13.5" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<polygon x1="-12" antialias="false" y3="23" x2="-12" y1="-1" y2="23" x3="12" style="line-style:normal;line-weight:normal;filling:none;color:black" y4="-1" x4="12"/>
|
||||
<line x1="-10" end2="none" antialias="false" x2="-10" y1="-10" length2="1.5" y2="-2" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<arc antialias="true" angle="-180" x="3.561" height="4" width="4" start="90" y="2.5849" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="0" y1="30" length2="1.5" y2="24" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal orientation="n" name="" x="10" y="-10" uuid="{77acd157-1173-402e-9413-595418ceee77}"/>
|
||||
<terminal orientation="n" name="" x="-10" y="-10" uuid="{d97c53e8-65d0-463a-8f18-9401a58b8505}"/>
|
||||
<terminal orientation="s" name="" x="0" y="30" uuid="{38c6fa73-fb9d-40ca-9e0c-9d36d1b10e40}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,55 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_x="5" link_type="master" type="element" height="180" version="0.80" hotspot_y="175" width="130">
|
||||
<uuid uuid="{95d02d2a-67a7-44d9-ab53-41d950479593}"/>
|
||||
<names>
|
||||
<name lang="cs">Automatické zalévání</name>
|
||||
<name lang="pl">Automatyczne podlewanie</name>
|
||||
<name lang="de">Sprinkleranlage</name>
|
||||
<name lang="en">self watering</name>
|
||||
<name lang="el">Αυτόματο πότισμα</name>
|
||||
<name lang="nl">Watersproei automatisch</name>
|
||||
<name lang="it">Irrigazione automatica</name>
|
||||
<name lang="fr">Arrosage auto</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation show="1" name="type">protection</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>cbh41</informations>
|
||||
<description>
|
||||
<circle antialias="false" x="68" diameter="4" y="-172" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<arc antialias="true" angle="-180" x="61" height="20" width="20" start="-180" y="-121" style="line-style:dotted;line-weight:normal;filling:none;color:blue"/>
|
||||
<arc antialias="true" angle="-180" x="61" height="30" width="30" start="-180" y="-127" style="line-style:dotted;line-weight:normal;filling:none;color:blue"/>
|
||||
<arc antialias="true" angle="-180" x="24.5" height="30" width="35" start="-180" y="-136" style="line-style:dotted;line-weight:normal;filling:none;color:blue"/>
|
||||
<arc antialias="true" angle="-180" x="29" height="30" width="30" start="-180" y="-127" style="line-style:dotted;line-weight:normal;filling:none;color:blue"/>
|
||||
<arc antialias="true" angle="-180" x="60.5" height="30" width="35" start="-180" y="-136" style="line-style:dotted;line-weight:normal;filling:none;color:blue"/>
|
||||
<rect antialias="false" x="0" rx="0" height="85" width="120" y="-85" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-15" length2="1.5" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="29" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="15" text_width="-1" Halignment="AlignLeft" y="-44" uuid="{f5d0d42d-846a-460b-8592-5cb097cef780}">
|
||||
<text>10</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="-2" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="17" text_width="-1" Halignment="AlignLeft" y="-63" uuid="{06d3d817-69b0-42bd-ae67-4c9b81deeb48}">
|
||||
<text>Extérieur</text>
|
||||
</dynamic_text>
|
||||
<text rotation="0" x="58" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text=" kA C" y="-18" color="#000000"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-45" length2="1.5" y2="-45" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-65" length2="1.5" y2="-65" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text rotation="0" x="66" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="A" y="-30" color="#000000"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-170" length2="1.5" y2="-170" end1="none" length1="1.5" style="line-style:dashed;line-weight:normal;filling:none;color:green"/>
|
||||
<text rotation="0" x="58" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text=" mm²" y="-2" color="#000000"/>
|
||||
<rect antialias="false" x="58" rx="0" height="10" width="4" y="-110" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0"/>
|
||||
<arc antialias="true" angle="-180" x="39" height="20" width="20" start="-180" y="-121" style="line-style:dotted;line-weight:normal;filling:none;color:blue"/>
|
||||
<line x1="60" end2="none" antialias="false" x2="60" y1="-112" length2="1.5" y2="-120" end1="none" length1="1.5" style="line-style:dotted;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="28" font="Sans Serif,5,-1,5,50,0,0,0,0,0" z="38" text_width="-1" Halignment="AlignLeft" y="-13.5" uuid="{c037dec3-fe15-4814-be65-30468aef6228}">
|
||||
<text>3 G 1.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="30" font="Sans Serif,5,-1,5,50,0,0,0,0,0" z="39" text_width="-1" Halignment="AlignLeft" y="-28.5" uuid="{30efeddb-776e-4929-92c8-7361db87d04c}">
|
||||
<text>4.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="-2" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="40" text_width="-1" Halignment="AlignLeft" y="-81.5" uuid="{7a9ec58c-521c-47af-be4d-c2a4ffea7a8b}">
|
||||
<text>Arrosage auto</text>
|
||||
</dynamic_text>
|
||||
<circle antialias="false" x="48" diameter="4" y="-172" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<terminal orientation="n" name="" x="50" y="-170" uuid="{93358b8a-3493-4b52-bfd9-baa2684bb631}"/>
|
||||
<terminal orientation="n" name="" x="70" y="-170" uuid="{4e7c8c50-f27c-43ed-b45d-91d7946a0ded}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,47 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_x="5" link_type="simple" type="element" height="190" version="0.80" hotspot_y="186" width="130">
|
||||
<uuid uuid="{c3ed926c-4aca-41a3-868f-b1c75686558b}"/>
|
||||
<names>
|
||||
<name lang="pl">Budynek</name>
|
||||
<name lang="fr">Bât Ext</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>cbh41</informations>
|
||||
<description>
|
||||
<rect antialias="false" x="0" rx="0" height="85" width="120" y="-85" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-15" length2="1.5" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="29" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="3" text_width="-1" Halignment="AlignLeft" y="-44" uuid="{33dea6e8-e7e1-4ef0-8cc3-db6e4a573bb1}">
|
||||
<text>10</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="ElementInfo" rotation="0" x="-2" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="4" text_width="-1" Halignment="AlignLeft" y="-63" uuid="{a175bc77-aa1e-45e2-ab56-e57ce0318cdc}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text rotation="0" x="58" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text=" kA C" y="-18" color="#000000"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-45" length2="1.5" y2="-45" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-65" length2="1.5" y2="-65" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text rotation="0" x="66" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="A" y="-32" color="#000000"/>
|
||||
<text rotation="0" x="2" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="Bâtiment extérieur" y="-69" color="#000000"/>
|
||||
<line x1="60" end2="none" antialias="false" x2="35" y1="-160" length2="1.5" y2="-135" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="60" end2="none" antialias="false" x2="85" y1="-160" length2="1.5" y2="-135" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="40" end2="none" antialias="false" x2="40" y1="-140" length2="1.5" y2="-100" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="40" end2="none" antialias="false" x2="80" y1="-100" length2="1.5" y2="-100" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="80" end2="none" antialias="false" x2="80" y1="-100" length2="1.5" y2="-140" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="50" end2="none" antialias="false" x2="50" y1="-100" length2="1.5" y2="-125" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="50" end2="none" antialias="false" x2="70" y1="-125" length2="1.5" y2="-125" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="70" end2="none" antialias="false" x2="70" y1="-125" length2="1.5" y2="-100" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="58" font="Sans Serif,5,-1,5,50,0,0,0,0,0" z="20" text_width="-1" Halignment="AlignLeft" y="-12" uuid="{98b54f6f-8e80-4046-bb09-7016295d7409}">
|
||||
<text> mm²</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="28" font="Sans Serif,5,-1,5,50,0,0,0,0,0" z="21" text_width="-1" Halignment="AlignLeft" y="-13.5" uuid="{ef241b91-044f-472a-a358-68eadb931921}">
|
||||
<text>3 G 1.5</text>
|
||||
</dynamic_text>
|
||||
<line x1="50" end2="none" antialias="false" x2="50" y1="-180" length2="1.5" y2="-150" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="30" font="Sans Serif,5,-1,5,50,0,0,0,0,0" z="22" text_width="-1" Halignment="AlignLeft" y="-28.5" uuid="{dc60b908-290f-42a9-b529-d1695dc364b2}">
|
||||
<text>4.5</text>
|
||||
</dynamic_text>
|
||||
<line x1="70" end2="none" antialias="false" x2="70" y1="-180" length2="1.5" y2="-151" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal orientation="n" name="" x="50" y="-180" uuid="{723765bc-b612-4e1a-92ef-567119429f9d}"/>
|
||||
<terminal orientation="n" name="" x="70" y="-180" uuid="{8c1aa559-1491-45cb-aa15-e8bbff0f376e}"/>
|
||||
<terminal orientation="s" name="" x="60" y="-100" uuid="{68237cd7-8357-4a9c-8e50-9f8f1d6debe7}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,50 +0,0 @@
|
||||
<definition hotspot_x="5" orientation="dyyy" hotspot_y="176" width="130" version="0.80" type="element" height="180" link_type="master">
|
||||
<uuid uuid="{c996c312-8a23-4674-9b48-26e6af99d28d}"/>
|
||||
<names>
|
||||
<name lang="fr">Bât Ext mono</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation show="1" name="type">protection</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>cbh41</informations>
|
||||
<description>
|
||||
<rect y="-85" x="0" rx="0" width="120" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="85"/>
|
||||
<line length1="1.5" y1="-15" end1="none" end2="none" x1="0" length2="1.5" y2="-15" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<dynamic_text y="-44" x="29" Valignment="AlignTop" text_width="-1" uuid="{2ee02e1d-a5ea-421a-b439-e3a0ead41c27}" Halignment="AlignLeft" frame="false" text_from="UserText" z="5" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0">
|
||||
<text>10</text>
|
||||
</dynamic_text>
|
||||
<text y="-18" text=" kA C" x="58" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
|
||||
<dynamic_text y="-63" x="-2" Valignment="AlignTop" text_width="-1" uuid="{70653ff3-98e3-4dd1-bff0-f5db820e5260}" Halignment="AlignLeft" frame="false" text_from="UserText" z="8" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0">
|
||||
<text>Local</text>
|
||||
</dynamic_text>
|
||||
<line length1="1.5" y1="-45" end1="none" end2="none" x1="0" length2="1.5" y2="-45" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line length1="1.5" y1="-65" end1="none" end2="none" x1="0" length2="1.5" y2="-65" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<text y="-32" text="A" x="66" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0"/>
|
||||
<line length1="1.5" y1="-160" end1="none" end2="none" x1="60" length2="1.5" y2="-135" x2="35" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line length1="1.5" y1="-160" end1="none" end2="none" x1="60" length2="1.5" y2="-135" x2="85" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line length1="1.5" y1="-140" end1="none" end2="none" x1="40" length2="1.5" y2="-100" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line length1="1.5" y1="-100" end1="none" end2="none" x1="40" length2="1.5" y2="-100" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line length1="1.5" y1="-100" end1="none" end2="none" x1="80" length2="1.5" y2="-140" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line length1="1.5" y1="-100" end1="none" end2="none" x1="50" length2="1.5" y2="-125" x2="50" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line length1="1.5" y1="-125" end1="none" end2="none" x1="50" length2="1.5" y2="-125" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line length1="1.5" y1="-125" end1="none" end2="none" x1="70" length2="1.5" y2="-100" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line length1="1.5" y1="-170" end1="none" end2="none" x1="50" length2="1.5" y2="-150" x2="50" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line length1="1.5" y1="-170" end1="none" end2="none" x1="70" length2="1.5" y2="-150" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<dynamic_text y="-12" x="58" Valignment="AlignTop" text_width="-1" uuid="{be33f398-4de3-4bb9-b2b9-2917aa820c30}" Halignment="AlignLeft" frame="false" text_from="UserText" z="38" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0">
|
||||
<text> mm²</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-13.5" x="28" Valignment="AlignTop" text_width="-1" uuid="{b19f3d05-3fd9-4e86-8784-f9d35c2fb994}" Halignment="AlignLeft" frame="false" text_from="UserText" z="39" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0">
|
||||
<text>3 G 1.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-28.5" x="30" Valignment="AlignTop" text_width="-1" uuid="{52e4fc03-f95f-49d0-8bf9-b0325fd4ad7f}" Halignment="AlignLeft" frame="false" text_from="UserText" z="40" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0">
|
||||
<text>4.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-81.5" x="-2" Valignment="AlignTop" text_width="-1" uuid="{d70238fe-9e72-4b3f-a3ab-491ba8e3372c}" Halignment="AlignLeft" frame="false" text_from="UserText" z="41" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0">
|
||||
<text>Bâtiment extérieur</text>
|
||||
</dynamic_text>
|
||||
<terminal y="-100" x="60" name="" orientation="s" uuid="{7952be86-3060-4cc0-a781-ac00d7e59a10}"/>
|
||||
<terminal y="-170" x="70" name="" orientation="n" uuid="{2c7f1e9b-9e1f-4e67-b3f6-57af9d1e7f67}"/>
|
||||
<terminal y="-170" x="50" name="" orientation="n" uuid="{523f90d3-a9c6-4f37-a8c3-a96ba3d9e03d}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,58 +0,0 @@
|
||||
<definition link_type="master" height="180" version="0.80" orientation="dyyy" type="element" width="130" hotspot_x="5" hotspot_y="176">
|
||||
<uuid uuid="{9527f307-9bab-4d23-87c3-4dde383da0b1}"/>
|
||||
<names>
|
||||
<name lang="fr">Bât Ext tétra</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="state" show="1">NO</kindInformation>
|
||||
<kindInformation name="number" show="1">1</kindInformation>
|
||||
<kindInformation name="type" show="1">protection</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>cbh41</informations>
|
||||
<description>
|
||||
<rect height="85" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="0" y="-85" width="120" rx="0"/>
|
||||
<line y2="-15" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-15" x1="0" end1="none" length1="1.5"/>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="5" x="29" y="-44" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{4b855775-4f05-41f6-964d-af3d50648616}" text_from="UserText">
|
||||
<text>10</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="8" x="-2" y="-63" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{ee69f19a-aa88-4d09-b8c2-251b0b9160bb}" text_from="UserText">
|
||||
<text>Local</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" text=" kA C" rotation="0" x="58" y="-18" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<line y2="-45" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-45" x1="0" end1="none" length1="1.5"/>
|
||||
<line y2="-65" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-65" x1="0" end1="none" length1="1.5"/>
|
||||
<text color="#000000" text="A" rotation="0" x="66" y="-32" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line y2="-135" antialias="false" x2="35" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-160" x1="60" end1="none" length1="1.5"/>
|
||||
<line y2="-135" antialias="false" x2="85" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-160" x1="60" end1="none" length1="1.5"/>
|
||||
<line y2="-100" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-140" x1="40" end1="none" length1="1.5"/>
|
||||
<line y2="-100" antialias="false" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-100" x1="40" end1="none" length1="1.5"/>
|
||||
<line y2="-140" antialias="false" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-100" x1="80" end1="none" length1="1.5"/>
|
||||
<line y2="-125" antialias="false" x2="50" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-100" x1="50" end1="none" length1="1.5"/>
|
||||
<line y2="-125" antialias="false" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-125" x1="50" end1="none" length1="1.5"/>
|
||||
<line y2="-100" antialias="false" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-125" x1="70" end1="none" length1="1.5"/>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="38" x="58" y="-12" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{b8a96a74-0120-4a4b-9888-aad6659014e8}" text_from="UserText">
|
||||
<text> mm²</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="39" x="28" y="-13.5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{c4ccafa4-888e-4e44-9016-106e84325944}" text_from="UserText">
|
||||
<text>5 G 1.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="40" x="30" y="-28.5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{3fa6afc2-190e-4e7c-9bfa-98670672c4ba}" text_from="UserText">
|
||||
<text>4.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="43" x="-2" y="-81.5" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{ffb45cb9-e8fe-408b-888f-7dd064777805}" text_from="UserText">
|
||||
<text>Bâtiment extérieur</text>
|
||||
</dynamic_text>
|
||||
<line y2="-150" antialias="false" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-170" x1="30" end1="none" length1="1.5"/>
|
||||
<line y2="-140" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-150" x1="30" end1="none" length1="1.5"/>
|
||||
<line y2="-150" antialias="false" x2="90" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-170" x1="90" end1="none" length1="1.5"/>
|
||||
<line y2="-140" antialias="false" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-150" x1="90" end1="none" length1="1.5"/>
|
||||
<line y2="-170" antialias="false" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-150" x1="70" end1="none" length1="1.5"/>
|
||||
<line y2="-150" antialias="false" x2="50" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-170" x1="50" end1="none" length1="1.5"/>
|
||||
<terminal orientation="n" x="70" name="" y="-170" uuid="{ec57a9a7-8d5e-4732-a80c-83c85021092b}"/>
|
||||
<terminal orientation="n" x="30" name="" y="-170" uuid="{19497264-2af0-4205-b907-99031a635c85}"/>
|
||||
<terminal orientation="n" x="90" name="" y="-170" uuid="{8de1c58e-eaa6-4cf4-9e39-eacc3a4576ef}"/>
|
||||
<terminal orientation="s" x="60" name="" y="-100" uuid="{925343e0-1d6c-4115-bf99-c0855e070aef}"/>
|
||||
<terminal orientation="n" x="50" name="" y="-170" uuid="{1316653b-2662-438c-a097-889c1abc779b}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,58 +0,0 @@
|
||||
<definition link_type="master" height="180" version="0.80" orientation="dyyy" type="element" width="130" hotspot_x="5" hotspot_y="175">
|
||||
<uuid uuid="{4c4ea7f3-fbb1-49e7-b2f8-29861c4b1941}"/>
|
||||
<names>
|
||||
<name lang="fr">Garage tétra</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="type" show="1">protection</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>cbh41</informations>
|
||||
<description>
|
||||
<rect height="85" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="0" y="-85" width="120" rx="0"/>
|
||||
<line y2="-15" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-15" x1="0" end1="none" length1="1.5"/>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="7" x="29" y="-44" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{93785c08-d9be-4e10-ae44-6bb57a1ab334}" text_from="UserText">
|
||||
<text>20</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="9" x="-2" y="-63" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{7ab45588-79e9-4f06-a28d-bcb59598d0ad}" text_from="UserText">
|
||||
<text>Local</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" text=" kA C" rotation="0" x="58" y="-18" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<line y2="-45" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-45" x1="0" end1="none" length1="1.5"/>
|
||||
<line y2="-65" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-65" x1="0" end1="none" length1="1.5"/>
|
||||
<text color="#000000" text="A" rotation="0" x="66" y="-32" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" text=" mm²" rotation="0" x="58" y="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<line y2="-135" antialias="false" x2="35" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-160" x1="60" end1="none" length1="1.5"/>
|
||||
<line y2="-135" antialias="false" x2="85" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-160" x1="60" end1="none" length1="1.5"/>
|
||||
<line y2="-100" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-140" x1="40" end1="none" length1="1.5"/>
|
||||
<line y2="-100" antialias="false" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-100" x1="40" end1="none" length1="1.5"/>
|
||||
<line y2="-140" antialias="false" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-100" x1="80" end1="none" length1="1.5"/>
|
||||
<line y2="-125" antialias="false" x2="45.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-100" x1="45.5" end1="none" length1="1.5"/>
|
||||
<line y2="-125" antialias="false" x2="74.069" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-125" x1="45.931" end1="none" length1="1.5"/>
|
||||
<line y2="-100" antialias="false" x2="74.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-125" x1="74.5" end1="none" length1="1.5"/>
|
||||
<line y2="-120" antialias="false" x2="74.07" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-120" x1="45.93" end1="none" length1="1.5"/>
|
||||
<line y2="-110" antialias="false" x2="74" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-110" x1="46" end1="none" length1="1.5"/>
|
||||
<line y2="-105" antialias="false" x2="74" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-105" x1="46" end1="none" length1="1.5"/>
|
||||
<line y2="-115" antialias="false" x2="74" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-115" x1="46" end1="none" length1="1.5"/>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="45" x="28" y="-13.5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{346daaa4-dacb-4520-8d5a-b5e03bb83ab9}" text_from="UserText">
|
||||
<text>5 G 2.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="46" x="30" y="-28.5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{cda1ee8d-ccfe-4045-99f4-34e8ed9519d4}" text_from="UserText">
|
||||
<text>4.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="47" x="-2" y="-81.5" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{525b40a5-81a4-4abb-8cba-715f568df8ee}" text_from="UserText">
|
||||
<text>Garage</text>
|
||||
</dynamic_text>
|
||||
<line y2="-150" antialias="false" x2="50" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-170" x1="50" end1="none" length1="1.5"/>
|
||||
<line y2="-150" antialias="false" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-170" x1="70" end1="none" length1="1.5"/>
|
||||
<line y2="-155" antialias="false" x2="90" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-170" x1="90" end1="none" length1="1.5"/>
|
||||
<line y2="-140" antialias="false" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-155" x1="90" end1="none" length1="1.5"/>
|
||||
<line y2="-155" antialias="false" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-165" x1="30" end1="none" length1="1.5"/>
|
||||
<line y2="-140" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-155" x1="30" end1="none" length1="1.5"/>
|
||||
<terminal orientation="n" x="50" name="" y="-170" uuid="{fd224ec8-a206-4f1b-9c6a-77d1c8d720af}"/>
|
||||
<terminal orientation="s" x="60" name="" y="-100" uuid="{cab960c8-9a88-4778-93e8-8870d1a45ec6}"/>
|
||||
<terminal orientation="n" x="70" name="" y="-170" uuid="{4ff9ca97-d39b-4b69-8c29-64878c5a8216}"/>
|
||||
<terminal orientation="n" x="90" name="" y="-170" uuid="{ea3d5e12-550a-4020-9d77-7f68df1c346f}"/>
|
||||
<terminal orientation="n" x="30" name="" y="-170" uuid="{c0a75599-da2d-4ba3-acf9-6712290142f9}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,52 +0,0 @@
|
||||
<definition link_type="master" height="180" version="0.80" orientation="dyyy" type="element" width="130" hotspot_x="5" hotspot_y="175">
|
||||
<uuid uuid="{e68e1a21-3537-49c1-9cf3-f3008f0ab0dd}"/>
|
||||
<names>
|
||||
<name lang="fr">Garage mono</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="type" show="1">protection</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>cbh41</informations>
|
||||
<description>
|
||||
<rect height="85" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="0" y="-85" width="120" rx="0"/>
|
||||
<line y2="-15" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-15" x1="0" end1="none" length1="1.5"/>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="5" x="29" y="-44" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{f19b9e1b-98bc-45e5-92ab-189a7e4e2838}" text_from="UserText">
|
||||
<text>20</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="7" x="-2" y="-63" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{138a96ef-cbe0-4d4d-b4fb-8ab1fdf0854d}" text_from="UserText">
|
||||
<text>Local</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" text=" kA C" rotation="0" x="58" y="-18" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<line y2="-45" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-45" x1="0" end1="none" length1="1.5"/>
|
||||
<line y2="-65" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-65" x1="0" end1="none" length1="1.5"/>
|
||||
<text color="#000000" text="A" rotation="0" x="66" y="-32" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" text=" mm²" rotation="0" x="58" y="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<line y2="-135" antialias="false" x2="35" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-160" x1="60" end1="none" length1="1.5"/>
|
||||
<line y2="-135" antialias="false" x2="85" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-160" x1="60" end1="none" length1="1.5"/>
|
||||
<line y2="-100" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-140" x1="40" end1="none" length1="1.5"/>
|
||||
<line y2="-100" antialias="false" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-100" x1="40" end1="none" length1="1.5"/>
|
||||
<line y2="-140" antialias="false" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-100" x1="80" end1="none" length1="1.5"/>
|
||||
<line y2="-125" antialias="false" x2="45.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-100" x1="45.5" end1="none" length1="1.5"/>
|
||||
<line y2="-125" antialias="false" x2="74.069" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-125" x1="45.931" end1="none" length1="1.5"/>
|
||||
<line y2="-100" antialias="false" x2="74.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-125" x1="74.5" end1="none" length1="1.5"/>
|
||||
<line y2="-120" antialias="false" x2="74.07" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-120" x1="45.93" end1="none" length1="1.5"/>
|
||||
<line y2="-110" antialias="false" x2="74" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-110" x1="46" end1="none" length1="1.5"/>
|
||||
<line y2="-105" antialias="false" x2="74" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-105" x1="46" end1="none" length1="1.5"/>
|
||||
<line y2="-115" antialias="false" x2="74" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-115" x1="46" end1="none" length1="1.5"/>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="44" x="28" y="-13.5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{9c6a7f7e-d349-42e4-aa30-02e3a7e15864}" text_from="UserText">
|
||||
<text>3 G 2.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="45" x="30" y="-28.5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{1f606b45-67be-47ab-89c1-18efe3f94d96}" text_from="UserText">
|
||||
<text>4.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="46" x="-2" y="-81.5" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{9ea95a07-4ac2-4b77-8b1b-8a191e151ae4}" text_from="UserText">
|
||||
<text>Garage</text>
|
||||
</dynamic_text>
|
||||
<line y2="-150" antialias="false" x2="50" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-170" x1="50" end1="none" length1="1.5"/>
|
||||
<line y2="-150" antialias="false" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-170" x1="70" end1="none" length1="1.5"/>
|
||||
<terminal orientation="s" x="60" name="" y="-100" uuid="{eeadc2ae-971c-415d-b9c9-fe4b697c4638}"/>
|
||||
<terminal orientation="n" x="70" name="" y="-170" uuid="{4ea8a41e-55c8-4157-8c16-fb88c5f997d1}"/>
|
||||
<terminal orientation="n" x="50" name="" y="-170" uuid="{9be095b9-8adc-4198-989d-a7f5cc1d6f27}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,35 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_x="14" link_type="simple" type="element" height="50" version="0.80" hotspot_y="14" width="30">
|
||||
<uuid uuid="{7c96412d-f0f7-4c70-863f-5ae966f3dd96}"/>
|
||||
<names>
|
||||
<name lang="cs">Ohřívač vody</name>
|
||||
<name lang="pl">Ogrzewacz wody</name>
|
||||
<name lang="ar">سخّان ماء</name>
|
||||
<name lang="de">Wasserkocher</name>
|
||||
<name lang="en">Water heater</name>
|
||||
<name lang="el">Θερμοσίφωνας</name>
|
||||
<name lang="nl">Water verwarmer</name>
|
||||
<name lang="it">Scalda acqua</name>
|
||||
<name lang="fr">Chauffe-eau</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="ElementInfo" rotation="0" x="-30" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="1" text_width="-1" Halignment="AlignLeft" y="25" uuid="{8253482a-16e0-454f-befd-3c7214306f46}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line x1="10" end2="none" antialias="false" x2="10" y1="-10" length2="1.5" y2="4" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-10" end2="none" antialias="false" x2="10" y1="17" length2="1.5" y2="17" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-10" end2="none" antialias="false" x2="10" y1="5" length2="1.5" y2="5" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-11" end2="none" antialias="false" x2="11" y1="14" length2="1.5" y2="14" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-11" end2="none" antialias="false" x2="11" y1="8" length2="1.5" y2="8" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-12" end2="none" antialias="false" x2="12" y1="11" length2="1.5" y2="11" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" x="-12.0416" diameter="24.0832" y="-1.0415" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-10" end2="none" antialias="false" x2="-10" y1="-10" length2="1.5" y2="4" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="0" y1="24" length2="1.5" y2="30" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal orientation="s" name="" x="0" y="30" uuid="{95b5d1dd-00b1-463a-933f-84bbd0c11e8a}"/>
|
||||
<terminal orientation="n" name="" x="10" y="-10" uuid="{e1f7aa54-6f70-4e5a-8b3a-6d2fc74fc2b9}"/>
|
||||
<terminal orientation="n" name="" x="-10" y="-10" uuid="{9b3b1807-62ba-40d9-a324-4f476afe692e}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,37 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_x="14" link_type="simple" type="element" height="50" version="0.80" hotspot_y="14" width="30">
|
||||
<uuid uuid="{f72df4b4-4e4d-4e20-901c-75ea3cc7834b}"/>
|
||||
<names>
|
||||
<name lang="cs">Ohřívač vody</name>
|
||||
<name lang="pl">Ogrzewacz wody</name>
|
||||
<name lang="ar">سخّان ماء</name>
|
||||
<name lang="de">Wasserkocher</name>
|
||||
<name lang="en">Water heater</name>
|
||||
<name lang="el">Θερμοσίφωνας</name>
|
||||
<name lang="nl">Water verwarmer</name>
|
||||
<name lang="it">Scalda acqua</name>
|
||||
<name lang="fr">Chauffe-eau</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<arc antialias="true" angle="180" x="-10" height="6" width="20" start="180" y="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-10" end2="none" antialias="false" x2="-10" y1="-9" length2="1.5" y2="3" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect antialias="false" x="-10" rx="0" height="20" width="20" y="2" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0"/>
|
||||
<arc antialias="true" angle="180" x="-10" height="6" width="20" start="0" y="-1" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect antialias="false" x="-3" rx="0" height="2" width="6" y="26" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="ElementInfo" rotation="0" x="-5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" z="6" text_width="-1" Halignment="AlignLeft" y="3" uuid="{4785e635-176e-4562-a504-0f83a242a5a5}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="ElementInfo" rotation="0" x="10" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="7" text_width="-1" Halignment="AlignLeft" y="-21.5" uuid="{0641b1d7-e0d5-4c21-93f6-325ebbbb1b3a}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line x1="10" end2="none" antialias="false" x2="10" y1="2" length2="1.5" y2="-10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="0" y1="30" length2="1.5" y2="28" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal orientation="n" name="" x="-10" y="-10" uuid="{80b6b49f-8b0d-42d9-9149-0cc4fec0d899}"/>
|
||||
<terminal orientation="n" name="" x="10" y="-10" uuid="{b967796c-6ea3-48d1-a424-fd7d0d3173ab}"/>
|
||||
<terminal orientation="s" name="" x="0" y="30" uuid="{af811e7b-30e5-4a2c-8f61-d908c0b42254}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,57 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_x="5" link_type="simple" type="element" height="170" version="0.80" hotspot_y="165" width="130">
|
||||
<uuid uuid="{025e6dae-2241-4413-b228-c43061357843}"/>
|
||||
<names>
|
||||
<name lang="pl">Klimatyzator</name>
|
||||
<name lang="fr">Climatiseur</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>cbh41</informations>
|
||||
<description>
|
||||
<line x1="70" end2="none" antialias="false" x2="70" y1="-160" length2="1.5" y2="-150" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect antialias="false" x="0" rx="0" height="85" width="120" y="-85" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-15" length2="1.5" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="29" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="3" text_width="-1" Halignment="AlignLeft" y="-44" uuid="{1ecc481b-f69a-46ab-ad0d-5bb4f2de15cc}">
|
||||
<text>20</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="ElementInfo" rotation="0" x="-2" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="4" text_width="-1" Halignment="AlignLeft" y="-63" uuid="{573c3e20-8ee2-49d7-93e2-8b5797b08b08}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text rotation="0" x="58" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text=" kA C" y="-18" color="#000000"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-45" length2="1.5" y2="-45" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="120" y1="-65" length2="1.5" y2="-65" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text rotation="0" x="66" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="A" y="-32" color="#000000"/>
|
||||
<text rotation="0" x="58" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text=" mm²" y="-2" color="#000000"/>
|
||||
<rect antialias="false" x="25" rx="0" height="50" width="70" y="-150" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0"/>
|
||||
<arc antialias="true" angle="-360" x="33" height="30" width="30" start="90" y="-140" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="41" end2="none" antialias="false" x2="55" y1="-138" length2="1.5" y2="-138" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="38" end2="none" antialias="false" x2="58" y1="-136" length2="1.5" y2="-136" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="36" end2="none" antialias="false" x2="59" y1="-134" length2="1.5" y2="-134" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="35" end2="none" antialias="false" x2="61" y1="-132" length2="1.5" y2="-132" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="34" end2="none" antialias="false" x2="62" y1="-130" length2="1.5" y2="-130" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="33" end2="none" antialias="false" x2="62" y1="-128" length2="1.5" y2="-128" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="33" end2="none" antialias="false" x2="62" y1="-126" length2="1.5" y2="-126" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="33" end2="none" antialias="false" x2="63" y1="-124" length2="1.5" y2="-124" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="33" end2="none" antialias="false" x2="62" y1="-122" length2="1.5" y2="-122" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="34" end2="none" antialias="false" x2="62" y1="-120" length2="1.5" y2="-120" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="35" end2="none" antialias="false" x2="61" y1="-118" length2="1.5" y2="-118" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="36" end2="none" antialias="false" x2="60" y1="-116" length2="1.5" y2="-116" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="38" end2="none" antialias="false" x2="58" y1="-114" length2="1.5" y2="-114" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="41" end2="none" antialias="false" x2="55" y1="-112" length2="1.5" y2="-112" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="27" text_width="-1" Halignment="AlignLeft" y="-82.5" uuid="{facf0c3c-e71b-49e1-8f73-382c017b478c}">
|
||||
<text>Climatiseur</text>
|
||||
</dynamic_text>
|
||||
<line x1="50" end2="none" antialias="false" x2="50" y1="-160" length2="1.5" y2="-150" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect antialias="false" x="34" rx="0" height="1" width="2" y="-99" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0"/>
|
||||
<rect antialias="false" x="84" rx="0" height="1" width="2" y="-99" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0"/>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="28" font="Sans Serif,5,-1,5,50,0,0,0,0,0" z="31" text_width="-1" Halignment="AlignLeft" y="-13.5" uuid="{08eecd9e-1608-4a77-a849-b11c01cdaf7a}">
|
||||
<text>3 G 2.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="UserText" rotation="0" x="30" font="Sans Serif,5,-1,5,50,0,0,0,0,0" z="32" text_width="-1" Halignment="AlignLeft" y="-28.5" uuid="{4130e06b-6af1-446a-b3df-a8259baf7283}">
|
||||
<text>4.5</text>
|
||||
</dynamic_text>
|
||||
<terminal orientation="n" name="" x="50" y="-160" uuid="{2e112237-75df-47b3-bc8f-15fd0e89489f}"/>
|
||||
<terminal orientation="s" name="" x="60" y="-100" uuid="{e323c17f-1635-4b73-898e-d07399277e39}"/>
|
||||
<terminal orientation="n" name="" x="70" y="-160" uuid="{f827446e-eb79-4330-9e32-765e5f38e931}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,32 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_x="40" link_type="simple" type="element" height="70" version="0.80" hotspot_y="4" width="80">
|
||||
<uuid uuid="{97e71587-b54c-4f55-9d40-fe045bf1c807}"/>
|
||||
<names>
|
||||
<name lang="pl">Klimatyzator</name>
|
||||
<name lang="fr">Climatiseur</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>cbh41</informations>
|
||||
<description>
|
||||
<line x1="10" end2="none" antialias="false" x2="10" y1="0" length2="1.5" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect antialias="false" x="-35" rx="0" height="50" width="70" y="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0"/>
|
||||
<arc antialias="true" angle="-360" x="-27" height="30" width="30" start="90" y="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-19" end2="none" antialias="false" x2="-5" y1="22" length2="1.5" y2="22" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-22" end2="none" antialias="false" x2="-2" y1="24" length2="1.5" y2="24" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-24" end2="none" antialias="false" x2="-1" y1="26" length2="1.5" y2="26" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-25" end2="none" antialias="false" x2="1" y1="28" length2="1.5" y2="28" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-26" end2="none" antialias="false" x2="2" y1="30" length2="1.5" y2="30" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-27" end2="none" antialias="false" x2="2" y1="32" length2="1.5" y2="32" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-27" end2="none" antialias="false" x2="2" y1="34" length2="1.5" y2="34" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-27" end2="none" antialias="false" x2="3" y1="36" length2="1.5" y2="36" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-27" end2="none" antialias="false" x2="2" y1="38" length2="1.5" y2="38" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-26" end2="none" antialias="false" x2="2" y1="40" length2="1.5" y2="40" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-25" end2="none" antialias="false" x2="1" y1="42" length2="1.5" y2="42" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-24" end2="none" antialias="false" x2="0" y1="44" length2="1.5" y2="44" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-22" end2="none" antialias="false" x2="-2" y1="46" length2="1.5" y2="46" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-19" end2="none" antialias="false" x2="-5" y1="48" length2="1.5" y2="48" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x1="-10" end2="none" antialias="false" x2="-10" y1="0" length2="1.5" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal orientation="n" name="" x="10" y="0" uuid="{f827446e-eb79-4330-9e32-765e5f38e931}"/>
|
||||
<terminal orientation="n" name="" x="-10" y="0" uuid="{2e112237-75df-47b3-bc8f-15fd0e89489f}"/>
|
||||
<terminal orientation="s" name="" x="0" y="60" uuid="{e323c17f-1635-4b73-898e-d07399277e39}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,60 +0,0 @@
|
||||
<definition link_type="master" height="170" version="0.80" orientation="dyyy" type="element" width="130" hotspot_x="5" hotspot_y="165">
|
||||
<uuid uuid="{e9461cc3-ab42-4f52-b0ff-402a747655d8}"/>
|
||||
<names>
|
||||
<name lang="fr">Climatiseur</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="state" show="1">NO</kindInformation>
|
||||
<kindInformation name="number" show="1">1</kindInformation>
|
||||
<kindInformation name="type" show="1">protection</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>cbh41</informations>
|
||||
<description>
|
||||
<rect height="85" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="0" y="-85" width="120" rx="0"/>
|
||||
<line y2="-15" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-15" x1="0" end1="none" length1="1.5"/>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="5" x="29" y="-44" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{2bd35a07-8288-44bb-9a32-7a4ec92d5c24}" text_from="UserText">
|
||||
<text>20</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="7" x="-2" y="-63" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{128fe0cd-b0ef-46fd-9b4f-67fa2261ae3f}" text_from="UserText">
|
||||
<text>Local</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" text=" kA C" rotation="0" x="58" y="-18" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<line y2="-45" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-45" x1="0" end1="none" length1="1.5"/>
|
||||
<line y2="-65" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-65" x1="0" end1="none" length1="1.5"/>
|
||||
<text color="#000000" text="A" rotation="0" x="66" y="-32" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" text=" mm²" rotation="0" x="58" y="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<rect height="50" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="25" y="-150" width="70" rx="0"/>
|
||||
<arc height="30" angle="-360" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" x="33" y="-140" width="30"/>
|
||||
<line y2="-138" antialias="false" x2="55" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-138" x1="41" end1="none" length1="1.5"/>
|
||||
<line y2="-136" antialias="false" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-136" x1="38" end1="none" length1="1.5"/>
|
||||
<line y2="-134" antialias="false" x2="59" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-134" x1="36" end1="none" length1="1.5"/>
|
||||
<line y2="-132" antialias="false" x2="61" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-132" x1="35" end1="none" length1="1.5"/>
|
||||
<line y2="-130" antialias="false" x2="62" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-130" x1="34" end1="none" length1="1.5"/>
|
||||
<line y2="-128" antialias="false" x2="62" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-128" x1="33" end1="none" length1="1.5"/>
|
||||
<line y2="-126" antialias="false" x2="62" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-126" x1="33" end1="none" length1="1.5"/>
|
||||
<line y2="-124" antialias="false" x2="63" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-124" x1="33" end1="none" length1="1.5"/>
|
||||
<line y2="-122" antialias="false" x2="62" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-122" x1="33" end1="none" length1="1.5"/>
|
||||
<line y2="-120" antialias="false" x2="62" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-120" x1="34" end1="none" length1="1.5"/>
|
||||
<line y2="-118" antialias="false" x2="61" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-118" x1="35" end1="none" length1="1.5"/>
|
||||
<line y2="-116" antialias="false" x2="60" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-116" x1="36" end1="none" length1="1.5"/>
|
||||
<line y2="-114" antialias="false" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-114" x1="38" end1="none" length1="1.5"/>
|
||||
<line y2="-112" antialias="false" x2="55" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" y1="-112" x1="41" end1="none" length1="1.5"/>
|
||||
<rect height="1" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="34" y="-99" width="2" rx="0"/>
|
||||
<rect height="1" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="84" y="-99" width="2" rx="0"/>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="50" x="28" y="-13.5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{660ee140-6290-4d5e-9123-1d714d85eb58}" text_from="UserText">
|
||||
<text>3 G 2.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="51" x="30" y="-28.5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{e1fc9e50-47b6-4fd3-b26f-a15262446caa}" text_from="UserText">
|
||||
<text>4.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="52" x="-2" y="-81.5" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{c25037af-4f82-47c2-9cfe-5fff711f2bcb}" text_from="UserText">
|
||||
<text>Climatiseur</text>
|
||||
</dynamic_text>
|
||||
<line y2="-150" antialias="false" x2="50" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-160" x1="50" end1="none" length1="1.5"/>
|
||||
<line y2="-150" antialias="false" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-160" x1="70" end1="none" length1="1.5"/>
|
||||
<terminal orientation="s" x="60" name="" y="-95" uuid="{358ab2d3-eccd-468b-b18b-7f0dd4581035}"/>
|
||||
<terminal orientation="n" x="70" name="" y="-160" uuid="{c912c700-4dde-4f89-86e6-5e8ab6d60704}"/>
|
||||
<terminal orientation="n" x="50" name="" y="-160" uuid="{6d55186b-c0e1-4e17-a38f-a2d32fb35469}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,52 +0,0 @@
|
||||
<definition orientation="dyyy" link_type="master" type="element" height="170" width="130" hotspot_y="165" version="0.80" hotspot_x="5">
|
||||
<uuid uuid="{87c9a4d9-0c9e-4118-afa6-5740d4469de4}"/>
|
||||
<names>
|
||||
<name lang="fr">Climatiseur Unité Int</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation show="1" name="type">protection</kindInformation>
|
||||
<kindInformation show="1" name="number">1</kindInformation>
|
||||
<kindInformation show="1" name="state">NO</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>cbh41</informations>
|
||||
<description>
|
||||
<rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" height="12" width="66" ry="0" x="27" rx="0" y="-148"/>
|
||||
<rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" height="85" width="120" ry="0" x="0" rx="0" y="-85"/>
|
||||
<line antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" y2="-15" length2="1.5" length1="1.5" x2="120" y1="-15" x1="0" end2="none"/>
|
||||
<dynamic_text font="Sans Serif,7,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" text_width="-1" frame="false" x="29" z="8" uuid="{69d819bf-0e9f-46bf-97fd-61f8e5b6b0d1}" text_from="UserText" y="-44" Halignment="AlignLeft">
|
||||
<text>16</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,7,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" text_width="-1" frame="false" x="-2" z="9" uuid="{20747a6d-c636-4fde-b6bf-3ea713eb4368}" text_from="UserText" y="-63" Halignment="AlignLeft">
|
||||
<text>Local</text>
|
||||
</dynamic_text>
|
||||
<text text=" kA C" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="58" y="-18" color="#000000"/>
|
||||
<line antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" y2="-45" length2="1.5" length1="1.5" x2="120" y1="-45" x1="0" end2="none"/>
|
||||
<line antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" y2="-65" length2="1.5" length1="1.5" x2="120" y1="-65" x1="0" end2="none"/>
|
||||
<text text="A" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" x="66" y="-32" color="#000000"/>
|
||||
<text text=" mm²" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="58" y="-2" color="#000000"/>
|
||||
<rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" height="50" width="70" ry="0" x="25" rx="0" y="-150"/>
|
||||
<line antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" y2="-147" length2="1.5" length1="1.5" x2="93" y1="-147" x1="27" end2="none"/>
|
||||
<line antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" y2="-145" length2="1.5" length1="1.5" x2="93" y1="-145" x1="27" end2="none"/>
|
||||
<line antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" y2="-143" length2="1.5" length1="1.5" x2="93" y1="-143" x1="27" end2="none"/>
|
||||
<line antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" y2="-141" length2="1.5" length1="1.5" x2="93" y1="-141" x1="27" end2="none"/>
|
||||
<line antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" y2="-139" length2="1.5" length1="1.5" x2="93" y1="-139" x1="27" end2="none"/>
|
||||
<line antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" y2="-137" length2="1.5" length1="1.5" x2="93" y1="-137" x1="27" end2="none"/>
|
||||
<rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" height="1" width="2" ry="0" x="34" rx="0" y="-99"/>
|
||||
<rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" height="1" width="2" ry="0" x="84" rx="0" y="-99"/>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" text_width="-1" frame="false" x="28" z="42" uuid="{4dfb2bae-d25a-4e4d-be54-c0f978f3c1f2}" text_from="UserText" y="-13.5" Halignment="AlignLeft">
|
||||
<text>3 G 1.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,5,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" text_width="-1" frame="false" x="30" z="43" uuid="{14bbebcc-464b-41a3-a3c2-5f3aa2a401b5}" text_from="UserText" y="-28.5" Halignment="AlignLeft">
|
||||
<text>4.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,7,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" text_width="-1" frame="false" x="-2" z="44" uuid="{27c9656b-1f3e-4778-a487-f3c52b26c30d}" text_from="UserText" y="-81.5" Halignment="AlignLeft">
|
||||
<text>Climatiseur Unité Int.</text>
|
||||
</dynamic_text>
|
||||
<line antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" y2="-150" length2="1.5" length1="1.5" x2="50" y1="-160" x1="50" end2="none"/>
|
||||
<line antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" y2="-150" length2="1.5" length1="1.5" x2="70" y1="-160" x1="70" end2="none"/>
|
||||
<terminal orientation="n" name="" x="70" uuid="{144d8081-1cbf-4fff-9227-290d6baa887f}" y="-160"/>
|
||||
<terminal orientation="s" name="" x="60" uuid="{cb015e43-949c-4f32-b8b6-3667c144e8ff}" y="-100"/>
|
||||
<terminal orientation="n" name="" x="50" uuid="{775e3f50-23c1-42f9-9d94-8968521d6b0e}" y="-160"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,42 +0,0 @@
|
||||
<definition orientation="dyyy" hotspot_x="14" link_type="simple" type="element" height="50" version="0.80" hotspot_y="14" width="30">
|
||||
<uuid uuid="{d127476d-ed64-4ffb-a4d4-f35decfc1903}"/>
|
||||
<names>
|
||||
<name lang="cs">Mraznička, mrazák, mrazicí skříň</name>
|
||||
<name lang="pl">Zamrażarka</name>
|
||||
<name lang="ar">مُجمّد</name>
|
||||
<name lang="de">Gefriergerät</name>
|
||||
<name lang="en">Freezer</name>
|
||||
<name lang="el">Καταψύκτης</name>
|
||||
<name lang="nl">Vriezer</name>
|
||||
<name lang="it">Congelatore</name>
|
||||
<name lang="fr">Congélateur</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<dynamic_text Valignment="AlignTop" frame="false" text_from="ElementInfo" rotation="0" x="-8" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="1" text_width="-1" Halignment="AlignLeft" y="9" uuid="{357d20d9-92af-4291-b57f-a49ffc57ce9b}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line x1="-2" end2="none" antialias="false" x2="2" y1="17" length2="1.5" y2="13" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="5" end2="none" antialias="false" x2="9" y1="12" length2="1.5" y2="8" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon x1="-12" antialias="false" y3="23" x2="-12" y1="-1" y2="23" x3="12" style="line-style:normal;line-weight:normal;filling:none;color:black" y4="-1" x4="12"/>
|
||||
<line x1="-2" end2="none" antialias="false" x2="2" y1="13" length2="1.5" y2="17" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="5" end2="none" antialias="false" x2="9" y1="8" length2="1.5" y2="12" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-9" end2="none" antialias="false" x2="-5" y1="12" length2="1.5" y2="8" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-3" end2="none" antialias="false" x2="3" y1="15" length2="1.5" y2="15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="4" end2="none" antialias="false" x2="10" y1="10" length2="1.5" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-9" end2="none" antialias="false" x2="-5" y1="8" length2="1.5" y2="12" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="0" y1="12" length2="1.5" y2="18" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="7" end2="none" antialias="false" x2="7" y1="7" length2="1.5" y2="13" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-10" end2="none" antialias="false" x2="-4" y1="10" length2="1.5" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-7" end2="none" antialias="false" x2="-7" y1="7" length2="1.5" y2="13" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="-10" end2="none" antialias="false" x2="-10" y1="-10" length2="1.5" y2="-1" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="10" end2="none" antialias="false" x2="10" y1="-2" length2="1.5" y2="-10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" end2="none" antialias="false" x2="0" y1="30" length2="1.5" y2="24" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal orientation="n" name="" x="10" y="-10" uuid="{b6819b17-30fc-43a5-93c7-e2e364c1ec86}"/>
|
||||
<terminal orientation="s" name="" x="0" y="30" uuid="{cc159b63-6d07-4c5a-a56c-14d8fbe1c12f}"/>
|
||||
<terminal orientation="n" name="" x="-10" y="-10" uuid="{b6819b17-30fc-43a5-93c7-e2e364c1ec86}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,51 +0,0 @@
|
||||
<definition link_type="simple" height="190" version="0.80" orientation="dyyy" type="element" width="130" hotspot_x="5" hotspot_y="185">
|
||||
<uuid uuid="{735adfe1-fb12-46dd-9b00-2086aaeb92ba}"/>
|
||||
<names>
|
||||
<name lang="pl">Zamrażarka</name>
|
||||
<name lang="fr">Congélateur</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>CBH41</informations>
|
||||
<description>
|
||||
<line y2="-145" antialias="false" x2="56" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-145" x1="46" end1="none" length1="1.5"/>
|
||||
<line y2="-160" antialias="false" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-180" x1="70" end1="none" length1="1.5"/>
|
||||
<line y2="-140" antialias="false" x2="63" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-150" x1="63" end1="none" length1="1.5"/>
|
||||
<line y2="-145" antialias="false" x2="68" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-145" x1="58" end1="none" length1="1.5"/>
|
||||
<rect height="85" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="0" y="-85" width="120" rx="0"/>
|
||||
<line y2="-15" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-15" x1="0" end1="none" length1="1.5"/>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="6" x="29" y="-44" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{6b39a473-1fb2-4083-bccd-0c99a7ed6bdf}" text_from="UserText">
|
||||
<text>20</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="7" x="-2" y="-63" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{ba6da1de-f7fb-4bcb-a913-ebb0e375b7ad}" text_from="ElementInfo">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text color="#000000" text=" kA C" rotation="0" x="58" y="-18" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<line y2="-45" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-45" x1="0" end1="none" length1="1.5"/>
|
||||
<line y2="-65" antialias="false" x2="120" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-65" x1="0" end1="none" length1="1.5"/>
|
||||
<text color="#000000" text="A" rotation="0" x="66" y="-30" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" text="Congélateur" rotation="0" x="2" y="-69" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" text=" mm²" rotation="0" x="58" y="-2" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<rect height="70" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="30" y="-160" width="60" rx="0"/>
|
||||
<line y2="-160" antialias="false" x2="50" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-180" x1="50" end1="none" length1="1.5"/>
|
||||
<rect height="10" antialias="false" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="34" y="-150" width="2" rx="0"/>
|
||||
<line y2="-142" antialias="false" x2="78" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-148" x1="72" end1="none" length1="1.5"/>
|
||||
<line y2="-142" antialias="false" x2="72" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-148" x1="78" end1="none" length1="1.5"/>
|
||||
<line y2="-145" antialias="false" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-145" x1="70" end1="none" length1="1.5"/>
|
||||
<line y2="-140" antialias="false" x2="75" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-150" x1="75" end1="none" length1="1.5"/>
|
||||
<line y2="-140" antialias="false" x2="51" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-150" x1="51" end1="none" length1="1.5"/>
|
||||
<line y2="-148" antialias="false" x2="66" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-142" x1="60" end1="none" length1="1.5"/>
|
||||
<line y2="-148" antialias="false" x2="54" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-142" x1="48" end1="none" length1="1.5"/>
|
||||
<line y2="-142" antialias="false" x2="54" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-148" x1="48" end1="none" length1="1.5"/>
|
||||
<line y2="-142" antialias="false" x2="66" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y1="-148" x1="60" end1="none" length1="1.5"/>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="27" x="30" y="-28.5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{171be8f8-5a71-40e9-8768-332ab2ddbed1}" text_from="UserText">
|
||||
<text>4.5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="28" x="28" y="-13.5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{32031689-6cad-4d5f-bf84-be443d644419}" text_from="UserText">
|
||||
<text>3 G 2.5</text>
|
||||
</dynamic_text>
|
||||
<terminal orientation="n" x="50" name="" y="-180" uuid="{52825f3a-c55b-44ea-b134-d51eeccdc603}"/>
|
||||
<terminal orientation="n" x="70" name="" y="-180" uuid="{56f6b90b-679d-4c53-acd0-0b8cc594dabc}"/>
|
||||
<terminal orientation="s" x="60" name="" y="-90" uuid="{a7b499d7-0dab-4562-89e0-ff3a5d2dd063}"/>
|
||||
</description>
|
||||
</definition>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user