I do not understand your question because it is not in English and secondly, from where do you want to download it?
Download QET, install it and all the elements available from this manufacturer are in the QET Collection.
If you want to participate and create elements, we will be happy to include them in the QET collection.
Just create them in the element editor, or use the DXF to QET converter beforehand.
576 2022-11-07 22:49:21
Re: Biblioteca WEG (13 replies, posted in Elements)
577 2022-11-07 22:42:04
Re: user collection (13 replies, posted in EN : Help, suggestions, discussions, ...)
no, I did the installation from the ''.exe'' file
It does not matter, how you installed QET. The question was how you start QET to use it.
Do you double-click on the executable file or do you start QET from the batch-file "Lancer QET.bat"?
When starting from the batch-file it reads some environmental settings and then it will start QET with the appropriate settings for language, etc.
578 2022-11-06 20:06:18
Re: user collection (13 replies, posted in EN : Help, suggestions, discussions, ...)
Just tried on a fresh installed win10 and "ReadyToUse - QET":
Created Sub-Directories under "c:\tools\qet\conf\elements\"
placed some elmt-files in the sub-sub-directory and created a file "qet_directory" for each sub-dir.
Here it works as expected. See screenshot.
Maybe the language is not set correctly on your system?
Did you start QET from the batch-file "Lancer QET.bat"?
579 2022-11-06 09:12:57
Re: user collection (13 replies, posted in EN : Help, suggestions, discussions, ...)
The folder-names are the loclised texts taken from the file "qet..." lying in that directory and not from the file-directory-name itself.
Please compare with the other directories in the QET-collection.
580 2022-10-19 20:37:33
Re: RCBO Symbol (2 replies, posted in EN : Help, suggestions, discussions, ...)
Just created a pull-request with your Symbol, Vbxler, and a RCBO from manufacturer "Hager".
581 2022-10-16 15:38:45
Re: Explication /tuto (2 replies, posted in FR : Aide, suggestions, discussions, ...)
When I understand it correctly ...
Have you tried double-click and then "right-click -> connect" ?
582 2022-10-12 20:19:31
Re: Mirror or Flip (26 replies, posted in Elements)
Good, then my world view is correct again!
583 2022-10-12 20:09:00
Re: Mirror or Flip (26 replies, posted in Elements)
OK, will use a filename without points next time!
Edit: When compiling something the result is automatically set to be executable.
But do I have any control over the file permissions when I upload something to github? Or is it the user who sets the permissions him/herself after downloading the binary? As far as I know it's the second, isn't it?
584 2022-10-12 19:43:48
Re: Mirror or Flip (26 replies, posted in Elements)
Thank you for trying, Laurent!
I didn't think of comparing "my" file with the one you uploaded here on Sunday and have done so now. You can see the compare-result from DoubleCommander in the attached screenshot: Our binaries are amazingly identical! Amazing, because we definitely compiled on different machines and at different times. Compared a second time with "cmp" on my Debian-Box and it also says that the files are identical.
The message in your case I could imagine that the file looks like it has a file extension because of the added part after the underscore and therefore mac doesn't recognize it as an executable file? Maybe the file will be recognized when you rename it?
Does mac have an "executable-bit" for files? (chmod 744 ....)?
585 2022-10-10 19:21:35
Re: Mirror or Flip (26 replies, posted in Elements)
Just uploaded new binaries for Linux, ReactOS (win32) and macOS to github-repository:
https://github.com/plc-user/QET_Element … g/0.4beta2
maybe someone with a mac can test the new binary for mac and tell me, if it works?
as said before: I don't have any access to mac's ...
Thanks in advance!
586 2022-10-09 15:56:58
Re: Mirror or Flip (26 replies, posted in Elements)
Compile work on mac's, but mirror flip on this element isn't perfect yet.
The lines and polygons are flipped one-by-one!
That's why I say
useful during creation of elements
in the help of QET_ElementScaler and the README on github.
If we can limit ourselves (at least for now) to applying flipping and mirroring to individual polygons, I can definitely imagine this variant in QET as well!
In the context menu (right-click) there is also the possibility to add or remove points only for polygons.
Maybe this is a way to quickly integrate "flipping"? It seems to be needed every now and then, otherwise this thread would not exist...
587 2022-10-09 13:49:40
Re: Mirror or Flip (26 replies, posted in Elements)
just uploaded new source-code:
- positions for terminals are always rounded without decimals
- when removing all terminals, the "link_type" is set to "thumbnail"
sorry, I don't have any access to mac's ...
upload of new binaries for Linux and ReactOS will follow soon.
588 2022-10-09 13:34:50
Re: Mirror or Flip (26 replies, posted in Elements)
the "-" at the "std=c++17" - option was missing...
just fixed!
589 2022-10-09 12:57:56
Re: Mirror or Flip (26 replies, posted in Elements)
the sub-directories need to exist before compiling...
will add creation of sub-dirs in the shell-scripts later!
EDIT: DONE!
590 2022-10-09 12:04:01
Re: Mirror or Flip (26 replies, posted in Elements)
In my opinion it wasn't very hard to implement a mirror- or flip-function for QET_ElementScaler!
You need a loop to walk through the x- and y-values of a polygon to get the min- and max-values.
In a second step you loop through the x-and y-values again and calculate the new x- and y-values.
These vertical and horizontal flip-functions are implemented in the new version of QET_ElementScaler!
I do not know the internals of how polygons are saved in QET internally, but I guess it should be possible to implement this with manageable effort for someone who knows the internals...
In QET_ElementScaler it is implemented this way:
double dMin = 9.99e99;
double dMax = -9.99e99;
// first FOR-Loop for x-values:
for (loop through x-values) {
dMin = min(actValue, dMin);
dMax = max(actValue, dMax);
}
// second FOR-Loop for x-values:
for (loop through x-values) {
newValue = (dMin + dMax) - actValue)
}
It may not be the most elegant way to flip or mirror elements but it works.
I have tried this flipping / mirroring on several elements and could not find any malfunctions!
But you may try for yourself!
Create a "scaled" QET-Element and copy-paste the flipped polygon to your Element.
you may call it like this:
QET_ElementScaler --FlipPolyHorizontal -f YourElementFile.elmt
or
QET_ElementScaler --FlipPolyVertical -f YourElementFile.elmt
This results in a new element-file where ALL lines and polygons are flipped.
See post here: https://qelectrotech.org/forum/viewtopi … 808#p16808
591 2022-10-03 13:09:40
Re: freepascal-code to take a QET- Element and scale the content by a fact (38 replies, posted in Scripts)
Today I uploaded a new version of "QET_ElementScaler" to github: https://github.com/plc-user/QET_ElementScaler
This version is completely rewritten in C++, where I (like QET) use pugixml for handling the contents of the element files.
I made a few additions/changes that makes working with the software easier: The XML description line no longer needs to be removed afterwards!
As before, x and y scaling factors can be specified, input is via STDIN (-i) or a file (-f FILEINAME) and output is, as before, to a new file or to STDOUT (-o).
In addition, I have added the possibility to remove "terminals" from the element. This can be useful when terminals can be omitted from overloaded front views.
Furthermore, there is now the possibility to flip polygons and lines horizontally and/or vertically. This can be useful during the development of complex front views, as long as these functions are not yet available in the QET element editor.
Special care should be taken with the option "--OverwriteOriginal", because here the original file will be overwritten WITHOUT further request!
The scaled values of the new element are written into the new file with a maximum of 2 decimal places. In my view, this is completely sufficient for the display of schematic symbols and front views (thumbnails). In some elements present in the QET collection I have seen values with up to six decimal places, which in my opinion is excessive.
To "fix" such elements, QET_ElementScaler can of course be used! With the call:
QET_ElementScaler -f FILENAME
the values are rounded to max. 2 decimal places and any font sizes with decimal places are rounded to whole numbers.
I wish all users of the software a lot of fun and success with it and would like to see bugs reported (e.g. here or at github). Of course, I also have an "open ear" for suggestions for improvement!
Best regards
plc-user
592 2022-09-30 12:46:18
Re: 4 fach Klemme und Klemmenplan (5 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Hallo Thomas,
ich kann Dir leider nicht helfen, sondern möchte Deine Anforderung noch erweitern:
Es gibt auch viele Reihenklemmen mit drei Anschlußmöglichkeiten am Markt, die im Klemmenplan abgebildet werden wollen!
Gruß
plc-user
593 2022-09-29 19:53:26
Re: Symbole pour schéma hydraulique (chauffage/plomberie) (8 replies, posted in FR : Aide, suggestions, discussions, ...)
Stimmt, den Teil hatte ich vergessen, zu erwähnen: Kauf-Software und die mitgelieferten Dateien unterliegen meistens irgendwelchen unfreien Lizenzen!
via online-translator:
C'est vrai, j'avais oublié de mentionner cette partie : Les logiciels achetés et les fichiers qui les accompagnent sont généralement soumis à des licences non libres !
594 2022-09-29 19:48:04
Re: Reproducible Crash of QET (11 replies, posted in EN : Help, suggestions, discussions, ...)
Hello Joshua,
that looks good: No more crash! Thank you!
cela a l'air bien : Plus de crash ! Merci !
595 2022-09-29 19:45:49
Re: Logos électricité domestiique belgique (3 replies, posted in FR : Aide, suggestions, discussions, ...)
Hallo Ke Chouffe,
Vielleicht ist einfach ein "Problem" mit der eingestellten Sprache, dass die Such-Funktion das passende Element nicht findet?
Versuche doch mal, die QET-Sprache auf "französisch" einzustellen:
Menu -> Einstellungen -> Sprache
(anschließend QET neu starten)
via Online-translator:
Peut-être est-ce simplement un "problème" avec la langue choisie qui fait que la fonction de recherche ne trouve pas l'élément correspondant ?
Essaie donc de régler la langue QET sur "français" :
Menu -> Paramètres -> Langue
(puis redémarrer QET)
596 2022-09-28 19:18:55
Re: Symbole pour schéma hydraulique (chauffage/plomberie) (8 replies, posted in FR : Aide, suggestions, discussions, ...)
Hallo nicolas.lotito,
".xsy" bezeichnet nur die File-extension. Interessant wäre, wie die Grafik innerhalb der Datei gespeichert ist. Ist das Dateiformat irgendwo ausgiebig beschrieben? Wahrscheinlich nicht, wenn es sich um eine Bezahl-Software handelt...
Eine Benutzersammlung ist im Prinzip schon vorhanden: Sie wird aber wahrscheinlich noch leer sein (vgl. Bildschirmfoto).
Du kannst aus der QET-Sammlung Elemente einfach in die Benutzersammlung ziehen, dort per Rechts-Klick Ordner erstellen, etc.
Anschließend kannst Du die Elemente in der Benutzersammlung per Doppelklick editieren.
via online-translator:
Le fichier ".xsy" désigne uniquement l'extension de fichier. Il serait intéressant de savoir comment le graphique est enregistré à l'intérieur du fichier. Le format de fichier est-il décrit en détail quelque part ? Probablement pas s'il s'agit d'un logiciel payant...
Une collection d'utilisateurs est en principe déjà disponible : Mais elle est probablement encore vide (voir la capture d'écran).
Tu peux simplement faire glisser des éléments de la collection QET vers la collection utilisateur, y créer des dossiers par un clic droit, etc.
Ensuite, tu peux éditer les éléments dans la collection d'utilisateurs en double-cliquant dessus.
597 2022-09-28 00:20:24
Re: Reproducible Crash of QET (11 replies, posted in EN : Help, suggestions, discussions, ...)
... hmmm ... how do I tell ???
sorry: same behavior as before: crash with the hint to line 74 of "texteditor.cpp" where an assertion isn't fulfilled.
Info: "QElectroTech V 0.90-DEV+ffc2a7a7db0a58100c957a06d79751d3"
Info: "Compilation: GCC 12.2.0"
Info: "Built with Qt 5.15.4 - x86_64 - Date : Sep 27 2022 : 19:56:13"
Info: "Run with Qt 5.15.4 using 8 thread(s)"
Info: "CPU : model name\t: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\n"
Info: "RAM Total : 31 GB"
Info: "RAM Available : 29 GB"
Info: "GPU : Intel Corporation TigerLake-LP GT2 [Iris Xe Graphics] (rev 01)\n"
Info: "GPU RAM : "
Info: "OS : linux - x86_64 - Version : Debian GNU/Linux bookworm/sid - Kernel : 5.19.0-2-amd64"
and later:
qelectrotech: sources/editor/ui/texteditor.cpp:74: void TextEditor::setUpChangeConnection(QPointer<PartText>): Zusicherung »m_change_connection.isEmpty()« nicht erfüllt.
598 2022-09-27 20:11:41
Re: Reproducible Crash of QET (11 replies, posted in EN : Help, suggestions, discussions, ...)
I'll be patient!
599 2022-09-27 20:09:17
Re: Symbole pour schéma hydraulique (chauffage/plomberie) (8 replies, posted in FR : Aide, suggestions, discussions, ...)
Hallo nicolas.lotito
Du kannst eine eigene Benutzersammlung füllen bzw. erstellen, in die Du die Elemente, die Du am häufigsten brauchst, nach eigenen Wünschen ablegen und auch bearbeiten kannst.
Wenn Du Deine Sammlung komplettiert hast, würden wir uns freuen, wenn Du Deine Elemente mit uns teilen würdest!
Ich kenne "Xrelais" oder "Winrelais" und deren Dateiformat nicht. Im Moment sind die Import-Funktionen von QET noch nicht sehr umfangreich. scorpio hat aber schon den Hinweis auf den DXF-zu-elmt-Converter gegeben. Manchmal ist es aber auch sinnvoller, Elemente von Anfang an selbst in QET zu erstellen, oder bestehende Elemente umzuarbeiten, um daraus neue zu erstellen...
via online-translator:
Tu peux remplir ou créer ta propre collection d'utilisateurs, dans laquelle tu peux déposer les éléments dont tu as le plus souvent besoin, mais aussi les modifier selon tes propres besoins.
Lorsque tu auras complété ta collection, nous serions heureux que tu partages tes éléments avec nous !
Je ne connais pas "Xrelais" ou "Winrelais" et leur format de fichier. Pour l'instant, les fonctions d'importation de QET ne sont pas encore très étendues. scorpio a cependant déjà donné l'indication du convertisseur DXF en elmt. Mais il est parfois plus judicieux de créer soi-même des éléments dans QET dès le début, ou de retravailler des éléments existants pour en créer de nouveaux...