Compare commits

..

1 Commits

Author SHA1 Message Date
joshua
de2f161566 Add a combo box to change the QPicture scale of element picture
This is a test commit to see if we can fix the wrong scale of element in
some screen size.:
Add a QComboBox into the QToolBar of the diagram editor to change the
current scale factor of the element QPicture.
2021-04-17 09:50:32 +02:00
1678 changed files with 138508 additions and 168404 deletions

View File

@@ -154,52 +154,6 @@ Alternatively, you can export to vector (svg) or pixel (png, jpg, bmp) format im
* conductors num can be exported to csv file.
* ***
Nomenclature
A new nomenclature tool appears in the menu: project -> Add a nomenclature.
The nomenclature is presented in the form of a configurable table separated into two parts: the display (the form) and the content (the background).
- Display: the size and position of the table, the margins between text and the table cell, the alignment of the text in the cells and the font. The configuration of the table headers and the table itself are separate.
- Content: the information to display in the table and the order in which it should be displayed.
![](https://download.tuxfamily.org/qet/images_depeche_linuxfr/08/dialogue_nomenclature.png "nomenclature dialogue")
In order to speed up the establishment of a nomenclature, it is possible to export / import the display and content configurations separately. This is the "Configuration" part that can be seen in the photos above.
Behind the scenes, an SQLite database does the work, so setting up the content is nothing more or less than an SQL query created using a dialog (screenshot by right).
The SQL query is configured as follows (from top to bottom in the screenshot):
- “Available information”: the information to display;
- "Filter": filter the information (is not empty, is empty, contains, does not contain, is equal to, is not equal to) only one filter can be applied per information, it is not possible combine several;
- "Type of elements": allows you to filter on what type of element you want to obtain information.
At the bottom, a checkmark "SQL query" allows you to edit a personalized query, if the basic options are not sufficient.
When a nomenclature is too large to be contained in a single folio, it is possible to separate it on several folios, the tables of each folio are then linked together. When creating a nomenclature, this option is activated by default, which has the effect of adding the necessary number of folios, adding a table in each of them and linking them together.
Finally two buttons are available in the property panel:
- "Fit the table to the folio": positions and adjusts the size and determines the number of rows in the table in relation to the folio;
- "Apply geometry to all tables linked to this one": applies the three properties mentioned above to all linked tables in order to save time and maintain aesthetic consistency.
And to finish a table
![](https://download.tuxfamily.org/qet/images_depeche_linuxfr/08/tableau.png "table")
Summary
The old summary has been completely removed from the code in order to make room for the new one which is exactly the same as the nomenclature (a large amount of the code is common), with the exception of the SQL query (and its dialog to configure it) which offers specific information for editing a summary.
Export of the internal database
The database used by the nomenclature and the summary can be exported in a “.sqlite” file.
Currently this is irrelevant, as the function was created during development for debugging purposes, we left it.
Note that the database will become increasingly important in the future of Qet.
Export of the wiring list
In order to be able to use the wiring number printers more easily, the names of conductors can be exported in CSV format, the export respects the quantity of conductors in order to print the right quantity of numbers, for example a potential numbered 240 composed of 3 wires will give 6 × 240 (2 numbers per wire × 3 wires) in the CSV.
### Story
The QElectroTech project was founded in 2007 by two french students, Xavier and Benoit.

View File

@@ -78,17 +78,18 @@
]
},
{
"name": "python3-PySimpleGUI",
"buildsystem": "simple",
"build-commands": [
"pip3 install --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} PySimpleGUI"
],
"name": "python3.6.0",
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/d0/c3/c1ce811a1e48d5e0f2df0b393ff189fae4842ec840bb6e4db79c8da55e74/PySimpleGUI-4.41.2.tar.gz",
"sha256": "cf42d9f61f28c8e790a9c031ce900a9cee5fd2f950da2f055ed36bbc487dcf11"
"type": "archive",
"url": "https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tar.xz",
"sha256": "b0c5f904f685e32d9232f7bdcbece9819a892929063b6e385414ad2dd6a23622"
}
],
"config-opts": ["--enable-shared"],
"post-install": [
"chmod +w ${FLATPAK_DEST}/lib/libpython3.6m.so.1.0",
"chmod +w ${FLATPAK_DEST}/lib/libpython3.so"
]
},
{
@@ -100,10 +101,25 @@
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/45/be/d5940d365ebf256e490bc6c10837244e0b8dda08a7d790691767263c318d/qet_tb_generator-1.2.5.tar.gz",
"sha256": "37c3298602244f3152fbb7601caba9b4862bac782991fbb472eab91afb70d09c"
"url": "https://files.pythonhosted.org/packages/9e/c3/aaad3309a5f2ca08e2fa0ab01123bb6fafb15a92854bff88042039192a67/qet_tb_generator-1.1.7.tar.gz",
"sha256": "f626ab7bf4d9091fc85f63d33136585e611272b347499b448ece4e33cc04eeed"
}
]
},
{
"name": "DXFtoQET-2020-1",
"buildsystem": "qmake",
"sources": [
{
"type": "git",
"url": "https://github.com/qelectrotech/DXFtoQET-2020.git",
"commit": "01fbb2afe0fe66782cb1d1f901c73616c7d5299d"
}
],
"post-install": [
"mkdir -p ${FLATPAK_DEST}/bin",
"cp DXFtoQET ${FLATPAK_DEST}/bin/"
]
}
]
}

View File

@@ -60,7 +60,6 @@ parts:
plugin: python
python-version: python3
source: https://github.com/qelectrotech/qet_tb_generator.git
python-packages: [PySimpleGUI]
stage-packages:
- python3-lxml
- python3-tk

View File

@@ -113,6 +113,9 @@ set(QET_SRC_FILES
${QET_DIR}/sources/conductorsegmentprofile.h
${QET_DIR}/sources/configdialog.cpp
${QET_DIR}/sources/configdialog.h
${QET_DIR}/sources/configpage.h
${QET_DIR}/sources/configpages.cpp
${QET_DIR}/sources/configpages.h
${QET_DIR}/sources/createdxf.cpp
${QET_DIR}/sources/createdxf.h
${QET_DIR}/sources/diagramcommands.cpp
@@ -158,6 +161,8 @@ set(QET_SRC_FILES
${QET_DIR}/sources/main.cpp
${QET_DIR}/sources/newelementwizard.cpp
${QET_DIR}/sources/newelementwizard.h
${QET_DIR}/sources/projectconfigpages.cpp
${QET_DIR}/sources/projectconfigpages.h
${QET_DIR}/sources/projectview.cpp
${QET_DIR}/sources/projectview.h
${QET_DIR}/sources/qetapp.cpp
@@ -576,13 +581,9 @@ set(QET_SRC_FILES
${QET_DIR}/sources/ui/titleblockpropertieswidget.h
${QET_DIR}/sources/ui/xrefpropertieswidget.cpp
${QET_DIR}/sources/ui/xrefpropertieswidget.h
${QET_DIR}/sources/ui/configpage/configpage.h
${QET_DIR}/sources/ui/configpage/configpages.cpp
${QET_DIR}/sources/ui/configpage/configpages.h
${QET_DIR}/sources/ui/configpage/generalconfigurationpage.cpp
${QET_DIR}/sources/ui/configpage/generalconfigurationpage.h
${QET_DIR}/sources/ui/configpage/projectconfigpages.cpp
${QET_DIR}/sources/ui/configpage/projectconfigpages.h
${QET_DIR}/sources/undocommand/addelementtextcommand.cpp
${QET_DIR}/sources/undocommand/addelementtextcommand.h

View File

@@ -1,23 +1,17 @@
<definition width="20" version="0.90" type="element" height="20" hotspot_y="9" link_type="simple" hotspot_x="9">
<uuid uuid="{1eefef79-1c23-413b-873a-3d84f4aa5c25}"/>
<definition width="20" height="20" hotspot_y="9" type="element" link_type="simple" hotspot_x="9" version="0.60">
<uuid uuid="{079913f8-18b5-4524-84bd-aadf75dfefbf}"/>
<names>
<name lang="fr">connexion</name>
<name lang="en">connection</name>
<name lang="cs">Bod</name>
<name lang="de">Verbindung</name>
<name lang="hu">Keresztezés pont alakzatban</name>
</names>
<elementInformations/>
<informations></informations>
<description>
<circle y="-2" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false" diameter="4" x="-2"/>
<dynamic_text y="-14.5" Valignment="AlignTop" keep_visual_rotation="false" text_from="ElementInfo" uuid="{2aef950d-c62d-4d3c-939b-3e81653d5244}" Halignment="AlignLeft" x="-11" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" z="2" text_width="-1" frame="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal y="0" type="Generic" uuid="{9cc2fc56-976f-49ac-a0f8-63eb85f716c2}" orientation="e" x="2" name=""/>
<terminal y="0" type="Generic" uuid="{3c4b4f5e-98a2-4daa-9a47-40b8e018166e}" orientation="w" x="-2" name=""/>
<terminal y="2" type="Generic" uuid="{8d99aa04-def0-4573-a0e8-41229ed2f1dc}" orientation="s" x="0" name=""/>
<terminal y="-2" type="Generic" uuid="{f2e49ff6-ee59-492e-a6ad-82708479afd6}" orientation="n" x="0" name=""/>
<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>

View File

@@ -1,24 +1,22 @@
<definition type="element" width="30" hotspot_y="12" version="0.90" height="30" link_type="simple" hotspot_x="14">
<uuid uuid="{9b3513fd-694f-4fc7-8b7e-66b733b9b4e1}"/>
<definition hotspot_x="14" height="30" link_type="simple" width="30" version="0.80" type="element" hotspot_y="12">
<uuid uuid="{0b6817fe-dd44-42a8-8e7c-3c110d13b8a2}"/>
<names>
<name lang="hu">Egyesítő négy vezetékhez</name>
<name lang="de">Klemmstelle (3)</name>
<name lang="cs">Všestranný spoj</name>
<name lang="hu">Egyesítő négy vezetékhez</name>
<name lang="fr">
Connecteur pour quatre fils</name>
</names>
<elementInformations/>
<informations></informations>
<description>
<dynamic_text frame="false" text_width="-1" rotation="0" Halignment="AlignLeft" y="-12" x="-13" keep_visual_rotation="true" uuid="{14c0b70c-c028-49ef-bf72-3c3c9cd64669}" Valignment="AlignTop" z="2" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo">
<dynamic_text Valignment="AlignTop" x="-13" text_from="ElementInfo" text_width="-1" z="2" uuid="{14c0b70c-c028-49ef-bf72-3c3c9cd64669}" y="-12" rotation="0" frame="false" Halignment="AlignLeft" font="Sans Serif,9,-1,5,50,0,0,0,0,0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon x1="-10" y2="0" x4="5" y3="5" x3="0" x5="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" y4="0" antialias="false" x2="-5" y5="0" closed="false"/>
<line x1="0" y2="10" length2="1.5" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y1="-5" antialias="false" x2="0"/>
<terminal type="Generic" name="" y="0" x="10" uuid="{06bf5c9f-6986-45bf-b11f-02e876abc4b8}" orientation="e"/>
<terminal type="Generic" name="" y="-5" x="0" uuid="{33c03677-8555-4b42-ae2c-4b4308978086}" orientation="n"/>
<terminal type="Generic" name="" y="0" x="-10" uuid="{95bef6e9-343e-45d7-9705-4aa81f62bed0}" orientation="w"/>
<terminal type="Generic" name="" y="10" x="0" uuid="{e9329e22-255b-4763-9dc6-65da277e1ac7}" orientation="s"/>
<polygon x1="-10" y5="0" x3="0" x5="10" y2="0" y3="5" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x4="5" x2="-5" antialias="false" y4="0" y1="0"/>
<line x1="0" end1="none" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" length1="1.5" antialias="false" end2="none" y1="-5" length2="1.5"/>
<terminal x="10" orientation="e" uuid="{06bf5c9f-6986-45bf-b11f-02e876abc4b8}" y="0" name=""/>
<terminal x="0" orientation="n" uuid="{33c03677-8555-4b42-ae2c-4b4308978086}" y="-5" name=""/>
<terminal x="-10" orientation="w" uuid="{95bef6e9-343e-45d7-9705-4aa81f62bed0}" y="0" name=""/>
<terminal x="0" orientation="s" uuid="{e9329e22-255b-4763-9dc6-65da277e1ac7}" y="10" name=""/>
</description>
</definition>

View File

@@ -1,34 +1,31 @@
<definition height="50" hotspot_y="25" type="element" link_type="master" hotspot_x="23" version="0.90" width="40">
<uuid uuid="{b0c301a0-f0d5-4a66-888a-66e550fd63c9}"/>
<definition type="element" 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="hu">Időzítő relé</name>
<name lang="cs">Časové relé</name>
<name lang="en">Timer</name>
<name lang="fr">Relais temporisé</name>
</names>
<kindInformations>
<kindInformation name="type">coil</kindInformation>
<kindInformation show="1" name="type">coil</kindInformation>
</kindInformations>
<elementInformations/>
<informations></informations>
<description>
<rect height="15" x="-14" y="-8" antialias="false" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" width="28"/>
<rect height="15" x="-20" y="-8" antialias="false" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" ry="0" width="5"/>
<dynamic_text x="-45" y="-12" keep_visual_rotation="true" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" Halignment="AlignLeft" z="3" Valignment="AlignTop" text_width="-1" uuid="{bf273769-c856-4d5c-a56a-6a014b357999}" rotation="0" text_from="ElementInfo">
<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" y="-10" color="#000000" text="A1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="1" y="15" color="#000000" text="A2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-9" y="-10" color="#000000" text="S" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<line end1="none" end2="none" length2="1.5" antialias="false" x2="0" y2="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" y1="-8" length1="1.5"/>
<line end1="none" end2="none" length2="1.5" antialias="false" x2="0" y2="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" y1="7" length1="1.5"/>
<line end1="none" end2="none" length2="1.5" antialias="false" x2="-10" y2="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" y1="-8" length1="1.5"/>
<dynamic_text x="-9" y="-9" keep_visual_rotation="true" font="Sans Serif,5,-1,5,50,0,0,0,0,0" frame="false" Halignment="AlignLeft" z="10" Valignment="AlignTop" text_width="-1" uuid="{02030033-c6b1-4a95-b990-74fa2f7d147d}" rotation="0" text_from="UserText">
<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 x="0" y="15" type="Generic" orientation="s" uuid="{84fa8673-63b5-4398-a8ee-cb421df0aca5}" name=""/>
<terminal x="0" y="-15" type="Generic" orientation="n" uuid="{d0ca8801-050e-4160-abd8-eee62c44e9bf}" name=""/>
<terminal x="-10" y="-15" type="Generic" orientation="n" uuid="{ea11c065-8d86-4041-b907-2cd28b877069}" name=""/>
<terminal orientation="s" x="0" y="15"/>
<terminal orientation="n" x="0" y="-15"/>
<terminal orientation="n" x="-10" y="-15"/>
</description>
</definition>

View File

@@ -9,7 +9,6 @@
<name lang="es"> Relé insensible a la CA</name>
<name lang="nl">relais ongevoelig voor wisselspanning</name>
<name lang="el">Ρελέ με αντοχή σε AC</name>
<name lang="hu">AC-ra érzéketlen relé</name>
<name lang="be">Relais ongevoelig voor AC (wisselspanning)</name>
</names>
<kindInformations>

View File

@@ -10,7 +10,6 @@
<name lang="cs">Polarizované relé</name>
<name lang="es">Relé polarizado</name>
<name lang="nl">relay polair</name>
<name lang="hu">Polarizált relé</name>
<name lang="be">Relais gepolariseerd</name>
</names>
<kindInformations>

View File

@@ -9,7 +9,6 @@
<name lang="cs">Rychlé relé</name>
<name lang="es">Relé rapido</name>
<name lang="nl">relais snel</name>
<name lang="hu">Gyors működésű relé</name>
</names>
<kindInformations>
<kindInformation name="type" show="1">coil</kindInformation>

View File

@@ -8,7 +8,6 @@
<name lang="es">Relé de remanencia</name>
<name lang="cs">Bistabilní remanentní relé</name>
<name lang="nl">remanent relais</name>
<name lang="hu">Remanencia relé</name>
</names>
<kindInformations>
<kindInformation name="type" show="1">coil</kindInformation>

View File

@@ -4,7 +4,6 @@
<name lang="fr">Relais à mise au repos retardée</name>
<name lang="es">Relé con retardo de apertura</name>
<name lang="nl">spoel afvalvertraagd</name>
<name lang="hu">Nyugvó (elejtés) késleltetésű relé</name>
<name lang="cs">Relé se zpožděným vypnutím</name>
<name lang="de">Relais rückfallverzögert</name>
<name lang="it">Relè ritardato all'apertura</name>

View File

@@ -9,7 +9,6 @@
<name lang="es">Relé de trabajo y reposo retardado</name>
<name lang="cs">Relé se zpožděným zapnutím a vypnutím</name>
<name lang="nl">spoel opkom en afval vertraagd</name>
<name lang="hu">Meghúzás és elengedés késleltetésű relé</name>
</names>
<kindInformations>
<kindInformation name="type" show="1">coil</kindInformation>

View File

@@ -9,7 +9,6 @@
<name lang="es">Relé de sobrecarga termica</name>
<name lang="cs">Tepelné relé</name>
<name lang="nl">Thermisch relais</name>
<name lang="hu">Thermikus túlterhelés védelmi relé</name>
</names>
<kindInformations>
<kindInformation name="type" show="1">coil</kindInformation>

View File

@@ -7,7 +7,6 @@
<name lang="cs">Relé se zpožděným zapnutím</name>
<name lang="de">Relais ansprechverzögert</name>
<name lang="it">Relè ritardato alla chiusura</name>
<name lang="hu">Meghúzás késleltetésű relé</name>
<name lang="el">Πηνίο χρονικού, καθυστέρηση ενεργοποίησης</name>
<name lang="pl">Przekaźnik działający ze zwłoką przy wzbudzeniu</name>
</names>

View File

@@ -8,7 +8,6 @@
<name lang="pl">Przekaźnik z blokadą mechaniczną</name>
<name lang="es">Relé con enclavamiento mecánico</name>
<name lang="cs">Mechanické blokovací relé</name>
<name lang="hu">Relé mechanikus retesszel</name>
</names>
<kindInformations>
<kindInformation name="type" show="1">coil</kindInformation>

View File

@@ -14,6 +14,5 @@
<name lang="nl">Spoelen</name>
<name lang="be">Spoelen</name>
<name lang="da">Spoler</name>
<name lang="hu">Tekercsek/relék</name>
</names>
</qet-directory>

View File

@@ -7,7 +7,6 @@
<name lang="de">Blinkrelais</name>
<name lang="it">Relè ciclico</name>
<name lang="el">Πηνίο ρελέ παλμού</name>
<name lang="hu">"Villogó" relé</name>
<name lang="pl">Przekaźnik migowy (cykliczny)</name>
</names>
<kindInformations>

View File

@@ -1,48 +1,39 @@
<definition hotspot_x="47" type="element" width="90" link_type="simple" height="50" version="0.90" hotspot_y="24">
<uuid uuid="{b421e3a2-41bb-41a0-8600-efc75811e20a}"/>
<names>
<name lang="de">Relais polarisiert mit Wechsler</name>
<definition width="100" version="0.3" hotspot_x="48" hotspot_y="30" height="60" type="element" ic="true" orientation="dnny">
<uuid uuid="{9EC34531-9367-4401-ADFE-7FB65430ED6D}"/><names>
<name lang="el">Πηνίο ρελέ με πολικότητα</name>
<name lang="en">Polarized relay</name>
<name lang="de">Relais polarisiert mit Wechsler</name>
<name lang="it">Relè polarizzato</name>
<name lang="fr">Relais polarisé fonctionnant pour un seul sens du courant et retournant en position de repos après coupure</name>
<name lang="nl">Polair relais</name>
<name lang="el">Πηνίο ρελέ με πολικότητα</name>
<name lang="es">Relé polarizado, de trabajo en una dirección de la corriente en la bobina</name>
<name lang="pl">Przekaźnik spolaryzowany, działający przy jednym kierunku prądu w cewce</name>
<name lang="es">Relé polarizado, de trabajo en una dirección de la corriente en la bobina</name>
<name lang="cs">Polarizované monostabilní relé</name>
<name lang="nl">Polair relais</name>
</names>
<elementInformations/>
<informations>License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<circle diameter="3" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-16.5" antialias="true" x="34.5"/>
<text text="A2" font="Sans Serif,4,-1,5,50,0,0,0,0,0" y="19" rotation="0" x="-30" color="#000000"/>
<line style="line-style:dashed;line-weight:normal;filling:none;color:black" length1="1.5" x1="-5" x2="16" antialias="false" y2="0" end2="none" y1="0" length2="1.5" end1="none"/>
<circle diameter="3" style="line-style:normal;line-weight:normal;filling:black;color:black" y="13.5" antialias="true" x="-13.5"/>
<dynamic_text text_width="-1" keep_visual_rotation="false" Valignment="AlignTop" font="Sans Serif,4,-1,5,25,0,0,0,0,0" y="-22.95" z="4" rotation="0" frame="false" x="19.5" text_from="UserText" uuid="{b78642aa-b230-4912-906b-6cbb070a3151}" Halignment="AlignLeft">
<text>2</text>
</dynamic_text>
<dynamic_text text_width="-1" keep_visual_rotation="false" Valignment="AlignTop" font="Sans Serif,4,-1,5,25,0,0,0,0,0" y="8.5" z="5" rotation="0" frame="false" x="10" text_from="UserText" uuid="{94edcc6b-71b0-4d35-ad29-3a4e09592ebe}" Halignment="AlignLeft">
<text>3</text>
</dynamic_text>
<dynamic_text text_width="-1" keep_visual_rotation="false" Valignment="AlignTop" font="Sans Serif,4,-1,5,25,0,0,0,0,0" y="-23.5" z="6" rotation="0" frame="false" x="0" text_from="UserText" uuid="{6ac8e0a6-c562-42f3-bb0e-2eaf7726ed93}" Halignment="AlignLeft">
<text>1</text>
</dynamic_text>
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" x2="20" y3="-10" antialias="true" x3="12" y2="10" closed="false" y1="20"/>
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" x1="-20" x2="-20" antialias="false" y2="-20" end2="none" y1="20" length2="1.5" end1="none"/>
<rect style="line-style:normal;line-weight:normal;filling:black;color:black" y="-10" width="7" ry="0" antialias="false" height="20" x="-42" rx="0"/>
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" y="-10" width="30" ry="0" antialias="false" height="20" x="-35" rx="0"/>
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" x1="30" x2="30" antialias="false" y2="-10" end2="none" y1="-20" length2="1.5" end1="none"/>
<dynamic_text text_width="-1" keep_visual_rotation="false" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-11" z="14" rotation="0" frame="false" x="31" text_from="ElementInfo" uuid="{bb4158fb-c7dd-4a99-a8e9-1e640ae795f2}" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" y="-7" width="4" ry="0" antialias="false" height="14" x="-42" rx="0"/>
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" x2="10" y3="-9" antialias="false" x3="15" y2="-9" closed="false" y1="-20"/>
<text text="A1" font="Sans Serif,4,-1,5,50,0,0,0,0,0" y="-15" rotation="0" x="-30" color="#000000"/>
<terminal y="-20" x="30" orientation="n"/>
<terminal y="-20" x="-20" orientation="n"/>
<terminal y="20" x="20" orientation="s"/>
<terminal y="20" x="-20" orientation="s"/>
<terminal y="-20" x="10" orientation="n"/>
<circle x="34.5" y="-16.5" antialias="true" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="3"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:dashed;line-weight:thin;filling:none;color:black" y1="0" x1="-5" y2="0" x2="25"/>
<circle x="-13.5" y="13.5" antialias="true" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="3"/>
<input x="19.5" y="-15.45" size="4" text="2"/>
<input x="20" y="16" size="4" text="3"/>
<input x="0" y="-16" size="4" text="1"/>
<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="-9" x1="10" y2="-9" x2="23"/>
<polygon style="line-style:normal;line-weight:normal;filling:black;color:black" x1="-42" x2="-42" x3="-38" x4="-38" antialias="false" x5="-42" x6="-42" x7="-35" x8="-35" x9="-42" y1="-10" y10="-7" y2="-7" y3="-7" y4="7" y5="7" x10="-42" y6="10" y7="10" y8="-10" y9="-10"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="20" x1="30" y2="10" x2="30" y3="-10" x3="20"/>
<rect width="7" x="-42" y="-10" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;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="-20" x1="10" y2="-9" x2="10"/>
<rect width="30" x="-35" y="-10" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;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="-20" x1="30" y2="-10" x2="30"/>
<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="20" x1="-20" y2="10" x2="-20"/>
<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="-20" x1="-20" y2="-10" x2="-20"/>
<input x="-34" y="18" size="4" text="A2"/>
<input x="-34" y="-17" size="4" text="A1"/>
<input x="31" y="0.5" size="9" text="_" tagg="label"/>
<terminal x="-20" y="-20" orientation="n"/>
<terminal x="-20" y="20" orientation="s"/>
<terminal x="10" y="-20" orientation="n"/>
<terminal x="30" y="-20" orientation="n"/>
<terminal x="30" y="20" orientation="s"/>
</description>
</definition>

View File

@@ -10,7 +10,6 @@
<name lang="el">Ηλεκτρονικό ρελέ</name>
<name lang="ar">مُرحّل استاتيكي</name>
<name lang="pl">Przekaźnik statyczny</name>
<name lang="hu">Szilárd test relé</name>
</names>
<kindInformations/>
<informations>Author: The QElectroTech team

View File

@@ -6,7 +6,6 @@
<name lang="fr">Relais temporisé repos à commande externe</name>
<name lang="pl">Przekaźnik z opuźnionym powrotem, z wejściem sterującym</name>
<name lang="cs">Zpožděné relé s externím ovládáním</name>
<name lang="hu">Elengedeés késleltetésű relé külső paranccsal</name>
<name lang="el">Πηνίο καθυστέρησης απενεργοποίησης με εξωτερική εντολή</name>
</names>
<kindInformations>

View File

@@ -1,37 +1,34 @@
<definition link_type="master" width="40" height="50" version="0.90" hotspot_x="20" type="element" hotspot_y="24">
<uuid uuid="{fbebf37a-b316-447b-9f4d-16e87e2066a0}"/>
<names>
<name lang="pl">Cewka</name>
<name lang="cs">Bistabilní relé</name>
<definition width="60" version="0.3" hotspot_x="19" hotspot_y="37" height="70" type="element" link_type="master">
<uuid uuid="{1CF30813-0219-4625-B019-A00A318ED8F9}"/><names>
<name lang="ar">مُرحّل ثنائي الإستقرار</name>
<name lang="de">Relais bistabil</name>
<name lang="ru">Обмотка</name>
<name lang="en">Coil</name>
<name lang="de">Relais bistabil</name>
<name lang="it">Relè bistabile</name>
<name lang="fr">Relais bistable</name>
<name lang="pl">Cewka</name>
<name lang="es">Relé biestable</name>
<name lang="cs">Bistabilní relé</name>
</names>
<kindInformations>
<kindInformation name="type">coil</kindInformation>
<kindInformation name="type" show="1">coil</kindInformation>
</kindInformations>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text rotation="0" keep_visual_rotation="false" frame="false" x="4" text_from="UserText" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="11" Halignment="AlignLeft" z="4" uuid="{35e96436-b756-490c-95e4-87ddfc82d137}" text_width="-1" Valignment="AlignTop">
<text>_</text>
</dynamic_text>
<dynamic_text rotation="0" keep_visual_rotation="false" frame="false" x="4" text_from="UserText" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-31" Halignment="AlignLeft" z="5" uuid="{6f5de7cf-5691-4dd4-b659-0dde11e9f9ca}" text_width="-1" Valignment="AlignTop">
<text>_</text>
</dynamic_text>
<line end1="none" end2="none" length2="1.5" y2="20" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="0" length1="1.5" x2="0"/>
<dynamic_text rotation="0" keep_visual_rotation="false" frame="false" x="20" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-8.8" Halignment="AlignLeft" z="10" uuid="{801ccb33-f4f0-4d97-929d-c9b2a1725bb2}" text_width="-1" Valignment="AlignTop">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect width="28" rx="0" x="-14" height="16" antialias="false" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-8" ry="0"/>
<polygon y3="0" closed="false" x4="8" x3="8" y2="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-4" y4="4" x1="-8" x2="-8"/>
<terminal orientation="n" x="0" name="A1" y="-20" type="Generic"/>
<terminal orientation="s" x="0" name="A2" y="20" type="Generic"/>
<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="1" x1="8" y2="4" x2="8"/>
<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="-8" y2="0" x2="8"/>
<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="-4" x1="-8" y2="0" x2="-8"/>
<input x="4" y="20" size="6" rotate="true" text="_"/>
<input x="4" y="-22" size="6" rotate="true" text="_"/>
<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="-21" x1="0" y2="-8" 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="9" x1="0" y2="21" 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="8" x1="14" y2="-8" x2="14"/>
<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="-14" y2="8" x2="14"/>
<input x="20" y="2.6666" size="9" text="_" tagg="label"/>
<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="14" y2="-8" x2="-14"/>
<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="-14" y2="8" x2="-14"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="0" y="21" orientation="s"/>
</description>
</definition>

View File

@@ -8,7 +8,6 @@
<name lang="pl">Łącznik zdalnie sterowany</name>
<name lang="es">Interruptor a control remoto 1P1T</name>
<name lang="cs">Dálkově ovládaný spínač</name>
<name lang="hu">Távoli vezérlésű relé</name>
<name lang="nl">Afstand bestuurbaar schakelaar</name>
</names>
<kindInformations>

View File

@@ -4,7 +4,6 @@
<name lang="fr">Relais temporisé</name>
<name lang="en">Timed relay</name>
<name lang="cs">Časové relé</name>
<name lang="hu">Ütemadó relé</name>
</names>
<kindInformations>
<kindInformation show="1" name="type">coil</kindInformation>

View File

@@ -3,7 +3,6 @@
<names>
<name lang="en">Timer T 816</name>
<name lang="cs">Timer T 816</name>
<name lang="hu">Időzítő relé T 816</name>
</names>
<kindInformations>
<kindInformation name="type" show="1">coil</kindInformation>

View File

@@ -3,7 +3,6 @@
<names>
<name lang="en">Timer TMR48</name>
<name lang="cs">Timer TMR48</name>
<name lang="hu">Időzítő relé TMR48</name>
</names>
<kindInformations>
<kindInformation name="type" show="1">coil</kindInformation>

View File

@@ -0,0 +1,31 @@
<definition version="0.70" height="50" type="element" width="30" hotspot_x="12" link_type="slave" hotspot_y="24">
<uuid uuid="{90fe1aa6-d017-4064-8ce7-242a4b7b416a}"/>
<names>
<name lang="cs">Kontakt 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>

View File

@@ -1,33 +0,0 @@
<definition height="50" hotspot_y="24" type="element" link_type="slave" hotspot_x="5" version="0.90" width="20">
<uuid uuid="{ee2be6e2-521c-4129-a0ca-a266db12e1ce}"/>
<names>
<name lang="hu">Késleltetett működésű záróérintkező</name>
<name lang="cs">Kontakt zpožděný odpad</name>
<name lang="fr">Contact temporisé</name>
</names>
<kindInformations>
<kindInformation name="type">delayOff</kindInformation>
<kindInformation name="state">NO</kindInformation>
<kindInformation name="number">1</kindInformation>
</kindInformations>
<informations>Author: The QElectroTech team&#xd;
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon closed="false" antialias="true" x2="10" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="5" y3="20" y1="-10" x3="10"/>
<line end1="none" end2="none" length2="1.5" antialias="false" x2="10" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" y1="-20" length1="1.5"/>
<dynamic_text x="-23" y="-12" keep_visual_rotation="true" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" Halignment="AlignLeft" z="3" Valignment="AlignTop" text_width="-1" uuid="{87554fe0-c02a-4473-81d1-4cb89205402c}" rotation="0" text_from="ElementInfo">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<dynamic_text x="7" y="-26" keep_visual_rotation="true" font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" Halignment="AlignLeft" z="4" Valignment="AlignTop" text_width="-1" uuid="{07fe6bcb-92fd-4fef-bef4-595fab066fa2}" rotation="0" text_from="UserText">
<text>15</text>
</dynamic_text>
<dynamic_text x="7" y="9" keep_visual_rotation="true" font="Sans Serif,5,-1,5,25,0,0,0,0,0" frame="false" Halignment="AlignLeft" z="5" Valignment="AlignTop" text_width="-1" uuid="{bbc34c0f-1331-4499-8663-978b944c8287}" rotation="0" text_from="UserText">
<text>18</text>
</dynamic_text>
<line end1="none" end2="none" length2="1.5" antialias="false" x2="3" y2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="7" y1="0" length1="1.5"/>
<arc height="10" start="270" x="-7" y="-5" antialias="true" angle="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="10"/>
<terminal x="10" y="20" type="Generic" orientation="s" uuid="{03048908-f3d8-4897-9742-6b3e2b4c7a62}" name="18"/>
<terminal x="10" y="-20" type="Generic" orientation="n" uuid="{0f9ebcab-1d47-4815-a390-e290573172b7}" name="15"/>
</description>
</definition>

View File

@@ -1,58 +1,46 @@
<definition height="50" version="0.90" type="element" hotspot_y="24" link_type="simple" width="60" hotspot_x="44">
<uuid uuid="{2caf7a54-cf3b-4724-8ad4-61691d6cfc18}"/>
<names>
<name lang="fr">Autotransformateur étoile</name>
<name lang="nl">Autotransformator</name>
<name lang="el">Τριφασικός μετασχηματιστής, αστέρας</name>
<name lang="es">Autotransformador trifásico</name>
<definition width="80" version="0.4" hotspot_x="46" hotspot_y="25" height="50" type="element" ic="true">
<uuid uuid="{6681E115-5D33-4F03-B6CC-3392357CD888}"/><names>
<name lang="it">Autotrasformatore 3F a stella</name>
<name lang="en">Three-phase Autotransformer Yd</name>
<name lang="de">Spartransformator 3ph. Stern</name>
<name lang="cs">Třífázový autotransformátor Y, spojený do hvězdy</name>
<name lang="es">Autotransformador trifásico</name>
<name lang="de">Spartransformator Stern</name>
<name lang="fr">Autotransformateur étoile</name>
<name lang="pl">Autotransformator trójfazowy skojarzony w gwiazdę (forma 2)</name>
<name lang="cs">Třífázový autotransformátor Y, spojený do hvězdy</name>
<name lang="nl">Autotransformator</name>
<name lang="el">Τριφασικός μετασχηματιστής, αστέρας</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<arc height="5" x="-12.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10" start="90" antialias="true" width="5" angle="-180"/>
<text text="C2" x="1.99995" rotation="0" y="19" font="Sans Serif,4,-1,5,50,0,0,0,0,0" color="#000000"/>
<text text="C1" x="0.17185" rotation="0" y="-15" font="Sans Serif,4,-1,5,50,0,0,0,0,0" color="#000000"/>
<text text="B1" x="-19.4219" rotation="0" y="-15" font="Sans Serif,4,-1,5,50,0,0,0,0,0" color="#000000"/>
<text text="B2" x="-17.5938" rotation="0" y="19" font="Sans Serif,4,-1,5,50,0,0,0,0,0" color="#000000"/>
<arc height="5" x="-32.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10" start="90" antialias="true" width="5" angle="-180"/>
<polygon closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="0" x2="-40" y2="0" x3="-30" antialias="false" y1="20" x1="-40"/>
<text text="A2" x="-38.1719" rotation="0" y="19" font="Sans Serif,4,-1,5,50,0,0,0,0,0" color="#000000"/>
<polygon closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="0" x2="-20" y2="0" x3="-10" antialias="false" y1="20" x1="-20"/>
<arc height="5" x="-12.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" start="90" antialias="true" width="5" angle="-180"/>
<arc height="5" x="-32.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" start="90" antialias="true" width="5" angle="-180"/>
<arc height="5" x="-12.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-5" start="90" antialias="true" width="5" angle="-180"/>
<arc height="5" x="-32.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-5" start="90" antialias="true" width="5" angle="-180"/>
<arc height="5" x="7.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10" start="90" antialias="true" width="5" angle="-180"/>
<arc height="5" x="-32.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="0" start="90" antialias="true" width="5" angle="-180"/>
<arc height="5" x="-12.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="0" start="90" antialias="true" width="5" angle="-180"/>
<line end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" x2="-10" y2="5" length2="1.5" end2="none" antialias="false" y1="10" x1="-10"/>
<line end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" x2="-30" y2="5" length2="1.5" end2="none" antialias="false" y1="10" x1="-30"/>
<line end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" x2="-10" y2="-20" length2="1.5" end2="none" antialias="false" y1="-15" x1="-10"/>
<line end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" x2="-30" y2="-20" length2="1.5" end2="none" antialias="false" y1="-15" x1="-30"/>
<arc height="5" x="7.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" start="90" antialias="true" width="5" angle="-180"/>
<arc height="5" x="7.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-5" start="90" antialias="true" width="5" angle="-180"/>
<arc height="5" x="7.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="0" start="90" antialias="true" width="5" angle="-180"/>
<line end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" x2="10" y2="10" length2="1.5" end2="none" antialias="false" y1="10" x1="-30"/>
<line end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" x2="10" y2="5" length2="1.5" end2="none" antialias="false" y1="10" x1="10"/>
<line end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" x2="10" y2="-20" length2="1.5" end2="none" antialias="false" y1="-15" x1="10"/>
<polygon closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="0" x2="0" y2="0" x3="10" antialias="false" y1="20" x1="0"/>
<dynamic_text z="23" text_width="-1" text_from="ElementInfo" x="15" uuid="{13157601-1736-4a47-93de-3979ad823694}" Valignment="AlignTop" rotation="0" Halignment="AlignLeft" y="-11.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" keep_visual_rotation="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<circle x="-11" style="line-style:normal;line-weight:normal;filling:black;color:black" y="9" diameter="2" antialias="false"/>
<text text="A1" x="-40" rotation="0" y="-15" font="Sans Serif,4,-1,5,50,0,0,0,0,0" color="#000000"/>
<terminal x="-20" uuid="{e5a65158-9ec1-46d5-afdf-77fe1355d822}" type="Generic" y="20" orientation="s" name="B2"/>
<terminal x="-10" uuid="{0a9d1a4f-c241-4f7d-8f30-106b033ce002}" type="Generic" y="-20" orientation="n" name="B1"/>
<terminal x="-30" uuid="{f3e42421-3654-4b75-9a71-78281c1a9f34}" type="Generic" y="-20" orientation="n" name="A1"/>
<terminal x="0" uuid="{270baee5-af1c-42e6-a785-3206e3ee3dc9}" type="Generic" y="20" orientation="s" name="C2"/>
<terminal x="10" uuid="{205770ee-f53d-46fa-a0ef-921ceb0381e0}" type="Generic" y="-20" orientation="n" name="C1"/>
<terminal x="-40" uuid="{74208026-c026-4d3e-ae2c-5f026bf68240}" type="Generic" y="20" orientation="s" name="A2"/>
<arc width="5" x="-12.5" y="-10" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<arc width="5" x="-32.5" y="-10" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<polygon antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="20" x1="-40" y2="0" x2="-40" y3="0" x3="-30"/>
<polygon antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="20" x1="-20" y2="0" x2="-20" y3="0" x3="-10"/>
<arc width="5" x="-12.5" y="-15" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<arc width="5" x="-32.5" y="-15" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<arc width="5" x="-12.5" y="-5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<arc width="5" x="-32.5" y="-5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<arc width="5" x="7.5" y="-10" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<arc width="5" x="-32.5" y="0" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<arc width="5" x="-12.5" y="0" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<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" x1="-10" y2="5" x2="-10"/>
<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" x1="-30" y2="5" x2="-30"/>
<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="-15" x1="-10" y2="-20" x2="-10"/>
<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="-15" x1="-30" y2="-20" x2="-30"/>
<arc width="5" x="7.5" y="-15" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<arc width="5" x="7.5" y="-5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<arc width="5" x="7.5" y="0" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<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" x1="-30" y2="10" x2="10"/>
<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" x1="10" y2="5" x2="10"/>
<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="-15" x1="10" y2="-20" x2="10"/>
<polygon antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="20" x1="0" y2="0" x2="0" y3="0" x3="10"/>
<input x="15" y="0" size="9" rotate="true" text="_" tagg="label"/>
<terminal x="10" y="-20" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="0" y="20" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="-10" y="-20" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-30" y="-20" nameHidden="0" number="" name="" orientation="n"/>
<terminal x="-20" y="20" nameHidden="0" number="" name="" orientation="s"/>
<terminal x="-40" y="20" nameHidden="0" number="" name="" orientation="s"/>
</description>
</definition>

View File

@@ -1,7 +1,6 @@
<definition link_type="simple" type="element" version="0.80" width="50" hotspot_y="16" hotspot_x="24" height="30">
<uuid uuid="{3a401a8c-2087-4a75-b13b-ef6474f241c8}"/>
<names>
<name lang="de">Spule mit Kern</name>
<name lang="fr">Transformateur</name>
<name lang="cs">Tlumivka s jádrem</name>
</names>

View File

@@ -1,8 +1,8 @@
<definition link_type="simple" type="element" version="0.80" width="50" hotspot_y="19" hotspot_x="24" height="40">
<uuid uuid="{a86902d2-4aae-4be5-a22a-c099817573fc}"/>
<names>
<name lang="de">Transformator 1ph.</name>
<name lang="fr">Transformateur à deux enroulements</name>
<name lang="fr">
Transformateur à deux enroulements</name>
<name lang="cs">Trafo se dvěma vinutími</name>
</names>
<elementInformations/>

View File

@@ -1,7 +1,6 @@
<definition type="element" link_type="simple" height="80" width="100" hotspot_y="39" hotspot_x="50" version="0.60">
<uuid uuid="{2b1d409f-9a77-4321-9ffc-d5c472b21bbe}"/>
<names>
<name lang="de">Allen Bradley AC/DC 2080-PS120-240VAC</name>
<name lang="fr">Alimentation AC/DC 2080-PS120-240VAC</name>
<name lang="cs">Napájecí zdroj AC/DC 2080-PS120-240VAC</name>
</names>

View File

@@ -1,46 +1,42 @@
<definition type="element" link_type="simple" height="40" width="50" hotspot_x="24" hotspot_y="25" version="0.90">
<uuid uuid="{e67588a1-0339-4637-878a-22391aab7764}"/>
<definition type="element" hotspot_x="29" version="0.5" hotspot_y="25" link_type="simple" width="60" height="40">
<uuid uuid="{3973dcdb-e383-4a83-adff-69061aa9fe78}"/>
<names>
<name lang="el">Μονοφασικό εναλλασσόμενο > Συνεχές</name>
<name lang="de">Netzteil AC/DC</name>
<name lang="fr">Alternatif monophasé > Continu</name>
<name lang="cs">Napájecí zdroj AC/DC</name>
<name lang="es">Alterna monofásica > Continua</name>
<name lang="en">One-phase alternating > Direct</name>
<name lang="it">AC monofase > DC</name>
<name lang="nl">Wisselspanning eenfase > gelijkspanning AC1 > DC </name>
<name lang="el">Μονοφασικό εναλλασσόμενο > Συνεχές</name>
<name lang="ar">موحد أحادي الوجه -2</name>
<name lang="be">Wisselspanning een fase > gelijkspanning AC1 > DC </name>
<name lang="de">Netzteil AC/DC</name>
<name lang="pl">Zasilacz jednofazowy</name>
<name lang="it">AC monofase > DC</name>
<name lang="en">One-phase alternating > Direct</name>
<name lang="be">Wisselspanning een fase > gelijkspanning AC1 > DC </name>
<name lang="nl">Wisselspanning eenfase > gelijkspanning AC1 > DC </name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text y="2" x="-13" rotation="0" text="N" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000"/>
<text y="-7.6666" x="-13" rotation="0" text="L" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000"/>
<line end2="none" x1="9" y2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="13" length2="1.5" y1="0"/>
<line end2="none" x1="11" y2="-8" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="11" length2="1.5" y1="-12"/>
<line end2="none" x1="9" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="13" length2="1.5" y1="-10"/>
<dynamic_text y="-44.3333" x="-16" rotation="0" text_width="-1" Valignment="AlignTop" frame="false" Halignment="AlignLeft" font="Sans Serif,8,-1,5,50,0,0,0,0,0" text_from="ElementInfo" uuid="{e8b12ed7-592b-4935-bc53-b4cc281432e9}" z="6" keep_visual_rotation="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line end2="none" x1="-15" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="-20" length2="1.5" y1="-10"/>
<polygon x4="-15" x3="15" x1="-15" y2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y4="10" x2="15" y1="-20" y3="10"/>
<arc y="-17.5" x="-3.5" height="5" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" angle="-175" start="0"/>
<line end2="none" x1="20" y2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="15" length2="1.5" y1="0"/>
<line end2="none" x1="15" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="20" length2="1.5" y1="-10"/>
<line end2="none" x1="-20" y2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="-15" length2="1.5" y1="0"/>
<line end2="none" x1="8" y2="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="9.5" length2="1.5" y1="4"/>
<line end2="none" x1="5" y2="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="6.5" length2="1.5" y1="4"/>
<line end2="none" x1="2" y2="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="3.5" length2="1.5" y1="4"/>
<line end2="none" x1="2" y2="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="9.5" length2="1.5" y1="6"/>
<arc y="-17.5" x="-8.5" height="5" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" angle="-175" start="180"/>
<line end2="none" x1="14.5" y2="9.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" end1="none" length1="1.5" x2="-14.5" length2="1.5" y1="-19.5"/>
<terminal type="Generic" y="-10" name="L" orientation="w" x="-20" uuid="{1ea47dc7-4a51-40b8-9036-809b9cbb54ec}"/>
<terminal type="Generic" y="0" name="N" orientation="w" x="-20" uuid="{e7236990-f185-431b-8046-b36f05fb72f0}"/>
<terminal type="Generic" y="-10" name="L+" orientation="e" x="20" uuid="{5a72408e-f4ce-4a2e-910a-cb6ac481b06b}"/>
<terminal type="Generic" y="0" name="L-" orientation="e" x="20" uuid="{2d1ce5eb-fefd-46d6-aae2-ce2f0ba85f15}"/>
<text text="N" x="-13" y="0" size="5"/>
<text text="L" x="-13" y="-7.6666" size="5"/>
<line x1="9" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" y2="0" length1="1.5" antialias="false" end1="none" x2="13"/>
<line x1="11" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-12" y2="-8" length1="1.5" antialias="false" end1="none" x2="11"/>
<line x1="9" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" y2="-10" length1="1.5" antialias="false" end1="none" x2="13"/>
<input text="T_ 230V/24VDC __W" x="-16" y="-33.3333" tagg="label" size="8" rotate="true"/>
<line x1="-15" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" y2="-10" length1="1.5" antialias="false" end1="none" x2="-20"/>
<polygon x1="-15" x4="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" y2="-20" y4="10" antialias="false" y3="10" x2="15" x3="15"/>
<arc start="0" x="-3.5" y="-17.5" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="-175" antialias="true" width="5" height="5"/>
<line x1="20" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" y2="0" length1="1.5" antialias="false" end1="none" x2="15"/>
<line x1="15" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" y2="-10" length1="1.5" antialias="false" end1="none" x2="20"/>
<line x1="-20" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" y2="0" length1="1.5" antialias="false" end1="none" x2="-15"/>
<line x1="8" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" y2="4" length1="1.5" antialias="false" end1="none" x2="9.5"/>
<line x1="5" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" y2="4" length1="1.5" antialias="false" end1="none" x2="6.5"/>
<line x1="2" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" y2="4" length1="1.5" antialias="false" end1="none" x2="3.5"/>
<line x1="2" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="6" y2="6" length1="1.5" antialias="false" end1="none" x2="9.5"/>
<arc start="180" x="-8.5" y="-17.5" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="-175" antialias="true" width="5" height="5"/>
<line x1="14.5" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19.5" y2="9.5" length1="1.5" antialias="true" end1="none" x2="-14.5"/>
<terminal x="-21" y="-10" orientation="w"/>
<terminal x="-21" y="0" orientation="w"/>
<terminal x="21" y="-10" orientation="e"/>
<terminal x="21" y="0" orientation="e"/>
</description>
</definition>

View File

@@ -3,7 +3,7 @@
<name lang="ru">Источники питания</name>
<name lang="en">Power supplies</name>
<name lang="es">Fuentes de poder</name>
<name lang="de">Netzgeräte</name>
<name lang="de">Netzteile</name>
<name lang="pl">Zasilacze</name>
<name lang="fr">Alimentations</name>
<name lang="it">Alimentatori</name>

View File

@@ -1,71 +1,57 @@
<definition hotspot_x="94" height="70" width="190" link_type="master" version="0.90" type="element" hotspot_y="35">
<uuid uuid="{b79409e5-f665-40e9-84b3-5b07543c8466}"/>
<names>
<name lang="fr">UPS</name>
<name lang="cs">UPS</name>
<definition width="220" version="0.4" hotspot_x="98" hotspot_y="43" height="80" type="element" ic="true" link_type="master">
<uuid uuid="{F3049D0C-277C-43CA-A56C-0921EC69BF02}"/><names>
<name lang="nl">UPS</name>
<name lang="it">UPS</name>
<name lang="en">UPS</name>
<name lang="pl">UPS</name>
<name lang="de">USV</name>
<name lang="be">UPS</name>
<name lang="en">UPS</name>
<name lang="de">USV</name>
<name lang="fr">UPS</name>
<name lang="pl">UPS</name>
<name lang="it">UPS</name>
<name lang="cs">UPS</name>
</names>
<kindInformations>
<kindInformation name="type">coil</kindInformation>
</kindInformations>
<elementInformations/>
<informations>
Author: RDS for QelectroTech
Author: RDS for QelectroTech
</informations>
<description>
<rect height="60" width="180" x="-90" y="-30" style="line-style:dashed;line-weight:normal;filling:none;color:black" rx="0" antialias="false" ry="0"/>
<line end2="none" x1="79.5" y1="-19.5" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="19.5" antialias="true" end1="none" x2="40.5"/>
<line end2="none" x1="30" y1="0" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:blue" y2="0" antialias="false" end1="none" x2="10"/>
<line end2="none" x1="40" y1="-10" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-10" antialias="false" end1="none" x2="-40"/>
<line end2="none" x1="-80" y1="-10" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-10" antialias="false" end1="none" x2="-90"/>
<line end2="none" x1="3" y1="0" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:red" y2="0" antialias="false" end1="none" x2="-5"/>
<polygon x3="80" y4="20" x1="40" y3="20" y1="-20" x4="40" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-20" antialias="false" x2="80"/>
<polygon x3="-40" y4="20" x1="-80" y3="20" y1="-20" x4="-80" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-20" antialias="false" x2="-40"/>
<arc height="5" width="5" x="-72.5" y="-17.5" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" angle="-175"/>
<line end2="none" x1="-10" y1="0" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:red" y2="0" antialias="false" end1="none" x2="-30"/>
<arc height="5" width="5" x="71.5" y="12.5" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" angle="-175"/>
<line end2="none" x1="-10" y1="-7.24511" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:red" y2="7.26554" antialias="false" end1="none" x2="-10"/>
<line end2="none" x1="90" y1="10" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="10" antialias="false" end1="none" x2="80"/>
<rect height="10" width="3" x="-7" y="-5" style="line-style:normal;line-weight:normal;filling:blue;color:black" rx="0" antialias="false" ry="0"/>
<line end2="none" x1="80" y1="-10" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-10" antialias="false" end1="none" x2="90"/>
<line end2="none" x1="-90" y1="10" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="10" antialias="false" end1="none" x2="-80"/>
<line end2="none" x1="3.7" y1="-7.24511" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:red" y2="7.26554" antialias="false" end1="none" x2="3.7"/>
<line end2="none" x1="-40" y1="10" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="10" antialias="false" end1="none" x2="40"/>
<line end2="none" x1="-45" y1="13" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="13" antialias="false" end1="none" x2="-43.5"/>
<line end2="none" x1="44" y1="-17" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-17" antialias="false" end1="none" x2="42.5"/>
<text x="13" y="5.6666" text="-" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000"/>
<text x="-17" y="7" text="+" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000"/>
<line end2="none" x1="47" y1="-17" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-17" antialias="false" end1="none" x2="45.5"/>
<line end2="none" x1="-48" y1="13" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="13" antialias="false" end1="none" x2="-46.5"/>
<line end2="none" x1="50" y1="-17" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-17" antialias="false" end1="none" x2="48.5"/>
<rect height="10" width="3" x="6.7" y="-5" style="line-style:normal;line-weight:normal;filling:blue;color:black" rx="0" antialias="false" ry="0"/>
<line end2="none" x1="-51" y1="13" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="13" antialias="false" end1="none" x2="-49.5"/>
<line end2="none" x1="-51" y1="15" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="15" antialias="false" end1="none" x2="-43.5"/>
<line end2="none" x1="50" y1="-15" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-15" antialias="false" end1="none" x2="42.5"/>
<arc height="5" width="5" x="66.5" y="12.5" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" angle="-175"/>
<arc height="5" width="5" x="-77.5" y="-17.5" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" angle="-175"/>
<line end2="none" x1="-40.5" y1="-19.5" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="19.5" antialias="true" end1="none" x2="-79.5"/>
<line end2="none" x1="30" y1="0" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:blue" y2="9" antialias="false" end1="none" x2="30"/>
<line end2="none" x1="-30" y1="-0.239243" length2="1.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:red" y2="-9.77916" antialias="false" end1="none" x2="-30"/>
<dynamic_text frame="false" keep_visual_rotation="false" x="92" Halignment="AlignLeft" Valignment="AlignTop" text_width="-1" y="-36" rotation="0" uuid="{590a2487-3803-4b82-a26c-f751dc234ccb}" text_from="ElementInfo" z="35" font="Sans Serif,9,-1,5,50,0,0,0,0,0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect height="40" width="40" x="-20" y="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" antialias="false" ry="0"/>
<circle x="-92" diameter="4" y="-12" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false"/>
<circle x="-92" diameter="4" y="8" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false"/>
<circle x="88" diameter="4" y="-12" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false"/>
<circle x="88" diameter="4" y="8" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false"/>
<circle x="-31.5" diameter="3" y="-11.5" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false"/>
<circle x="28.5" diameter="3" y="8.5" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false"/>
<terminal orientation="w" x="-90" y="10" type="Generic" uuid="{73279019-bef5-40b9-aafa-64879b00bd1f}" name=""/>
<terminal orientation="w" x="-90" y="-10" type="Generic" uuid="{e3c256df-b5c3-47bd-93ea-72e9fa3d4ebf}" name=""/>
<terminal orientation="e" x="90" y="10" type="Generic" uuid="{d925bd0f-b44c-4278-b1fd-cc93905eaf51}" name=""/>
<terminal orientation="e" x="90" y="-10" type="Generic" uuid="{10632a73-7785-4f39-8ed5-06f51d9c1b6a}" name=""/>
<rect width="180" x="-90" y="-30" antialias="false" height="60" style="line-style:dashed;line-weight:normal;filling:none;color:red"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:blue" y1="0" x1="28.96" y2="0" x2="10.96"/>
<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" x1="39.8671" y2="-10" x2="-38.9542"/>
<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" x1="-79.8583" y2="-10" x2="-89.2077"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:red" y1="0" x1="3" y2="0" x2="-5"/>
<polygon x4="40" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19.9688" x1="40" y2="-19.9688" x2="79.675" y3="20.2453" x3="79.675" y4="20.2453"/>
<polygon x4="-79.7" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="-79.7" y2="-20" x2="-40" y3="18.475" x3="-40" y4="18.475"/>
<arc width="5" x="-72.5" y="-17.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="0" angle="-175"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:red" y1="0" x1="-11.04" y2="0" x2="-29.04"/>
<arc width="5" x="71.5" y="12.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="0" angle="-175"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:red" y1="-7.24511" x1="-10" y2="7.26554" x2="-10"/>
<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" x1="89.2021" y2="10" x2="80.7365"/>
<rect width="3" x="-7" y="-5" antialias="false" height="10" 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" x1="80.7179" y2="-10" x2="89.2223"/>
<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" x1="-89.184" y2="10" x2="-79.884"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:red" y1="-7.24511" x1="3.7" y2="7.26554" x2="3.7"/>
<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" x1="-39.2243" y2="10" x2="39.3264"/>
<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="13" x1="-45" y2="13" x2="-43.5"/>
<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="-17" x1="44" y2="-17" x2="42.5"/>
<text x="14" y="5.6666" size="6" text="-"/>
<text x="-17" y="7" size="6" text="+"/>
<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="-17" x1="47" y2="-17" x2="45.5"/>
<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="13" x1="-48" y2="13" x2="-46.5"/>
<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="-17" x1="50" y2="-17" x2="48.5"/>
<rect width="3" x="6.7" y="-5" antialias="false" height="10" 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="13" x1="-51" y2="13" x2="-49.5"/>
<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="15" x1="-51" y2="15" x2="-43.5"/>
<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="-15" x1="50" y2="-15" x2="42.5"/>
<arc width="5" x="66.5" y="12.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="180" angle="-175"/>
<arc width="5" x="-77.5" y="-17.5" antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" start="180" angle="-175"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19.5" x1="79.5" y2="20.5" x2="40.5"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-19.5" x1="-40.5" y2="18.5" x2="-80.5"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:blue" y1="0" x1="30" y2="9" x2="30"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:red" y1="-0.239243" x1="-30" y2="-9.77916" x2="-30"/>
<input x="92" y="-24.5" size="9" rotate="true" text="_" tagg="label"/>
<rect width="40" x="-20" y="-20" antialias="false" height="40" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal x="-90" y="-10" orientation="w"/>
<terminal x="-90" y="10" orientation="w"/>
<terminal x="90" y="-10" orientation="e"/>
<terminal x="90" y="10" orientation="e"/>
</description>
</definition>

View File

@@ -2,7 +2,6 @@
<uuid uuid="{a9abc5f7-020e-4b5e-b4e8-c0d39290d384}"/>
<names>
<name lang="cs">Převodník RS485 na I2C</name>
<name lang="fr">Převodník RS485/name>
</names>
<elementInformations>
<elementInformation show="1" name="unity"></elementInformation>

View File

@@ -2,7 +2,7 @@
<uuid uuid="{6DD8B385-CDE3-4371-9CFD-D60E314471A9}"/><names>
<name lang="en">Transformer or current pulse, with three through primary conductors</name>
<name lang="de">Stromwandler, Impulswandler</name>
<name lang="fr">Transformateur d'impulsion ou de courant, avec trois conducteurs primaires traversants</name>
<name lang="fr"> Transformateur d'impulsion ou de courant, avec trois conducteurs primaires traversants</name>
<name lang="it">Trasformatore d'impulso o di corrente, 3 conduttori primari</name>
<name lang="pl">Przekładnik (forma 2)</name>
<name lang="cs">Proudový transformátor se třemi primáry</name>

View File

@@ -1,8 +1,8 @@
<definition width="30" version="0.3" hotspot_x="9" hotspot_y="45" height="70" type="element" ic="true">
<uuid uuid="{1B534175-EBEE-4198-BE35-C716E0F7D496}"/><names>
<name lang="en">Current transformer with two secondary windings on a common magnetic circuit</name>
<name lang="de">Stromwandler mit 2 sekundären Wicklungen</name>
<name lang="fr">Transformateur de courant, à deux enroulements secondaires sur un circuit magnétique commun</name>
<name lang="de">Stromwandler mit 2 sekünderen Wicklungen</name>
<name lang="fr"> Transformateur de courant, à deux enroulements secondaires sur un circuit magnétique commun</name>
<name lang="it">Transformatore di corrente, 2 secondari 1 circuito magnetico comune</name>
<name lang="pl">Przekładnik (forma 2)</name>
<name lang="cs">Proudový transformátor se dvěma sekundárními vinutími na jednom jádru</name>

View File

@@ -1,42 +1,45 @@
<definition hotspot_x="45" version="0.90" type="element" width="90" height="50" hotspot_y="24" link_type="simple">
<uuid uuid="{905a62ee-c454-40ae-a550-36b50a17aab7}"/>
<definition height="60" type="element" width="90" hotspot_x="45" link_type="simple" version="0.5" hotspot_y="23">
<uuid uuid="{846ab7b5-3024-4c60-8e06-ead72711c300}"/>
<names>
<name lang="fr">Ligne filtre</name>
<name lang="ar">خط مرشح</name>
<name lang="pl">Filtr sieciowy</name>
<name lang="el">Φίλτρο γραμμής</name>
<name lang="cs">Síťový filtr 3f</name>
<name lang="nl">Lijn filter</name>
<name lang="en">Line filter</name>
<name lang="ar">خط مرشح</name>
<name lang="it">Filtro di linea</name>
<name lang="es">Filtro de linea</name>
<name lang="fr">Ligne filtre</name>
<name lang="de">Netzfilter</name>
<name lang="cs">Síťový filtr 3f</name>
<name lang="en">Line filter</name>
<name lang="es">Filtro de linea</name>
<name lang="it">Filtro di linea</name>
<name lang="nl">Lijn filter</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<rect rx="0" antialias="false" ry="0" width="80" x="-40" height="40" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-20"/>
<dynamic_text rotation="0" frame="false" keep_visual_rotation="false" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="2" Valignment="AlignTop" x="43" uuid="{30ec412d-e639-4c28-aed6-a06f8b5490e4}" Halignment="AlignLeft" y="-21.95" text_width="-1">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text text="LINE FILTER" rotation="0" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-26" y="2"/>
<circle diameter="4.4721" antialias="true" x="-32.2361" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-22.2361"/>
<circle diameter="4.4721" antialias="true" x="-32.2361" style="line-style:normal;line-weight:normal;filling:white;color:black" y="17.7639"/>
<circle diameter="4.4721" antialias="true" x="27.7639" style="line-style:normal;line-weight:normal;filling:white;color:black" y="17.7639"/>
<circle diameter="4.4721" antialias="true" x="27.7639" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-22.2361"/>
<circle diameter="4.4721" antialias="true" x="7.7639" style="line-style:normal;line-weight:normal;filling:white;color:black" y="17.7639"/>
<circle diameter="4.4721" antialias="true" x="7.7639" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-22.2361"/>
<circle diameter="4.4721" antialias="true" x="-12.2361" style="line-style:normal;line-weight:normal;filling:white;color:black" y="17.7639"/>
<circle diameter="4.4721" antialias="true" x="-12.2361" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-22.2361"/>
<terminal name="" orientation="n" type="Generic" x="-10" uuid="{a249da08-25bc-41d9-acc5-052cd79ec69e}" y="-20"/>
<terminal name="" orientation="n" type="Generic" x="30" uuid="{1b1da244-ff4e-4744-96cb-cd47bae7c019}" y="-20"/>
<terminal name="" orientation="n" type="Generic" x="10" uuid="{5417d31c-8613-48e8-ba76-e8c2e661c3b7}" y="-20"/>
<terminal name="" orientation="n" type="Generic" x="-30" uuid="{ce946f5b-f9da-4f0a-8add-255a91c6832e}" y="-20"/>
<terminal name="" orientation="s" type="Generic" x="-10" uuid="{7dc0e784-c015-4d9c-b304-35e0ca7e110f}" y="20"/>
<terminal name="" orientation="s" type="Generic" x="10" uuid="{25af4545-8c52-494f-8588-c101e0c8ca44}" y="20"/>
<terminal name="" orientation="s" type="Generic" x="30" uuid="{8d1f699f-9ef2-40f9-9c19-78b4efbfd17a}" y="20"/>
<terminal name="" orientation="s" type="Generic" x="-30" uuid="{2f0de0b4-ba40-4c74-bcfc-8a557001a107}" y="20"/>
<input tagg="label" size="9" rotate="true" text="_" x="43" y="-4.45"/>
<text size="6" text="LINE FILTER" x="-26" y="8"/>
<polygon y1="-14" x3="40" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="40" y3="26" y2="-14" x4="33" y4="26" closed="false" x1="33"/>
<polygon y1="-14" x3="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="-40" y3="26" y2="-14" x4="-33" y4="26" closed="false" x1="-33"/>
<line y1="-14" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="-13" y2="-14" length1="1.5" end2="none" x1="-28"/>
<line y1="25.95" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="-12.55" y2="25.95" length1="1.5" end2="none" x1="-27.55"/>
<circle diameter="4.4721" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" x="-32.2361" y="-16.2361"/>
<circle diameter="4.4721" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" x="-32.2361" y="23.7639"/>
<line y1="25.95" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="7.45" y2="25.95" length1="1.5" end2="none" x1="-7.55"/>
<line y1="-14" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="27" y2="-14" length1="1.5" end2="none" x1="12"/>
<line y1="25.95" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="27.45" y2="25.95" length1="1.5" end2="none" x1="12.45"/>
<line y1="-14" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="7" y2="-14" length1="1.5" end2="none" x1="-8"/>
<circle diameter="4.4721" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" x="27.7639" y="23.7639"/>
<circle diameter="4.4721" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" x="27.7639" y="-16.2361"/>
<circle diameter="4.4721" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" x="7.7639" y="23.7639"/>
<circle diameter="4.4721" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" x="7.7639" y="-16.2361"/>
<circle diameter="4.4721" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" x="-12.2361" y="23.7639"/>
<circle diameter="4.4721" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" x="-12.2361" y="-16.2361"/>
<terminal orientation="n" x="-10" y="-16"/>
<terminal orientation="n" x="30" y="-16"/>
<terminal orientation="n" x="10" y="-16"/>
<terminal orientation="n" x="-30" y="-16"/>
<terminal orientation="s" x="-10" y="28"/>
<terminal orientation="s" x="10" y="28"/>
<terminal orientation="s" x="30" y="28"/>
<terminal orientation="s" x="-30" y="28"/>
</description>
</definition>

View File

@@ -1,46 +1,47 @@
<definition width="90" hotspot_x="41" height="60" type="element" link_type="simple" hotspot_y="29" version="0.90">
<uuid uuid="{675f5e89-e388-48bb-a548-124723d22b05}"/>
<names>
<name lang="cs">Síťový filtr 3f</name>
<name lang="fr">Filtre réseau 3P</name>
<definition height="70" type="element" link_type="simple" hotspot_x="40" hotspot_y="39" width="90" version="0.5">
<uuid uuid="{0AE64E73-A748-4868-8FB3-D2953F779C9A}"/><names>
<name lang="de">Netzfilter 3P</name>
<name lang="es">Filtro de linea 3P</name>
<name lang="en">Line filter 3P</name>
<name lang="es">Filtro de linea 3P</name>
<name lang="pl">Trójbiegunowy filtr sieciowy</name>
<name lang="fr">Filtre réseau 3P</name>
<name lang="cs">Síťový filtr 3f</name>
</names>
<elementInformations/>
<informations>EN 60617: 06-14-03</informations>
<description>
<rect width="75" height="50" rx="0" y="-25" x="-35" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="19" x="13" text="L3.1"/>
<text rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-14" x="-24" text="L1"/>
<text rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="19" x="-7" text="L2.1"/>
<text rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-14" x="-5" text="L2"/>
<text rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="3" x="26" text="PE"/>
<text rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-14" x="15" text="L3"/>
<dynamic_text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignBottom" frame="false" uuid="{fb13357d-6747-4ed3-8cd6-af16702e6858}" y="-35" x="39" z="10" text_width="-1" keep_visual_rotation="false" text_from="ElementInfo">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="19" x="-28" text="L1.1"/>
<line x1="3" end2="none" y2="5" length1="1.5" length2="1.5" antialias="false" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-5" x2="-3"/>
<arc width="10" height="8" angle="90" y="-3" x="-9" start="90" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<arc width="8" height="6" angle="90" y="-3" x="-8" start="0" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<arc width="8" height="6" angle="90" y="-3" x="0" start="180" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<arc width="10" height="8" angle="90" y="-5" x="-1" start="270" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle diameter="5" y="-27.5" x="-2.5" antialias="false" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="-27.5" x="17.5" antialias="false" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="-27.5" x="-22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="2.5" x="37.5" antialias="false" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="22.5" x="-22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="22.5" x="-2.5" antialias="false" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="22.5" x="17.5" antialias="false" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<terminal uuid="{c59dbabf-322a-4f9a-a9fa-2090f51643c4}" type="Generic" y="-25" x="0" orientation="n" name="L2"/>
<terminal uuid="{b1eb8115-a864-4f3e-a371-bbcd9c38cd1c}" type="Generic" y="-25" x="-20" orientation="n" name="L1"/>
<terminal uuid="{9e1e24cc-30bc-43ca-869d-aef7fb447ffd}" type="Generic" y="25" x="-20" orientation="s" name="L1.1"/>
<terminal uuid="{881bcffc-98f8-4a1c-9aff-61735b211477}" type="Generic" y="25" x="0" orientation="s" name="L2.1"/>
<terminal uuid="{ae8ed378-e2ce-41a6-88f9-90f1d8f8ccb9}" type="Generic" y="-25" x="20" orientation="n" name="L3"/>
<terminal uuid="{b64c11d1-b053-4726-a6e1-d642f4133461}" type="Generic" y="25" x="20" orientation="s" name="L3.1"/>
<terminal uuid="{5ff2ec3b-cd57-4bcb-a1bb-5e75a1bd7351}" type="Generic" y="5" x="40" orientation="e" name="PE"/>
<circle x="37.5" diameter="5" y="-2.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text text="L3.1" x="13" y="14" size="6"/>
<text text="L1" x="-24" y="-19" size="6"/>
<line y1="20" y2="20" end1="none" x1="3" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="17" length1="1.5" length2="1.5"/>
<line y1="20" y2="20" end1="none" x1="-17" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="-3" length1="1.5" length2="1.5"/>
<text text="L2.1" x="-7" y="14" size="6"/>
<text text="L2" x="-5" y="-19" size="6"/>
<circle x="-2.5" diameter="5" y="-32.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text text="PE" x="26" y="-2" size="6"/>
<text text="L3" x="15" y="-19" size="6"/>
<circle x="17.5" diameter="5" y="-32.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<circle x="-22.5" diameter="5" y="17.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<circle x="-2.5" diameter="5" y="17.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<circle x="17.5" diameter="5" y="17.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<input rotate="true" text="_" x="-70" tagg="label" y="-20.5" size="9"/>
<text text="L1.1" x="-28" y="14" size="6"/>
<line y1="-30" y2="-30" end1="none" x1="-17" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="-3" length1="1.5" length2="1.5"/>
<line y1="-30" y2="-30" end1="none" x1="3" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="17" length1="1.5" length2="1.5"/>
<circle x="-22.5" diameter="5" y="-32.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon y1="-30" closed="false" y2="-30" y3="20" x1="-23" y4="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="-35" y5="20" x3="-35" y6="20" x4="-23" x5="-23" x6="-23"/>
<polygon y1="-30" closed="false" y2="-30" y3="-3" x1="23" y4="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="40" y5="-3" x3="40" x4="40" x5="40"/>
<polygon y1="3" closed="false" y2="20" y3="20" x1="40" y4="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="40" y5="20" x3="23" x4="23" x5="23"/>
<line y1="-10" y2="0" end1="none" x1="3" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x2="-3" length1="1.5" length2="1.5"/>
<arc height="8" x="-9" y="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="true" start="90" width="10" angle="90"/>
<arc height="6" x="-8" y="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="true" start="0" width="8" angle="90"/>
<arc height="6" x="0" y="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="true" start="180" width="8" angle="90"/>
<arc height="8" x="-1" y="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="true" start="270" width="10" angle="90"/>
<terminal x="0" y="-33" orientation="n"/>
<terminal x="-20" y="-33" orientation="n"/>
<terminal x="-20" y="23" orientation="s"/>
<terminal x="0" y="23" orientation="s"/>
<terminal x="20" y="-33" orientation="n"/>
<terminal x="20" y="23" orientation="s"/>
<terminal x="43" y="0" orientation="e"/>
</description>
</definition>

View File

@@ -1,7 +1,6 @@
<definition hotspot_x="35" link_type="simple" height="80" type="element" width="70" version="0.80" hotspot_y="40">
<uuid uuid="{617264c1-5351-4e5e-9a43-eeb1077403ce}"/>
<names>
<name lang="de">Netzfilter Schurter KFS 4300</name>
<name lang="cs">Filtr KFS 4300</name>
<name lang="fr">Filtre KFS 4300</name>
</names>

View File

@@ -1,37 +1,34 @@
<definition type="element" hotspot_y="124" link_type="simple" hotspot_x="125" version="0.90" width="250" height="250">
<uuid uuid="{6d2fbbec-24cd-458f-8a03-d196ca8af5f0}"/>
<definition height="250" link_type="simple" type="element" hotspot_y="123" version="0.5" hotspot_x="125" width="250">
<uuid uuid="{6bf14a17-bc23-4b53-84d4-be4d8fc20178}"/>
<names>
<name lang="es">HMI TÁCTIL 1</name>
<name lang="en">Touch panel 1</name>
<name lang="ar">HMI TACTILE 1</name>
<name lang="fr">HMI TACTILE 1</name>
<name lang="de">Touchpanel 1</name>
<name lang="cs">Dotykový panel 1</name>
<name lang="pl">HMI TACTILE 1</name>
<name lang="it">Touch Screen 1</name>
<name lang="es">HMI TÁCTIL 1</name>
<name lang="ar">HMI TACTILE 1</name>
<name lang="cs">Dotykový panel 1</name>
<name lang="en">Touch panel 1</name>
<name lang="pl">HMI TACTILE 1</name>
<name lang="nl">HMI Aanraakscherm groot</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text z="1" text_from="UserText" uuid="{4bc4cb73-0a67-4fc8-921c-3eb551e65ce5}" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" y="105.5" text_width="-1" Valignment="AlignTop" rotation="0" x="-87" frame="false" keep_visual_rotation="false">
<text>-_</text>
</dynamic_text>
<dynamic_text z="3" text_from="UserText" uuid="{bef377ff-1951-4f18-8618-e5f728cdec08}" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" y="105.5" text_width="-1" Valignment="AlignTop" rotation="0" x="-67" frame="false" keep_visual_rotation="false">
<text>PE_</text>
</dynamic_text>
<rect ry="0" rx="0" y="-100" antialias="false" x="-100" width="200" style="line-style:normal;line-weight:normal;filling:none;color:black" height="200"/>
<dynamic_text z="12" text_from="ElementInfo" uuid="{6268b392-3be8-432d-a70e-860439c1162f}" font="Sans Serif,5,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="-17" text_width="-1" Valignment="AlignTop" rotation="0" x="-28" frame="false" keep_visual_rotation="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<dynamic_text z="13" text_from="UserText" uuid="{77e6cfd3-b413-497b-8f9b-98aea31a837e}" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" y="105.5" text_width="-1" Valignment="AlignTop" rotation="0" x="-106" frame="false" keep_visual_rotation="false">
<text>+_</text>
</dynamic_text>
<rect ry="7.5" rx="7.5" y="-120" antialias="false" x="-120" width="240" style="line-style:normal;line-weight:normal;filling:none;color:black" height="240"/>
<terminal type="Generic" orientation="s" uuid="{69a636e0-9292-4add-9e34-b9e502f1fb4c}" y="120" name="L+" x="-100"/>
<terminal type="Generic" orientation="s" uuid="{8fe98469-1350-4b7b-8d96-33fc7b97c0b2}" y="120" name="L-" x="-80"/>
<terminal type="Generic" orientation="s" uuid="{776f96f3-72be-4037-947d-054734470804}" y="120" name="PE" x="-60"/>
<input y="113" text="-_" x="-87" rotate="true" size="4" tagg="none"/>
<arc y="105.5" height="15" x="-120" start="-90" antialias="true" angle="-90" width="15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input y="113" text="PE_" x="-67" rotate="true" size="4" tagg="none"/>
<arc y="-120" height="15" x="-120" start="-180" antialias="true" angle="-90" width="15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<arc y="105.5" height="15" x="105" start="0" antialias="true" angle="-90" width="15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<arc y="-120" height="15" x="105" start="90" antialias="true" angle="-90" width="15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="-120" antialias="false" x1="-112" y1="-120" length2="1.5" length1="1.5" x2="112" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="112" antialias="false" x1="-120" y1="-113" length2="1.5" length1="1.5" x2="-120" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="111.983" antialias="false" x1="120" y1="-112.984" length2="1.5" length1="1.5" x2="120" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="120.5" antialias="false" x1="-113.45" y1="120.5" length2="1.5" length1="1.5" x2="111.404" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect y="-100" height="200" x="-100" antialias="false" width="200" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input y="-8.5" text="MARQUE_" x="-28" rotate="true" size="5" tagg="label"/>
<input y="113" text="+_" x="-106" rotate="true" size="4" tagg="none"/>
<terminal y="121" x="-100" orientation="s"/>
<terminal y="121" x="-80" orientation="s"/>
<terminal y="121" x="-60" orientation="s"/>
</description>
</definition>

View File

@@ -1,37 +1,34 @@
<definition type="element" height="170" link_type="simple" hotspot_x="95" version="0.90" width="190" hotspot_y="76">
<uuid uuid="{16fafb3a-6603-4d7c-a856-95089c024e36}"/>
<definition height="170" link_type="simple" type="element" hotspot_y="75" version="0.5" hotspot_x="95" width="190">
<uuid uuid="{e8b19d52-137c-4cac-a884-76d245faaf2a}"/>
<names>
<name lang="es">HMI TÁCTIL 2</name>
<name lang="ar">HMI TACTILE 2</name>
<name lang="it">Touch screen 2</name>
<name lang="pl">HMI TACTILE 2</name>
<name lang="cs">Dotykový panel 2</name>
<name lang="nl">HMI Aanraakscherm klein</name>
<name lang="en">Touch panel 2</name>
<name lang="fr">HMI TACTILE 2</name>
<name lang="de">Touchpanel 2</name>
<name lang="it">Touch screen 2</name>
<name lang="es">HMI TÁCTIL 2</name>
<name lang="ar">HMI TACTILE 2</name>
<name lang="cs">Dotykový panel 2</name>
<name lang="en">Touch panel 2</name>
<name lang="pl">HMI TACTILE 2</name>
<name lang="nl">HMI Aanraakscherm klein</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text x="-64.25" y="71.95" frame="false" text_width="-1" Halignment="AlignLeft" font="Sans Serif,4,-1,5,25,0,0,0,0,0" z="1" uuid="{72398da9-58a2-4bae-b5ba-6a3a22918c03}" text_from="UserText" Valignment="AlignTop" rotation="0" keep_visual_rotation="false">
<text>-_</text>
</dynamic_text>
<dynamic_text x="-51.25" y="71.95" frame="false" text_width="-1" Halignment="AlignLeft" font="Sans Serif,4,-1,5,25,0,0,0,0,0" z="3" uuid="{4f639ad6-baae-46b7-9e32-6b0391414924}" text_from="UserText" Valignment="AlignTop" rotation="0" keep_visual_rotation="false">
<text>PE_</text>
</dynamic_text>
<rect x="-75" y="-57" ry="0" height="130" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="150" antialias="false"/>
<dynamic_text x="-21" y="-6.025" frame="false" text_width="-1" Halignment="AlignLeft" font="Sans Serif,5,-1,5,50,0,0,0,0,0" z="12" uuid="{b14df802-4071-4560-b59c-10ab8b5ddf05}" text_from="ElementInfo" Valignment="AlignTop" rotation="0" keep_visual_rotation="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<dynamic_text x="-80.5" y="71.95" frame="false" text_width="-1" Halignment="AlignLeft" font="Sans Serif,4,-1,5,25,0,0,0,0,0" z="13" uuid="{8fa2a525-390a-4ebe-a566-35aeddd7ac2d}" text_from="UserText" Valignment="AlignTop" rotation="0" keep_visual_rotation="false">
<text>+_</text>
</dynamic_text>
<rect x="-90" y="-70" ry="6" height="156" rx="6" style="line-style:normal;line-weight:normal;filling:none;color:black" width="180" antialias="false"/>
<terminal x="-75" y="86" type="Generic" uuid="{a0b00b3d-9a47-4384-bc16-3e82e94dbb5d}" orientation="s" name="L+"/>
<terminal x="-60" y="86" type="Generic" uuid="{c8ce27d3-74e1-401f-a5ba-d8a74f75d77c}" orientation="s" name="L-"/>
<terminal x="-45" y="86" type="Generic" uuid="{eee7a714-a41a-45b2-8165-71558d089e42}" orientation="s" name="PE"/>
<input y="79.45" text="-_" x="-64.25" rotate="true" size="4" tagg="none"/>
<arc y="76.575" height="9.75" x="-90" start="-90" antialias="true" angle="-90" width="11.25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input y="79.45" text="PE_" x="-51.25" rotate="true" size="4" tagg="none"/>
<arc y="-70" height="9.75" x="-90" start="-180" antialias="true" angle="-90" width="11.25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<arc y="76.575" height="9.75" x="78.75" start="0" antialias="true" angle="-90" width="11.25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<arc y="-70" height="9.75" x="78.75" start="90" antialias="true" angle="-90" width="11.25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="-70" antialias="false" x1="-84" y1="-70" length2="1.5" length1="1.5" x2="84" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="80.8" antialias="false" x1="-90" y1="-65.45" length2="1.5" length1="1.5" x2="-90" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="80.789" antialias="false" x1="90" y1="-65.4396" length2="1.5" length1="1.5" x2="90" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="86.325" antialias="false" x1="-85.0877" y1="86.325" length2="1.5" length1="1.5" x2="83.553" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect y="-57" height="130" x="-75" antialias="false" width="150" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input y="2.475" text="MARQUE_" x="-21" rotate="true" size="5" tagg="label"/>
<input y="79.45" text="+_" x="-80.5" rotate="true" size="4" tagg="none"/>
<terminal y="86.65" x="-75" orientation="s"/>
<terminal y="86.65" x="-60" orientation="s"/>
<terminal y="86.65" x="-45" orientation="s"/>
</description>
</definition>

View File

@@ -1,148 +1,135 @@
<definition height="90" type="element" width="450" link_type="simple" hotspot_x="225" hotspot_y="44" version="0.90">
<uuid uuid="{8b521f7d-d3c8-4169-89be-6f50ca074a2e}"/>
<definition version="0.70" type="element" width="450" height="90" hotspot_y="44" hotspot_x="225" link_type="simple">
<uuid uuid="{202b43e9-7b17-4df1-8a21-b0bbdd57c9ab}"/>
<names>
<name lang="de">LED-Karte</name>
<name lang="fr">Carte à voyant</name>
</names>
<elementInformations>
<elementInformation name="designation" show="1"></elementInformation>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
<elementInformation name="description" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
<elementInformation name="plant" show="1"></elementInformation>
</elementInformations>
<informations>S.DEFFAUX</informations>
<elementInformations/>
<informations></informations>
<description>
<circle y="16.5" x="6.46" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="-143.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="66.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="-23.5" x="126.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<rect height="10" ry="0" y="-25" width="20" rx="0" x="-170" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle y="-23.5" x="-123.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="126.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<rect height="10" ry="0" y="-25" width="20" rx="0" x="-150" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle y="16.5" x="-83.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<text y="10" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-100" text="RD2"/>
<circle y="-23.5" x="-83.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="-23.5" x="-143.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="106.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="-23.5" x="6.46" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="-13.54" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="186.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="-103.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="46.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="-163.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<rect height="10" ry="0" y="15" width="60" rx="0" x="80" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle y="-23.5" x="66.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<rect height="10" ry="0" y="-25" width="20" rx="0" x="-90" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect height="10" ry="0" y="15" width="60" rx="0" x="-190" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect height="10" ry="0" y="15" width="60" rx="0" x="-130" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect height="10" ry="0" y="-25" width="40" rx="0" x="-130" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect height="10" ry="0" y="15" width="60" rx="0" x="20" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect height="10" ry="0" y="15" width="60" rx="0" x="-40" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle y="16.5" x="166.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="-23.5" x="-163.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="-23.5" x="186.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="-123.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="-23.5" x="-103.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="-183.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="86.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="-33.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="16.5" x="26.46" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="-23.5" x="106.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="-23.5" x="-13.54" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="-23.5" x="46.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<rect height="10" ry="0" y="-25" width="60" rx="0" x="-40" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle y="-23.5" x="166.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<rect height="10" ry="0" y="-25" width="60" rx="0" x="80" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect height="10" ry="0" y="-25" width="60" rx="0" x="20" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle y="-23.5" x="26.46" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="-23.5" x="-33.53" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<circle y="-23.5" x="86.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<rect height="10" ry="0" y="-25" width="60" rx="0" x="140" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect height="10" ry="0" y="15" width="60" rx="0" x="140" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle y="-23.5" x="146.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<rect height="80" ry="0" y="-40" width="440" rx="0" x="-220" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle y="16.5" x="146.47" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-180" text="NO"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-160" text="C"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-140" text="NF"/>
<text y="10" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-160" text="RD1"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-120" text="NO"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-100" text="C"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-79" text="NF"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-29.86" text="24"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-10" text="23"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="10" text="22"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="30" text="21"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="50" text="20"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="70" text="19"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="90" text="18"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="110" text="17"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="130" text="16"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="150" text="15"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="170" text="14"/>
<text y="35" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="190" text="13"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-30.91" text="01"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-10" text="02"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="30" text="04"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="50" text="05"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="70" text="06"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="90" text="07"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="110" text="08"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="130" text="09"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="150" text="10"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="170" text="11"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="190" text="12"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="10" text="03"/>
<text y="-30" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-165" text="24VTp"/>
<text y="-29" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-145" text="+24V"/>
<text y="-29" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-126" text="24VAC"/>
<text y="-29" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-106" text="24VAC"/>
<text y="-29" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-83" text="0V"/>
<line y1="-20" length2="1.5" end2="none" length1="1.5" x1="-199.78" antialias="false" x2="-199.78" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="0" end1="none"/>
<rect height="1" ry="0" y="-17" width="0" rx="0" x="-204" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect height="15" ry="0" y="-17" width="8.45" rx="0" x="-204" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="40" type="Generic" name="" orientation="s" x="-29.86" uuid="{55f47e81-e1b8-4e1a-b37f-59d349ab904c}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="10" uuid="{5d031e4f-fc16-437c-b5ce-1a9b15ed2e9d}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="-79.86" uuid="{edeb5033-7480-4b78-895e-b6158d87ddec}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="70.14" uuid="{140fca0c-6803-486f-943e-ddcd683b0de2}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="-9.86" uuid="{9a110fea-cd6f-4c84-9897-5f97e95cdc55}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="-140" uuid="{d185d372-4d18-4dd2-83aa-e9e758921f13}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="150" uuid="{d1f29465-f9ca-41fc-bc4b-0620d117dae8}"/>
<terminal y="-39" type="Generic" name="" orientation="n" x="-120" uuid="{bfd67b54-84ea-4b47-bcc5-6a9c8153875b}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="50.14" uuid="{67dd48c0-0dda-499c-aa55-224f75f70c0c}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="70" uuid="{02cb24f4-c327-4802-b813-a12a2389a755}"/>
<terminal y="-40" type="Generic" name="01" orientation="n" x="-30" uuid="{54f46748-55ea-4642-9af9-257c122a062a}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="110" uuid="{c32a8e92-8a87-4cb4-a63b-f055b7164ad0}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="-119.86" uuid="{ec60a1d4-f481-4edc-abc5-b5037f596eb5}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="30" uuid="{843be5e1-2eae-438f-b7cb-424b12369d35}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="-99.86" uuid="{461536c0-cc2b-42b6-8d02-c863261a2688}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="-100" uuid="{3f5028bf-3dba-40ec-a925-56d098ba921e}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="10.14" uuid="{b10fbc12-5445-4fbc-bb70-adb5f85cd96f}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="-160" uuid="{2dbad4df-80ec-449f-9b6d-3e1b2976aa22}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="130.15" uuid="{c00dbddf-102e-425f-8453-9985e904c975}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="190" uuid="{ee1caef2-b9b8-41fb-9b1c-b98cc109753f}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="-139.85" uuid="{0ce2b148-2d32-42f5-976b-cc2fde126f59}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="130" uuid="{664149b6-c0bb-4acd-a17c-521bb9fd41c6}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="-180" uuid="{655fd653-24fd-49ad-8128-422a4ac51c7e}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="-160" uuid="{0bc9470d-51a1-4e3a-9d32-769ef53afcd3}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="30.14" uuid="{6df93baf-2a5a-43cb-b390-da7d94a076d9}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="150.15" uuid="{8ec15c77-2440-4ca9-a757-e56510facd05}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="90" uuid="{edb54ede-15e1-41e3-9b18-61530d98b1a3}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="109.88" uuid="{62c72ef3-fc5a-42bc-a4c0-3667b8981f16}"/>
<terminal y="-39" type="Generic" name="" orientation="n" x="-80" uuid="{79a97b90-57cd-47f3-bb32-f5b740f1f551}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="90.14" uuid="{aa704c47-46ab-4df7-b20b-2db94adb3222}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="50" uuid="{33b5ce91-93af-4c08-afd9-aff6007fbc72}"/>
<terminal y="-40" type="Generic" name="" orientation="n" x="170" uuid="{ef6df1d3-dba8-4e7b-be4b-e62d45fc5436}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="190" uuid="{fc0fa3ed-c8e8-482d-a6f5-f3a1482c0544}"/>
<terminal y="40" type="Generic" name="" orientation="s" x="170.15" uuid="{0ce8acd4-a116-4ca6-951b-301870782626}"/>
<terminal y="-40" type="Generic" name="02" orientation="n" x="-10" uuid="{de6c321a-05b4-405a-8806-3547c266718d}"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="6.465" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-143.535" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="66.465" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="126.465" antialias="false" y="-23.5"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-170" rx="0" antialias="false" ry="0" width="20" height="10" y="-25"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-123.535" antialias="false" y="-23.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="126.465" antialias="false" y="16.5"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-150" rx="0" antialias="false" ry="0" width="20" height="10" y="-25"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-83.535" antialias="false" y="16.5"/>
<text x="-100" color="#000000" text="RD2" rotation="0" y="10" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-83.535" antialias="false" y="-23.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-143.535" antialias="false" y="-23.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="106.465" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="6.465" antialias="false" y="-23.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13.535" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="186.465" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-103.535" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="46.465" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-163.535" antialias="false" y="16.5"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="80" rx="0" antialias="false" ry="0" width="60" height="10" y="15"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="66.465" antialias="false" y="-23.5"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-90" rx="0" antialias="false" ry="0" width="20" height="10" y="-25"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-190" rx="0" antialias="false" ry="0" width="60" height="10" y="15"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-130" rx="0" antialias="false" ry="0" width="60" height="10" y="15"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-130" rx="0" antialias="false" ry="0" width="40" height="10" y="-25"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="20" rx="0" antialias="false" ry="0" width="60" height="10" y="15"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-40" rx="0" antialias="false" ry="0" width="60" height="10" y="15"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="166.465" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-163.535" antialias="false" y="-23.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="186.465" antialias="false" y="-23.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-123.535" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-103.535" antialias="false" y="-23.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-183.535" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="86.465" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-33.535" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="26.465" antialias="false" y="16.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="106.465" antialias="false" y="-23.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13.535" antialias="false" y="-23.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="46.465" antialias="false" y="-23.5"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-40" rx="0" antialias="false" ry="0" width="60" height="10" y="-25"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="166.465" antialias="false" y="-23.5"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="80" rx="0" antialias="false" ry="0" width="60" height="10" y="-25"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="20" rx="0" antialias="false" ry="0" width="60" height="10" y="-25"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="26.465" antialias="false" y="-23.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-33.535" antialias="false" y="-23.5"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="86.465" antialias="false" y="-23.5"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="140" rx="0" antialias="false" ry="0" width="60" height="10" y="-25"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="140" rx="0" antialias="false" ry="0" width="60" height="10" y="15"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="146.465" antialias="false" y="-23.5"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-220" rx="0" antialias="false" ry="0" width="440" height="80" y="-40"/>
<circle diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" x="146.465" antialias="false" y="16.5"/>
<text x="-180" color="#000000" text="NO" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-160" color="#000000" text="C" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-140" color="#000000" text="NF" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-160" color="#000000" text="RD1" rotation="0" y="10" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text x="-120" color="#000000" text="NO" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-100" color="#000000" text="C" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-79" color="#000000" text="NF" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-29.8553" color="#000000" text="24" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-10" color="#000000" text="23" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="10" color="#000000" text="22" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="30" color="#000000" text="21" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="50" color="#000000" text="20" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="70" color="#000000" text="19" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="90" color="#000000" text="18" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="110" color="#000000" text="17" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="130" color="#000000" text="16" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="150" color="#000000" text="15" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="170" color="#000000" text="14" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="190" color="#000000" text="13" rotation="0" y="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-30.9073" color="#000000" text="01" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-10" color="#000000" text="02" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="30" color="#000000" text="04" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="50" color="#000000" text="05" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="70" color="#000000" text="06" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="90" color="#000000" text="07" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="110" color="#000000" text="08" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="130" color="#000000" text="09" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="150" color="#000000" text="10" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="170" color="#000000" text="11" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="190" color="#000000" text="12" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="10" color="#000000" text="03" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-165" color="#000000" text="24VTp" rotation="0" y="-30" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-145" color="#000000" text="+24V" rotation="0" y="-29" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-126" color="#000000" text="24VAC" rotation="0" y="-29" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-106" color="#000000" text="24VAC" rotation="0" y="-29" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text x="-83" color="#000000" text="0V" rotation="0" y="-29" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<line x1="-199.776" y2="0" length2="1.5" length1="1.5" y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end2="none" x2="-199.776" end1="none"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-204" rx="0" antialias="false" ry="0" width="0" height="1" y="-17"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-204" rx="0" antialias="false" ry="0" width="8.4474" height="15" y="-17"/>
<terminal x="-29.8553" orientation="s" y="40"/>
<terminal x="10" orientation="n" y="-40"/>
<terminal x="-79.8553" orientation="s" y="40"/>
<terminal x="70.1447" orientation="s" y="40"/>
<terminal x="-9.8553" orientation="s" y="40"/>
<terminal x="-140" orientation="n" y="-40"/>
<terminal x="150" orientation="n" y="-40"/>
<terminal x="-120" orientation="n" y="-39"/>
<terminal x="50.1447" orientation="s" y="40"/>
<terminal x="70" orientation="n" y="-40"/>
<terminal x="-30" orientation="n" y="-40"/>
<terminal x="110" orientation="n" y="-40"/>
<terminal x="-119.855" orientation="s" y="40"/>
<terminal x="30" orientation="n" y="-40"/>
<terminal x="-99.8553" orientation="s" y="40"/>
<terminal x="-100" orientation="n" y="-40"/>
<terminal x="10.1447" orientation="s" y="40"/>
<terminal x="-160" orientation="n" y="-40"/>
<terminal x="130.145" orientation="s" y="40"/>
<terminal x="190" orientation="n" y="-40"/>
<terminal x="-139.855" orientation="s" y="40"/>
<terminal x="130" orientation="n" y="-40"/>
<terminal x="-180" orientation="s" y="40"/>
<terminal x="-160" orientation="s" y="40"/>
<terminal x="30.1447" orientation="s" y="40"/>
<terminal x="150.145" orientation="s" y="40"/>
<terminal x="90" orientation="n" y="-40"/>
<terminal x="109.883" orientation="s" y="40"/>
<terminal x="-80" orientation="n" y="-39"/>
<terminal x="90.1447" orientation="s" y="40"/>
<terminal x="50" orientation="n" y="-40"/>
<terminal x="170" orientation="n" y="-40"/>
<terminal x="190" orientation="s" y="40"/>
<terminal x="170.145" orientation="s" y="40"/>
<terminal x="-10" orientation="n" y="-40"/>
</description>
</definition>

View File

@@ -1,148 +1,147 @@
<definition type="element" width="560" height="150" version="0.70" hotspot_x="5" hotspot_y="4" link_type="simple">
<uuid uuid="{0393ed13-81ec-405e-ad5b-5f99855e2cf6}"/>
<names>
<name lang="de">LED-Karte</name>
<name lang="fr">Carte à voyant</name>
</names>
<elementInformations>
<elementInformation name="machine_manufacturer_reference" show="1"/>
<elementInformation name="designation" show="1"/>
<elementInformation name="label" show="1"/>
<elementInformation name="plant" show="1"/>
<elementInformation name="comment" show="1"/>
<elementInformation name="supplier" show="1"/>
<elementInformation name="description" show="1"/>
<elementInformation name="manufacturer_reference" show="1"/>
<elementInformation name="unity" show="1"/>
<elementInformation name="manufacturer" show="1">Best</elementInformation>
<elementInformation name="quantity" show="1"/>
</elementInformations>
<informations/>
<description>
<circle x="182.5" y="102.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="182.5" y="22.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="362.5" y="102.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="362.5" y="22.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="452.5" y="102.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="452.5" y="22.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="272.5" y="22.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="272.5" y="102.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="302.5" y="102.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="482.5" y="102.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="302.5" y="22.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="482.5" y="22.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="212.5" y="102.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="212.5" y="22.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="392.5" y="102.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="392.5" y="22.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="422.5" y="102.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="512.5" y="102.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="422.5" y="22.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="332.5" y="102.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="512.5" y="22.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<rect x="355" y="100" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="90" height="20" antialias="false"/>
<circle x="76.5" y="111.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7" antialias="false"/>
<rect x="445" y="100" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="90" height="20" antialias="false"/>
<circle x="332.5" y="22.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<rect x="355" y="20" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="90" height="20" antialias="false"/>
<rect x="265" y="100" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="90" height="20" antialias="false"/>
<circle x="242.5" y="102.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<rect x="445" y="20" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="90" height="20" antialias="false"/>
<rect x="175" y="100" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="90" height="20" antialias="false"/>
<rect x="265" y="20" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="90" height="20" antialias="false"/>
<rect x="50" y="20" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="20" height="10" antialias="false"/>
<circle x="96.5" y="21.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7" antialias="false"/>
<rect x="70" y="20" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="20" height="10" antialias="false"/>
<circle x="136.5" y="111.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7" antialias="false"/>
<text x="120" y="107" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="RD2" color="#000000" rotation="0"/>
<circle x="136.5" y="21.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7" antialias="false"/>
<circle x="76.5" y="21.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7" antialias="false"/>
<circle x="242.5" y="22.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="15" antialias="false"/>
<circle x="116.5" y="111.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7" antialias="false"/>
<circle x="56.5" y="111.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7" antialias="false"/>
<rect x="130" y="20" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="20" height="10" antialias="false"/>
<rect x="30" y="110" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="60" height="10" antialias="false"/>
<rect x="90" y="110" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="60" height="10" antialias="false"/>
<rect x="90" y="20" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="40" height="10" antialias="false"/>
<circle x="56.5" y="21.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7" antialias="false"/>
<circle x="96.5" y="111.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7" antialias="false"/>
<circle x="116.5" y="21.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7" antialias="false"/>
<circle x="36.5" y="111.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="7" antialias="false"/>
<rect x="175" y="20" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="90" height="20" antialias="false"/>
<rect x="0" y="0" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="550" height="140" antialias="false"/>
<text x="40" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="NO" color="#000000" rotation="0"/>
<text x="60" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="C" color="#000000" rotation="0"/>
<text x="80" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="NF" color="#000000" rotation="0"/>
<text x="60" y="107" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="RD1" color="#000000" rotation="0"/>
<text x="100" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="NO" color="#000000" rotation="0"/>
<text x="120" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="C" color="#000000" rotation="0"/>
<text x="140" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="NF" color="#000000" rotation="0"/>
<text x="190" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="24" color="#000000" rotation="0"/>
<text x="220" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="23" color="#000000" rotation="0"/>
<text x="250" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="22" color="#000000" rotation="0"/>
<text x="280" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="21" color="#000000" rotation="0"/>
<text x="310" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="20" color="#000000" rotation="0"/>
<text x="340" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="19" color="#000000" rotation="0"/>
<text x="370" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="18" color="#000000" rotation="0"/>
<text x="400" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="17" color="#000000" rotation="0"/>
<text x="430" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="16" color="#000000" rotation="0"/>
<text x="460" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="15" color="#000000" rotation="0"/>
<text x="490" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="14" color="#000000" rotation="0"/>
<text x="520" y="135" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="13" color="#000000" rotation="0"/>
<text x="190" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="01" color="#000000" rotation="0"/>
<text x="220" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="02" color="#000000" rotation="0"/>
<text x="280" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="04" color="#000000" rotation="0"/>
<text x="310" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="05" color="#000000" rotation="0"/>
<text x="340" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="06" color="#000000" rotation="0"/>
<text x="370" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="07" color="#000000" rotation="0"/>
<text x="400" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="08" color="#000000" rotation="0"/>
<text x="430" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="09" color="#000000" rotation="0"/>
<text x="460" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="10" color="#000000" rotation="0"/>
<text x="490" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="11" color="#000000" rotation="0"/>
<text x="520" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="12" color="#000000" rotation="0"/>
<text x="250" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="03" color="#000000" rotation="0"/>
<text x="60" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="24VTp" color="#000000" rotation="0"/>
<text x="80" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="+24V" color="#000000" rotation="0"/>
<text x="100" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="24VAC" color="#000000" rotation="0"/>
<text x="120" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="24VAC" color="#000000" rotation="0"/>
<text x="140" y="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="0V" color="#000000" rotation="0"/>
<line x1="20" x2="20" y1="22" y2="43" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<rect x="16" y="25" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="0" height="1" antialias="false"/>
<rect x="16" y="25" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" height="15" antialias="false"/>
<terminal x="400" y="140" orientation="s"/>
<terminal x="250" y="140" orientation="s"/>
<terminal x="190" y="140" orientation="s"/>
<terminal x="100" y="0" orientation="n"/>
<terminal x="490" y="140" orientation="s"/>
<terminal x="80" y="0" orientation="n"/>
<terminal x="280" y="0" orientation="n"/>
<terminal x="460" y="140" orientation="s"/>
<terminal x="340" y="0" orientation="n"/>
<terminal x="370" y="0" orientation="n"/>
<terminal x="340" y="140" orientation="s"/>
<terminal x="220" y="0" orientation="n"/>
<terminal x="280" y="140" orientation="s"/>
<terminal x="400" y="0" orientation="n"/>
<terminal x="490" y="0" orientation="n"/>
<terminal x="140" y="140" orientation="s"/>
<terminal x="120" y="0" orientation="n"/>
<terminal x="430" y="0" orientation="n"/>
<terminal x="310" y="0" orientation="n"/>
<terminal x="370" y="140" orientation="s"/>
<terminal x="460" y="0" orientation="n"/>
<terminal x="190" y="0" orientation="n"/>
<terminal x="80" y="140" orientation="s"/>
<terminal x="40" y="140" orientation="s"/>
<terminal x="220" y="140" orientation="s"/>
<terminal x="60" y="140" orientation="s"/>
<terminal x="310" y="140" orientation="s"/>
<terminal x="100" y="140" orientation="s"/>
<terminal x="60" y="0" orientation="n"/>
<terminal x="520" y="140" orientation="s"/>
<terminal x="140" y="0" orientation="n"/>
<terminal x="430" y="140" orientation="s"/>
<terminal x="520" y="0" orientation="n"/>
<terminal x="250" y="0" orientation="n"/>
<terminal x="120" y="140" orientation="s"/>
</description>
<definition hotspot_y="4" hotspot_x="5" width="560" link_type="simple" type="element" height="150" version="0.70">
<uuid uuid="{0393ed13-81ec-405e-ad5b-5f99855e2cf6}"/>
<names>
<name lang="fr">Carte à voyant</name>
</names>
<elementInformations>
<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="unity" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1">Best</elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
</elementInformations>
<informations></informations>
<description>
<circle diameter="15" x="182.5" y="102.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="182.5" y="22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="362.5" y="102.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="362.5" y="22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="452.5" y="102.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="452.5" y="22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="272.5" y="22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="272.5" y="102.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="302.5" y="102.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="482.5" y="102.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="302.5" y="22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="482.5" y="22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="212.5" y="102.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="212.5" y="22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="392.5" y="102.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="392.5" y="22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="422.5" y="102.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="512.5" y="102.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="422.5" y="22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="332.5" y="102.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="512.5" y="22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="355" y="100" width="90" height="20" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="7" x="76.5" y="111.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="445" y="100" width="90" height="20" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="332.5" y="22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="355" y="20" width="90" height="20" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="265" y="100" width="90" height="20" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="242.5" y="102.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="445" y="20" width="90" height="20" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="175" y="100" width="90" height="20" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="265" y="20" width="90" height="20" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="50" y="20" width="20" height="10" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="7" x="96.5" y="21.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="70" y="20" width="20" height="10" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="7" x="136.5" y="111.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="120" color="#000000" y="107" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="RD2"/>
<circle diameter="7" x="136.5" y="21.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="7" x="76.5" y="21.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="15" x="242.5" y="22.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="7" x="116.5" y="111.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="7" x="56.5" y="111.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="130" y="20" width="20" height="10" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="30" y="110" width="60" height="10" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="90" y="110" width="60" height="10" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="90" y="20" width="40" height="10" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="7" x="56.5" y="21.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="7" x="96.5" y="111.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="7" x="116.5" y="21.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="7" x="36.5" y="111.5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="175" y="20" width="90" height="20" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="0" y="0" width="550" height="140" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="40" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="NO"/>
<text x="60" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="C"/>
<text x="80" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="NF"/>
<text x="60" color="#000000" y="107" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="RD1"/>
<text x="100" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="NO"/>
<text x="120" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="C"/>
<text x="140" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="NF"/>
<text x="190" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="24"/>
<text x="220" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="23"/>
<text x="250" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="22"/>
<text x="280" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="21"/>
<text x="310" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="20"/>
<text x="340" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="19"/>
<text x="370" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="18"/>
<text x="400" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="17"/>
<text x="430" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="16"/>
<text x="460" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="15"/>
<text x="490" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="14"/>
<text x="520" color="#000000" y="135" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="13"/>
<text x="190" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="01"/>
<text x="220" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="02"/>
<text x="280" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="04"/>
<text x="310" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="05"/>
<text x="340" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="06"/>
<text x="370" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="07"/>
<text x="400" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="08"/>
<text x="430" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="09"/>
<text x="460" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="10"/>
<text x="490" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="11"/>
<text x="520" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="12"/>
<text x="250" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="03"/>
<text x="60" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="24VTp"/>
<text x="80" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="+24V"/>
<text x="100" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="24VAC"/>
<text x="120" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="24VAC"/>
<text x="140" color="#000000" y="10" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="0V"/>
<line end1="none" end2="none" y1="22" length1="1.5" x2="20" y2="43" length2="1.5" antialias="false" x1="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="16" y="25" width="0" height="1" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" x="16" y="25" width="8" height="15" rx="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal orientation="s" x="400" y="140"/>
<terminal orientation="s" x="250" y="140"/>
<terminal orientation="s" x="190" y="140"/>
<terminal orientation="n" x="100" y="0"/>
<terminal orientation="s" x="490" y="140"/>
<terminal orientation="n" x="80" y="0"/>
<terminal orientation="n" x="280" y="0"/>
<terminal orientation="s" x="460" y="140"/>
<terminal orientation="n" x="340" y="0"/>
<terminal orientation="n" x="370" y="0"/>
<terminal orientation="s" x="340" y="140"/>
<terminal orientation="n" x="220" y="0"/>
<terminal orientation="s" x="280" y="140"/>
<terminal orientation="n" x="400" y="0"/>
<terminal orientation="n" x="490" y="0"/>
<terminal orientation="s" x="140" y="140"/>
<terminal orientation="n" x="120" y="0"/>
<terminal orientation="n" x="430" y="0"/>
<terminal orientation="n" x="310" y="0"/>
<terminal orientation="s" x="370" y="140"/>
<terminal orientation="n" x="460" y="0"/>
<terminal orientation="n" x="190" y="0"/>
<terminal orientation="s" x="80" y="140"/>
<terminal orientation="s" x="40" y="140"/>
<terminal orientation="s" x="220" y="140"/>
<terminal orientation="s" x="60" y="140"/>
<terminal orientation="s" x="310" y="140"/>
<terminal orientation="s" x="100" y="140"/>
<terminal orientation="n" x="60" y="0"/>
<terminal orientation="s" x="520" y="140"/>
<terminal orientation="n" x="140" y="0"/>
<terminal orientation="s" x="430" y="140"/>
<terminal orientation="n" x="520" y="0"/>
<terminal orientation="n" x="250" y="0"/>
<terminal orientation="s" x="120" y="140"/>
</description>
</definition>

View File

@@ -1,29 +1,23 @@
<definition ic="true" type="element" width="40" height="40" version="0.4" hotspot_x="12" hotspot_y="20" link_type="simple">
<uuid uuid="{9E3942A7-CE5B-46B8-B355-43285E21FF8A}"/>
<names>
<name lang="ru">Лампа</name>
<name lang="pt">Lâmpada</name>
<name lang="en">Light</name>
<name lang="de">Lampe, blau</name>
<name lang="fr">Lampe</name>
<name lang="es">Lámpara azul</name>
<name lang="cs">Kontrolka</name>
</names>
<informations>Author: The QElectroTech team
<definition width="40" version="0.4" hotspot_x="12" hotspot_y="20" height="40" link_type="simple" type="element" ic="true">
<uuid uuid="{9E3942A7-CE5B-46B8-B355-43285E21FF8A}"/><names>
<name lang="ru">Лампа</name>
<name lang="pt">Lâmpada</name>
<name lang="en">Light</name>
<name lang="fr">Lampe</name>
<name lang="es">Lámpara azul</name>
<name lang="cs">Kontrolka</name>
</names>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line x1="0" x2="0" y1="-15" y2="15" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<circle x="-8.5" y="-8.5" style="line-style:normal;line-weight:normal;filling:blue;color:black" diameter="17" antialias="true"/>
<line x1="6.22" x2="-6.14" y1="-5.33" y2="5.12" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<line x1="-6.14" x2="6.22" y1="-5.33" y2="5.12" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<dynamic_text x="15" y="-8.5" z="5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{5e3bea5c-4602-45c1-9dca-be100942ed3f}" frame="false" rotation="0" text_from="UserText" Halignment="AlignLeft" Valignment="AlignTop" text_width="-1" keep_visual_rotation="false">
<text/>
</dynamic_text>
<dynamic_text x="5.5" y="-5.5" z="6" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{add0969f-5504-4c50-bbc3-3f2183db4025}" frame="false" rotation="0" text_from="ElementInfo" Halignment="AlignLeft" Valignment="AlignTop" text_width="-1" keep_visual_rotation="false">
<text/>
<info_name>label</info_name>
</dynamic_text>
<terminal x="0" y="-15" name="" type="Generic" uuid="{a18642fe-cb88-46c0-a178-1ec47b939b27}" orientation="n"/>
<terminal x="0" y="15" name="" type="Generic" uuid="{78c445e3-750a-444b-80c3-62f11922386c}" orientation="s"/>
</description>
<description>
<ellipse width="14.5169" x="-7.5012" y="-6.95514" antialias="true" height="13.3034" 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="-4.97958" x1="4.85994" y2="4.37273" x2="-5.34544"/>
<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="-4.97958" x1="-5.34544" y2="4.37273" x2="4.85994"/>
<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="-13.6069" x1="-0.242746" y2="-6.95514" x2="-0.242746"/>
<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="6.34829" x1="-0.242746" y2="13" x2="-0.242746"/>
<input x="15" y="3" size="9" text="" tagg="none"/>
<input x="4.83817" y="2.68985" size="6" rotate="true" text="_" tagg="label"/>
<terminal x="0" y="-15" orientation="n"/>
<terminal x="0" y="14" orientation="s"/>
</description>
</definition>

View File

@@ -1,32 +1,24 @@
<definition hotspot_x="13" version="0.90" type="element" height="50" width="30" hotspot_y="25" link_type="simple">
<uuid uuid="{1a7e1030-4163-4d97-b130-6620346741ca}"/>
<names>
<definition width="40" version="0.4" hotspot_x="13" hotspot_y="20" height="40" link_type="simple" type="element" ic="true">
<uuid uuid="{70564EDE-85D0-46CA-8D43-7F773B9F1E6B}"/><names>
<name lang="ru">Лампа</name>
<name lang="es">Lámpara roja</name>
<name lang="pt">Lâmpada</name>
<name lang="de">Lampe, rot</name>
<name lang="en">Light</name>
<name lang="cs">Kontrolka</name>
<name lang="fr">Lampe</name>
<name lang="es">Lámpara roja</name>
<name lang="cs">Kontrolka</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line x2="0" y1="-15" y2="15" x1="0" length1="1.5" antialias="false" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5"/>
<circle y="-8.5" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" x="-8.5" diameter="17"/>
<line x2="-6.14" y1="-5.33" y2="5.12" x1="6.22" length1="1.5" antialias="false" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5"/>
<line x2="6.22" y1="-5.33" y2="5.12" x1="-6.14" length1="1.5" antialias="false" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5"/>
<dynamic_text y="-8.5" Valignment="AlignTop" text_from="UserText" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" x="15" frame="false" text_width="-1" z="5" keep_visual_rotation="false" uuid="{5e3bea5c-4602-45c1-9dca-be100942ed3f}">
<text></text>
</dynamic_text>
<dynamic_text y="-5.5" Valignment="AlignTop" text_from="ElementInfo" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" x="5.5" frame="false" text_width="-1" z="6" keep_visual_rotation="false" uuid="{add0969f-5504-4c50-bbc3-3f2183db4025}">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text y="-5" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="2" text="X1"/>
<text y="20" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="2" text="X2"/>
<terminal y="15" orientation="s" name="" x="0" type="Generic" uuid="{78c445e3-750a-444b-80c3-62f11922386c}"/>
<terminal y="-15" orientation="n" name="" x="0" type="Generic" uuid="{a18642fe-cb88-46c0-a178-1ec47b939b27}"/>
<polygon style="line-style:normal;line-weight:normal;filling:red;color:red" x1="-6.61784" x2="-8.37626" x3="-8.37626" x4="-7.49705" antialias="false" x5="-4.85942" x6="-0.463379" x7="3.05345" x8="5.69108" x9="7.4495" y1="-5.31158" y10="-0.849266" y2="-2.3367" y11="-3.82414" y3="0.638173" y4="3.61305" y12="-6.0553" y5="5.84421" x10="7.4495" y13="-6.79902" y6="7.33165" x11="6.57029" y14="-6.79902" y7="6.58793" x12="4.81187" y15="-5.31158" y8="4.35677" x13="1.29504" y9="2.12561" x14="-3.10101" x15="-6.61784"/>
<ellipse width="17.5842" x="-9.25546" y="-7.54274" antialias="true" height="14.8744" style="line-style:normal;line-weight:normal;filling:none;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="-5.33389" x1="5.71746" y2="5.1228" x2="-6.64422"/>
<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="-5.33389" x1="-6.64422" y2="5.1228" x2="5.71746"/>
<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="-14.9799" x1="-0.463379" y2="-7.54274" x2="-0.463379"/>
<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="7.33165" x1="-0.463379" y2="14.7688" x2="-0.463379"/>
<input x="15" y="3" size="9" text="" tagg="none"/>
<input x="5.69108" y="3.24119" size="6" rotate="true" text="_" tagg="label"/>
<terminal x="-0.463379" y="-15.7237" orientation="n"/>
<terminal x="-0.463379" y="15.5126" orientation="s"/>
</description>
</definition>

View File

@@ -1,30 +1,24 @@
<definition ic="true" type="element" width="40" height="40" version="0.4" hotspot_x="12" hotspot_y="20" link_type="simple">
<uuid uuid="{A7DFB114-E3C5-4BCB-A855-248EE6D25ABE}"/>
<names>
<name lang="ru">Лампа</name>
<name lang="pt">Lâmpada</name>
<name lang="en">Light</name>
<name lang="de">Lampe, grün</name>
<name lang="fr">Lampe</name>
<name lang="es">Lámpara verde</name>
<name lang="ca">Lum verda</name>
<name lang="cs">Kontrolka</name>
</names>
<informations>Author: The QElectroTech team
<definition width="40" version="0.4" hotspot_x="12" hotspot_y="20" height="40" link_type="simple" type="element" ic="true">
<uuid uuid="{A7DFB114-E3C5-4BCB-A855-248EE6D25ABE}"/><names>
<name lang="ru">Лампа</name>
<name lang="pt">Lâmpada</name>
<name lang="en">Light</name>
<name lang="fr">Lampe</name>
<name lang="es">Lámpara verde</name>
<name lang="ca">Lum verda</name>
<name lang="cs">Kontrolka</name>
</names>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line x1="0" x2="0" y1="-15" y2="15" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<circle x="-8.5" y="-8.5" style="line-style:normal;line-weight:normal;filling:green;color:black" diameter="17" antialias="true"/>
<line x1="6.22" x2="-6.14" y1="-5.33" y2="5.12" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<line x1="-6.14" x2="6.22" y1="-5.33" y2="5.12" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<dynamic_text x="15" y="-8.5" z="5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{5e3bea5c-4602-45c1-9dca-be100942ed3f}" frame="false" rotation="0" text_from="UserText" Halignment="AlignLeft" Valignment="AlignTop" text_width="-1" keep_visual_rotation="false">
<text/>
</dynamic_text>
<dynamic_text x="5.5" y="-5.5" z="6" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{add0969f-5504-4c50-bbc3-3f2183db4025}" frame="false" rotation="0" text_from="ElementInfo" Halignment="AlignLeft" Valignment="AlignTop" text_width="-1" keep_visual_rotation="false">
<text/>
<info_name>label</info_name>
</dynamic_text>
<terminal x="0" y="-15" name="" type="Generic" uuid="{a18642fe-cb88-46c0-a178-1ec47b939b27}" orientation="n"/>
<terminal x="0" y="15" name="" type="Generic" uuid="{78c445e3-750a-444b-80c3-62f11922386c}" orientation="s"/>
</description>
<description>
<ellipse width="14.5169" x="-7.5012" y="-6.95514" antialias="true" height="13.3034" style="line-style:normal;line-weight:normal;filling:green;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="-4.97958" x1="4.85994" y2="4.37273" x2="-5.34544"/>
<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="-4.97958" x1="-5.34544" y2="4.37273" x2="4.85994"/>
<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="-13.6069" x1="-0.242746" y2="-6.95514" x2="-0.242746"/>
<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="6.34829" x1="-0.242746" y2="13" x2="-0.242746"/>
<input x="15" y="3" size="9" text="" tagg="none"/>
<input x="4.83817" y="2.68985" size="6" rotate="true" text="_" tagg="label"/>
<terminal x="0" y="-15" orientation="n"/>
<terminal x="0" y="14" orientation="s"/>
</description>
</definition>

View File

@@ -1,30 +1,30 @@
<definition type="element" width="30" height="60" version="0.5" hotspot_x="13" hotspot_y="29" link_type="simple">
<uuid uuid="{5a60adde-9bf3-4aa6-9927-597956ad0db3}"/>
<names>
<name lang="fr">Lampe clignotante</name>
<name lang="de">Blinkleuchte</name>
<name lang="it">Luce intermittente</name>
<name lang="es">Luz intermitente</name>
<name lang="ar">مصباح رفّاف</name>
<name lang="ru">Проблесковый маяк</name>
<name lang="el">Λυχνία με παλλόμενο φως</name>
<name lang="pt">Luz intermitente</name>
<name lang="cs">Blikající světlo</name>
<name lang="en">Flashing light</name>
<name lang="pl">Lampa sygnalizacyjna o świetle migowym</name>
<name lang="nl">Knipperlamp</name>
</names>
<informations>Author: The QElectroTech team
<definition height="60" link_type="simple" type="element" hotspot_y="29" version="0.5" hotspot_x="13" width="30">
<uuid uuid="{5a60adde-9bf3-4aa6-9927-597956ad0db3}"/>
<names>
<name lang="fr">Lampe clignotante</name>
<name lang="de">Blinkleuchte</name>
<name lang="it">Luce intermittente</name>
<name lang="es">Luz intermitente</name>
<name lang="ar">مصباح رفّاف</name>
<name lang="ru">Проблесковый маяк</name>
<name lang="el">Λυχνία με παλλόμενο φως</name>
<name lang="pt">Luz intermitente</name>
<name lang="cs">Blikající světlo</name>
<name lang="en">Flashing light</name>
<name lang="pl">Lampa sygnalizacyjna o świetle migowym</name>
<name lang="nl">Knipperlamp</name>
</names>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon x1="5" x2="7" x3="7" x4="12" x5="12" x6="14" y1="20" y2="20" y3="15" y4="15" y5="20" y6="20" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" antialias="false"/>
<circle x="-10" y="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" antialias="true"/>
<line x1="7.03" x2="-7.03" y1="-7.03" y2="7.03" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<line x1="-7.03" x2="7.03" y1="-7.03" y2="7.03" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<line x1="0" x2="0" y1="-20" y2="-10" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<line x1="0" x2="0" y1="10" y2="20" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<input x="15" y="3" size="9" tagg="label" text="H_"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="0" y="20" orientation="s"/>
</description>
<description>
<polygon x4="12" y2="20" antialias="false" y6="20" y5="20" x6="14" x1="5" y1="20" closed="false" x3="7" x2="7" x5="12" y3="15" y4="15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle y="-10" x="-10" antialias="true" diameter="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="7.03" antialias="false" x1="7.03" y1="-7.03" length2="1.5" length1="1.5" x2="-7.03" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="7.03" antialias="false" x1="-7.03" y1="-7.03" length2="1.5" length1="1.5" x2="7.03" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="-10" antialias="false" x1="0" y1="-20" length2="1.5" length1="1.5" x2="0" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="20" antialias="false" x1="0" y1="10" length2="1.5" length1="1.5" x2="0" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input y="3" text="H_" x="15" size="9" tagg="label"/>
<terminal y="-21" x="0" orientation="n"/>
<terminal y="21" x="0" orientation="s"/>
</description>
</definition>

View File

@@ -1,28 +1,28 @@
<definition type="element" width="50" height="60" version="0.5" hotspot_x="16" hotspot_y="29" link_type="simple">
<uuid uuid="{b023f4b0-b88f-4fb9-9aa1-49826bd42be1}"/>
<names>
<name lang="fr">Voyant avec transformateur</name>
<name lang="de">Meldeleuchte mit Transformator</name>
<name lang="it">Luce con trasformatore</name>
<name lang="ar">مصباح بمُحوّل</name>
<name lang="el">Λυχνία με μετασχηματιστή</name>
<name lang="cs">Kontrolka s transformátorem</name>
<name lang="en">Light with transformer</name>
<name lang="es">Lampara con transformador</name>
<name lang="pl">Wskaźnik optyczny transformatorowy</name>
<name lang="nl">Lamp met transformator</name>
</names>
<informations>Author: The QElectroTech team
<definition height="60" link_type="simple" type="element" hotspot_y="29" version="0.5" hotspot_x="16" width="50">
<uuid uuid="{b023f4b0-b88f-4fb9-9aa1-49826bd42be1}"/>
<names>
<name lang="fr">Voyant avec transformateur</name>
<name lang="de">Meldeleuchte mit Transformator</name>
<name lang="it">Luce con trasformatore</name>
<name lang="ar">مصباح بمُحوّل</name>
<name lang="el">Λυχνία με μετασχηματιστή</name>
<name lang="cs">Kontrolka s transformátorem</name>
<name lang="en">Light with transformer</name>
<name lang="es">Lampara con transformador</name>
<name lang="pl">Wskaźnik optyczny transformatorowy</name>
<name lang="nl">Lamp met transformator</name>
</names>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<circle x="-10" y="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" antialias="true"/>
<input x="33" y="0.55" size="9" tagg="label" text="_" rotate="true"/>
<circle x="7" y="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" antialias="true"/>
<line x1="24.03" x2="9.97" y1="-7.03" y2="7.03" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<line x1="9.97" x2="24.03" y1="-7.03" y2="7.03" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<line x1="0" x2="0" y1="-20" y2="-10" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<line x1="0" x2="0" y1="10" y2="20" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="0" y="20" orientation="s"/>
</description>
<description>
<circle y="-10" x="-10" antialias="true" diameter="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input y="0.55" text="_" x="33" rotate="true" size="9" tagg="label"/>
<circle y="-10" x="7" antialias="true" diameter="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="7.03" antialias="false" x1="24.03" y1="-7.03" length2="1.5" length1="1.5" x2="9.97" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="7.03" antialias="false" x1="9.97" y1="-7.03" length2="1.5" length1="1.5" x2="24.03" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="-10" antialias="false" x1="0" y1="-20" length2="1.5" length1="1.5" x2="0" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="20" antialias="false" x1="0" y1="10" length2="1.5" length1="1.5" x2="0" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="-21" x="0" orientation="n"/>
<terminal y="21" x="0" orientation="s"/>
</description>
</definition>

View File

@@ -1,29 +1,28 @@
<definition type="element" width="60" height="50" version="0.3" hotspot_x="15" hotspot_y="25" orientation="dnny">
<uuid uuid="{0319D98A-1348-4904-A5CB-787A8D6280CD}"/>
<names>
<name lang="ar">مُؤشّر ضوئي لمفتاح ضاغط</name>
<name lang="el">Μπουτόν, φωτειζόμενο με LED</name>
<name lang="en">LED of an illuminated push-button</name>
<name lang="es">LED en un pulsador iluminado</name>
<name lang="de">Meldeleuchte eines Drucktasters</name>
<name lang="it">Spia luminosa a LED</name>
<name lang="fr">Voyant d'un bouton poussoir lumineux</name>
<name lang="pl">Łącznik przyciskowy podświetlony</name>
<name lang="cs">Prosvětlené tlačítko</name>
<name lang="nl">lamp van drukknop </name>
</names>
<informations>Author: The QElectroTech team
<definition width="60" version="0.3" hotspot_x="15" hotspot_y="25" height="50" type="element" orientation="dnny">
<uuid uuid="{0319D98A-1348-4904-A5CB-787A8D6280CD}"/><names>
<name lang="ar">مُؤشّر ضوئي لمفتاح ضاغط</name>
<name lang="el">Μπουτόν, φωτειζόμενο με LED</name>
<name lang="en">LED of an illuminated push-button</name>
<name lang="es">LED en un pulsador iluminado</name>
<name lang="de">Meldeleuchte eines Drucktasters</name>
<name lang="it">Spia luminosa a LED</name>
<name lang="fr">Voyant d'un bouton poussoir lumineux</name>
<name lang="pl">Łącznik przyciskowy podświetlony</name>
<name lang="cs">Prosvětlené tlačítko</name>
<name lang="nl">lamp van drukknop </name>
</names>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line x1="10" x2="20" y1="0" y2="0" end1="none" end2="none" style="line-style:dashed;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<polygon x1="17" x2="20" x3="20" x4="17" y1="5" y2="5" y3="-5" y4="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" antialias="false"/>
<circle x="-10" y="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" antialias="true"/>
<line x1="7.03" x2="-7.03" y1="-7.03" y2="7.03" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<line x1="-7.03" x2="7.03" y1="-7.03" y2="7.03" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<line x1="0" x2="0" y1="-20" y2="-10" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<line x1="0" x2="0" y1="10" y2="20" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" antialias="false"/>
<input x="23" y="-1.5" size="9" tagg="label" text="_" rotate="true"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="0" y="20" orientation="s"/>
</description>
<description>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:dashed;line-weight:normal;filling:none;color:black" y1="0" x1="10" y2="0" x2="20"/>
<polygon x4="17" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="5" x1="17" y2="5" x2="20" y3="-5" x3="20" y4="-5"/>
<circle x="-10" y="-10" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20"/>
<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="-7.03" x1="7.03" y2="7.03" x2="-7.03"/>
<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="-7.03" x1="-7.03" y2="7.03" x2="7.03"/>
<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="-20" x1="0" y2="-10" 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="10" x1="0" y2="20" x2="0"/>
<input x="23" y="-1.5" size="9" rotate="true" text="_" tagg="label"/>
<terminal x="0" y="-21" orientation="n"/>
<terminal x="0" y="21" orientation="s"/>
</description>
</definition>

View File

@@ -1,35 +1,29 @@
<definition type="element" hotspot_y="30" hotspot_x="14" link_type="simple" width="30" height="60" version="0.90">
<uuid uuid="{2b0973a9-d0f8-42e1-b28b-0571dadc72e8}"/>
<definition height="60" link_type="simple" type="element" hotspot_y="29" version="0.5" hotspot_x="15" width="30">
<uuid uuid="{41cad2a6-e90a-4d04-90af-ff74e15e3031}"/>
<names>
<name lang="fr">Voyant flash</name>
<name lang="de">Blinklicht</name>
<name lang="it">Luce intermittente</name>
<name lang="el">Λυχνία με παλλόμενο φως</name>
<name lang="ar">مُؤشّر وميضي</name>
<name lang="el">Λυχνία με παλλόμενο φως</name>
<name lang="cs">Blikající světlo</name>
<name lang="en">Flashing light</name>
<name lang="es">Lampara intermitente</name>
<name lang="pl">Wskaźnik optyczny o świetle migowym</name>
<name lang="en">Flashing light</name>
<name lang="nl">Knipperlicht</name>
<name lang="de">Blinklicht</name>
<name lang="fr">Voyant flash</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team&#xd;
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="13" uuid="{52feb3dc-7d99-477d-9675-e980db92c85c}" frame="false" Halignment="AlignLeft" keep_visual_rotation="false" z="1" text_width="-1" Valignment="AlignTop" y="-15.95" text_from="ElementInfo">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="2" text="X2" y="20" color="#000000"/>
<polygon x2="-7" y2="7" y5="0" y4="-7" antialias="false" x1="0" style="line-style:normal;line-weight:normal;filling:black;color:black" x3="-10" y3="0" x5="0" x4="-7" y1="0"/>
<polygon x2="7" y2="-7" y5="0" y7="0" y4="7" y6="0" antialias="false" x1="0" style="line-style:normal;line-weight:normal;filling:black;color:black" x3="10" y3="0" x5="0" x4="7" x6="0" x7="0" y1="0"/>
<circle x="-10" antialias="true" diameter="20" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10"/>
<line x2="-7.03" y2="7.03" end1="none" length1="1.5" antialias="false" x1="7.03" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y1="-7.03"/>
<line x2="7.03" y2="7.03" end1="none" length1="1.5" antialias="false" x1="-7.03" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y1="-7.03"/>
<line x2="0" y2="-10" end1="none" length1="1.5" antialias="false" x1="0" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y1="-20"/>
<line x2="0" y2="20" end1="none" length1="1.5" antialias="false" x1="0" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y1="10"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="2" text="X1" y="-15" color="#000000"/>
<terminal type="Generic" x="0" orientation="s" uuid="{40fe89f2-f4f2-4cc1-9b77-5fc8dc2d0142}" y="20" name=""/>
<terminal type="Generic" x="0" orientation="n" uuid="{156f4a82-5703-42f5-a23a-f8338411e883}" y="-20" name=""/>
<input y="-4.45" text="_" x="13" rotate="true" size="9" tagg="label"/>
<polygon x4="-7" y2="7" antialias="false" y5="0" x1="0" y1="0" x3="-10" x2="-7" x5="0" y3="0" y4="-7" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<polygon x4="7" y2="-7" y7="0" antialias="false" y6="0" y5="0" x6="0" x1="0" y1="0" x3="10" x2="7" x5="0" y3="0" y4="7" x7="0" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle y="-10" x="-10" antialias="true" diameter="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="7.03" antialias="false" x1="7.03" y1="-7.03" length2="1.5" length1="1.5" x2="-7.03" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="7.03" antialias="false" x1="-7.03" y1="-7.03" length2="1.5" length1="1.5" x2="7.03" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="-10" antialias="false" x1="0" y1="-20" length2="1.5" length1="1.5" x2="0" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="20" antialias="false" x1="0" y1="10" length2="1.5" length1="1.5" x2="0" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="-21" x="0" orientation="n"/>
<terminal y="21" x="0" orientation="s"/>
</description>
</definition>

View File

@@ -1,31 +1,29 @@
<definition hotspot_y="24" hotspot_x="10" type="element" link_type="simple" version="0.90" width="50" height="50">
<uuid uuid="{7b87c67d-c6bc-4cc4-b997-0fa0a1b4421f}"/>
<definition height="50" hotspot_y="24" version="0.60" width="50" type="element" hotspot_x="10" link_type="simple">
<uuid uuid="{b9c6cdc5-159d-458d-95b1-1eb8c4685dd3}"/>
<names>
<name lang="fr">Avertisseur</name>
<name lang="nl">Toeter</name>
<name lang="es">Bocina</name>
<name lang="it">Tromba</name>
<name lang="ru">Горн</name>
<name lang="ar">مُنبّه</name>
<name lang="el">Κόρνα</name>
<name lang="en">Horn</name>
<name lang="de">Warnhupe</name>
<name lang="pt">Buzina</name>
<name lang="pl">Buczek</name>
<name lang="nl">Toeter</name>
<name lang="el">Κόρνα</name>
<name lang="pt">Buzina</name>
<name lang="fr">Avertisseur</name>
<name lang="it">Tromba</name>
<name lang="de">Warnhupe</name>
<name lang="cs">Houkačka</name>
<name lang="en">Horn</name>
<name lang="ru">Горн</name>
<name lang="es">Bocina</name>
<name lang="ar">مُنبّه</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" end2="none" end1="none" y2="20" y1="-20" antialias="false" x2="0" length1="1.5" length2="1.5"/>
<rect y="-12" style="line-style:normal;line-weight:normal;filling:white;color:black" ry="0" x="-6" width="12" height="24" rx="0" antialias="false"/>
<polygon style="line-style:normal;line-weight:normal;filling:white;color:black" x1="6" y3="-10" y2="10" y1="5" x4="6" antialias="true" y4="-5" x2="36" x3="26"/>
<dynamic_text y="-8.5" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" Valignment="AlignTop" z="4" x="41" frame="false" text_from="ElementInfo" keep_visual_rotation="false" uuid="{e8358a96-3528-4d52-b12c-4411b54a3e10}" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal y="20" orientation="s" x="0" type="Generic" name="A2" uuid="{8c091f38-cbe7-4a39-b20f-8395634b930b}"/>
<terminal y="-20" orientation="n" x="0" type="Generic" name="A1" uuid="{bc5f0ef2-6810-4390-abea-292b295a6d81}"/>
<polygon y1="5" closed="false" y4="-5" antialias="true" y2="10" y3="-10" x1="6" x3="26" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="36" x4="6"/>
<input y="3" x="41" tagg="label" size="9" text="_"/>
<line length1="1.5" y1="12" antialias="false" y2="12" end1="none" x1="6" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-6" end2="none"/>
<line length1="1.5" y1="-12" antialias="false" y2="12" end1="none" x1="6" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="6" end2="none"/>
<line length1="1.5" y1="-12" antialias="false" y2="12" end1="none" x1="-6" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-6" end2="none"/>
<line length1="1.5" y1="-12" antialias="false" y2="-12" end1="none" x1="-6" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="6" end2="none"/>
<terminal y="16" x="0" orientation="s"/>
<terminal y="-16" x="0" orientation="n"/>
</description>
</definition>

View File

@@ -1,29 +1,28 @@
<definition width="30" link_type="simple" hotspot_y="19" hotspot_x="15" version="0.90" height="40" type="element">
<uuid uuid="{c9f95cb7-f919-4ed3-a6b5-ec2c086b18de}"/>
<definition height="40" link_type="simple" type="element" hotspot_y="19" version="0.5" hotspot_x="15" width="30">
<uuid uuid="{3aea23d8-a9ab-4ece-bce6-a5156c8313db}"/>
<names>
<name lang="fr">Haut-parleur</name>
<name lang="en">Speaker</name>
<name lang="el">Ηχείο</name>
<name lang="pl">Głośnik</name>
<name lang="de">Lautsprecher</name>
<name lang="it">Altoparlante</name>
<name lang="ar">سمّاعة</name>
<name lang="nl">Luidspreker</name>
<name lang="el">Ηχείο</name>
<name lang="cs">Reproduktor</name>
<name lang="en">Speaker</name>
<name lang="es">Bocina</name>
<name lang="pl">Głośnik</name>
<name lang="nl">Luidspreker</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text keep_visual_rotation="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" uuid="{cfd67ab0-3b0b-4840-ab79-c9cd5f2a4039}" frame="false" text_from="ElementInfo" x="14" z="1" Valignment="AlignTop" Halignment="AlignLeft" rotation="0" y="-9.95">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon y3="14" y1="-8" x2="11" x3="11" x1="3" y2="-14" y5="-8" x5="3" x4="3" antialias="false" y4="8" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="6" ry="0" x="-3" rx="0" antialias="false" height="16" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-8"/>
<polygon y3="-5" y1="-15" x2="-10" y6="15" x3="-3" x6="-10" x1="-10" y2="-5" y5="5" x5="-10" x4="-3" antialias="false" y4="5" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal name="A2" uuid="{3f6cfe1d-546f-4f32-85ab-3fb971ca4b59}" orientation="s" x="-10" type="Generic" y="15"/>
<terminal name="A1" uuid="{558ab7ac-d054-4d12-9369-932c569ff5ef}" orientation="n" x="-10" type="Generic" y="-15"/>
<input y="1.55" text="_" x="14" rotate="true" size="9" tagg="label"/>
<polygon x4="3" y2="-14" antialias="false" y5="-8" x1="3" y1="-8" closed="false" x3="11" x2="11" x5="3" y3="14" y4="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect y="-8" height="16" x="-3" antialias="false" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="-5" antialias="false" x1="-3" y1="-5" length2="1.5" length1="1.5" x2="-10" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="5" antialias="false" x1="-3" y1="5" length2="1.5" length1="1.5" x2="-10" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="-11" antialias="false" x1="-10" y1="-5" length2="1.5" length1="1.5" x2="-10" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="5" antialias="false" x1="-10" y1="11" length2="1.5" length1="1.5" x2="-10" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="14" x="-10" orientation="s"/>
<terminal y="-14" x="-10" orientation="n"/>
</description>
</definition>

View File

@@ -1,30 +1,30 @@
<definition link_type="simple" hotspot_x="6" width="40" type="element" version="0.90" height="50" hotspot_y="24">
<uuid uuid="{aceabf6d-9db8-449a-a91f-f71ff9aad879}"/>
<names>
<name lang="fr">Sirène</name>
<name lang="ru">Сирена</name>
<name lang="de">Sirene</name>
<name lang="en">Siren</name>
<name lang="el">Σειρήνα</name>
<name lang="cs">Siréna</name>
<definition width="60" version="0.3" hotspot_x="10" hotspot_y="30" height="60" type="element">
<uuid uuid="{02481F43-0948-4ABA-B595-14290CFA93D7}"/><names>
<name lang="ar">صفّارة إنذار</name>
<name lang="nl">Sirene</name>
<name lang="de">Sirene</name>
<name lang="ru">Сирена</name>
<name lang="pt">Sirene</name>
<name lang="el">Σειρήνα</name>
<name lang="en">Siren</name>
<name lang="it">Sirena</name>
<name lang="fr">Sirène</name>
<name lang="pl">Syrena</name>
<name lang="es">Sirena</name>
<name lang="cs">Siréna</name>
<name lang="nl">Sirene</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" keep_visual_rotation="false" text_width="-1" Valignment="AlignTop" z="1" frame="false" Halignment="AlignLeft" x="35" uuid="{4202f0f5-05ab-41af-9612-da9c24b976cc}" y="-8.5" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon y1="-10" y2="10" x3="30" style="line-style:normal;line-weight:normal;filling:white;color:black" x1="20" antialias="false" x2="20" y3="0"/>
<polygon y1="-20" y2="-5" x3="20" y6="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" antialias="false" x2="0" x4="20" y3="-5" x5="0" y5="5" y4="5" x6="0" closed="false"/>
<terminal type="Generic" orientation="s" name="A2" x="0" uuid="{112f4a5d-3a40-48f9-8746-dcd5c64bffb9}" y="20"/>
<terminal type="Generic" orientation="n" name="A1" x="0" uuid="{95da3481-88c4-4a1e-9419-7033b26f198f}" y="-20"/>
<input x="35" y="3" size="9" text="_" tagg="label"/>
<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="30" y2="10" x2="20"/>
<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" x1="20" y2="0" x2="30"/>
<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" x1="20" y2="10" x2="20"/>
<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="5" x1="0" y2="20" 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="5" x1="20" y2="5" 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="-5" x1="0" y2="-5" x2="20"/>
<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="-20" x1="0" y2="-5" x2="0"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="0" y="20" orientation="s"/>
</description>
</definition>

View File

@@ -1,31 +1,29 @@
<definition hotspot_x="6" hotspot_y="24" width="30" height="50" version="0.90" type="element" link_type="simple">
<uuid uuid="{07108acf-c5d0-4236-8638-780c4ea104e5}"/>
<names>
<name lang="ru">Звонок</name>
<name lang="pl">Dzwonek</name>
<name lang="el">Κουδούνι</name>
<name lang="pt">Campaínha</name>
<name lang="cs">Zvonek</name>
<name lang="fr">Sonnerie</name>
<name lang="es">Timbre</name>
<name lang="it">Campanella</name>
<name lang="nl">Bel</name>
<name lang="de">Klingel</name>
<definition width="60" version="0.3" hotspot_x="10" hotspot_y="30" height="60" type="element">
<uuid uuid="{B32B5892-320F-4D88-B51E-435A2D74DAB6}"/><names>
<name lang="ar">جرس</name>
<name lang="de">Klingel</name>
<name lang="ru">Звонок</name>
<name lang="pt">Campaínha</name>
<name lang="el">Κουδούνι</name>
<name lang="en">Bell</name>
<name lang="it">Campanella</name>
<name lang="fr">Sonnerie</name>
<name lang="pl">Dzwonek</name>
<name lang="es">Timbre</name>
<name lang="cs">Zvonek</name>
<name lang="nl">Bel</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text Valignment="AlignTop" text_width="-1" frame="false" y="-8.5" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" keep_visual_rotation="false" x="35" rotation="0" uuid="{67256a36-07c7-4d14-a316-a0f6a85c5116}" z="1">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<arc start="90" y="-10" width="20" height="20" x="10" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<line y1="-10" x2="20" end2="none" end1="none" x1="20" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="10" antialias="false" length1="1.5" length2="1.5"/>
<polygon y1="-20" y2="-5" x3="20" y6="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" antialias="false" x2="0" x4="20" y3="-5" x5="0" y5="5" y4="5" x6="0" closed="false"/>
<terminal orientation="s" y="20" x="0" uuid="{489e5343-f20e-4795-afaa-5e315ad152cc}" name="A2" type="Generic"/>
<terminal orientation="n" y="-20" x="0" uuid="{eb1b606d-779d-4355-bb0b-87cef400b251}" name="A1" type="Generic"/>
<input x="35" y="3" size="9" text="_" tagg="label"/>
<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="-5" x1="0" y2="-20" 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="5" x1="0" y2="20" x2="0"/>
<arc width="20" x="10" y="-10" antialias="true" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="-180"/>
<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" x1="20" y2="10" x2="20"/>
<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="-5" x1="20" y2="-5" 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="5" x1="0" y2="5" x2="20"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="0" y="20" orientation="s"/>
</description>
</definition>

View File

@@ -1,30 +1,29 @@
<definition hotspot_y="24" height="50" link_type="simple" width="40" hotspot_x="6" version="0.90" type="element">
<uuid uuid="{753b9301-b909-4f60-bee4-318e53b9f3d8}"/>
<definition height="40" link_type="simple" type="element" hotspot_y="19" version="0.5" hotspot_x="15" width="30">
<uuid uuid="{1d4b77ad-4422-48c7-9801-f6e5789e7f15}"/>
<names>
<name lang="fr">Sonnerie à un coup</name>
<name lang="de">Gong</name>
<name lang="it">Suoneria a singola suonata</name>
<name lang="ar">جرس بضربة واحدة</name>
<name lang="el">Κουδούνι ενός ήχου</name>
<name lang="cs">Gong</name>
<name lang="en">1 bell ringer has</name>
<name lang="it">Suoneria a singola suonata</name>
<name lang="pl">Gong</name>
<name lang="el">Κουδούνι ενός ήχου</name>
<name lang="fr">Sonnerie à un coup</name>
<name lang="ar">جرس بضربة واحدة</name>
<name lang="nl">Gong</name>
<name lang="es">Campana de domo</name>
<name lang="pl">Gong</name>
<name lang="nl">Gong</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<rect ry="0" height="2" width="9.5" antialias="false" x="20" y="-1" style="line-style:normal;line-weight:normal;filling:black;color:black" rx="0"/>
<dynamic_text uuid="{67256a36-07c7-4d14-a316-a0f6a85c5116}" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" x="35" y="-8.5" z="1" keep_visual_rotation="false" Valignment="AlignTop" rotation="0" frame="false" text_width="-1" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<arc height="20" width="20" start="90" antialias="true" x="10" angle="-180" y="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" length1="1.5" y1="-10" x2="20" antialias="false" end2="none" x1="20" length2="1.5" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon closed="false" x4="20" y3="-5" y4="5" y1="-20" x2="0" antialias="false" x6="0" y6="20" x1="0" x3="20" y5="5" y2="-5" x5="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal uuid="{eb1b606d-779d-4355-bb0b-87cef400b251}" name="A1" x="0" y="-20" type="Generic" orientation="n"/>
<terminal uuid="{489e5343-f20e-4795-afaa-5e315ad152cc}" name="A2" x="0" y="20" type="Generic" orientation="s"/>
<input y="0.55" text="_" x="10" rotate="true" size="9" tagg="label"/>
<rect y="-1" height="2" x="1" antialias="false" width="7" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line end1="none" y2="-5" antialias="false" x1="1" y1="-5" length2="1.5" length1="1.5" x2="-7" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="7" antialias="false" x1="1" y1="-7" length2="1.5" length1="1.5" x2="1" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<arc y="-7.5" height="15" x="-6.5" start="90" antialias="true" angle="-180" width="15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="5" antialias="false" x1="1" y1="5" length2="1.5" length1="1.5" x2="-7" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="-11" antialias="false" x1="-7" y1="-5" length2="1.5" length1="1.5" x2="-7" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y2="5" antialias="false" x1="-7" y1="11" length2="1.5" length1="1.5" x2="-7" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="-14" x="-7" orientation="n"/>
<terminal y="14" x="-7" orientation="s"/>
</description>
</definition>

View File

@@ -1,40 +0,0 @@
<definition hotspot_y="24" type="element" link_type="simple" height="50" width="60" orientation="dyyy" version="0.80" hotspot_x="28">
<uuid uuid="{4f9e99c4-8b9f-4727-837a-c145a41669dc}"/>
<names>
<name lang="de">Fußschalter 2-polig Schliesser/Öffner</name>
<name lang="en">Foot Switch (NO/NC)</name>
<name lang="pl">Łącznik wielozestykowy napędzany nogą</name>
<name lang="it">Comando a pedale (NO/NC)</name>
<name lang="ar">مفتاح بدوّاسة (NO/NC)</name>
<name lang="el">Ποδοδιακόπτης, ανοικτή και κλειστή επαφή</name>
<name lang="cs">Pedálový spínač (NO/NC)</name>
<name lang="es">Paro de emergencia con pedal (NA/NC)</name>
<name lang="fr">Interrupteur à pedale (NO/NC)</name>
<name lang="nl">Voetschakelaar (NO/NC)</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line x2="-15" length1="1.5" y1="-9" y2="-9" length2="1.5" antialias="false" end1="none" end2="none" x1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<dynamic_text font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{6e15cbca-5884-432a-b376-0eeeaf93807b}" frame="false" Valignment="AlignTop" z="4" Halignment="AlignLeft" x="-25" rotation="0" text_width="-1" text_from="ElementInfo" y="-23">
<text></text>
</dynamic_text>
<dynamic_text font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{fec82be4-22c7-47c0-9f88-03e4aa98453b}" frame="false" Valignment="AlignTop" z="5" Halignment="AlignLeft" x="-24" rotation="0" text_width="-1" text_from="ElementInfo" y="9">
<text></text>
</dynamic_text>
<polygon x2="-22" x3="-16" y1="20" y2="10" antialias="true" y3="-10" closed="false" x1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x2="28" length1="1.5" y1="0" y2="0" length2="1.5" antialias="false" end1="none" end2="none" x1="-23" style="line-style:dashed;line-weight:thin;filling:none;color:black"/>
<line x2="-22" length1="1.5" y1="-20" y2="-9" length2="1.5" antialias="false" end1="none" end2="none" x1="-22" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x2="25" x3="19" y1="20" y2="10" antialias="true" y3="-10" closed="false" x1="25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x2="25" length1="1.5" y1="-20" y2="-9" length2="1.5" antialias="false" end1="none" end2="none" x1="25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{710338b0-9eaa-4d59-83d7-04c5d943f372}" frame="false" Valignment="AlignTop" z="12" Halignment="AlignLeft" x="-16" rotation="0" text_width="-1" text_from="ElementInfo" y="-7.8334">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal uuid="{d0344bb5-2bee-4b7e-a546-3d1e93cc6c6e}" name="" x="-22" orientation="n" y="-20"/>
<terminal uuid="{e5ce146b-8ee7-4911-8b16-3df6e5db95f7}" name="" x="25" orientation="s" y="20"/>
<terminal uuid="{cb1c6234-2e2b-4182-a41e-0bd903308857}" name="" x="25" orientation="n" y="-20"/>
<terminal uuid="{4c78277d-8476-4fb2-9ca3-49c4e85e6dd3}" name="" x="-22" orientation="s" y="20"/>
</description>
</definition>

View File

@@ -1,53 +0,0 @@
<definition hotspot_x="34" type="element" version="0.90" link_type="simple" width="190" height="60" hotspot_y="30">
<uuid uuid="{1493c806-dd66-4b97-8f60-7fe6805d7364}"/>
<names>
<name lang="fr">Commutateur à 3 positions A/0/M </name>
</names>
<elementInformations>
<elementInformation name="designation" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="description" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1"></elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="plant" show="1"></elementInformation>
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
</elementInformations>
<informations>Author: The QElectroTech team&#xd;
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text x="-22" color="#000000" text="0" y="-6" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0"/>
<polygon x3="150" x1="145" y1="-10" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="20" closed="false" antialias="true" x2="150"/>
<text x="-19" color="#000000" text="I" y="-6" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0"/>
<line end1="none" length1="1.5" x1="150" y1="-20" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="150"/>
<polygon x3="50" x1="45" y1="-10" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="20" closed="false" antialias="true" x2="50"/>
<text x="-10" color="#000000" text="III" y="-6" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0"/>
<polygon x3="100" x1="95" y1="-10" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="20" closed="false" antialias="true" x2="100"/>
<line end1="none" length1="1.5" x1="50" y1="-20" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="50"/>
<line end1="none" length1="1.5" x1="100" y1="-20" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="100"/>
<line end1="none" length1="1.5" x1="-15" y1="5" y2="-5" style="line-style:dashed;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="-9"/>
<line end1="none" length1="1.5" x1="-21" y1="-5" y2="5" style="line-style:dashed;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="-15"/>
<line end1="none" length1="1.5" x1="147" y1="0" y2="0" style="line-style:dashed;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="-23.0136"/>
<text x="-14" color="#000000" text="II" y="-6" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0"/>
<dynamic_text x="160" text_width="-1" y="-10" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" z="13" rotation="0" frame="false" uuid="{f223e627-8712-4f6f-9c88-ec96bed2375e}" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon x3="-27" x1="-24" y1="-5" y2="-5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="-30" y4="5" y3="5" closed="false" antialias="false" x2="-27"/>
<polygon x3="0" x1="-5" y1="-10" y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="20" closed="false" antialias="true" x2="0"/>
<line end1="none" length1="1.5" x1="0" y1="-20" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="0"/>
<line end1="none" length1="1.5" x1="-15" y1="5" y2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="-18"/>
<line end1="none" length1="1.5" x1="-13" y1="-6" y2="5" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5" antialias="false" x2="-15"/>
<terminal x="0" name="" orientation="s" type="Generic" y="21" uuid="{80d55e51-fb45-4e4b-9321-113e221eb3fb}"/>
<terminal x="150" name="" orientation="s" type="Generic" y="21" uuid="{35246de8-5510-4491-ac36-9f168d0f2c67}"/>
<terminal x="100" name="" orientation="s" type="Generic" y="21" uuid="{276a6a53-a111-4c37-bd44-62a391f3790d}"/>
<terminal x="0" name="" orientation="n" type="Generic" y="-21" uuid="{98679cb1-c7aa-472f-8fba-2176b61cdb84}"/>
<terminal x="50" name="" orientation="s" type="Generic" y="21" uuid="{e8f43154-6943-4015-b5cf-d7cff3a3bf59}"/>
<terminal x="150" name="" orientation="n" type="Generic" y="-22" uuid="{b7eafdd7-085a-4b99-961c-5518e9f89a89}"/>
<terminal x="50" name="" orientation="n" type="Generic" y="-21" uuid="{73d98523-0345-48f2-a752-89d6f99646c0}"/>
<terminal x="100" name="" orientation="n" type="Generic" y="-21" uuid="{ecb47209-ebde-4018-9bfb-234a6719c1ab}"/>
</description>
</definition>

View File

@@ -1,45 +1,46 @@
<definition width="60" height="60" hotspot_x="22" hotspot_y="37" link_type="simple" version="0.90" type="element">
<uuid uuid="{f8ee4bb6-f4a4-41bc-ae71-91ce3d216d77}"/>
<names>
<name lang="pl">Czujnik indukcyjny</name>
<definition width="100" version="0.3" hotspot_x="55" hotspot_y="40" height="70" type="element">
<uuid uuid="{E03480B9-9444-4F93-8F50-9B946F23733E}"/><names>
<name lang="ar">حسّاس حثّي</name>
<name lang="el">Επαγωγικός αισθητήρας</name>
<name lang="en">Inductif sensor</name>
<name lang="de">Induktiver Sensor 3-Leiter mit Stecker</name>
<name lang="it">Sensore induttivo</name>
<name lang="fr">Inductif</name>
<name lang="ar">حسّاس حثّي</name>
<name lang="en">Inductif sensor</name>
<name lang="el">Επαγωγικός αισθητήρας</name>
<name lang="cs">Indukční snímač 3 vodiče s konektorem</name>
<name lang="pl">Czujnik indukcyjny</name>
<name lang="es">Sensor inductivo</name>
<name lang="de">Induktiver Sensor 3-Leiter mit Stecker</name>
<name lang="cs">Indukční snímač 3 vodiče s konektorem</name>
<name lang="nl">Inductief</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text Halignment="AlignLeft" z="1" text_from="ElementInfo" x="-51" y="-15.8333" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" keep_visual_rotation="false" Valignment="AlignTop" rotation="0" uuid="{558559ad-f84a-4121-9542-a85f1c0fabc7}" frame="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect width="40" height="40" x="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-20" ry="0" antialias="false" rx="0"/>
<rect width="8" height="4" x="25" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-18" ry="0" antialias="false" rx="0"/>
<polygon y5="-10" x5="-10" x2="-4" y4="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" y1="-10" y2="-16" antialias="false" x4="-4" x3="2" y3="-10"/>
<line length2="1.5" x2="-19.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="19.5" y1="-19.5" y2="19.5" end2="none" antialias="false" end1="none"/>
<polygon y5="6" x5="14" closed="false" x2="9" y4="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="3" y1="14" y2="14" antialias="false" x4="15" x3="9" y3="6"/>
<polygon y5="-6" x7="-4" y6="-14" x5="-2" x2="-6" y7="-16" y4="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-4" y1="-16" x6="-2" y2="-14" antialias="false" x4="-4" x3="-6" y3="-6"/>
<polygon style="line-style:normal;line-weight:normal;filling:black;color:black" y9="-16" x8="-12" x7="-14" y3="-4" x3="-16" x6="-14" x4="-12" x9="-12" antialias="false" x1="-12" x2="-16" y8="-14" y1="-16" y2="-16" x5="-12" y7="-14" y5="-6" y6="-6" y4="-4"/>
<text text="+" x="21" color="#000000" y="-19" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0"/>
<line length2="1.5" x2="24" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" y1="-16" y2="-16" end2="none" antialias="false" end1="none"/>
<text text="4" x="27" color="#000000" y="11.6667" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0"/>
<text text="3" x="27" color="#000000" y="-4.3333" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0"/>
<text text="1" x="28" color="#000000" y="-21.3333" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0"/>
<text text="A" x="21" color="#000000" y="12" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0"/>
<text text="-" x="21" color="#000000" y="-4" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0"/>
<rect width="8" height="4" x="25" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-2" ry="0" antialias="false" rx="0"/>
<rect width="8" height="4" x="25" style="line-style:normal;line-weight:normal;filling:black;color:black" y="14" ry="0" antialias="false" rx="0"/>
<line length2="1.5" x2="24" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" y1="16" y2="16" end2="none" antialias="false" end1="none"/>
<line length2="1.5" x2="24" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" y1="0" y2="0" end2="none" antialias="false" end1="none"/>
<terminal x="33" y="0" orientation="e" type="Generic" name="" uuid="{62d62484-8103-412a-b8e0-41e903e079be}"/>
<terminal x="33" y="16" orientation="e" type="Generic" name="" uuid="{2fdc2b18-38e3-4356-b9ce-a7219944af2d}"/>
<terminal x="33" y="-16" orientation="e" type="Generic" name="" uuid="{329c074f-d69a-4124-8bcd-4a6cb6fe4f26}"/>
<input x="-51" y="-4.3333" size="9" rotate="true" text="_" tagg="label"/>
<rect width="40" x="-20" y="-20" antialias="false" height="40" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x4="-14" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-15" x1="-15" y2="-5" x2="-15" y3="-4" x3="-15" y4="-5"/>
<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="-15" x1="-12" y2="-15" x2="-13"/>
<rect width="8" x="25" y="-18" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x4="-4" y5="-10" x5="-10" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-10" x1="-10" y2="-16" x2="-4" y3="-10" x3="2" y4="-4"/>
<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="-20" x1="20" y2="20" x2="-20"/>
<polygon x4="15" y5="6" x5="14" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="14" x1="3" y2="14" x2="9" y3="6" x3="9" y4="6"/>
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-13" x2="-15" x3="-15" x4="-14" antialias="false" x5="-15" x6="-14" x7="-13" x8="-14" x9="-14" closed="false" y1="-5" y2="-5" y10="-15" y3="-6" y11="-16" y4="-6" y12="-14" y5="-16" x10="-13" y6="-15" x11="-13" y7="-15" x12="-15" y8="-15" y9="-14"/>
<polygon x4="33" y5="-15" x5="25" y6="-16" x6="25" y7="-16" x7="32" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-17" x1="26" y2="-17" x2="32" y3="-17" x3="33" y4="-15"/>
<polygon x4="-4" y5="-6" x5="-2" y6="-14" x6="-2" y7="-16" x7="-4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-16" x1="-4" y2="-14" x2="-6" y3="-6" x3="-6" y4="-4"/>
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-12" x2="-16" x3="-16" x4="-12" antialias="false" x5="-12" x6="-14" x7="-14" x8="-12" x9="-12" closed="false" y1="-16" y2="-16" y3="-4" y4="-4" y5="-6" y6="-6" y7="-14" y8="-14" y9="-16"/>
<text x="21" y="-19" size="6" text="+"/>
<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="-16" x1="21" y2="-16" x2="24"/>
<text x="27" y="11.6667" size="8" text="4"/>
<text x="27" y="-4.3333" size="8" text="3"/>
<text x="28" y="-21.3333" size="8" text="1"/>
<text x="21" y="12" size="6" text="A"/>
<text x="21" y="-4" size="6" text="-"/>
<rect width="8" x="25" y="-2" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect width="8" x="25" y="14" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x4="33" y5="17" x5="25" y6="16" x6="25" y7="16" x7="32" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="15" x1="26" y2="15" x2="32" y3="15" x3="33" y4="17"/>
<polygon x4="33" y5="1" x5="25" y6="0" x6="25" y7="0" x7="32" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-1" x1="26" y2="-1" x2="32" y3="-1" x3="33" y4="1"/>
<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="16" x1="21" y2="16" x2="24"/>
<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="21" y2="0" x2="24"/>
<terminal x="33" y="0" orientation="e"/>
<terminal x="33" y="16" orientation="e"/>
<terminal x="33" y="-16" orientation="e"/>
</description>
</definition>

View File

@@ -1,38 +1,33 @@
<definition width="60" hotspot_y="25" version="0.90" link_type="simple" height="50" hotspot_x="38" type="element">
<uuid uuid="{8cab845f-a39f-4c8d-84d2-3d13f0b5e4ac}"/>
<names>
<name lang="de">Photozelle Sender 2-Leiter</name>
<name lang="it">Sensore foto-elettrico - Trasmettitore</name>
<name lang="es">Sensor foto-eléctrico emisor</name>
<name lang="nl">Fotocel Zender</name>
<name lang="en">Photo-electric sensor -transmitter</name>
<name lang="pl">Komórka fotoelektryczna - nadajnik</name>
<definition width="70" version="0.3" hotspot_x="40" hotspot_y="30" height="60" type="element" orientation="dnny">
<uuid uuid="{F045891E-F280-4EDB-B528-1AAF9CAEFD9B}"/><names>
<name lang="ar">خليّة كهرو ضوئي - باعث</name>
<name lang="cs">Optická závora vysílač</name>
<name lang="en">Photo-electric sensor -transmitter</name>
<name lang="de">Photozelle Sender 2-Leiter</name>
<name lang="fr">Cellule photo-électrique - Emetteur</name>
<name lang="pl">Komórka fotoelektryczna - nadajnik</name>
<name lang="cs">Optická závora vysílač</name>
<name lang="es">Sensor foto-eléctrico emisor</name>
<name lang="it">Sensore foto-elettrico - Trasmettitore</name>
<name lang="nl">Fotocel Zender</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text y="-15.6667" x="-8" text="BN" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0"/>
<text y="18.3333" x="-8" text="BU" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0"/>
<line end2="triangle" x2="-32" end1="none" length1="1.5" antialias="false" length2="1.5" x1="-20" y1="-4" y2="-4" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect y="-10" width="30" x="-15" ry="0" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0"/>
<line end2="triangle" x2="-13" end1="none" length1="1.5" antialias="true" length2="0.5" x1="-8" y1="-1" y2="-4" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line end2="none" x2="-2" end1="none" length1="1.5" antialias="false" length2="1.5" x1="-2" y1="-5" y2="-8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" x2="0" end1="none" length1="1.5" antialias="false" length2="1.5" x1="0" y1="-19" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="triangle" x2="-32" end1="none" length1="1.5" antialias="false" length2="1.5" x1="-20" y1="4" y2="4" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line end2="triangle" x2="-13" end1="none" length1="1.5" antialias="true" length2="0.5" x1="-8" y1="2" y2="-1" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line end2="none" x2="-2" end1="none" length1="1.5" antialias="false" length2="1.5" x1="-2" y1="8" y2="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x2="3" antialias="true" y3="5" x1="-7" y1="-5" x4="-7" y2="-5" x3="-2" y4="-5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" x2="0" end1="none" length1="1.5" antialias="false" length2="1.5" x1="0" y1="10" y2="19" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" x2="3" end1="none" length1="1.5" antialias="false" length2="1.5" x1="-7" y1="5" y2="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<dynamic_text y="-9.1667" frame="false" Halignment="AlignLeft" x="19.5" Valignment="AlignTop" keep_visual_rotation="false" text_from="ElementInfo" z="14" uuid="{0ff9a420-3b7b-4c0a-8681-496fef2b27d6}" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal y="20" x="0" name="" uuid="{4a95d782-eb35-4a21-accd-4c061fccd5ce}" orientation="s" type="Generic"/>
<terminal y="-20" x="0" name="" uuid="{b5603669-9b5b-44d3-817c-ba447e0ef8c2}" orientation="n" type="Generic"/>
<text x="-8" y="-15.6667" size="4" text="BN"/>
<text x="-8" y="18.3333" size="4" text="BU"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="triangle" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="-4" x1="-20" y2="-4" x2="-32"/>
<rect width="30" x="-15" y="-10" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="0.5" antialias="true" end1="none" end2="triangle" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="-1" x1="-8" y2="-4" x2="-13"/>
<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="-5" x1="-2" y2="-8" x2="-2"/>
<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="-19" x1="0" y2="-10" x2="0"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="triangle" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="4" x1="-20" y2="4" x2="-32"/>
<line length1="1.5" length2="0.5" antialias="true" end1="none" end2="triangle" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="2" x1="-8" y2="-1" x2="-13"/>
<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="-2" y2="5" x2="-2"/>
<polygon x4="-7" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-5" x1="-7" y2="-5" x2="3" y3="5" x3="-2" y4="-5"/>
<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" x1="0" y2="19" 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="5" x1="-7" y2="5" x2="3"/>
<input x="19.5" y="2.3333" size="9" text="_" tagg="label"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="0" y="20" orientation="s"/>
</description>
</definition>

View File

@@ -1,38 +1,33 @@
<definition hotspot_x="17" link_type="simple" height="50" hotspot_y="25" type="element" version="0.90" width="50">
<uuid uuid="{830f55c1-6f2c-472f-a315-5dbc050883ed}"/>
<names>
<name lang="fr">Cellule photo-électrique - Récepteur</name>
<name lang="pl">Komórka fotoelektryczna - odbiornik</name>
<name lang="es">Sensor foto-eléctrico receptor</name>
<name lang="cs">Optická závora přijímač</name>
<name lang="nl">Fotocel Ontvanger</name>
<name lang="de">Photozelle Empfänger 2-Leiter</name>
<definition width="70" version="0.3" hotspot_x="30" hotspot_y="30" height="60" type="element" orientation="dnny">
<uuid uuid="{5CA82021-7F70-43B0-BE69-0E447B228B3A}"/><names>
<name lang="ar">خليّة كهرو ضوئية - لاقط</name>
<name lang="en">Photo-electric sensor receptor</name>
<name lang="de">Photozelle Empfänger 2-Leiter</name>
<name lang="fr">Cellule photo-électrique - Récepteur</name>
<name lang="pl">Komórka fotoelektryczna - odbiornik</name>
<name lang="cs">Optická závora přijímač</name>
<name lang="es">Sensor foto-eléctrico receptor</name>
<name lang="it">Sensore foto-elettrico - Ricevitore</name>
<name lang="nl">Fotocel Ontvanger</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" height="20" x="-15" y="-10" ry="0" width="30"/>
<line antialias="true" y2="2" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="13" end2="triangle" y1="-1" x2="8" end1="none" length2="0.5"/>
<line antialias="true" y2="-1" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="13" end2="triangle" y1="-4" x2="8" end1="none" length2="0.5"/>
<text font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="BN" color="#000000" rotation="0" x="-10" y="-15.6667"/>
<text font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="BU" color="#000000" rotation="0" x="-8" y="18.3333"/>
<line antialias="false" y2="-4" length1="1.5" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="30" end2="triangle" y1="-4" x2="18" end1="none" length2="1.5"/>
<line antialias="false" y2="-8" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="3" end2="none" y1="-5" x2="3" end1="none" length2="1.5"/>
<line antialias="false" y2="-10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" end2="none" y1="-19" x2="0" end1="none" length2="1.5"/>
<line antialias="false" y2="4" length1="1.5" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="30" end2="triangle" y1="4" x2="18" end1="none" length2="1.5"/>
<line antialias="false" y2="5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="3" end2="none" y1="8" x2="3" end1="none" length2="1.5"/>
<polygon antialias="true" y2="-5" y4="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-2" y3="5" x4="-2" y1="-5" x2="8" x3="3"/>
<line antialias="false" y2="19" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" end2="none" y1="10" x2="0" end1="none" length2="1.5"/>
<line antialias="false" y2="5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-2" end2="none" y1="5" x2="8" end1="none" length2="1.5"/>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{8392d7b5-c84f-474c-b526-50f9fd6fd1c4}" rotation="0" frame="false" Valignment="AlignTop" z="14" text_width="-1" x="-30" keep_visual_rotation="false" y="-9" text_from="ElementInfo" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal name="" uuid="{d3f5fc6e-f776-47ca-b785-53e385035fb4}" x="0" y="20" type="Generic" orientation="s"/>
<terminal name="" uuid="{bb0cce91-0c3f-4953-ac03-d81a7b20a078}" x="0" y="-20" type="Generic" orientation="n"/>
<rect width="30" x="-15" y="-10" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line length1="1.5" length2="0.5" antialias="true" end1="none" end2="triangle" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-1" x1="13" y2="2" x2="8"/>
<line length1="1.5" length2="0.5" antialias="true" end1="none" end2="triangle" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-4" x1="13" y2="-1" x2="8"/>
<text x="-10" y="-15.6667" size="4" text="BN"/>
<text x="-8" y="18.3333" size="4" text="BU"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="triangle" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="-4" x1="30" y2="-4" x2="18"/>
<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="-5" x1="3" y2="-8" x2="3"/>
<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="-19" x1="0" y2="-10" x2="0"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="triangle" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="4" x1="30" y2="4" x2="18"/>
<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="3" y2="5" x2="3"/>
<polygon x4="-2" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-5" x1="-2" y2="-5" x2="8" y3="5" x3="3" y4="-5"/>
<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" x1="0" y2="19" 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="5" x1="-2" y2="5" x2="8"/>
<input x="-30" y="2.5" size="9" text="_" tagg="label"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="0" y="20" orientation="s"/>
</description>
</definition>

View File

@@ -1,49 +1,51 @@
<definition hotspot_y="35" type="element" height="60" hotspot_x="22" link_type="simple" width="60" version="0.90">
<uuid uuid="{e2ba97cf-996b-43c0-a434-7a1972539b91}"/>
<definition width="60" height="60" hotspot_x="22" version="0.80" type="element" hotspot_y="35" link_type="simple">
<uuid uuid="{e7c496ba-a62b-4f5c-b6c3-86db410bf776}"/>
<names>
<name lang="de">Dämmerungsschalter</name>
<name lang="cs">Soumrakové relé</name>
<name lang="it">Relè crepuscolare</name>
<name lang="fr">Relais crépusculaire</name>
<name lang="it">Relè crepuscolare</name>
<name lang="cs">Soumrakové relé</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text Valignment="AlignTop" keep_visual_rotation="true" rotation="0" text_from="ElementInfo" y="-15.8333" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{6c75da4f-d740-4374-90c8-e11bf3836108}" z="1" x="-51" Halignment="AlignLeft" frame="false">
<dynamic_text x="-51" y="-15.8333" text_from="ElementInfo" Valignment="AlignTop" z="1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{6c75da4f-d740-4374-90c8-e11bf3836108}" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="17" length1="1.5" x1="-5" y1="15" length2="1.5" x2="-5" antialias="false"/>
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" y2="16" y3="16" x1="12" closed="false" y1="14" x2="7" antialias="true" x3="3"/>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="9" length1="1.5" x1="-5" y1="11" length2="1.5" x2="-5" antialias="false"/>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="16" length1="1.5" x1="15" y1="16" length2="1.5" x2="13" antialias="false"/>
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" y="-20" height="40" rx="0" x="-20" antialias="false" width="40" ry="0"/>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="13" length1="1.5" x1="-3" y1="13" length2="1.5" x2="-1" antialias="false"/>
<text text="Lx>" rotation="0" y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="5"/>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="13" length1="1.5" x1="-7" y1="13" length2="1.5" x2="-9" antialias="false"/>
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" y="11" x="-7" antialias="true" diameter="4"/>
<rect style="line-style:normal;line-weight:normal;filling:black;color:black" y="-18" height="4" rx="0" x="25" antialias="false" width="8" ry="0"/>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="10" length1="1.5" x1="-3" y1="11" length2="1.5" x2="-2" antialias="false"/>
<polygon y4="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-16" y3="-10" x4="-10" y5="-10" x1="-16" x5="-16" closed="false" y1="-10" x2="-10" antialias="false" x3="-4"/>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="20" length1="1.5" x1="20" y1="-20" length2="1.5" x2="-20" antialias="false"/>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="15" length1="1.5" x1="-2" y1="16" length2="1.5" x2="-3" antialias="false"/>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="10" length1="1.5" x1="-7" y1="11" length2="1.5" x2="-8" antialias="false"/>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="15" length1="1.5" x1="-8" y1="16" length2="1.5" x2="-7" antialias="false"/>
<polygon y4="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-14" y3="-6" x4="-10" y5="-6" x1="-10" x5="-8" x7="-10" closed="false" y1="-16" x6="-8" y6="-14" y7="-16" x2="-12" antialias="false" x3="-12"/>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-16" length1="1.5" x1="21" y1="-16" length2="1.5" x2="24" antialias="false"/>
<text text="L1" rotation="0" y="12" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" x="24"/>
<text text="L" rotation="0" y="-4" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" x="26"/>
<text text="N" rotation="0" y="-20" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" x="26"/>
<rect style="line-style:normal;line-weight:normal;filling:black;color:black" y="-2" height="4" rx="0" x="25" antialias="false" width="8" ry="0"/>
<rect style="line-style:normal;line-weight:normal;filling:black;color:black" y="14" height="4" rx="0" x="25" antialias="false" width="8" ry="0"/>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="16" length1="1.5" x1="21" y1="16" length2="1.5" x2="24" antialias="false"/>
<line end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="0" length1="1.5" x1="21" y1="0" length2="1.5" x2="24" antialias="false"/>
<dynamic_text Valignment="AlignTop" keep_visual_rotation="true" rotation="0" text_from="UserText" y="-3" text_width="-1" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" uuid="{52be7143-81b5-45a0-b3c4-001ff3fc59b5}" z="30" x="52" Halignment="AlignLeft" frame="false">
<line end1="none" x1="-5" length1="1.5" antialias="false" y1="15" y2="17" length2="1.5" x2="-5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x1="12" antialias="true" y1="14" x3="3" closed="false" y3="16" y2="16" x2="7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" x1="-5" length1="1.5" antialias="false" y1="11" y2="9" length2="1.5" x2="-5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" x1="15" length1="1.5" antialias="false" y1="16" y2="16" length2="1.5" x2="13" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect x="-20" width="40" height="40" y="-20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" x1="-3" length1="1.5" antialias="false" y1="13" y2="13" length2="1.5" x2="-1" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="5" y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="Lx>" color="#000000"/>
<line end1="none" x1="-7" length1="1.5" antialias="false" y1="13" y2="13" length2="1.5" x2="-9" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle x="-7" y="11" antialias="true" diameter="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect x="25" width="8" height="4" y="-18" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" x1="-3" length1="1.5" antialias="false" y1="11" y2="10" length2="1.5" x2="-2" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x1="-16" y4="-4" antialias="false" y1="-10" x3="-4" closed="false" y3="-10" y2="-16" y5="-10" x2="-10" x4="-10" x5="-16" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" x1="20" length1="1.5" antialias="false" y1="-20" y2="20" length2="1.5" x2="-20" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" x1="-2" length1="1.5" antialias="false" y1="16" y2="15" length2="1.5" x2="-3" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" x1="-7" length1="1.5" antialias="false" y1="11" y2="10" length2="1.5" x2="-8" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" x1="-8" length1="1.5" antialias="false" y1="16" y2="15" length2="1.5" x2="-7" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x1="26" y4="-15" antialias="false" y1="-17" x3="33" closed="false" y3="-17" y6="-16" y2="-17" y5="-15" y7="-16" x2="32" x4="33" x7="32" x5="25" x6="25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x1="-10" y4="-4" antialias="false" y1="-16" x3="-12" closed="false" y3="-6" y6="-14" y2="-14" y5="-6" y7="-16" x2="-12" x4="-10" x7="-10" x5="-8" x6="-8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" x1="21" length1="1.5" antialias="false" y1="-16" y2="-16" length2="1.5" x2="24" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="24" y="12" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="L1" color="#000000"/>
<text x="26" y="-4" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="L" color="#000000"/>
<text x="26" y="-20" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="N" color="#000000"/>
<rect x="25" width="8" height="4" y="-2" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect x="25" width="8" height="4" y="14" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x1="26" y4="17" antialias="false" y1="15" x3="33" closed="false" y3="15" y6="16" y2="15" y5="17" y7="16" x2="32" x4="33" x7="32" x5="25" x6="25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x1="26" y4="1" antialias="false" y1="-1" x3="33" closed="false" y3="-1" y6="0" y2="-1" y5="1" y7="0" x2="32" x4="33" x7="32" x5="25" x6="25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" x1="21" length1="1.5" antialias="false" y1="16" y2="16" length2="1.5" x2="24" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" x1="21" length1="1.5" antialias="false" y1="0" y2="0" length2="1.5" x2="24" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<dynamic_text x="52" y="-3" text_from="UserText" Valignment="AlignTop" z="30" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" uuid="{52be7143-81b5-45a0-b3c4-001ff3fc59b5}" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1">
<text>_</text>
</dynamic_text>
<terminal y="-16" uuid="{d3fb1f4c-3acb-4e24-89de-864cb3d8ce51}" name="" type="Generic" x="33" orientation="e"/>
<terminal y="0" uuid="{622be5b4-4bc6-447c-88f4-183b11f48438}" name="" type="Generic" x="33" orientation="e"/>
<terminal y="16" uuid="{18296c32-8291-41de-85ac-8ee71221d60e}" name="" type="Generic" x="33" orientation="e"/>
<terminal x="33" name="" y="16" uuid="{18296c32-8291-41de-85ac-8ee71221d60e}" orientation="e"/>
<terminal x="33" name="" y="-16" uuid="{d3fb1f4c-3acb-4e24-89de-864cb3d8ce51}" orientation="e"/>
<terminal x="33" name="" y="0" uuid="{622be5b4-4bc6-447c-88f4-183b11f48438}" orientation="e"/>
</description>
</definition>

View File

@@ -1,39 +1,31 @@
<definition hotspot_x="25" link_type="simple" type="element" version="0.90" height="50" width="40" hotspot_y="24">
<uuid uuid="{432a77e8-0763-48b2-8efd-a00954940c5c}"/>
<names>
<name lang="pl">Czujnik poziomu cieczy</name>
<name lang="fr">Sonde de niveau</name>
<name lang="nl">vloeistofniveau sensor </name>
<name lang="en">Level sensor</name>
<name lang="es">Sensor de nivel</name>
<definition width="90" version="0.3" hotspot_x="20" hotspot_y="10" height="70" type="element">
<uuid uuid="{7687BBA7-DCFA-4FCC-85A6-7850E264BD43}"/><names>
<name lang="ar">مجس مستوى</name>
<name lang="de">Niveausensor 2-Leiter</name>
<name lang="cs">Hladinový snímač</name>
<name lang="en">Level sensor</name>
<name lang="it">Sensore di livello</name>
<name lang="fr">Sonde de niveau</name>
<name lang="pl">Czujnik poziomu cieczy</name>
<name lang="es">Sensor de nivel</name>
<name lang="cs">Hladinový snímač</name>
<name lang="nl">vloeistofniveau sensor </name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text frame="false" text_width="-1" z="1" Valignment="AlignTop" x="10" uuid="{6b3fdb08-01c3-455a-b269-834f18c5adca}" text_from="UserText" keep_visual_rotation="false" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0" Halignment="AlignLeft" y="-3">
<text>Niveau
___</text>
</dynamic_text>
<dynamic_text frame="false" text_width="-1" z="2" Valignment="AlignTop" x="13" uuid="{21d0aeca-2c01-4d53-9c0a-284c0a188abf}" text_from="ElementInfo" keep_visual_rotation="false" font="Sans Serif,14,-1,5,50,0,0,0,0,0" rotation="0" Halignment="AlignLeft" y="-23.5">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line x2="-12" y2="-8" y1="-10" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-14" length1="1.5" end2="none"/>
<line x2="-12" y2="-4" y1="-10" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-18" length1="1.5" end2="none"/>
<line x2="-20" y2="10" y1="-10" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-20" length1="1.5" end2="none"/>
<rect x="-10" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" antialias="false" y="-10" width="20" ry="0"/>
<line x2="0" y2="20" y1="10" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="0" length1="1.5" end2="none"/>
<line x2="0" y2="-10" y1="-20" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="0" length1="1.5" end2="none"/>
<line x2="-14" y2="10" y1="6" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-18" length1="1.5" end2="none"/>
<line x2="-12" y2="8" y1="2" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-18" length1="1.5" end2="none"/>
<line x2="-12" y2="4" y1="-2" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-18" length1="1.5" end2="none"/>
<line x2="-12" y2="0" y1="-6" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-18" length1="1.5" end2="none"/>
<terminal name="" x="0" uuid="{2342dca9-396d-4d09-a533-a8cf07f57eee}" type="Generic" orientation="n" y="-20"/>
<terminal name="" x="0" uuid="{49245402-cbca-4f73-9396-923acc84beb7}" type="Generic" orientation="s" y="20"/>
<input x="20" y="35" size="8" rotate="true" text="Niveau&#xa;___"/>
<input x="23" y="12" size="14" rotate="true" text="_" tagg="label"/>
<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" x1="-4" y2="12" x2="-2"/>
<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" x1="-8" y2="16" x2="-2"/>
<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" x1="-10" y2="30" x2="-10"/>
<rect width="20" x="0" y="10" antialias="false" height="20" style="line-style:normal;line-weight:normal;filling:none;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="30" x1="10" y2="40" x2="10"/>
<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="10" y2="10" x2="10"/>
<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="26" x1="-8" y2="30" x2="-4"/>
<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="22" x1="-8" y2="28" x2="-2"/>
<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="18" x1="-8" y2="24" x2="-2"/>
<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="14" x1="-8" y2="20" x2="-2"/>
<terminal x="10" y="0" orientation="n"/>
<terminal x="10" y="40" orientation="s"/>
</description>
</definition>

View File

@@ -1,36 +1,29 @@
<definition hotspot_x="37" type="element" width="50" version="0.90" height="50" link_type="simple" hotspot_y="24">
<uuid uuid="{e4b5947a-629f-4776-9338-d2aed41e0dc3}"/>
<names>
<name lang="es">Accionado por humedad relativa NC</name>
<name lang="cs">Spínač vlhkosti NC</name>
<definition width="50" version="0.4" hotspot_x="37" hotspot_y="25" height="50" link_type="simple" type="element">
<uuid uuid="{C330CB17-919B-4262-A03F-13A857D90961}"/><names>
<name lang="de">Feuchteschalter Öffner</name>
<name lang="en">NC controlled relative humidity</name>
<name lang="nl">Relatieve Vochtigheid (NC)</name>
<name lang="it">Controllato dall'umidità relativa NC</name>
<name lang="fr">Actionné par humidité relative NF</name>
<name lang="pl">Zestyk rozwierny sterowany poziomemi wilgotności względnej</name>
<name lang="es">Accionado por humedad relativa NC</name>
<name lang="nl">Relatieve Vochtigheid (NC)</name>
<name lang="cs">Spínač vlhkosti NC</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<rect antialias="false" y="-7" width="22" height="14" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-32" ry="0" rx="0"/>
<dynamic_text rotation="0" text_from="UserText" keep_visual_rotation="false" y="8.5" z="2" Valignment="AlignTop" x="-10" uuid="{5f95b7b0-7771-4312-a802-a090371523a5}" Halignment="AlignLeft" frame="false" font="Sans Serif,4,-1,5,25,0,0,0,0,0" text_width="-1">
<text>2</text>
</dynamic_text>
<text rotation="0" y="0" color="#000000" text="% r.H." x="-31" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<dynamic_text rotation="0" text_from="UserText" keep_visual_rotation="false" y="-23.5" z="4" Valignment="AlignTop" x="-10" uuid="{3c03b801-c793-47b2-aabd-a0b16e40154b}" Halignment="AlignLeft" frame="false" font="Sans Serif,4,-1,5,25,0,0,0,0,0" text_width="-1">
<text>1</text>
</dynamic_text>
<polygon antialias="true" x3="6" x1="0" closed="false" y3="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="10" y1="20" x2="0"/>
<circle diameter="2" antialias="true" y="3" style="line-style:normal;line-weight:normal;filling:black;color:black" x="-15"/>
<dynamic_text rotation="0" text_from="ElementInfo" keep_visual_rotation="false" y="-11" z="10" Valignment="AlignTop" x="8" uuid="{225e9fa1-337e-409f-aafa-098ad7655449}" Halignment="AlignLeft" frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line antialias="false" end2="none" x1="-10" length1="1.5" style="line-style:dashed;line-weight:normal;filling:none;color:black" y2="0" y1="0" x2="3" length2="1.5" end1="none"/>
<polygon antialias="false" x3="7" x1="0" closed="false" y3="-9" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-9" y1="-20" x2="0"/>
<terminal y="-20" type="Generic" x="0" name="" uuid="{e535c8ec-f595-474c-81ed-b76ba1605f7c}" orientation="n"/>
<terminal y="20" type="Generic" x="0" name="" uuid="{02cc6bf4-c015-4ad3-9985-b5fcacaa09d9}" orientation="s"/>
<rect width="22" x="-32" y="-7" antialias="false" height="14" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="-10" y="16" size="4" text="2" tagg="none"/>
<text x="-31" y="0" size="5" text="%H O"/>
<input x="-10" y="-16" size="4" text="1" tagg="none"/>
<text x="-24" y="2" size="3" text="2"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="20" x1="0" y2="10" x2="0" y3="-10" x3="6"/>
<circle x="-15" y="3" antialias="true" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="2"/>
<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="-9" x1="0" y2="-9" x2="7"/>
<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="-20" x1="0" y2="-9" x2="0"/>
<input x="8" y="0.5" size="9" text="_" tagg="label"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:dashed;line-weight:thin;filling:none;color:black" y1="0" x1="-10" y2="0" x2="3"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="0" y="20" orientation="s"/>
</description>
</definition>

View File

@@ -1,42 +1,32 @@
<definition width="60" hotspot_x="51" version="0.90" link_type="simple" type="element" height="50" hotspot_y="24">
<uuid uuid="{da1ff65b-f7d1-4b39-9618-1bda7f294402}"/>
<names>
<name lang="fr">Actionné par humidité relative NF/NO</name>
<name lang="it">Controllato dall'umidità relativa NC/NO</name>
<definition width="50" version="0.4" hotspot_x="45" hotspot_y="25" height="50" link_type="simple" type="element">
<uuid uuid="{AA25B7CF-ABF4-41DA-A5CD-492B67588B71}"/><names>
<name lang="de">Feuchteschalter Wechsler</name>
<name lang="cs">Spínač vlhkosti NC/NO</name>
<name lang="en">NC/NO controlled relative humidity</name>
<name lang="it">Controllato dall'umidità relativa NC/NO</name>
<name lang="fr">Actionné par humidité relative NF/NO</name>
<name lang="pl">Zestyk przełączny sterowany elektronicznie</name>
<name lang="es">Accionado por humedad relativa NC/NO</name>
<name lang="nl">Relatieve Vochtigheid (NC)/(NO)</name>
<name lang="pl">Zestyk przełączny sterowany elektronicznie</name>
<name lang="cs">Spínač vlhkosti NC/NO</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<rect width="22" x="-45" y="-7" ry="0" height="14" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-44" y="0" text="% r.H." rotation="0"/>
<circle diameter="2" x="-28" y="3" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="true"/>
<line length1="1.5" end2="none" y2="-9" x1="-20" end1="none" y1="-9" x2="-14" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x3="-17" y2="10" x1="-10" y1="20" y3="-10" x2="-10" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<dynamic_text Halignment="AlignLeft" frame="false" z="7" text_width="-1" uuid="{9747fd7c-95b1-42cd-bc10-bc83df548942}" font="Sans Serif,4,-1,5,25,0,0,0,0,0" x="-20" keep_visual_rotation="false" y="8.5" Valignment="AlignTop" text_from="UserText" rotation="0">
<text>3</text>
</dynamic_text>
<dynamic_text Halignment="AlignLeft" frame="false" z="8" text_width="-1" uuid="{9d6d51b1-d8f8-4544-905e-8e91d52dcbfa}" font="Sans Serif,4,-1,5,25,0,0,0,0,0" x="-30" keep_visual_rotation="false" y="-23.5" Valignment="AlignTop" text_from="UserText" rotation="0">
<text>1</text>
</dynamic_text>
<dynamic_text Halignment="AlignLeft" frame="false" z="9" text_width="-1" uuid="{b2e16c05-b7e3-42be-b878-ad8c23a419ac}" font="Sans Serif,4,-1,5,25,0,0,0,0,0" x="-10" keep_visual_rotation="false" y="-23.5" Valignment="AlignTop" text_from="UserText" rotation="0">
<text>2</text>
</dynamic_text>
<dynamic_text Halignment="AlignLeft" frame="false" z="10" text_width="-1" uuid="{0d2423af-fa1c-4252-bebf-84d23040d9ce}" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="1" keep_visual_rotation="false" y="-11" Valignment="AlignTop" text_from="ElementInfo" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line length1="1.5" end2="none" y2="-9" x1="-20" end1="none" y1="-20" x2="-20" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length1="1.5" end2="none" y2="-10" x1="0" end1="none" y1="-20" x2="0" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length1="1.5" end2="none" y2="0" x1="-23" end1="none" y1="0" x2="-14" length2="1.5" style="line-style:dashed;line-weight:normal;filling:none;color:black" antialias="false"/>
<terminal name="" uuid="{52c1e639-f9d1-4668-932f-ed407c983bb6}" x="-10" y="20" orientation="s" type="Generic"/>
<terminal name="" uuid="{c2e5394d-2d8a-4e35-8d3f-1b9c1b6a2d5d}" x="0" y="-20" orientation="n" type="Generic"/>
<terminal name="" uuid="{021d023c-9082-40f5-8862-17f5cd23c9e5}" x="-20" y="-20" orientation="n" type="Generic"/>
<rect width="22" x="-42" y="-7" antialias="false" height="14" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-41" y="0" size="5" text="%H O"/>
<text x="-34" y="2" size="3" text="2"/>
<circle x="-25" y="3" antialias="true" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="2"/>
<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="-9" x1="-20" y2="-9" x2="-7"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="20" x1="0" y2="10" x2="0" y3="-10" x3="-10"/>
<input x="-10" y="16" size="4" text="3" tagg="none"/>
<input x="-30" y="-16" size="4" text="1" tagg="none"/>
<input x="-10" y="-16" size="4" text="2" tagg="none"/>
<input x="1" y="0.5" size="9" text="_" tagg="label"/>
<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="-20" x1="-20" y2="-9" x2="-20"/>
<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="-20" x1="0" y2="-10" x2="0"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:dashed;line-weight:thin;filling:none;color:black" y1="0" x1="-20" y2="0" x2="-5"/>
<terminal x="0" y="20" orientation="s"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="-20" y="-20" orientation="n"/>
</description>
</definition>

View File

@@ -1,35 +1,27 @@
<definition height="50" version="0.90" hotspot_y="24" width="50" hotspot_x="41" type="element" link_type="simple">
<uuid uuid="{fec53881-20d3-41bb-acad-52532b7d0644}"/>
<names>
<definition width="40" version="0.4" hotspot_x="35" hotspot_y="25" height="50" link_type="simple" type="element">
<uuid uuid="{AC85B079-3A8D-4D7A-A117-11923EB15FF3}"/><names>
<name lang="de">Feuchteschalter Schliesser</name>
<name lang="fr">Actionné par humidité relative NO</name>
<name lang="en">NO controlled relative humidity</name>
<name lang="nl">Relatieve Vochtigheid (NO)</name>
<name lang="pl">Zestyk zwierny sterowany poziomemi wilgotności względnej</name>
<name lang="cs">Spínač vlhkosti NO</name>
<name lang="it">Controllato dall'umidità relativa NO</name>
<name lang="fr">Actionné par humidité relative NO</name>
<name lang="pl">Zestyk zwierny sterowany poziomemi wilgotności względnej</name>
<name lang="es">Accionado por humedad relativa NA</name>
<name lang="nl">Relatieve Vochtigheid (NO)</name>
<name lang="cs">Spínač vlhkosti NO</name>
</names>
<elementInformations/>
<informations>License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<rect y="-7" height="14" antialias="false" ry="0" width="22" x="-34" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<dynamic_text z="2" y="8.5" frame="false" text_width="-1" Halignment="AlignLeft" keep_visual_rotation="false" Valignment="AlignTop" rotation="0" font="Sans Serif,4,-1,5,25,0,0,0,0,0" text_from="UserText" uuid="{5e98218f-47ab-451f-b7c9-cbdf74701f55}" x="-10">
<text>4</text>
</dynamic_text>
<dynamic_text z="3" y="-23.5" frame="false" text_width="-1" Halignment="AlignLeft" keep_visual_rotation="false" Valignment="AlignTop" rotation="0" font="Sans Serif,4,-1,5,25,0,0,0,0,0" text_from="UserText" uuid="{fdc5c4f6-f938-42db-ba04-300cec50c91a}" x="-10">
<text>3</text>
</dynamic_text>
<line antialias="false" y2="0" length1="1.5" x1="-12" end2="none" x2="-3" length2="1.5" y1="0" end1="none" style="line-style:dashed;line-weight:normal;filling:none;color:black"/>
<dynamic_text z="5" y="-11" frame="false" text_width="-1" Halignment="AlignLeft" keep_visual_rotation="false" Valignment="AlignTop" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" uuid="{231fd876-19e3-45d2-a8f7-834314902384}" x="1">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon antialias="true" y2="10" x3="0" y3="20" x1="-5" x2="0" closed="false" y1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line antialias="false" y2="-10" length1="1.5" x1="0" end2="none" x2="0" length2="1.5" y1="-20" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text y="0" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-33" text="% r.H."/>
<circle diameter="2" y="3" antialias="true" x="-17" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<terminal y="20" orientation="s" name="" uuid="{ac82c996-75b1-4387-b5b5-bd9810848d17}" type="Generic" x="0"/>
<terminal y="-20" orientation="n" name="" uuid="{3178ef0d-3666-4647-9cc4-9ba53ad9b8ef}" type="Generic" x="0"/>
<rect width="22" x="-32" y="-7" antialias="false" height="14" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input x="-10" y="16" size="4" text="4" tagg="none"/>
<input x="-10" y="-16" size="4" text="3" tagg="none"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:dashed;line-weight:thin;filling:none;color:black" y1="0" x1="-10" y2="0" x2="-3"/>
<input x="1" y="0.5" size="9" text="_" tagg="label"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-10" x1="-5" y2="10" x2="0" y3="20" x3="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="-20" x1="0" y2="-10" x2="0"/>
<text x="-31" y="0" size="5" text="%H O"/>
<text x="-24" y="2" size="3" text="2"/>
<circle x="-15" y="3" antialias="true" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="2"/>
<terminal x="0" y="20" orientation="s"/>
<terminal x="0" y="-20" orientation="n"/>
</description>
</definition>

View File

@@ -1,7 +1,7 @@
<qet-directory>
<names>
<name lang="ru">Датчики температуры</name>
<name lang="de">Temperatur-Sensoren</name>
<name lang="de">Sensoren Temperatur</name>
<name lang="en">Temperature sensors</name>
<name lang="es">Sensores de temperatura</name>
<name lang="pl">Czujniki temperatury</name>

View File

@@ -1,31 +1,26 @@
<definition width="50" type="element" height="30" version="0.90" hotspot_x="24" link_type="simple" hotspot_y="15">
<uuid uuid="{543a3b48-3df2-4fe8-a33c-2fd126b162d7}"/>
<definition type="element" hotspot_x="14" version="0.5" hotspot_y="5" link_type="simple" width="40" height="30">
<uuid uuid="{a99413b1-34bc-433a-8353-e2e7b35af36a}"/>
<names>
<name lang="fr">Sonde de temperature</name>
<name lang="es">Sensor de temperatura</name>
<name lang="nl">Temperatuur sensor</name>
<name lang="de">Temperaturfühler</name>
<name lang="en">Temperature sensor</name>
<name lang="it">Sonda di temperatura</name>
<name lang="el">Αισθητήρας θερμοκρασίας</name>
<name lang="pl">Czujnik temperatury</name>
<name lang="de">Temperaturfühler</name>
<name lang="fr">Sonde de temperature</name>
<name lang="cs">Snímač teploty 2 vodiče</name>
<name lang="es">Sensor de temperatura</name>
<name lang="it">Sonda di temperatura</name>
<name lang="pl">Czujnik temperatury</name>
<name lang="en">Temperature sensor</name>
<name lang="nl">Temperatuur sensor</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text frame="false" x="-12" rotation="0" uuid="{1927b85f-c493-42a2-affd-b42db99c8cce}" keep_visual_rotation="false" text_from="ElementInfo" text_width="-1" z="1" y="-26" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line y2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" end2="none" length2="1.5" x2="20" x1="-20" end1="none" length1="1.5" antialias="false"/>
<dynamic_text frame="false" x="-10" rotation="0" uuid="{60b450b4-30c4-4ede-a2f9-fbcd8d663e81}" keep_visual_rotation="false" text_from="UserText" text_width="-1" z="4" y="12.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
<text>S_</text>
</dynamic_text>
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" x="-10" width="20" ry="0" rx="0" height="10" y="-5" antialias="false"/>
<polygon y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" closed="false" x2="-5" y3="-10" x1="-10" y4="-10" x4="10" antialias="false" x3="5"/>
<terminal x="-20" name="" uuid="{f7f478a5-097b-43e9-8539-efcc9548e0ec}" type="Generic" orientation="w" y="0"/>
<terminal x="20" name="" uuid="{ae9ff55e-33a9-45e2-9460-4f427d8b15c5}" type="Generic" orientation="e" y="0"/>
<input text="_" x="-7" y="-4.5" tagg="label" size="9" rotate="true"/>
<line x1="-10" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" y2="10" length1="1.5" antialias="false" end1="none" x2="-6"/>
<line x1="20" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" y2="10" length1="1.5" antialias="false" end1="none" x2="16"/>
<input text="S_" x="-5" y="34" tagg="none" size="9" rotate="true"/>
<rect x="-5" y="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" width="20" height="10"/>
<polygon x1="-5" closed="false" x4="15" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="20" y2="20" y4="0" antialias="false" y3="0" x2="0" x3="10"/>
<terminal x="-10" y="10" orientation="w"/>
<terminal x="20" y="10" orientation="e"/>
</description>
</definition>

View File

@@ -1,49 +1,42 @@
<definition height="40" link_type="simple" hotspot_x="29" width="60" hotspot_y="24" type="element" version="0.90">
<uuid uuid="{8a4c0af9-492b-4c9c-a15e-63d54131b883}"/>
<definition hotspot_x="24" link_type="simple" width="60" version="0.70" type="element" hotspot_y="15" height="40">
<uuid uuid="{ddfbbfd8-54dd-4078-adc4-6fba6b977894}"/>
<names>
<name lang="nl">Temperatuur sensor</name>
<name lang="pl">Czujnik temperatury</name>
<name lang="cs">Snímač teploty 4 vodiče</name>
<name lang="fr">Sonde de temperature 4 fils</name>
<name lang="es">Sensor de temperatura</name>
<name lang="it">Sonda di temperatura</name>
<name lang="pl">Czujnik temperatury</name>
<name lang="en">Temperature sensor 4 wire</name>
<name lang="el">Αισθητήρας θερμοκρασίας</name>
<name lang="fr">Sonde de temperature 4 fils</name>
<name lang="it">Sonda di temperatura</name>
<name lang="de">Temperaturfühler</name>
<name lang="nl">Temperatuur sensor</name>
<name lang="es">Sensor de temperatura</name>
<name lang="el">Αισθητήρας θερμοκρασίας</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer"></elementInformation>
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
<elementInformation show="1" name="designation"></elementInformation>
<elementInformation show="1" name="unity"></elementInformation>
<elementInformation show="1" name="label"></elementInformation>
<elementInformation show="1" name="plant"></elementInformation>
<elementInformation show="1" name="comment"></elementInformation>
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
<elementInformation show="1" name="supplier"></elementInformation>
<elementInformation show="1" name="description"></elementInformation>
<elementInformation show="1" name="quantity"></elementInformation>
</elementInformations>
<informations>S.DEFFAUX
Author: The QElectroTech team
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon closed="false" x3="10" x5="25" x4="25" y5="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="15" y4="0" y3="0" x1="15" y2="-10" y1="-20"/>
<polygon closed="false" x3="-10" x5="-15" x4="-15" y5="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x2="-25" y4="-10" y3="0" x1="-25" y2="0" y1="-20"/>
<dynamic_text Halignment="AlignLeft" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{e858b8a4-392c-4210-9875-5c5b9d4474d2}" x="-12" text_from="ElementInfo" rotation="0" Valignment="AlignTop" y="-25.5" frame="false" keep_visual_rotation="true" z="3">
<dynamic_text text_from="ElementInfo" Valignment="AlignTop" x="-7" z="1" frame="false" y="-15.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" rotation="0" uuid="{e858b8a4-392c-4210-9875-5c5b9d4474d2}" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x="-10" y="-5" width="20" ry="0" rx="0"/>
<dynamic_text Halignment="AlignLeft" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{248791a5-4c4b-4f63-82c0-4b3fe8bfa7ac}" x="-10" text_from="UserText" rotation="0" Valignment="AlignTop" y="13" frame="false" keep_visual_rotation="true" z="6">
<line y2="10" end2="none" length1="1.5" x1="-10" y1="10" x2="-6" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" antialias="false"/>
<line y2="10" end2="none" length1="1.5" x1="20" y1="10" x2="16" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" antialias="false"/>
<dynamic_text text_from="UserText" Valignment="AlignTop" x="-5" z="4" frame="false" y="23" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" rotation="0" uuid="{248791a5-4c4b-4f63-82c0-4b3fe8bfa7ac}" Halignment="AlignLeft">
<text>S_</text>
</dynamic_text>
<polygon closed="false" x3="5" x4="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" x2="-5" y4="-10" y3="-10" x1="-10" y2="10" y1="10"/>
<text text="+" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-23" rotation="0" y="9" color="#000000"/>
<text text="-" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="16" rotation="0" y="9" color="#000000"/>
<terminal uuid="{e44d5434-4ce8-4da2-b9d2-19060d21f3af}" x="15" y="-20" name="" orientation="n" type="Generic"/>
<terminal uuid="{07b0efc0-5045-46b0-aa84-658da17b4f44}" x="-25" y="-20" name="" orientation="n" type="Generic"/>
<terminal uuid="{76ae8b68-2c15-4d8d-b759-dd6accd75537}" x="25" y="-20" name="" orientation="n" type="Generic"/>
<terminal uuid="{18f7d690-6b89-4a04-9461-791c66ee8669}" x="-15" y="-20" name="" orientation="n" type="Generic"/>
<rect ry="0" x="-5" y="5" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" antialias="false" height="10"/>
<polygon x3="10" y2="20" y4="0" y3="0" x4="15" x1="-5" closed="false" y1="20" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="true"/>
<line y2="10" end2="none" length1="1.5" x1="-6" y1="10" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" antialias="false"/>
<line y2="-9" end2="none" length1="1.5" x1="-20" y1="10" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" antialias="false"/>
<line y2="10" end2="none" length1="1.5" x1="15" y1="10" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" antialias="false"/>
<line y2="10" end2="none" length1="1.5" x1="30" y1="-10" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" antialias="false"/>
<text x="-18" color="#000000" text="+" y="19" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="21" color="#000000" text="-" y="19" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0"/>
<polygon x3="-10" y2="0" y4="-10" y3="-10" x4="-10" x1="-5" closed="false" y1="10" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x3="15" x5="15" y2="0" y4="10" y3="10" x4="15" y5="10" x1="20" closed="false" y6="10" y1="-10" x2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x6="15"/>
<terminal x="20" orientation="n" y="-10"/>
<terminal x="-20" orientation="n" y="-10"/>
<terminal x="30" orientation="n" y="-10"/>
<terminal x="-10" orientation="n" y="-10"/>
</description>
</definition>

View File

@@ -1,31 +1,26 @@
<definition type="element" width="40" link_type="simple" height="60" hotspot_y="35" version="0.90" hotspot_x="20">
<uuid uuid="{b854742b-c135-43b7-9312-784e576128c6}"/>
<names>
<name lang="fr">Thermocouple</name>
<name lang="es">Termopar</name>
<name lang="de">Thermoelement</name>
<name lang="cs">Snímač teploty - termočlánek</name>
<name lang="it">Termocoppia</name>
<name lang="nl">Thermo koppel</name>
<definition width="60" version="0.3" hotspot_x="25" hotspot_y="35" height="60" type="element">
<uuid uuid="{9CAB18C3-588F-4B64-82EF-49817326ABED}"/><names>
<name lang="ar">ثنائي حراري</name>
<name lang="pl">Termopara</name>
<name lang="de">Thermoelement</name>
<name lang="pt">Termopar</name>
<name lang="el">Θερμοστοιχείο</name>
<name lang="en">Thermocouple</name>
<name lang="pt">Termopar</name>
<name lang="it">Termocoppia</name>
<name lang="fr">Thermocouple</name>
<name lang="pl">Termopara</name>
<name lang="es">Termopar</name>
<name lang="cs">Snímač teploty - termočlánek</name>
<name lang="nl">Thermo koppel</name>
</names>
<elementInformations/>
<informations>EN 60617: 08-06-01</informations>
<description>
<polygon y5="-30" y3="20" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="0" x2="-10" y4="0" x1="-10" x4="10" x3="0" antialias="true" y1="-30" x5="10"/>
<circle diameter="2" style="line-style:normal;line-weight:normal;filling:black;color:black" x="-1" y="19" antialias="true"/>
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-11" x2="14" end1="none" x1="14" length2="1.5" length1="1.5" antialias="false" y1="-15"/>
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-13" x2="-16" end1="none" x1="-12" length2="1.5" length1="1.5" antialias="false" y1="-13"/>
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-13" x2="16" end1="none" x1="12" length2="1.5" length1="1.5" antialias="false" y1="-13"/>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" keep_visual_rotation="false" frame="false" text_width="-1" Halignment="AlignLeft" z="6" text_from="ElementInfo" rotation="0" x="10" y="-12" uuid="{e059a5ba-c264-4d87-b907-21bc7a509322}">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal type="Generic" orientation="n" name="" x="10" y="-30" uuid="{ce0dfac9-3349-4b52-b8e5-9992f1bb1bc8}"/>
<terminal type="Generic" orientation="n" name="" x="-10" y="-30" uuid="{f3259686-4ca8-4e5e-9718-611b663e177a}"/>
<polygon x4="10" y5="-30" x5="10" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-30" x1="-10" y2="0" x2="-10" y3="20" x3="0" y4="0"/>
<circle x="-1" y="19" antialias="true" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="2"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-15" x1="14" y2="-11" x2="14"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13" x1="-12" y2="-13" x2="-16"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13" x1="12" y2="-13" x2="16"/>
<input x="10" y="-6.5" size="9" rotate="true" text="_" tagg="label"/>
<terminal x="-10" y="-30" orientation="n"/>
<terminal x="10" y="-30" orientation="n"/>
</description>
</definition>

View File

@@ -1,33 +1,31 @@
<definition hotspot_y="24" link_type="simple" width="30" type="element" version="0.90" hotspot_x="24" height="50">
<uuid uuid="{1e917be8-ae99-4c71-bf72-8cedeb5d0323}"/>
<names>
<definition width="40" version="0.3" hotspot_x="20" hotspot_y="30" height="60" type="element">
<uuid uuid="{255CB9C3-E50A-4A43-B6DB-01B78FA1F7B3}"/><names>
<name lang="ar">مجس حرارة</name>
<name lang="el">Αισθητήρας θερμοκρασίας</name>
<name lang="en">Temperature switch NO</name>
<name lang="de">Temperaturschalter Schliesser</name>
<name lang="it">Sensore di temperatura</name>
<name lang="fr">Thermostat NO</name>
<name lang="pl">Czujnik temperatury</name>
<name lang="es">Sonda de temperatura</name>
<name lang="cs">Spínač teploty NO</name>
<name lang="nl">contact temperatuur</name>
<name lang="es">Sonda de temperatura</name>
<name lang="el">Αισθητήρας θερμοκρασίας</name>
<name lang="ar">مجس حرارة</name>
<name lang="fr">Thermostat NO</name>
<name lang="en">Temperature switch NO</name>
<name lang="pl">Czujnik temperatury</name>
<name lang="de">Temperaturschalter Schliesser</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<rect antialias="false" width="9" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-5" ry="0" height="9" x="-20" rx="0"/>
<ellipse antialias="true" width="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y="-3.5" height="6" x="-17.5"/>
<arc antialias="true" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" angle="-180" y="-1.5" height="2" x="-15.5" start="0"/>
<dynamic_text z="4" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" uuid="{9efd1ea6-0d64-4ae9-963f-6565f035f9e5}" text_width="-1" keep_visual_rotation="false" Valignment="AlignTop" y="-10.5" text_from="ElementInfo" rotation="0" x="2" frame="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<arc antialias="true" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" angle="-180" y="-1.5" height="2" x="-17.5" start="180"/>
<line y1="0" end2="none" antialias="false" length1="1.5" style="line-style:dashed;line-weight:normal;filling:none;color:black" length2="1.5" end1="none" y2="0" x2="-11" x1="-3"/>
<polygon y1="-11" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="19" closed="false" x3="0" y2="9" x2="0" x1="-5"/>
<line y1="-20" end2="none" antialias="false" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" end1="none" y2="-11" x2="0" x1="0"/>
<terminal uuid="{4c8f71e7-cd1f-48a9-a19c-3c6f79ef7ba3}" orientation="s" type="Generic" y="20" x="0" name=""/>
<terminal uuid="{c922c68a-8f8c-4fab-89d7-6558f16e37ce}" orientation="n" type="Generic" y="-20" x="0" name=""/>
<ellipse width="4" x="-12.5" y="-3.5" antialias="true" height="6" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<arc width="2" x="-10.5" y="-1.5" antialias="true" height="2" style="line-style:normal;line-weight:thin;filling:none;color:black" start="0" angle="-180"/>
<input x="2" y="1" size="9" text="_" tagg="label"/>
<arc width="2" x="-12.5" y="-1.5" antialias="true" height="2" style="line-style:normal;line-weight:thin;filling:none;color:black" start="180" angle="-180"/>
<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="4" x1="-14" y2="4" x2="-7"/>
<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="-5" x1="-6" y2="-5" x2="-14"/>
<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="-5" x1="-15" y2="4" x2="-15"/>
<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="-4" x1="-6" y2="4" x2="-6"/>
<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="-3" y2="0" x2="-4"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-11" x1="-5" y2="9" x2="0" y3="19" x3="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="-20" x1="0" y2="-11" x2="0"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="0" y="20" orientation="s"/>
</description>
</definition>

View File

@@ -1,32 +1,26 @@
<definition link_type="simple" hotspot_y="27" type="element" hotspot_x="13" height="50" width="20" version="0.90">
<uuid uuid="{797642d0-7f70-483d-8f10-986cc3a976ca}"/>
<names>
<definition version="0.5" link_type="simple" width="20" hotspot_x="13" type="element" hotspot_y="27" height="50">
<uuid uuid="{8DBBB219-985A-4AB4-9FB6-3907385B14CF}"/><names>
<name lang="ar">مجس حرارة</name>
<name lang="pl">Czujnik temperatury</name>
<name lang="nl">contact temperatuur</name>
<name lang="fr">Thermostat NC</name>
<name lang="cs">Spínač teploty NC</name>
<name lang="el">Αισθητήρας θερμοκρασίας</name>
<name lang="en">Temperature switch NC</name>
<name lang="de">Temperaturschalter Schliesser</name>
<name lang="it">Sensore di temperatura</name>
<name lang="de">Temperaturschalter Öffner</name>
<name lang="fr">Thermostat NC</name>
<name lang="pl">Czujnik temperatury</name>
<name lang="es">Sonda de temperatura</name>
<name lang="cs">Spínač teploty NC</name>
<name lang="nl">contact temperatuur</name>
</names>
<elementInformations/>
<informations></informations>
<description>
<dynamic_text x="6" y="-17.5" rotation="0" keep_visual_rotation="false" frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" Valignment="AlignTop" uuid="{6193519d-b017-4b59-bbc1-2701e68eb607}" z="1" text_from="ElementInfo" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text x="-10" y="-3" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" text="θ"/>
<dynamic_text x="-65" y="-41.5" rotation="0" keep_visual_rotation="false" frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" Valignment="AlignTop" uuid="{fc5e4d31-6796-4e14-bd04-fc54ba061ebf}" z="7" text_from="ElementInfo" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-11" y2="2" x1="4" x2="0" antialias="false" x3="0" y3="15" closed="false"/>
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" y2="-10" x1="0" x2="0" antialias="false" x3="5" y3="-10" closed="false"/>
<terminal x="0" y="-20" name="" type="Generic" orientation="n" uuid="{c2aa163a-b7ae-4eba-96aa-5f071a428de0}"/>
<terminal x="0" y="15" name="" type="Generic" orientation="s" uuid="{ecb85a70-7e87-4da6-a3ce-a1cd17f9085c}"/>
<input text="_" size="9" rotate="true" y="-6" x="6" tagg="label"/>
<line y2="14.6" x1="0" y1="-0.6" length2="1.5" x2="0" end1="none" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y2="-15" x1="0" y1="0" length2="1.5" x2="5" end1="none" antialias="true" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y2="-10" x1="0" y1="-10" length2="1.5" x2="5" end1="none" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y2="-10" x1="0" y1="-20" length2="1.5" x2="0" end1="none" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<text text="θ" size="6" y="-3" x="-10"/>
<input text="" size="9" rotate="true" y="-30" x="-65" tagg="label"/>
<terminal orientation="n" y="-20" x="0"/>
<terminal orientation="s" y="15" x="0"/>
</description>
</definition>

View File

@@ -1,42 +1,38 @@
<definition type="element" width="40" hotspot_y="24" hotspot_x="14" height="50" link_type="simple" version="0.90">
<uuid uuid="{17efc0ed-2a81-470c-9a0e-2b33c060ed23}"/>
<definition type="element" hotspot_x="29" version="0.5" hotspot_y="37" link_type="simple" width="50" height="60">
<uuid uuid="{10429ada-2bbc-45ba-99eb-61bd80780b17}"/>
<names>
<name lang="pl">Czujnik ultradźwiękowy trójprzewodowy</name>
<name lang="es">Sensor ultrasónico 3 terminales</name>
<name lang="it">Sensore ultrasonico a 3 terminali</name>
<name lang="el">Αισθητήρας υπερήχων με 3 ακροδέκτες</name>
<name lang="de">Ultraschallsensor 3-Leiter</name>
<name lang="fr">Capteur ultrasons 3 bornes</name>
<name lang="cs">Ultrazvukový snímač 3 vodiče</name>
<name lang="el">Αισθητήρας υπερήχων με 3 ακροδέκτες</name>
<name lang="es">Sensor ultrasónico 3 terminales</name>
<name lang="ar">حسّاس فوق صوتي ثلاث أطراف</name>
<name lang="it">Sensore ultrasonico a 3 terminali</name>
<name lang="pl">Czujnik ultradźwiękowy trójprzewodowy</name>
<name lang="en">Ultrasonic sensor 3 terminals</name>
<name lang="nl">ultrasoon sensor 3</name>
<name lang="de">Ultraschallsensor 3-Leiter</name>
<name lang="ar">حسّاس فوق صوتي ثلاث أطراف</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line length2="1.5" end1="none" x1="-9" y1="-6" antialias="false" x2="-9" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-8" length1="1.5" end2="none"/>
<rect width="2" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:black;color:black" x="-10" rx="0" y="-4" ry="0"/>
<line length2="1.5" end1="none" x1="-10" y1="-6" antialias="false" x2="-8" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-6" length1="1.5" end2="none"/>
<line length2="1.5" end1="none" x1="-9" y1="4" antialias="false" x2="-9" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="2" length1="1.5" end2="none"/>
<line length2="1.5" end1="none" x1="-10.05" y1="1.95" antialias="false" x2="-8.05" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="1.95" length1="1.5" end2="none"/>
<text text="BU" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="1" color="#000000" y="19"/>
<text text="BK" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="14" color="#000000" y="5"/>
<text text="BN" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="1" color="#000000" y="-15"/>
<line length2="1.5" end1="none" x1="12" y1="0" antialias="false" x2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="0" length1="1.5" end2="none"/>
<line length2="1.5" end1="none" x1="0" y1="20" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="13" length1="1.5" end2="none"/>
<line length2="1.5" end1="none" x1="0" y1="-20" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-12" length1="1.5" end2="none"/>
<rect width="24" antialias="false" height="24" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-12" rx="0" y="-12" ry="0"/>
<polygon x3="6" x1="-6" y3="-2" y4="4" y1="-2" x4="0" antialias="true" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-8" y5="-2" x5="-6"/>
<line length2="1.5" end1="none" x1="1" y1="-6" antialias="false" x2="1" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="2" length1="1.5" end2="none"/>
<line length2="1.5" end1="none" x1="-1" y1="-6" antialias="false" x2="-1" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="2" length1="1.5" end2="none"/>
<dynamic_text keep_visual_rotation="false" uuid="{1bc8a1a3-0717-4c89-aa70-d0e81c6e07ef}" Halignment="AlignLeft" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="16" rotation="0" text_from="ElementInfo" text_width="-1" x="10" frame="false" Valignment="AlignTop" y="-3.5">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal uuid="{49ed0bdd-8fd1-477b-8c49-323162b250db}" name="" type="Generic" x="20" orientation="e" y="0"/>
<terminal uuid="{b277dc49-8fed-4206-bac2-73a0949bf723}" name="" type="Generic" x="0" orientation="n" y="-20"/>
<terminal uuid="{794592a9-f9c1-45f8-ba47-07418fbb473d}" name="" type="Generic" x="0" orientation="s" y="20"/>
<line x1="-19" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-14" y2="-16" length1="1.5" antialias="false" end1="none" x2="-19"/>
<rect x="-20" y="-12" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false" width="2" height="4"/>
<line x1="-20" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-14" y2="-14" length1="1.5" antialias="false" end1="none" x2="-18"/>
<line x1="-19" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-4" y2="-6" length1="1.5" antialias="false" end1="none" x2="-19"/>
<line x1="-20.05" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-6.05" y2="-6.05" length1="1.5" antialias="false" end1="none" x2="-18.05"/>
<text text="BU" x="-9" y="14" size="4"/>
<text text="BK" x="6" y="-3" size="4"/>
<text text="BN" x="-9" y="-25" size="4"/>
<line x1="2" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-8" y2="-8" length1="1.5" antialias="false" end1="none" x2="8"/>
<line x1="-10" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" y2="5" length1="1.5" antialias="false" end1="none" x2="-10"/>
<line x1="-10" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-25" y2="-20" length1="1.5" antialias="false" end1="none" x2="-10"/>
<rect x="-24" y="-19" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" width="25" height="23"/>
<polygon x1="-16" closed="false" x4="-10" x5="-16" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" y2="-16" y4="-4" antialias="true" y3="-10" y5="-10" x2="-10" x3="-4"/>
<line x1="-9" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-14" y2="-6" length1="1.5" antialias="false" end1="none" x2="-9"/>
<line x1="-11" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-14" y2="-6" length1="1.5" antialias="false" end1="none" x2="-11"/>
<input text="_" x="0" y="0" tagg="label" size="9" rotate="true"/>
<terminal x="-10" y="-30" orientation="n"/>
<terminal x="13" y="-8" orientation="e"/>
<terminal x="-10" y="15" orientation="s"/>
</description>
</definition>

View File

@@ -1,38 +1,33 @@
<definition link_type="simple" height="50" hotspot_x="28" hotspot_y="34" type="element" width="50" version="0.90">
<uuid uuid="{d0bdccdc-00e7-4282-ae1e-a030bd397991}"/>
<names>
<name lang="en">Ultrasonic sensor NC</name>
<name lang="fr">Capteur ultrasons NC</name>
<name lang="cs">Ultrazvukový snímač NC 2 vodiče</name>
<name lang="it">Sensore ultrasonico NC</name>
<name lang="es">Sensor ultrasónico NC</name>
<name lang="nl">contact ultrasoon 2 (NC)</name>
<name lang="el">Αισθητήρας υπερήχων, κλειστή επαφή</name>
<definition width="70" version="0.3" hotspot_x="30" hotspot_y="35" height="50" type="element">
<uuid uuid="{3379A19A-1997-463C-B1A7-9C1E53762125}"/><names>
<name lang="ar">حسّاس فوق صوتي NC</name>
<name lang="pl">Czujnik ultradźwiękowy trójprzewodowy, rozwierny</name>
<name lang="el">Αισθητήρας υπερήχων, κλειστή επαφή</name>
<name lang="en">Ultrasonic sensor NC</name>
<name lang="de">Ultraschallschalter 2-Leiter Öffner</name>
<name lang="it">Sensore ultrasonico NC</name>
<name lang="fr">Capteur ultrasons NC</name>
<name lang="pl">Czujnik ultradźwiękowy trójprzewodowy, rozwierny</name>
<name lang="es">Sensor ultrasónico NC</name>
<name lang="cs">Ultrazvukový snímač NC 2 vodiče</name>
<name lang="nl">contact ultrasoon 2 (NC)</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line y2="-17" end2="none" x2="-22" end1="none" antialias="false" y1="-15" x1="-22" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y2="-11" end2="none" x2="9.3125" end1="none" antialias="false" y1="-11" x1="-2.6875" length2="1.5" style="line-style:dashed;line-weight:normal;filling:none;color:black" length1="1.5"/>
<rect antialias="false" height="4" ry="0" width="2" y="-13" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" x="-23"/>
<line y2="-15" end2="none" x2="-21" end1="none" antialias="false" y1="-15" x1="-23" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y2="-7" end2="none" x2="-22" end1="none" antialias="false" y1="-5" x1="-22" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<polygon y2="0" closed="false" x2="10" y3="10" antialias="true" y1="-20" x1="15" x3="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line y2="-7.05" end2="none" x2="-21.05" end1="none" antialias="false" y1="-7.05" x1="-23.05" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y2="-19" end2="none" x2="16" end1="none" antialias="false" y1="-19" x1="10" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y2="-19" end2="none" x2="10" end1="none" antialias="false" y1="-30" x1="10" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<dynamic_text rotation="0" frame="false" Valignment="AlignTop" z="10" keep_visual_rotation="false" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" y="-18.5" uuid="{97aa8333-2c38-40fc-8d92-4dc2aef735ce}" Halignment="AlignLeft" x="15.6875">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon y2="-17" closed="false" x2="-12.6875" y3="-11" y5="-11" antialias="true" y1="-11" x1="-18.6875" x3="-6.6875" style="line-style:normal;line-weight:normal;filling:none;color:black" x5="-18.6875" x4="-12.6875" y4="-5"/>
<line y2="-7" end2="none" x2="-11.6875" end1="none" antialias="false" y1="-15" x1="-11.6875" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y2="-7" end2="none" x2="-13.6875" end1="none" antialias="false" y1="-15" x1="-13.6875" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<terminal orientation="s" name="" type="Generic" y="10" uuid="{8898d3ae-e9bc-4d47-b764-98bc9e90bec0}" x="10"/>
<terminal orientation="n" name="" type="Generic" y="-30" uuid="{8230bf1d-5f1c-48e4-a692-90a8a0dfc38c}" x="10"/>
<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="-15" x1="-22" y2="-17" x2="-22"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:dashed;line-weight:normal;filling:none;color:black" y1="-11" x1="-2.6875" y2="-11" x2="9.3125"/>
<rect width="2" x="-23" y="-13" antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:black;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="-15" x1="-23" y2="-15" x2="-21"/>
<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="-5" x1="-22" y2="-7" x2="-22"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-20" x1="14.9375" y2="0" x2="9.9375" y3="10" x3="9.9375"/>
<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="-7.05" x1="-23.05" y2="-7.05" x2="-21.05"/>
<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="-19" x1="9.9375" y2="-19" x2="15.9375"/>
<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="-30" x1="9.9375" y2="-19" x2="9.9375"/>
<input x="15.6875" y="-7" size="9" text="_" tagg="label"/>
<polygon x4="-12.6875" y5="-11" x5="-18.6875" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-11" x1="-18.6875" y2="-17" x2="-12.6875" y3="-11" x3="-6.6875" y4="-5"/>
<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="-15" x1="-11.6875" y2="-7" x2="-11.6875"/>
<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="-15" x1="-13.6875" y2="-7" x2="-13.6875"/>
<terminal x="10" y="-30" orientation="n"/>
<terminal x="10" y="10" orientation="s"/>
</description>
</definition>

View File

@@ -1,7 +1,7 @@
<definition width="20" version="0.4" hotspot_x="9" hotspot_y="25" height="50" link_type="simple" type="element" ic="true">
<uuid uuid="{4F06EDB7-C47D-48F5-B5CD-C0A5701664F0}"/><names>
<name lang="ar">مفتاح نهاية مشوار (NC)</name>
<name lang="de">Endschalter Öffner</name>
<name lang="de">Öffner mechanisch</name>
<name lang="ru">Концевой контакт (НЗ)</name>
<name lang="pt">Fim de curso (NC)</name>
<name lang="en">Limitswitch (NC)</name>

View File

@@ -1,33 +1,31 @@
<definition hotspot_y="30" link_type="simple" width="40" height="60" version="0.90" hotspot_x="29" type="element">
<uuid uuid="{302c9278-373c-410d-aabb-0623d12f97c2}"/>
<names>
<name lang="nl">contact Klok</name>
<name lang="pl">Zegar sterujący</name>
<name lang="it">Contatto orologio NO</name>
<definition width="70" version="0.3" hotspot_x="30" hotspot_y="25" height="50" type="element" orientation="dnny">
<uuid uuid="{7A20696E-4EC5-4337-B632-326E8B045C00}"/><names>
<name lang="ar">مفتاح ساعة</name>
<name lang="cs">Časový spínač NO</name>
<name lang="fr">Contact horloge</name>
<name lang="en">Timer NO</name>
<name lang="es">Contacto temporizado</name>
<name lang="de">Zeitschalter Schliesser</name>
<name lang="el">Επαφή χρονοδιακόπτη</name>
<name lang="en">Timer NO</name>
<name lang="it">Contatto orologio NO</name>
<name lang="fr">Contact horloge</name>
<name lang="pl">Zegar sterujący</name>
<name lang="es">Contacto temporizado</name>
<name lang="cs">Časový spínač NO</name>
<name lang="nl">contact Klok</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="12" y="-6" x="-27"/>
<text rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" y="20.8" x="2" color="#000000" text="14"/>
<text rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" y="-17.7" x="2" color="#000000" text="13"/>
<line y2="0" style="line-style:dashed;line-weight:normal;filling:none;color:black" y1="0" x1="-3" end1="none" antialias="false" length2="1.5" end2="none" x2="-15" length1="1.5"/>
<polygon y2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x1="-5" antialias="true" x3="0" closed="false" y3="20" x2="0"/>
<line y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" x1="0" end1="none" antialias="false" length2="1.5" end2="none" x2="0" length1="1.5"/>
<dynamic_text frame="false" rotation="0" z="10" uuid="{a4214204-a2be-4c03-9f96-47489328466a}" keep_visual_rotation="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-8.5" text_width="-1" x="2.75" Halignment="AlignLeft" Valignment="AlignTop" text_from="ElementInfo">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon y2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-4" x1="-23" antialias="false" x3="-18" closed="false" y3="0" x2="-21"/>
<terminal uuid="{887ec901-2e95-4f4d-8878-1da94937a77e}" y="20" x="0" name="" orientation="s" type="Generic"/>
<terminal uuid="{66bd0d09-de35-42c9-8622-db73fae43bc9}" y="-20" x="0" name="" orientation="n" type="Generic"/>
<circle x="-27" y="-6" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="12"/>
<text x="2" y="20.8333" size="4" text="14"/>
<text x="2" y="-17.6667" size="4" text="13"/>
<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="-21" y2="0" x2="-18"/>
<line length1="1.5" length2="1.5" antialias="true" end1="none" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" x1="-21" y2="-4" x2="-23"/>
<text x="-27" y="-12.6667" size="4" text="Horloge"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:dashed;line-weight:normal;filling:none;color:black" y1="0" x1="-3" y2="0" x2="-15"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-10" x1="-5" y2="10" x2="0" y3="20" x3="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="-20" x1="0" y2="-12.5" x2="0"/>
<input x="2.75" y="3" size="9" text="_" tagg="label"/>
<circle x="-1.75" y="-11.75" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="3.5"/>
<terminal x="0" y="-21" orientation="n"/>
<terminal x="0" y="21" orientation="s"/>
</description>
</definition>

View File

@@ -1,43 +1,38 @@
<definition link_type="simple" hotspot_y="24" version="0.90" type="element" height="50" width="60" hotspot_x="32">
<uuid uuid="{1a36a896-cdf2-4fb7-8d7a-119a347aac5d}"/>
<names>
<name lang="es">Interruptor temporizado</name>
<name lang="en">Timer NC/NO</name>
<definition width="90" version="0.3" hotspot_x="40" hotspot_y="25" height="50" type="element" orientation="dnny">
<uuid uuid="{36289049-F331-4A86-BDA3-C3A144C98C29}"/><names>
<name lang="ar">مفتاح زمني</name>
<name lang="el">Χρονοδιακόπτης</name>
<name lang="en">Timer NC/NO</name>
<name lang="de">Zeitschalter Wechsler</name>
<name lang="it">Contatto orologio NC/NO</name>
<name lang="fr">Horloge</name>
<name lang="pl">Przekaźnik czasowy</name>
<name lang="es">Interruptor temporizado</name>
<name lang="cs">Časový spínač NC/NO</name>
<name lang="nl">Tijdschakelaar</name>
<name lang="pl">Przekaźnik czasowy</name>
<name lang="de">Zeitschalter Wechsler</name>
<name lang="el">Χρονοδιακόπτης</name>
<name lang="it">Contatto orologio NC/NO</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text y="-14.7" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-18" text="L" color="#000000"/>
<polygon x2="20" x3="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" closed="false" y2="-8" y1="-8" x1="14" y3="-20"/>
<line end1="none" end2="none" x2="8" style="line-style:dashed;line-weight:normal;filling:none;color:black" antialias="false" y2="0" y1="0" length2="1.5" x1="-10" length1="1.5"/>
<polygon x2="10" x3="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" closed="false" y2="10" y1="20" x1="10" y3="-10"/>
<polygon x2="0" x3="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" closed="false" y2="-8" y1="-8" x1="6" y3="-20"/>
<line end1="none" end2="none" x2="-25" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y2="0" y1="0" length2="1.5" x1="-20" length1="1.5"/>
<line end1="none" end2="none" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y2="-8" y1="0" length2="1.5" x1="-20" length1="1.5"/>
<circle y="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="20" x="-30"/>
<text y="-14.7" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="22" text="6" color="#000000"/>
<text y="-14.7" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-5" text="2" color="#000000"/>
<text y="17.3" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="-18" text="N" color="#000000"/>
<line end1="none" end2="none" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y2="-10" y1="-20" length2="1.5" x1="-20" length1="1.5"/>
<line end1="none" end2="none" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y2="20" y1="10" length2="1.5" x1="-20" length1="1.5"/>
<text y="18.3" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" x="11.5" text="4" color="#000000"/>
<dynamic_text Valignment="AlignTop" uuid="{55844cdb-2ea6-4eb1-91c7-0d379463aee9}" y="-5.2" font="Sans Serif,9,-1,5,50,0,0,0,0,0" keep_visual_rotation="false" Halignment="AlignLeft" frame="false" text_from="ElementInfo" rotation="0" x="26.5" z="15" text_width="-1">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal uuid="{69684dd1-1baa-47e2-acdd-e85c2a465dae}" y="-20" name="" type="Generic" orientation="n" x="-20"/>
<terminal uuid="{49ce645a-b9b9-47ca-88b5-4ffbe7e3608b}" y="20" name="" type="Generic" orientation="s" x="-20"/>
<terminal uuid="{9cd5d01b-296b-486b-a502-d747f9f3bc64}" y="20" name="" type="Generic" orientation="s" x="10"/>
<terminal uuid="{a9433ffc-a37d-4fc5-9322-eb81a13b19ff}" y="-20" name="" type="Generic" orientation="n" x="20"/>
<terminal uuid="{1210ee1d-6a60-4df2-94be-b068f20e0480}" y="-20" name="" type="Generic" orientation="n" x="0"/>
<text x="-18" y="-14.6667" size="4" text="L"/>
<polygon antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-8" x1="14" y2="-8" x2="20" y3="-20" x3="20"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:dashed;line-weight:normal;filling:none;color:black" y1="0" x1="-10" y2="0" x2="8"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="20" x1="10" y2="10" x2="10" y3="-10" x3="5"/>
<polygon antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-8" x1="6" y2="-8" x2="0" y3="-20" x3="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="0" x1="-20" y2="0" x2="-25"/>
<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="-20" y2="-8" x2="-20"/>
<circle x="-30.0499" y="-10.0499" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20.0998"/>
<text x="22" y="-14.6667" size="4" text="6"/>
<text x="-5" y="-14.6667" size="4" text="2"/>
<text x="-18" y="17.3333" size="4" text="N"/>
<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="-20" x1="-20" y2="-10" x2="-20"/>
<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" x1="-20" y2="20" x2="-20"/>
<text x="11.5" y="18.3333" size="4" text="4"/>
<input x="26.5" y="6.3333" size="9" text="_" tagg="label"/>
<terminal x="-20" y="20" orientation="s"/>
<terminal x="-20" y="-20" orientation="n"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="10" y="20" orientation="s"/>
<terminal x="20" y="-20" orientation="n"/>
</description>
</definition>

View File

@@ -1,52 +1,47 @@
<definition hotspot_x="52" height="50" version="0.90" link_type="simple" type="element" hotspot_y="24" width="90">
<uuid uuid="{2cf591b8-16e3-4a9b-84ba-9f527777ec52}"/>
<names>
<name lang="fr">Horloge 2 sorties</name>
<name lang="pl">Przekaźnik czasowy wielozestykowy</name>
<definition width="120" version="0.3" hotspot_x="60" hotspot_y="30" height="60" type="element" orientation="dnny">
<uuid uuid="{9774CAB5-8445-427F-84A0-DC4656AA7D98}"/><names>
<name lang="ar">ساعة بمخرجين</name>
<name lang="el">Χρονοδιακόπτης 2 επαφών</name>
<name lang="es">Interruptor temporizado 2 salidas</name>
<name lang="nl">Tijdschakelaar 2 contacten</name>
<name lang="cs">Časový spínač 2x NC/NO</name>
<name lang="en">Timer 2x NC/NO</name>
<name lang="de">Zeitschalter 2x Wechsler</name>
<name lang="it">Contatto orologio (2 NC/NO)</name>
<name lang="ar">ساعة بمخرجين</name>
<name lang="en">Timer 2x NC/NO</name>
<name lang="fr">Horloge 2 sorties</name>
<name lang="pl">Przekaźnik czasowy wielozestykowy</name>
<name lang="es">Interruptor temporizado 2 salidas</name>
<name lang="cs">Časový spínač 2x NC/NO</name>
<name lang="nl">Tijdschakelaar 2 contacten</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon closed="false" x2="30" y2="-8" y3="-20" x1="24" style="line-style:normal;line-weight:normal;filling:none;color:black" x3="30" y1="-8" antialias="false"/>
<text color="#000000" rotation="0" text="L" y="-14.6667" x="-38" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<polygon closed="false" x2="20" y2="10" y3="-10" x1="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x3="15" y1="20" antialias="true"/>
<polygon closed="false" x2="0" y2="-8" y3="-20" x1="-6" style="line-style:normal;line-weight:normal;filling:none;color:black" x3="0" y1="-8" antialias="false"/>
<polygon closed="false" x2="10" y2="-8" y3="-20" x1="16" style="line-style:normal;line-weight:normal;filling:none;color:black" x3="10" y1="-8" antialias="false"/>
<line end1="none" length1="1.5" length2="1.5" x2="18" y2="0" end2="none" x1="-30" style="line-style:dashed;line-weight:normal;filling:none;color:black" y1="0" antialias="false"/>
<text color="#000000" rotation="0" text="6" y="-14.6667" x="32" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<polygon closed="false" x2="-10" y2="10" y3="-10" x1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" x3="-15" y1="20" antialias="true"/>
<text color="#000000" rotation="0" text="4" y="-14.6667" x="12.5" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<polygon closed="false" x2="-20" y2="-8" y3="-20" x1="-14" style="line-style:normal;line-weight:normal;filling:none;color:black" x3="-20" y1="-8" antialias="false"/>
<text color="#000000" rotation="0" text="5" y="18.3333" x="21" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<line end1="none" length1="1.5" length2="1.5" x2="-45" y2="0" end2="none" x1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" antialias="false"/>
<line end1="none" length1="1.5" length2="1.5" x2="-40" y2="-8" end2="none" x1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" antialias="false"/>
<circle diameter="20" y="-10" x="-50" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<text color="#000000" rotation="0" text="3" y="-14.6667" x="2" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" text="1" y="-14.6667" x="-25" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" text="N" y="17.3333" x="-38" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<line end1="none" length1="1.5" length2="1.5" x2="-40" y2="-10" end2="none" x1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" antialias="false"/>
<line end1="none" length1="1.5" length2="1.5" x2="-40" y2="20" end2="none" x1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" antialias="false"/>
<text color="#000000" rotation="0" text="2" y="18.3333" x="-9" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<dynamic_text rotation="0" z="21" frame="false" text_from="ElementInfo" Valignment="AlignTop" uuid="{080dd5d6-fbb4-4b06-9d16-fba521f6df09}" keep_visual_rotation="false" Halignment="AlignLeft" y="-5.1667" x="38.5" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal orientation="n" name="" uuid="{65e94e0c-dc3e-491d-9684-c17839704d55}" y="-20" x="-40" type="Generic"/>
<terminal orientation="n" name="" uuid="{2d6cfb75-3d8e-4952-b0b4-c8c6411d4261}" y="-20" x="30" type="Generic"/>
<terminal orientation="s" name="" uuid="{211a9e4c-df44-4b4e-85ff-a66abc7a0494}" y="20" x="-40" type="Generic"/>
<terminal orientation="n" name="" uuid="{545bbd6b-90e8-4998-bb93-c2d143adabff}" y="-20" x="0" type="Generic"/>
<terminal orientation="n" name="" uuid="{ff7f7492-23a9-4c02-80df-9e561e0f8cd9}" y="-20" x="10" type="Generic"/>
<terminal orientation="s" name="" uuid="{24be2174-f002-4cef-aa51-504a3887d413}" y="20" x="20" type="Generic"/>
<terminal orientation="n" name="" uuid="{4e57e85c-3bb5-484b-b025-18295dddb3c6}" y="-20" x="-20" type="Generic"/>
<terminal orientation="s" name="" uuid="{6fb0f24a-46ac-4b94-a138-8d85b541481f}" y="20" x="-10" type="Generic"/>
<polygon antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-8" x1="24" y2="-8" x2="30" y3="-20" x3="30"/>
<text x="-38" y="-14.6667" size="4" text="L"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="20" x1="20" y2="10" x2="20" y3="-10" x3="15"/>
<polygon antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-8" x1="-6" y2="-8" x2="0" y3="-20" x3="0"/>
<polygon antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-8" x1="16" y2="-8" x2="10" y3="-20" x3="10"/>
<line length1="1.5" length2="1.5" antialias="false" end1="none" end2="none" style="line-style:dashed;line-weight:normal;filling:none;color:black" y1="0" x1="-30" y2="0" x2="18"/>
<text x="32" y="-14.6667" size="4" text="6"/>
<polygon antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="20" x1="-10" y2="10" x2="-10" y3="-10" x3="-15"/>
<text x="12.5" y="-14.6667" size="4" text="4"/>
<polygon antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false" y1="-8" x1="-14" y2="-8" x2="-20" y3="-20" x3="-20"/>
<text x="21" y="18.3333" size="4" text="5"/>
<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="-40" y2="0" x2="-45"/>
<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="-40" y2="-8" x2="-40"/>
<circle x="-50.0499" y="-10.0499" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20.0998"/>
<text x="2" y="-14.6667" size="4" text="3"/>
<text x="-25" y="-14.6667" size="4" text="1"/>
<text x="-38" y="17.3333" size="4" text="N"/>
<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="-20" x1="-40" y2="-10" x2="-40"/>
<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" x1="-40" y2="20" x2="-40"/>
<text x="-9" y="18.3333" size="4" text="2"/>
<input x="38.5" y="6.3333" size="9" text="_" tagg="label"/>
<terminal x="-40" y="20" orientation="s"/>
<terminal x="-40" y="-20" orientation="n"/>
<terminal x="-20" y="-20" orientation="n"/>
<terminal x="-10" y="20" orientation="s"/>
<terminal x="0" y="-20" orientation="n"/>
<terminal x="10" y="-20" orientation="n"/>
<terminal x="20" y="20" orientation="s"/>
<terminal x="30" y="-20" orientation="n"/>
</description>
</definition>

View File

@@ -1,29 +1,24 @@
<definition height="50" version="0.90" width="40" hotspot_y="24" hotspot_x="20" type="element" link_type="simple">
<uuid uuid="{5b2d7d82-84ec-4a3a-926f-9eadbde89eb9}"/>
<definition hotspot_y="28" type="element" height="50" width="40" hotspot_x="20" link_type="simple" version="0.5">
<uuid uuid="{06087d5d-6b03-463e-b400-51ffcdf5c16d}"/>
<names>
<name lang="el">Μετρητής κατανάλωσης, Αμπερώρια (Ah)</name>
<name lang="nl">Ampere uur meter</name>
<name lang="de">Amperestundenzähler</name>
<name lang="pl">Licznik amperogodzin</name>
<name lang="cs">Měřič Ampérhodin</name>
<name lang="nl">Ampere uur meter</name>
<name lang="it">Misuratore di Ah</name>
<name lang="ar">أمبيرساعة متر </name>
<name lang="fr">Ampèreheuremètre</name>
<name lang="de">Amperestundenzähler</name>
<name lang="el">Μετρητής κατανάλωσης, Αμπερώρια (Ah)</name>
<name lang="en">Ampere Hour Meter</name>
<name lang="fr">Ampèreheuremètre</name>
<name lang="pl">Licznik amperogodzin</name>
<name lang="ar">أمبيرساعة متر </name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line y2="20" end2="none" length2="1.5" y1="-20" antialias="false" x1="0" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5"/>
<rect x="-15" height="30" rx="0" width="30" y="-15" antialias="false" style="line-style:normal;line-weight:normal;filling:white;color:black" ry="0"/>
<text x="-8" color="#000000" text="Ah" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="7.3333"/>
<dynamic_text x="15" text_width="-1" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-21.5" z="4" frame="false" Halignment="AlignLeft" Valignment="AlignTop" uuid="{c6273b25-dae0-4113-8bf7-29bb12749b73}" keep_visual_rotation="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line y2="-7" end2="none" length2="1.5" y1="-7" antialias="false" x1="-15" x2="15" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5"/>
<terminal x="0" y="20" name="A2" type="Generic" uuid="{a1f83453-2a04-444f-a6f1-190c10eb5fec}" orientation="s"/>
<terminal x="0" y="-20" name="A1" type="Generic" uuid="{a5a22122-75a8-4814-b3d2-5d3247066c46}" orientation="n"/>
<text text="Ah" y="2.3333" size="9" x="-8"/>
<rect height="22" antialias="false" y="-11" width="30" x="-15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect height="8" antialias="false" y="-19" width="30" x="-15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input text="_" rotate="true" y="-25" size="9" x="15" tagg="label"/>
<terminal y="-23" orientation="n" x="0"/>
<terminal y="15" orientation="s" x="0"/>
</description>
</definition>

View File

@@ -1,31 +1,29 @@
<definition type="element" link_type="simple" hotspot_y="16" hotspot_x="24" version="0.90" height="30" width="50">
<uuid uuid="{520d77da-5555-4cac-8875-21031d13650e}"/>
<definition hotspot_y="15" type="element" height="30" width="60" hotspot_x="29" link_type="simple" version="0.5">
<uuid uuid="{3408823a-37c5-436e-9770-9214313ce209}"/>
<names>
<name lang="pt">Amperímetro horizontal</name>
<name lang="el">Αμπερόμετρο οριζόντιο</name>
<name lang="ru">Амперметр (горизонтальный)</name>
<name lang="ar">أمبيرمتر أفقي</name>
<name lang="fr">Ampèremètre horizontal</name>
<name lang="en">Horizontal ammeter</name>
<name lang="es">Amperímetro horizontal</name>
<name lang="nl">Amperemeter</name>
<name lang="pl">Amperomierz (poziomo)</name>
<name lang="cs">Vodorovný ampérmetr</name>
<name lang="nl">Amperemeter</name>
<name lang="it">Amperometro orizzontale</name>
<name lang="ru">Амперметр (горизонтальный)</name>
<name lang="pt">Amperímetro horizontal</name>
<name lang="de">Amperemeter waagerecht</name>
<name lang="el">Αμπερόμετρο οριζόντιο</name>
<name lang="en">Horizontal ammeter</name>
<name lang="fr">Ampèremètre horizontal</name>
<name lang="es">Amperímetro horizontal</name>
<name lang="pl">Amperomierz (poziomo)</name>
<name lang="ar">أمبيرمتر أفقي</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line y1="0" length2="1.5" end1="none" end2="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-20" y2="0" x2="20"/>
<circle y="-10" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="20" antialias="true" x="-10"/>
<dynamic_text text_width="-1" y="-24" uuid="{19218c38-62ae-4b89-875e-82b6d38b8b4b}" font="Sans Serif,9,-1,5,50,0,0,0,0,0" keep_visual_rotation="false" frame="false" z="3" Valignment="AlignTop" x="9" rotation="0" text_from="ElementInfo" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text y="2" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" text="A" x="-5" rotation="0"/>
<terminal type="Generic" y="0" uuid="{ebcdd160-7d65-4378-8fc2-d8e95e6a51fc}" name="A2" x="20" orientation="e"/>
<terminal type="Generic" y="0" uuid="{d550f696-cf33-4673-bb70-25827bfd01cd}" name="A1" x="-20" orientation="w"/>
<input text="_" rotate="true" y="-12.5" size="9" x="9" tagg="label"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="-1.75" y2="0" end1="none" y1="0" x2="1.75" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="10" y2="0" end1="none" y1="0" x2="21" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="-21" y2="0" end1="none" y1="0" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x3="5" closed="false" y3="6" antialias="true" x1="-5" y2="-6" y1="6" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="20" antialias="true" y="-10" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="0" orientation="w" x="-21"/>
<terminal y="0" orientation="e" x="21"/>
</description>
</definition>

View File

@@ -1,31 +1,29 @@
<definition hotspot_y="24" width="30" type="element" version="0.90" hotspot_x="15" height="50" link_type="simple">
<uuid uuid="{8eac8be8-6e24-462c-8630-e943e2c7b67b}"/>
<definition hotspot_y="29" type="element" height="60" width="30" hotspot_x="15" link_type="simple" version="0.5">
<uuid uuid="{5372758b-421b-4c93-b357-776137202ca4}"/>
<names>
<name lang="en">Vertical ammeter</name>
<name lang="el">Αμπερόμετρο κατακόρυφο</name>
<name lang="cs">Svislý ampérmetr</name>
<name lang="it">Amperometro verticale</name>
<name lang="ar">أمبيرمتر عمودي</name>
<name lang="pl">Amperomierz (pionowo)</name>
<name lang="fr">Ampèremètre vertical</name>
<name lang="nl">Amperemeter</name>
<name lang="es">Amperímetro vertical</name>
<name lang="it">Amperometro verticale</name>
<name lang="ru">Амперметр (вертикальный)</name>
<name lang="de">Amperemeter senkrecht</name>
<name lang="pt">Amperímetro vertical</name>
<name lang="de">Amperemeter senkrecht</name>
<name lang="el">Αμπερόμετρο κατακόρυφο</name>
<name lang="en">Vertical ammeter</name>
<name lang="fr">Ampèremètre vertical</name>
<name lang="es">Amperímetro vertical</name>
<name lang="pl">Amperomierz (pionowo)</name>
<name lang="ar">أمبيرمتر عمودي</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line y1="-20" length2="1.5" antialias="false" x2="0" end1="none" length1="1.5" end2="none" y2="20" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<dynamic_text uuid="{ab294d09-1d2d-4f7e-8ef5-ebf0b33ad106}" rotation="0" keep_visual_rotation="false" Valignment="AlignTop" x="8" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="2" y="-25.95" text_from="ElementInfo" text_width="-1" Halignment="AlignLeft" frame="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<circle x="-10" y="-10" antialias="true" diameter="20" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<text text="A" color="#000000" rotation="0" x="-5" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="5"/>
<terminal uuid="{ee5e578a-43cd-41cb-be2a-1f19c553d556}" type="Generic" x="0" y="20" name="" orientation="s"/>
<terminal uuid="{f73618cd-586c-45b7-8b88-3af7b5168596}" type="Generic" x="0" y="-20" name="" orientation="n"/>
<input text="_" rotate="true" y="-14.45" size="9" x="8" tagg="label"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="-1.75" y2="0" end1="none" y1="0" x2="1.75" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="0" y2="21" end1="none" y1="10" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="0" y2="-10" end1="none" y1="-21" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x3="5" closed="false" y3="6" antialias="true" x1="-5" y2="-6" y1="6" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="20" antialias="true" y="-10" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="-21" orientation="n" x="0"/>
<terminal y="21" orientation="s" x="0"/>
</description>
</definition>

View File

@@ -1,24 +0,0 @@
<definition hotspot_x="44" version="0.90" type="element" hotspot_y="24" link_type="simple" height="50" width="90">
<uuid uuid="{ec3f16ca-1990-47ad-a913-a9b96b7bf547}"/>
<names>
<name lang="fr">Compteur</name>
</names>
<elementInformations/>
<informations></informations>
<description>
<rect x="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="-5" rx="0" ry="0" height="15" width="40"/>
<text x="-10" rotation="0" color="#000000" y="5" text="kwh" font="Sans Serif,8,-1,5,50,0,0,0,0,0"/>
<rect x="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="-20" rx="0" ry="0" height="40" width="80"/>
<terminal x="30" orientation="s" type="Generic" uuid="{c4a6406a-a5c9-44e7-a1de-c3d7490d85df}" y="20" name=""/>
<terminal x="-30" orientation="n" type="Generic" uuid="{0a8daa67-629c-4a91-93d8-0cae0afdf00b}" y="-20" name=""/>
<terminal x="-10" orientation="n" type="Generic" uuid="{90dfad49-c761-45c0-9c08-f9bf1dd32790}" y="-20" name=""/>
<terminal x="30" orientation="n" type="Generic" uuid="{c3506df9-fc2b-41bf-b5e9-3b286cfaf69d}" y="-20" name=""/>
<terminal x="-10" orientation="s" type="Generic" uuid="{8a5dfc73-d3bc-40fe-9861-7ac492ce9a51}" y="20" name=""/>
<terminal x="10" orientation="n" type="Generic" uuid="{111aae5a-7b46-4d91-ae31-d0d32de337e9}" y="-20" name=""/>
<terminal x="10" orientation="s" type="Generic" uuid="{1a2ac800-535d-4f60-9387-fffa92a0f84a}" y="20" name=""/>
<terminal x="40" orientation="e" type="Generic" uuid="{61a460fa-779f-4b07-8896-fb021649a49e}" y="0" name=""/>
<terminal x="-30" orientation="s" type="Generic" uuid="{366eb1d4-0e6c-4fcf-937c-a0cbc73e7671}" y="20" name=""/>
<terminal x="40" orientation="e" type="Generic" uuid="{c5249091-4377-4d00-a6f1-572d339bd7bf}" y="10" name=""/>
<terminal x="40" orientation="e" type="Generic" uuid="{7159e22b-9eaf-48de-836e-19a5ae7c4cd0}" y="-10" name=""/>
</description>
</definition>

View File

@@ -1,32 +0,0 @@
<definition type="element" hotspot_x="20" width="40" version="0.90" link_type="simple" hotspot_y="34" height="60">
<uuid uuid="{87e47504-2275-4298-ba6c-9777e1f5b978}"/>
<names>
<name lang="it">Contatore monofase 230V</name>
<name lang="de">Stromzähler einphasig</name>
<name lang="ar">عدّاد أحادي الوجه 220V </name>
<name lang="pl">Licznik jednofazowy</name>
<name lang="en">220V single phase meter</name>
<name lang="fr">Compteur 220V monophase</name>
<name lang="el">Μονοφασικός μετρητής</name>
<name lang="cs">Čítač impulzů 230V</name>
<name lang="nl">KWh meter 230V</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line y1="-30" x1="5" x2="5" y2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" length1="1.5" antialias="false" end2="none"/>
<line y1="-30" x1="-5" x2="-5" y2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" length1="1.5" antialias="false" end2="none"/>
<rect ry="0" y="-25" width="30" x="-15" style="line-style:normal;line-weight:normal;filling:white;color:black" rx="0" antialias="false" height="30"/>
<rect ry="0" y="5" width="20" x="-10" style="line-style:normal;line-weight:normal;filling:white;color:black" rx="0" antialias="false" height="9"/>
<dynamic_text text_width="-1" frame="false" y="-24.95" z="4" uuid="{bb119654-707c-4117-90a8-420a2da5f61f}" x="15" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" Valignment="AlignTop" Halignment="AlignLeft" keep_visual_rotation="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect ry="0" y="-20" width="20" x="-10" style="line-style:normal;line-weight:normal;filling:white;color:black" rx="0" antialias="false" height="8"/>
<terminal type="Generic" y="-30" uuid="{89c17813-d726-41f7-a381-249cfe904bad}" x="-5" name="L" orientation="n"/>
<terminal type="Generic" y="20" uuid="{59486310-f3ee-49df-a1d1-186ff3fbfb62}" x="-5" name="L.1" orientation="s"/>
<terminal type="Generic" y="-30" uuid="{37840fb4-3f7f-4496-bf30-40171aec3c18}" x="5" name="N" orientation="n"/>
<terminal type="Generic" y="20" uuid="{d58c02c1-eaa3-4bbd-a3a4-bc40f37ae193}" x="5" name="N.1" orientation="s"/>
</description>
</definition>

View File

@@ -1,31 +0,0 @@
<definition type="element" link_type="simple" version="0.90" hotspot_x="20" hotspot_y="24" height="50" width="40">
<uuid uuid="{2c68992c-3b84-4779-92fb-24fda069806a}"/>
<names>
<name lang="it">Misuratore di Kwh</name>
<name lang="en">Energy meter</name>
<name lang="pl">Licznik energii</name>
<name lang="de">Energiezähler</name>
<name lang="el">Μετρητής ενέργειας, Κιλοβατώρες (KWh)</name>
<name lang="ar">عدّاد طاقة</name>
<name lang="fr">Compteur dénergie</name>
<name lang="cs">Elektroměr</name>
<name lang="nl">Energiemeter</name>
</names>
<elementInformations/>
<informations></informations>
<description>
<line y2="20" x1="-10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="-10" end1="none" y1="-20" length2="1.5" antialias="false"/>
<line y2="20" x1="10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="10" end1="none" y1="-20" length2="1.5" antialias="false"/>
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" ry="0" height="30" x="-15" rx="0" width="30" y="-15" antialias="false"/>
<dynamic_text rotation="0" uuid="{c6273b25-dae0-4113-8bf7-29bb12749b73}" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" keep_visual_rotation="false" text_from="ElementInfo" Valignment="AlignTop" x="15" Halignment="AlignLeft" z="4" text_width="-1" y="-21.5">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text rotation="0" text="kWh" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-13" y="8.3333"/>
<line y2="-7" x1="-15" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="15" end1="none" y1="-7" length2="1.5" antialias="false"/>
<terminal uuid="{c5518603-6161-4a2b-be7d-9d45f8157319}" type="Generic" orientation="s" x="10" name="N.1" y="20"/>
<terminal uuid="{33064eff-e1af-48fe-887b-ab577ad81ca0}" type="Generic" orientation="n" x="10" name="N" y="-20"/>
<terminal uuid="{a5a22122-75a8-4814-b3d2-5d3247066c46}" type="Generic" orientation="n" x="-10" name="L1" y="-20"/>
<terminal uuid="{a1f83453-2a04-444f-a6f1-190c10eb5fec}" type="Generic" orientation="s" x="-10" name="L1.1" y="20"/>
</description>
</definition>

View File

@@ -1,37 +0,0 @@
<definition hotspot_x="20" type="element" hotspot_y="24" version="0.90" height="50" width="40" link_type="simple">
<uuid uuid="{2806b336-89a6-46ab-bcee-e9fc42c642f9}"/>
<names>
<name lang="en">Energy meter</name>
<name lang="cs">Elektroměr</name>
<name lang="pl">Licznik energii</name>
<name lang="ar">عدّاد طاقة</name>
<name lang="fr">Compteur dénergie</name>
<name lang="nl">Energiemeter</name>
<name lang="de">Energiezähler 3ph.</name>
<name lang="el">Μετρητής ενέργειας, Κιλοβατώρες (KWh)</name>
<name lang="it">Misuratore di Kwh</name>
</names>
<elementInformations/>
<informations></informations>
<description>
<line end2="none" x2="4" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length1="1.5" length2="1.5" x1="4" y1="-20" y2="20"/>
<line end2="none" x2="-10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length1="1.5" length2="1.5" x1="-10" y1="-20" y2="20"/>
<line end2="none" x2="-4" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length1="1.5" length2="1.5" x1="-4" y1="-20" y2="20"/>
<line end2="none" x2="10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length1="1.5" length2="1.5" x1="10" y1="-20" y2="20"/>
<rect y="-15" x="-15" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" height="30" ry="0" rx="0" width="30"/>
<dynamic_text rotation="0" y="-21.5" z="4" keep_visual_rotation="false" Valignment="AlignTop" Halignment="AlignLeft" x="15" frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" text_from="ElementInfo" uuid="{c6273b25-dae0-4113-8bf7-29bb12749b73}">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text rotation="0" y="8.3333" text="kWh" x="-13" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000"/>
<line end2="none" x2="15" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length1="1.5" length2="1.5" x1="-15" y1="-7" y2="-7"/>
<terminal y="-20" orientation="n" type="Generic" x="-4" name="L2" uuid="{33064eff-e1af-48fe-887b-ab577ad81ca0}"/>
<terminal y="20" orientation="s" type="Generic" x="-4" name="L2.1" uuid="{c5518603-6161-4a2b-be7d-9d45f8157319}"/>
<terminal y="-20" orientation="n" type="Generic" x="-10" name="L1" uuid="{a5a22122-75a8-4814-b3d2-5d3247066c46}"/>
<terminal y="20" orientation="s" type="Generic" x="-10" name="L1.1" uuid="{a1f83453-2a04-444f-a6f1-190c10eb5fec}"/>
<terminal y="20" orientation="s" type="Generic" x="4" name="L3.1" uuid="{43ba7e78-26a4-4cb8-9c95-7fd02fa9daa2}"/>
<terminal y="-20" orientation="n" type="Generic" x="4" name="L3" uuid="{afeb6676-ad4b-4f6a-936b-084dad546edd}"/>
<terminal y="-20" orientation="n" type="Generic" x="10" name="N" uuid="{6ce99a63-094a-4eed-a207-754ee9696a3f}"/>
<terminal y="20" orientation="s" type="Generic" x="10" name="N.1" uuid="{65e81e88-b24a-40b7-bd25-034b6e9a8232}"/>
</description>
</definition>

View File

@@ -1,29 +1,24 @@
<definition hotspot_x="20" height="50" hotspot_y="24" width="40" version="0.90" type="element" link_type="simple">
<uuid uuid="{174a23bf-a3d2-41dd-bcef-adc28b8cec6e}"/>
<definition hotspot_y="28" type="element" height="50" width="40" hotspot_x="20" link_type="simple" version="0.5">
<uuid uuid="{083c8381-29d4-418f-91b1-580b258e4a0f}"/>
<names>
<name lang="pl">Licznik godzin</name>
<name lang="de">Betriebsstundenzähler</name>
<name lang="fr">Compteur horaire</name>
<name lang="ar">عدّاد زمني</name>
<name lang="it">Conta tempo</name>
<name lang="en">Hour counter</name>
<name lang="cs">Počítadlo provozních hodin</name>
<name lang="el">Ωρόμετρο</name>
<name lang="nl">Bedrijfsurenteller</name>
<name lang="it">Conta tempo</name>
<name lang="de">Betriebsstundenzähler</name>
<name lang="el">Ωρόμετρο</name>
<name lang="en">Hour counter</name>
<name lang="fr">Compteur horaire</name>
<name lang="pl">Licznik godzin</name>
<name lang="ar">عدّاد زمني</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line x2="0" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" antialias="false" y2="20" length1="1.5" end1="none" x1="0" length2="1.5"/>
<rect rx="0" height="30" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-15" x="-15" width="30" antialias="false" ry="0"/>
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="7.3333" x="-4" text="h"/>
<dynamic_text rotation="0" uuid="{c6273b25-dae0-4113-8bf7-29bb12749b73}" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" keep_visual_rotation="false" y="-21.5" Valignment="AlignTop" Halignment="AlignLeft" x="15" text_from="ElementInfo" text_width="-1" z="4">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line x2="15" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-7" antialias="false" y2="-7" length1="1.5" end1="none" x1="-15" length2="1.5"/>
<terminal uuid="{a1f83453-2a04-444f-a6f1-190c10eb5fec}" y="20" name="A2" x="0" type="Generic" orientation="s"/>
<terminal uuid="{a5a22122-75a8-4814-b3d2-5d3247066c46}" y="-20" name="A1" x="0" type="Generic" orientation="n"/>
<input text="_" rotate="true" y="-6.5" size="9" x="16" tagg="label"/>
<text text="h" y="2.3333" size="9" x="-3"/>
<rect height="22" antialias="false" y="-11" width="30" x="-15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect height="8" antialias="false" y="-19" width="30" x="-15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="-23" orientation="n" x="0"/>
<terminal y="15" orientation="s" x="0"/>
</description>
</definition>

View File

@@ -1,30 +1,27 @@
<definition hotspot_y="15" hotspot_x="24" width="50" link_type="simple" height="30" type="element" version="0.90">
<uuid uuid="{bffedfa6-9ee5-456e-b2be-da488be13d56}"/>
<definition hotspot_y="16" type="element" height="30" width="60" hotspot_x="29" link_type="simple" version="0.5">
<uuid uuid="{8b9c0435-1430-4840-8353-bb80d85f285a}"/>
<names>
<name lang="cs">Kmitoměr vodorovný</name>
<name lang="ar">مقياس تردد أفقي</name>
<name lang="nl">Frequentiemeter</name>
<name lang="pl">Częstotliwościomierz (poziomo)</name>
<name lang="it">Frequenzimetro orizzontale</name>
<name lang="el">Συχνόμετρο οριζόντιο</name>
<name lang="es">Frecuencímetro horizontal</name>
<name lang="fr">Fréquencemètre horizontal</name>
<name lang="pt">Frequenciómetro horizontal</name>
<name lang="de">Frequenzmessgerät waagerecht</name>
<name lang="el">Συχνόμετρο οριζόντιο</name>
<name lang="en">Frequency meter h</name>
<name lang="fr">Fréquencemètre horizontal</name>
<name lang="es">Frecuencímetro horizontal</name>
<name lang="pl">Częstotliwościomierz (poziomo)</name>
<name lang="ar">مقياس تردد أفقي</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line y1="0" x2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" y2="0" end1="none" x1="-20" length1="1.5" antialias="false"/>
<circle y="-10" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="20" x="-10" antialias="true"/>
<dynamic_text Valignment="AlignTop" y="-24" Halignment="AlignLeft" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{19218c38-62ae-4b89-875e-82b6d38b8b4b}" z="3" frame="false" keep_visual_rotation="false" rotation="0" text_from="ElementInfo" x="9" text_width="-1">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text y="4" text="Hz" color="#000000" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" x="-8"/>
<terminal y="0" uuid="{ebcdd160-7d65-4378-8fc2-d8e95e6a51fc}" x="20" name="A2" type="Generic" orientation="e"/>
<terminal y="0" uuid="{d550f696-cf33-4673-bb70-25827bfd01cd}" x="-20" name="A1" type="Generic" orientation="w"/>
<input text="_" rotate="true" y="-13.5" size="9" x="7" tagg="label"/>
<text text="Hz" y="2.3333" size="9" x="-8"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="10" y2="0" end1="none" y1="0" x2="21" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="-21" y2="0" end1="none" y1="0" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="20" antialias="true" y="-10" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="0" orientation="w" x="-21"/>
<terminal y="0" orientation="e" x="21"/>
</description>
</definition>

View File

@@ -1,30 +1,27 @@
<definition type="element" version="0.90" hotspot_x="15" hotspot_y="24" link_type="simple" height="50" width="30">
<uuid uuid="{2225ee0b-4b7c-4de8-8053-3ca91db6102c}"/>
<definition hotspot_y="29" type="element" height="60" width="30" hotspot_x="15" link_type="simple" version="0.5">
<uuid uuid="{a1221111-5f95-4f4c-ba82-a2e482ce36b8}"/>
<names>
<name lang="cs">Kmitoměr svislý</name>
<name lang="fr">Fréquencemètre vertical</name>
<name lang="nl">Frequentiemeter</name>
<name lang="it">Frequenzimetro verticale</name>
<name lang="es">Frecuencímetro vertical</name>
<name lang="pt">Frequenciómetro vertical</name>
<name lang="en">Frequency meter v</name>
<name lang="de">Frequenzmessgerät senkrecht</name>
<name lang="el">Συχνόμετρο κατακόρυφο</name>
<name lang="en">Frequency meter v</name>
<name lang="fr">Fréquencemètre vertical</name>
<name lang="es">Frecuencímetro vertical</name>
<name lang="pl">Częstotliwościomierz (pionowo)</name>
<name lang="ar">مقياس تردد عمودي</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line y2="20" length2="1.5" y1="-20" end1="none" antialias="false" end2="none" x2="0" x1="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<dynamic_text Halignment="AlignLeft" x="8" text_from="ElementInfo" frame="false" keep_visual_rotation="false" rotation="0" z="2" text_width="-1" Valignment="AlignTop" uuid="{ab294d09-1d2d-4f7e-8ef5-ebf0b33ad106}" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-25.95">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<circle x="-10" antialias="true" diameter="20" y="-10" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<text x="-8" rotation="0" color="#000000" font="Sans Serif,10,-1,5,50,0,0,0,0,0" text="Hz" y="5"/>
<terminal x="0" name="" type="Generic" uuid="{ee5e578a-43cd-41cb-be2a-1f19c553d556}" orientation="s" y="20"/>
<terminal x="0" name="" type="Generic" uuid="{f73618cd-586c-45b7-8b88-3af7b5168596}" orientation="n" y="-20"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="0" y2="21" end1="none" y1="10" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input text="_" rotate="true" y="-14.5" size="9" x="9" tagg="label"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="0" y2="-10" end1="none" y1="-21" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="20" antialias="true" y="-10" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text text="Hz" y="2.8333" size="9" x="-8"/>
<terminal y="-21" orientation="n" x="0"/>
<terminal y="21" orientation="s" x="0"/>
</description>
</definition>

View File

@@ -1,36 +1,32 @@
<definition type="element" hotspot_y="15" width="50" hotspot_x="24" version="0.90" height="30" link_type="simple">
<uuid uuid="{0a4e99d8-8dad-4954-bdd7-c98fbf8bddcf}"/>
<definition hotspot_y="15" type="element" height="30" width="60" hotspot_x="29" link_type="simple" version="0.5">
<uuid uuid="{7e69af84-b00f-4ffa-8ef1-48d63f966eb4}"/>
<names>
<name lang="en">Horizontal ohmmeter</name>
<name lang="ar">أوميتر أفقي</name>
<name lang="de">Ohmmeter waagerecht</name>
<name lang="nl">Ohmmeter</name>
<name lang="pt">Ohmímetro horizontal</name>
<name lang="it">Ohmmetro orizzontale</name>
<name lang="pl">Omomierz (poziomo)</name>
<name lang="el">Ωμόμετρο οριζόντιο</name>
<name lang="cs">Ohmmetr, vodorovný</name>
<name lang="nl">Ohmmeter</name>
<name lang="it">Ohmmetro orizzontale</name>
<name lang="ru">Омметр (горизонтальный)</name>
<name lang="pt">Ohmímetro horizontal</name>
<name lang="de">Ohmmeter waagerecht</name>
<name lang="el">Ωμόμετρο οριζόντιο</name>
<name lang="en">Horizontal ohmmeter</name>
<name lang="fr">Ohmmètre horizontal</name>
<name lang="es">Óhmetro horizontal</name>
<name lang="ru">Омметр (горизонтальный)</name>
<name lang="pl">Omomierz (poziomo)</name>
<name lang="ar">أوميتر أفقي</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text frame="false" Valignment="AlignTop" x="8" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" text_from="ElementInfo" Halignment="AlignLeft" uuid="{81514b0c-ca91-4838-ae5b-0e63cb8bec51}" rotation="0" y="-25" z="1" keep_visual_rotation="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line y1="5" length1="1.5" x1="-5" end1="none" y2="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length2="1.5" x2="-3.25" end2="none"/>
<line y1="5" length1="1.5" x1="3.25" end1="none" y2="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length2="1.5" x2="5" end2="none"/>
<line y1="5" length1="1.5" x1="-3.25" end1="none" y2="3" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length2="1.5" x2="-3.25" end2="none"/>
<arc x="-5" angle="-270" start="225" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-6" antialias="true" width="10" height="10"/>
<line y1="3" length1="1.5" x1="3.25" end1="none" y2="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length2="1.5" x2="3.25" end2="none"/>
<line y1="0" length1="1.5" x1="10" end1="none" y2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length2="1.5" x2="20" end2="none"/>
<line y1="0" length1="1.5" x1="-20" end1="none" y2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length2="1.5" x2="-10" end2="none"/>
<circle x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10" antialias="true" diameter="20"/>
<terminal type="Generic" x="20" name="" orientation="e" uuid="{1b8488a9-50d9-4fee-8321-4d1753a484e2}" y="0"/>
<terminal type="Generic" x="-20" name="" orientation="w" uuid="{f08390b4-5b4b-4c12-9bf9-41036a86ed2a}" y="0"/>
<input text="_" rotate="true" y="-13.5" size="9" x="8" tagg="label"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="-5" y2="5" end1="none" y1="5" x2="-3.25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="3.25" y2="5" end1="none" y1="5" x2="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="-3.25" y2="3" end1="none" y1="5" x2="-3.25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<arc angle="-270" height="10" antialias="true" y="-6" width="10" start="225" x="-5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="3.25" y2="5" end1="none" y1="3" x2="3.25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="10" y2="0" end1="none" y1="0" x2="21" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="-21" y2="0" end1="none" y1="0" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="20" antialias="true" y="-10" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="0" orientation="w" x="-21"/>
<terminal y="0" orientation="e" x="21"/>
</description>
</definition>

View File

@@ -1,36 +1,32 @@
<definition height="50" version="0.90" width="30" hotspot_y="24" type="element" hotspot_x="15" link_type="simple">
<uuid uuid="{6c165097-cc36-4e81-8fce-ebf77cf9b1a5}"/>
<definition hotspot_y="29" type="element" height="60" width="30" hotspot_x="15" link_type="simple" version="0.5">
<uuid uuid="{8aa7d09a-e49e-43bd-84ac-3f9e891d6a0f}"/>
<names>
<name lang="de">Ohmmeter senkrecht</name>
<name lang="pl">Omomierz (pionowo)</name>
<name lang="cs">Ohmmetr, svislý</name>
<name lang="ar">أوميتر عمودي</name>
<name lang="el">Ωμόμετρο κατακόρυφο</name>
<name lang="it">Ohmmetro verticale</name>
<name lang="en">Vertical ohmmeter</name>
<name lang="nl">Ohmmeter</name>
<name lang="it">Ohmmetro verticale</name>
<name lang="ru">Омметр (вертикальный)</name>
<name lang="es">Óhmetro vertical</name>
<name lang="pt">Ohmímetro vertical</name>
<name lang="de">Ohmmeter senkrecht</name>
<name lang="el">Ωμόμετρο κατακόρυφο</name>
<name lang="en">Vertical ohmmeter</name>
<name lang="fr">Ohmmètre vertical</name>
<name lang="es">Óhmetro vertical</name>
<name lang="pl">Omomierz (pionowo)</name>
<name lang="ar">أوميتر عمودي</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text text_from="ElementInfo" Halignment="AlignLeft" y="-26" z="1" text_width="-1" x="6" keep_visual_rotation="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" rotation="0" uuid="{8672b9dd-dd49-456b-ba17-99580cd02a08}" Valignment="AlignTop">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line x2="-3.25" antialias="false" length1="1.5" y1="5" end2="none" x1="-5" end1="none" y2="5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x2="5" antialias="false" length1="1.5" y1="5" end2="none" x1="3.25" end1="none" y2="5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x2="-3.25" antialias="false" length1="1.5" y1="5" end2="none" x1="-3.25" end1="none" y2="3" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<arc height="10" y="-6" start="225" antialias="true" width="10" angle="-270" x="-5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x2="3.25" antialias="false" length1="1.5" y1="3" end2="none" x1="3.25" end1="none" y2="5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x2="0" antialias="false" length1="1.5" y1="10" end2="none" x1="0" end1="none" y2="20" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x2="0" antialias="false" length1="1.5" y1="-20" end2="none" x1="0" end1="none" y2="-10" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="20" y="-10" antialias="true" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="20" name="" type="Generic" x="0" orientation="s" uuid="{c6522603-f4cd-4fd5-8c02-f3eb64c74ca5}"/>
<terminal y="-20" name="" type="Generic" x="0" orientation="n" uuid="{57ec77dc-8eec-42e9-9beb-cefcf810d5d7}"/>
<input text="_" rotate="true" y="-14.5" size="9" x="6" tagg="label"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="-5" y2="5" end1="none" y1="5" x2="-3.25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="3.25" y2="5" end1="none" y1="5" x2="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="-3.25" y2="3" end1="none" y1="5" x2="-3.25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<arc angle="-270" height="10" antialias="true" y="-6" width="10" start="225" x="-5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="3.25" y2="5" end1="none" y1="3" x2="3.25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="0" y2="21" end1="none" y1="10" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="0" y2="-10" end1="none" y1="-21" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="20" antialias="true" y="-10" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="-21" orientation="n" x="0"/>
<terminal y="21" orientation="s" x="0"/>
</description>
</definition>

View File

@@ -1,32 +0,0 @@
<definition height="50" link_type="simple" hotspot_y="24" type="element" hotspot_x="20" version="0.90" width="40">
<uuid uuid="{c1ce42b8-d345-44c0-b3ac-83f70037f518}"/>
<names>
<name lang="pl">Licznik warogodzin</name>
<name lang="cs">Jalový elektroměr</name>
<name lang="fr">Varheuremètre</name>
<name lang="it">Misuratore di varh</name>
<name lang="en">Var hour meter</name>
<name lang="nl">VAr energie meter</name>
<name lang="de">Blindverbrauchszähler</name>
<name lang="ar">عدّد طاقة تفاعليّة - فارساعة متر-</name>
<name lang="el">Μετρητής, Βαρώρια</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line x1="-10" x2="-10" end1="none" length1="1.5" y1="-20" y2="20" antialias="false" end2="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x1="10" x2="10" end1="none" length1="1.5" y1="-20" y2="20" antialias="false" end2="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect height="30" ry="0" x="-15" y="-15" antialias="false" rx="0" style="line-style:normal;line-weight:normal;filling:white;color:black" width="30"/>
<dynamic_text Halignment="AlignLeft" text_from="ElementInfo" text_width="-1" x="15" y="-21.5" z="4" keep_visual_rotation="false" uuid="{c6273b25-dae0-4113-8bf7-29bb12749b73}" rotation="0" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text x="-13" y="7.3333" text="varh" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000"/>
<line x1="-15" x2="15" end1="none" length1="1.5" y1="-7" y2="-7" antialias="false" end2="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal x="10" y="-20" type="Generic" name="N" uuid="{33064eff-e1af-48fe-887b-ab577ad81ca0}" orientation="n"/>
<terminal x="10" y="20" type="Generic" name="N.1" uuid="{c5518603-6161-4a2b-be7d-9d45f8157319}" orientation="s"/>
<terminal x="-10" y="-20" type="Generic" name="L1" uuid="{a5a22122-75a8-4814-b3d2-5d3247066c46}" orientation="n"/>
<terminal x="-10" y="20" type="Generic" name="L1.1" uuid="{a1f83453-2a04-444f-a6f1-190c10eb5fec}" orientation="s"/>
</description>
</definition>

View File

@@ -1,31 +1,28 @@
<definition height="30" width="50" hotspot_y="14" version="0.90" link_type="simple" type="element" hotspot_x="24">
<uuid uuid="{0957ab35-4f6e-439b-94c3-c362e6780097}"/>
<definition hotspot_y="15" type="element" height="30" width="60" hotspot_x="29" link_type="simple" version="0.5">
<uuid uuid="{37112168-7375-4e19-b6af-fb5b00c41489}"/>
<names>
<name lang="el">Βολτόμετρο οριζόντιο</name>
<name lang="cs">Voltmetr, vodorovný</name>
<name lang="nl">Voltmeter</name>
<name lang="fr">Voltmètre horizontal</name>
<name lang="ar">فولتمتر أفقي</name>
<name lang="en">Horizontal voltmeter</name>
<name lang="pt">Voltímetro horizontal</name>
<name lang="it">Volmetro orizzontale</name>
<name lang="ru">Вольтметр (горизонтальный)</name>
<name lang="pt">Voltímetro horizontal</name>
<name lang="de">Voltmeter waagerecht</name>
<name lang="el">Βολτόμετρο οριζόντιο</name>
<name lang="en">Horizontal voltmeter</name>
<name lang="fr">Voltmètre horizontal</name>
<name lang="es">Voltímetro horizontal</name>
<name lang="pl">Woltomierz (poziomo)</name>
<name lang="it">Volmetro orizzontale</name>
<name lang="de">Voltmeter waagerecht</name>
<name lang="cs">Voltmetr, vodorovný</name>
<name lang="ar">فولتمتر أفقي</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line x2="20" y2="0" length2="1.5" x1="-20" length1="1.5" y1="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none"/>
<circle diameter="20" x="-10" antialias="true" y="-10" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<dynamic_text Valignment="AlignTop" keep_visual_rotation="false" rotation="0" frame="false" z="3" uuid="{19218c38-62ae-4b89-875e-82b6d38b8b4b}" x="9" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" y="-24" text_width="-1" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text rotation="0" x="-5" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="7" text="V"/>
<terminal uuid="{ebcdd160-7d65-4378-8fc2-d8e95e6a51fc}" x="20" y="0" name="A2" orientation="e" type="Generic"/>
<terminal uuid="{d550f696-cf33-4673-bb70-25827bfd01cd}" x="-20" y="0" name="A1" orientation="w" type="Generic"/>
<input text="_" rotate="true" y="-13.5" size="9" x="9" tagg="label"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="10" y2="0" end1="none" y1="0" x2="21" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="-21" y2="0" end1="none" y1="0" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x3="5" closed="false" y3="-6" antialias="true" x1="-5" y2="6" y1="-6" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="20" antialias="true" y="-10" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="0" orientation="w" x="-21"/>
<terminal y="0" orientation="e" x="21"/>
</description>
</definition>

View File

@@ -1,31 +1,28 @@
<definition hotspot_y="24" width="30" height="50" link_type="simple" version="0.90" type="element" hotspot_x="15">
<uuid uuid="{6ff819c7-767a-4d03-a0df-2570b06973bc}"/>
<definition hotspot_y="29" type="element" height="60" width="30" hotspot_x="15" link_type="simple" version="0.5">
<uuid uuid="{3f85e6af-e598-41b1-be6f-24a8a9ef0b6e}"/>
<names>
<name lang="it">Volmetro verticale</name>
<name lang="es">Voltímetro vertical</name>
<name lang="cs">Voltmetr, svislý</name>
<name lang="nl">Voltmeter</name>
<name lang="it">Volmetro verticale</name>
<name lang="ru">Вольтметр (вертикальный)</name>
<name lang="pt">Voltímetro vertical</name>
<name lang="de">Voltmeter senkrecht</name>
<name lang="nl">Voltmeter</name>
<name lang="fr">Voltmètre vertical</name>
<name lang="ar">فولتمتر عمودي</name>
<name lang="pl">Woltomierz (pionowo)</name>
<name lang="el">Βολτόμετρο κατακόρυφο</name>
<name lang="en">Vertical voltmeter</name>
<name lang="fr">Voltmètre vertical</name>
<name lang="es">Voltímetro vertical</name>
<name lang="pl">Woltomierz (pionowo)</name>
<name lang="ar">فولتمتر عمودي</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line end2="none" x1="0" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="20" antialias="false" x2="0" length2="1.5" end1="none"/>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="8" z="2" text_width="-1" Halignment="AlignLeft" y="-25.95" keep_visual_rotation="false" Valignment="AlignTop" text_from="ElementInfo" frame="false" uuid="{ab294d09-1d2d-4f7e-8ef5-ebf0b33ad106}">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-10" y="-10" antialias="true" diameter="20"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" text="V" x="-5" y="7" color="#000000"/>
<terminal name="" x="0" y="20" orientation="s" type="Generic" uuid="{ee5e578a-43cd-41cb-be2a-1f19c553d556}"/>
<terminal name="" x="0" y="-20" orientation="n" type="Generic" uuid="{f73618cd-586c-45b7-8b88-3af7b5168596}"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="0" y2="21" end1="none" y1="10" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input text="_" rotate="true" y="-10.5" size="9" x="8" tagg="label"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="0" y2="-10" end1="none" y1="-21" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x3="5" closed="false" y3="-6" antialias="true" x1="-5" y2="6" y1="-6" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="20" antialias="true" y="-10" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="-21" orientation="n" x="0"/>
<terminal y="21" orientation="s" x="0"/>
</description>
</definition>

View File

@@ -1,31 +0,0 @@
<definition width="40" type="element" height="50" hotspot_x="20" version="0.90" link_type="simple" hotspot_y="24">
<uuid uuid="{825ab432-7c51-4c55-8fe5-d8b61d557c9c}"/>
<names>
<name lang="cs">Činný elektroměr</name>
<name lang="it">Misuratore di Wh</name>
<name lang="de">Wattstundenzähler</name>
<name lang="en">Watt hour meter</name>
<name lang="fr">Compteur d'énergie active Wattheuremètre</name>
<name lang="ar">عدّاد طاقة فعّالة - وات ساعة متر -</name>
<name lang="el">Μετρητής βατ/ώρα</name>
<name lang="pl">Licznik watogodzin</name>
<name lang="nl">Watt uur meter</name>
</names>
<elementInformations/>
<informations></informations>
<description>
<line end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" y1="-20" x2="-10" length1="1.5" end2="none" x1="-10" antialias="false" y2="20"/>
<line end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" y1="-20" x2="10" length1="1.5" end2="none" x1="10" antialias="false" y2="20"/>
<rect width="30" rx="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="30" ry="0" y="-15" antialias="false" x="-15"/>
<dynamic_text Halignment="AlignLeft" z="4" Valignment="AlignTop" y="-21.5" uuid="{c6273b25-dae0-4113-8bf7-29bb12749b73}" frame="false" text_from="ElementInfo" text_width="-1" keep_visual_rotation="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="15">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text text="Wh" y="7.3333" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-10" color="#000000"/>
<line end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" y1="-7" x2="15" length1="1.5" end2="none" x1="-15" antialias="false" y2="-7"/>
<terminal type="Generic" y="-20" uuid="{33064eff-e1af-48fe-887b-ab577ad81ca0}" orientation="n" x="10" name="N"/>
<terminal type="Generic" y="20" uuid="{c5518603-6161-4a2b-be7d-9d45f8157319}" orientation="s" x="10" name="N.1"/>
<terminal type="Generic" y="-20" uuid="{a5a22122-75a8-4814-b3d2-5d3247066c46}" orientation="n" x="-10" name="L1"/>
<terminal type="Generic" y="20" uuid="{a1f83453-2a04-444f-a6f1-190c10eb5fec}" orientation="s" x="-10" name="L1.1"/>
</description>
</definition>

View File

@@ -1,36 +0,0 @@
<definition version="0.90" height="50" hotspot_y="24" link_type="simple" type="element" hotspot_x="20" width="40">
<uuid uuid="{40fda0d0-acb4-4744-8939-d42c17780ae5}"/>
<names>
<name lang="nl">Watt uur meter</name>
<name lang="el">Μετρητής βατ/ώρα</name>
<name lang="cs">Činný elektroměr</name>
<name lang="ar">عدّاد طاقة فعّالة - وات ساعة متر -</name>
<name lang="pl">Licznik watogodzin</name>
<name lang="fr">Compteur d'énergie active Wattheuremètre</name>
<name lang="en">Watt hour meter</name>
<name lang="it">Misuratore di Wh</name>
<name lang="de">Wattstundenzähler 3ph.</name>
</names>
<elementInformations/>
<description>
<line x1="4" end1="none" length1="1.5" length2="1.5" y2="20" x2="4" antialias="false" end2="none" y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x1="-10" end1="none" length1="1.5" length2="1.5" y2="20" x2="-10" antialias="false" end2="none" y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x1="-4" end1="none" length1="1.5" length2="1.5" y2="20" x2="-4" antialias="false" end2="none" y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line x1="10" end1="none" length1="1.5" length2="1.5" y2="20" x2="10" antialias="false" end2="none" y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<dynamic_text z="4" frame="false" y="-21.5" uuid="{c6273b25-dae0-4113-8bf7-29bb12749b73}" text_width="-1" Halignment="AlignLeft" rotation="0" text_from="ElementInfo" x="15" Valignment="AlignTop" keep_visual_rotation="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect ry="0" y="-15" height="30" rx="0" x="-15" antialias="false" width="30" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<text text="Wh" y="8.3333" rotation="0" x="-10" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<line x1="-15" end1="none" length1="1.5" length2="1.5" y2="-7" x2="15" antialias="false" end2="none" y1="-7" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="-20" uuid="{33064eff-e1af-48fe-887b-ab577ad81ca0}" x="-4" type="Generic" name="L2" orientation="n"/>
<terminal y="20" uuid="{c5518603-6161-4a2b-be7d-9d45f8157319}" x="-4" type="Generic" name="L2.1" orientation="s"/>
<terminal y="-20" uuid="{a5a22122-75a8-4814-b3d2-5d3247066c46}" x="-10" type="Generic" name="L1" orientation="n"/>
<terminal y="20" uuid="{a1f83453-2a04-444f-a6f1-190c10eb5fec}" x="-10" type="Generic" name="L1.1" orientation="s"/>
<terminal y="20" uuid="{43ba7e78-26a4-4cb8-9c95-7fd02fa9daa2}" x="4" type="Generic" name="L3.1" orientation="s"/>
<terminal y="-20" uuid="{afeb6676-ad4b-4f6a-936b-084dad546edd}" x="4" type="Generic" name="L3" orientation="n"/>
<terminal y="-20" uuid="{6ce99a63-094a-4eed-a207-754ee9696a3f}" x="10" type="Generic" name="N" orientation="n"/>
<terminal y="20" uuid="{65e81e88-b24a-40b7-bd25-034b6e9a8232}" x="10" type="Generic" name="N.1" orientation="s"/>
</description>
</definition>

View File

@@ -1,36 +1,32 @@
<definition hotspot_y="14" version="0.90" link_type="simple" type="element" width="50" hotspot_x="24" height="40">
<uuid uuid="{33a9cf1b-1a5e-4097-bae3-ab6ecea70398}"/>
<definition hotspot_y="14" type="element" height="40" width="60" hotspot_x="29" link_type="simple" version="0.5">
<uuid uuid="{e0881d80-0699-4eab-a837-bbd1c8a11558}"/>
<names>
<name lang="nl">Wattmeter</name>
<name lang="es">Vatímetro horizontal</name>
<name lang="pt">Wattímetro horizontal</name>
<name lang="pl">Watomierz (poziomo)</name>
<name lang="cs">Wattmetr, vodorovný</name>
<name lang="nl">Wattmeter</name>
<name lang="it">Wattmetro orizzontale</name>
<name lang="ru">Ватметр (горизонтальный)</name>
<name lang="pt">Wattímetro horizontal</name>
<name lang="de">Wattmeter waagerecht</name>
<name lang="el">Βατόμετρο οριζόντιο</name>
<name lang="it">Wattmetro orizzontale</name>
<name lang="ar">واتميتر أفقي</name>
<name lang="en">Horizontal wattmeter</name>
<name lang="fr">Wattmètre horizontal</name>
<name lang="es">Vatímetro horizontal</name>
<name lang="pl">Watomierz (poziomo)</name>
<name lang="ar">واتميتر أفقي</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon x1="7.5" y2="15" closed="false" x2="10" x3="10" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7.5" y3="20"/>
<dynamic_text text_width="-1" y="-25" x="7" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" rotation="0" text_from="ElementInfo" Valignment="AlignTop" z="2" Halignment="AlignLeft" uuid="{a677ee07-8959-4bbe-833d-bcc9d4aff584}" keep_visual_rotation="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon x1="-7.5" y2="15" closed="false" x2="-10" x3="-10" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7.5" y3="20"/>
<polygon x1="-5" y2="6" closed="false" y4="6" x2="-2.5" x5="5" x3="0" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-6" y3="0" x4="2.5" y5="-6"/>
<line x1="10" length1="1.5" y2="0" length2="1.5" x2="20" end2="none" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" end1="none"/>
<line x1="-20" length1="1.5" y2="0" length2="1.5" x2="-10" end2="none" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" end1="none"/>
<circle y="-10" x="-10" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20"/>
<terminal y="0" orientation="e" x="20" name="I_out" type="Generic" uuid="{b5b1c0b7-e9cd-4a03-a06f-005c736e568f}"/>
<terminal y="20" orientation="s" x="10" name="V2" type="Generic" uuid="{c9f7fedf-b4b5-4e48-8a6b-47df4890f92c}"/>
<terminal y="20" orientation="s" x="-10" name="V1" type="Generic" uuid="{cc430b12-83c8-44a3-8c71-8075dbcd1b1f}"/>
<terminal y="0" orientation="w" x="-20" name="I_in" type="Generic" uuid="{fad49f2a-ef89-4b4c-b586-911e057d2e28}"/>
<polygon x3="10" closed="false" y3="20" antialias="true" x1="7.5" y2="15" y1="7.5" x2="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<input text="_" rotate="true" y="-13.5" size="9" x="7" tagg="label"/>
<polygon x3="-10" closed="false" y3="20" antialias="true" x1="-7.5" y2="15" y1="7.5" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x3="0" x4="2.5" closed="false" y3="0" y5="-6" antialias="true" x1="-5" y2="6" y1="-6" x2="-2.5" x5="5" y4="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="10" y2="0" end1="none" y1="0" x2="21" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="-21" y2="0" end1="none" y1="0" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="20" antialias="true" y="-10" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="0" orientation="w" x="-21"/>
<terminal y="0" orientation="e" x="21"/>
<terminal y="20" orientation="s" x="-10"/>
<terminal y="20" orientation="s" x="10"/>
</description>
</definition>

View File

@@ -1,36 +1,32 @@
<definition link_type="simple" hotspot_y="24" type="element" height="50" width="40" hotspot_x="14" version="0.90">
<uuid uuid="{3b5f3bb2-fdb6-4056-b1ff-a3ea64363867}"/>
<definition hotspot_y="29" type="element" height="60" width="40" hotspot_x="14" link_type="simple" version="0.5">
<uuid uuid="{e23817d5-48e7-43da-be33-6b4907a9a9dd}"/>
<names>
<name lang="en">Vertical wattmeter</name>
<name lang="ar">واتميتر عمودي</name>
<name lang="fr">Wattmètre vertical</name>
<name lang="it">Wattmetro verticale</name>
<name lang="de">Wattmeter senkrecht</name>
<name lang="es">Vatímetro vertical</name>
<name lang="cs">Wattmetr, svislý</name>
<name lang="nl">Wattmeter</name>
<name lang="pl">Watomierz (pionowo)</name>
<name lang="it">Wattmetro verticale</name>
<name lang="ru">Ватметр (вертикальный)</name>
<name lang="pt">Wattímetro vertical</name>
<name lang="de">Wattmeter senkrecht</name>
<name lang="el">Βατόμετρο κατακόρυφο</name>
<name lang="en">Vertical wattmeter</name>
<name lang="fr">Wattmètre vertical</name>
<name lang="es">Vatímetro vertical</name>
<name lang="pl">Watomierz (pionowo)</name>
<name lang="ar">واتميتر عمودي</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<dynamic_text text_width="-1" rotation="0" frame="false" z="1" keep_visual_rotation="false" x="2" y="-33" Halignment="AlignLeft" uuid="{c0674afe-c8af-492b-aa11-3c97dace2994}" Valignment="AlignTop" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon x3="20" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" y3="10" y2="10" x2="15" y1="7.5" x1="7.5"/>
<polygon x3="20" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" y3="-10" y2="-10" x2="15" y1="-7.5" x1="7.5"/>
<polygon x3="0" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" y3="0" y2="6" x2="-2.5" x4="2.5" y1="-6" x5="5" x1="-5" y5="-6" y4="6"/>
<line style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length1="1.5" y2="20" x2="0" end1="none" end2="none" y1="10" x1="0" length2="1.5"/>
<line style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length1="1.5" y2="-10" x2="0" end1="none" end2="none" y1="-20" x1="0" length2="1.5"/>
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" x="-10" y="-10" diameter="20"/>
<terminal x="20" y="10" uuid="{10383c98-9b7b-4bdb-8ea4-c62b7b4949ba}" type="Generic" orientation="e" name="V2"/>
<terminal x="0" y="20" uuid="{c194a0ee-7153-4e3f-a4c6-10de4c039537}" type="Generic" orientation="s" name="I_out"/>
<terminal x="20" y="-10" uuid="{39b7d702-0fae-48dd-9d7e-d243c28dce20}" type="Generic" orientation="e" name="V1"/>
<terminal x="0" y="-20" uuid="{f90a45af-eb28-4185-baa9-f1fde1507a2e}" type="Generic" orientation="n" name="I_in"/>
<input text="_" rotate="true" y="-21.5" size="9" x="2" tagg="label"/>
<polygon x3="20" closed="false" y3="10" antialias="true" x1="7.5" y2="10" y1="7.5" x2="15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x3="20" closed="false" y3="-10" antialias="true" x1="7.5" y2="-10" y1="-7.5" x2="15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon x3="0" x4="2.5" closed="false" y3="0" y5="-6" antialias="true" x1="-5" y2="6" y1="-6" x2="-2.5" x5="5" y4="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="0" y2="21" end1="none" y1="10" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end2="none" length2="1.5" length1="1.5" antialias="false" x1="0" y2="-10" end1="none" y1="-21" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="20" antialias="true" y="-10" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="21" orientation="s" x="0"/>
<terminal y="-10" orientation="e" x="20"/>
<terminal y="10" orientation="e" x="20"/>
<terminal y="-21" orientation="n" x="0"/>
</description>
</definition>

View File

@@ -1,32 +1,28 @@
<definition width="40" type="element" hotspot_y="28" version="0.90" hotspot_x="20" link_type="simple" height="60">
<uuid uuid="{6a507b8b-b995-48a3-8844-e9be6d7981d7}"/>
<definition type="element" hotspot_x="14" version="0.5" hotspot_y="28" link_type="simple" width="40" height="60">
<uuid uuid="{701e7c7a-c280-4313-9273-61a12213def9}"/>
<names>
<name lang="it">Motore monofase</name>
<name lang="es">Motor monofásico</name>
<name lang="cs">Jednofázový motor</name>
<name lang="ar">محرّك أحادي الوجه</name>
<name lang="ru">Однофазный эл. мотор</name>
<name lang="fr">Moteur monophasé</name>
<name lang="de">Wechselstrom Motor</name>
<name lang="el">Μονοφασικό μοτέρ</name>
<name lang="fr">Moteur monophasé</name>
<name lang="cs">Jednofázový motor</name>
<name lang="ru">Однофазный эл. мотор</name>
<name lang="es">Motor monofásico</name>
<name lang="ar">محرّك أحادي الوجه</name>
<name lang="it">Motore monofase</name>
<name lang="pl">Silnik jednofazowy</name>
<name lang="en">One-phase engine</name>
<name lang="pt">Motor monofásico</name>
<name lang="nl">Motor 1AC</name>
<name lang="de">Wechselstrom Motor</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text text="M" color="#000000" y="19" x="-10" font="Sans Serif,18,-1,5,50,0,0,0,0,0" rotation="0"/>
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" y="-5" x="-15" antialias="true" diameter="30"/>
<dynamic_text z="3" frame="false" text_from="ElementInfo" text_width="-1" Valignment="AlignTop" y="3.5" x="18" uuid="{03cb7e78-7712-4ffc-8ea7-f803463ec74e}" keep_visual_rotation="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line length1="1.5" y2="-5" x2="5" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="5" y1="-19" length2="1.5" antialias="false"/>
<line length1="1.5" y2="-5" x2="-4.75" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-4.75" y1="-19" length2="1.5" antialias="false"/>
<terminal type="Generic" y="-20" x="5" uuid="{ae33cdf2-f694-421c-a3ac-dfe14ea264da}" name="" orientation="n"/>
<terminal type="Generic" y="-20" x="-4.75" uuid="{08628e91-f2be-43c9-9dd7-eb470478a926}" name="" orientation="n"/>
<text text="M" x="-5" y="19" size="18"/>
<circle diameter="30" x="-9.25" y="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<input text="M_" x="24" y="15" tagg="label" size="9"/>
<line x1="10" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-16" y2="-4.25" length1="1.5" antialias="false" end1="none" x2="10"/>
<line x1="0.25" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-18" y2="-4" length1="1.5" antialias="false" end1="none" x2="0.25"/>
<terminal x="0.25" y="-21" orientation="n"/>
<terminal x="10" y="-21" orientation="n"/>
</description>
</definition>

View File

@@ -1,45 +1,45 @@
<definition type="element" hotspot_y="37" link_type="simple" height="60" hotspot_x="25" width="60" version="0.90">
<uuid uuid="{2e2018e4-f4c7-4116-80ba-7c1b6012a539}"/>
<definition version="0.80" width="60" height="60" hotspot_y="37" type="element" hotspot_x="26" link_type="simple">
<uuid uuid="{c7ea8bc8-4b15-4956-8680-e289d805ba44}"/>
<names>
<name lang="pt">Motor trifásico</name>
<name lang="pl">Silnik trójfazowy</name>
<name lang="en">Three-phase engine</name>
<name lang="fr">Moteur triphasé</name>
<name lang="cs">Trojfázový motor</name>
<name lang="ru">Трёхфазный эл. мотор</name>
<name lang="de">Drehstrom Motor</name>
<name lang="nl">Draaistroommotor</name>
<name lang="it">Motore trifase</name>
<name lang="ar">محرّك ثلاثي الأوجه</name>
<name lang="es">Motor trifásico</name>
<name lang="it">Motore trifase</name>
<name lang="pl">Silnik trójfazowy</name>
<name lang="cs">Trojfázový motor</name>
<name lang="pt">Motor trifásico</name>
<name lang="en">Three-phase engine</name>
<name lang="de">Drehstrom Motor</name>
<name lang="nl">Draaistroommotor</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-15" y="-15" diameter="30"/>
<arc antialias="true" angle="-80" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-14.5" y="-15.5" height="32" start="20" width="32"/>
<text color="#000000" x="21" y="-24" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="W1"/>
<text color="#000000" x="2" y="-24" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="V1"/>
<text color="#000000" x="-6" y="0" font="Sans Serif,11,-1,5,50,0,0,0,0,0" rotation="0" text="M"/>
<dynamic_text keep_visual_rotation="true" uuid="{1df13766-b38e-4417-9aac-1b5844595696}" text_width="-1" x="21" y="-12" frame="false" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" z="6" Halignment="AlignLeft" text_from="ElementInfo">
<circle antialias="true" x="-15" diameter="30" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15"/>
<arc width="32" antialias="true" x="-14.5" height="32" angle="-80" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15.5" start="20"/>
<text x="21" y="-24" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="W1" rotation="0" color="#000000"/>
<text x="2" y="-24" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="V1" rotation="0" color="#000000"/>
<text x="-6" y="0" font="Sans Serif,11,-1,5,50,0,0,0,0,0" text="M" rotation="0" color="#000000"/>
<dynamic_text Halignment="AlignLeft" x="21" text_from="ElementInfo" frame="false" z="6" uuid="{1df13766-b38e-4417-9aac-1b5844595696}" y="-12" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" text_width="-1">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x1="0" length1="1.5" y1="-30" y2="-15" end1="none" end2="none" x2="0"/>
<polygon x3="-11" antialias="false" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" y1="-30" y2="-20" x2="-20" y3="-11"/>
<polygon x3="11" antialias="false" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" y1="-30" y2="-20" x2="20" y3="-11"/>
<text color="#000000" x="-19" y="-24" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="U1"/>
<line antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x1="17" length1="1.5" y1="13" y2="13" end1="none" end2="none" x2="25"/>
<line antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x1="18" length1="1.5" y1="15" y2="15" end1="none" end2="none" x2="24"/>
<line antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x1="19.6115" length1="1.5" y1="17" y2="17" end1="none" end2="none" x2="22.4209"/>
<polygon x3="21" antialias="false" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="18" y1="4" y2="6" x2="21" y3="13"/>
<text color="#000000" x="-8" y="10" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="3"/>
<arc antialias="true" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" x="4" y="4" height="4" start="0" width="4"/>
<arc antialias="true" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" x="0" y="4" height="4" start="-180" width="4"/>
<terminal type="Generic" uuid="{1f50d3c6-4d98-41f8-b0d7-f30322bc7d01}" orientation="n" x="20" y="-30" name="W1"/>
<terminal type="Generic" uuid="{fa49658e-170d-415d-8556-43ee3ef5a156}" orientation="n" x="-20" y="-30" name="U1"/>
<terminal type="Generic" uuid="{14bcbcca-193a-4564-a5b2-07b4fda7e862}" orientation="n" x="21" y="6" name="PE"/>
<terminal type="Generic" uuid="{25b65584-e2f6-4c45-9a60-8b5287289312}" orientation="n" x="0" y="-30" name="V1"/>
<line end1="none" y2="-15" antialias="false" x1="0" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-30" end2="none" length2="1.5" length1="1.5"/>
<polygon y2="-20" antialias="false" y3="-11" x1="-20" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-30" closed="false" x3="-11"/>
<polygon y2="-20" antialias="false" y3="-11" x1="20" x2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-30" closed="false" x3="11"/>
<text x="-19" y="-24" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="U1" rotation="0" color="#000000"/>
<line end1="none" y2="13" antialias="false" x1="17" x2="25" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="13" end2="none" length2="1.5" length1="1.5"/>
<line end1="none" y2="15" antialias="false" x1="18" x2="24" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="15" end2="none" length2="1.5" length1="1.5"/>
<line end1="none" y2="17" antialias="false" x1="19.6115" x2="22.4209" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="17" end2="none" length2="1.5" length1="1.5"/>
<polygon y2="6" antialias="false" y3="13" x1="18" x2="21" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" closed="false" x3="21"/>
<text x="-8" y="10" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="3" rotation="0" color="#000000"/>
<arc width="4" antialias="true" x="0" height="5" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="3.5" start="0"/>
<arc width="4" antialias="true" x="4" height="5" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="3.5" start="-180"/>
<terminal name="" x="20" uuid="{1f50d3c6-4d98-41f8-b0d7-f30322bc7d01}" orientation="n" y="-30"/>
<terminal name="" x="-20" uuid="{fa49658e-170d-415d-8556-43ee3ef5a156}" orientation="n" y="-30"/>
<terminal name="" x="21" uuid="{14bcbcca-193a-4564-a5b2-07b4fda7e862}" orientation="n" y="7"/>
<terminal name="" x="0" uuid="{25b65584-e2f6-4c45-9a60-8b5287289312}" orientation="n" y="-30"/>
</description>
</definition>

Some files were not shown because too many files have changed in this diff Show More