Macro FCInfo

From FreeCAD Documentation
Revision as of 10:58, 18 December 2018 by Mario52 (talk | contribs) (Created page with "'''Sector 9: Inertia''' * Trägheitsmoment und diese Koordinaten Länge und Gewicht * Die Schaltfläche Erstellen auf Punkt, Achse, Ebene, Vektorachse erstellen '''FreeCAD.Vec...")

Macro FCInfo

Beschreibung
Gibt eine Reihe von Informationen zum Formular aus.

Versionsmakro : 01.20
Datum der letzten Änderung : 2018-01-29
Autor: Mario52
Autor
Mario52
Herunterladen
None
Links
Macro-Version
01.20
Datum der letzten Änderung
2018-01-29
FreeCAD-Version(s)
None
Standardverknüpfung
None
Siehe auch
None

Beschreibung

Gibt eine Reihe von Informationen über die ausgewählte Form und kann eine Umwandlung von Länge, Neigung (Grad, Bogenmaß, Neigung, Fließvermögen), Form, Oberfläche, Volumen und Gewicht der Form in der ausgewählten Dichte in verschiedenen Mengeneinheiten international und englisch anzeigen-Saxon.

Temporary code for external macro link. Do not use this code. This code is used exclusively by Addon Manager. Link for optional manual installation: Macro


# This code is copied instead of the original macro code
# to guide the user to the online download page.
# Use it if the code of the macro is larger than 64 KB and cannot be included in the wiki
# or if the RAW code URL is somewhere else in the wiki.

from PySide import QtGui, QtCore

diag = QtGui.QMessageBox(QtGui.QMessageBox.Information,
    "Information",
    "This macro must be downloaded from this link\n"
    "\n"
    "https://gist.githubusercontent.com/mario52a/8d40ab6c018c2bde678f/raw/e16ad9ea7b38c0c47e42aa3019be01dd1267a620/FCInfo_en_Ver_1-20_Docked.FCMacro" + "\n"
    "\n"
    "Quit this window to access the download page")

diag.setWindowFlags(QtCore.Qt.WindowStaysOnTopHint)
diag.setWindowModality(QtCore.Qt.ApplicationModal)
diag.exec_()

import webbrowser 
webbrowser.open("https://gist.githubusercontent.com/mario52a/8d40ab6c018c2bde678f/raw/e16ad9ea7b38c0c47e42aa3019be01dd1267a620/FCInfo_en_Ver_1-20_Docked.FCMacro")


FCInfo

Nutzung

Wählen Sie ein Objekt aus oder starten Sie die Anwendung und wählen Sie ein Objekt aus. Eine Reihe von Informationen wird angezeigt. Seine Berechnungen basieren auf der Einheit "FreeCAD", also "mm" für jede neue Auswahl. Die Längeneinheit wird immer auf "mm" und der Winkel auf Dezimalgrad zurückgesetzt.

upper window
upper window

lower window

Sector 1: Document

  • Dokumentname
  • Beschriftung des Objekts
  • Interner Name des Objekts
  • Unterelementname des Objekts
  • Typ des Objekts

Sector 2: Coordinates click mouse

  • Koordinaten X, Y und Z klicken Sie mit der Maus
  • Die Schaltfläche Erstellen auf Punkt, Achse, Ebene, Vektorachse erstellen 'FreeCAD.Vector (-24.0, 240.0, 7.0)'

Sector 3: Value

  • Länge des Objekts, wenn das Objekt ein Gesichtsumfang ist, Einheitsgröße kann ausgewählt werden:
    km, hm, dam, m, dm, cm, 'mm' , µm, nm, pm, fm, zoll, link, fuß, hof, barsch, kette, furlong, meile, liga, nautique. Wenn das Objekt ein Kreis ist, ist eine Sekunde lineEdit offen und zeigt den Radius des Kreises an.
  • Umfang der Form

Sector 4: Vertexes and details

  • CheckBox für die Suche oder nicht alle Details des Objekts, wenn nicht nur der Hauptwert angezeigt wird.
  • Scheitelpunkte und Details der Form (compt_Edge), (compt_Faces), (compt_Vector of the Face)
    max. 200 Zeilen in der Tabelle, wenn mehr als 200 Zeilen vorhanden sind (! + 200) und die Anzahl von Zeilen
    (vollständige Details können über die Schaltfläche Save in einer Datei im CSV-Format gespeichert werden. Die Datei kann in einer Tabelle mit dem Read oder von einer externen Tabelle als angezeigt werden LibreOffice OpenOffice or other)

Sector 5: Inclination

  • Neigungen des Objekts können angezeigt werden in:
  • Dezimalgrad, Beispiel: 174.831872611 °
  • Grad Minute Sekunde, Beispiel: 174 ° 49 '54.741401' '
  • radian, ex: 3.05139181449 rad
  • grade, ex: 194.257636235 gon
  • pourcent ex: 30 ° = 57,74%
  • Neigungen in den Ebenen XY, YZ, ZX und deren Koordinaten
  • Richtungsobjekt, gibt die Richtung des Objekts an. Die Berechnung lautet: coord_1 - coord_2 = Richtung (oder umgekehrt)
    • Line Diese Schaltfläche erstellt eine Linie in Richtung des Objekts
  • ValueAt gibt den 3D-Vektor zurück, der einem Parameterwert entspricht.

Sector 6: Surface and Volume

  • Die Oberfläche der angezeigten Einheitsgröße kann ausgewählt werden
  • Die Oberfläche der angezeigten Einheitsgröße kann ausgewählt werden
  • Das Volumen der angezeigten Einheitsgröße kann ausgewählt werden
  • Dichte des Materials in kg von dm3
    (die "spinBox" ist auf 7,5 kg gesetzt, durchschnittliche Stahldichte. Wenn Sie einen anderen Standardwert wünschen , ändern Sie den Wert der Dichte, Zeile 204)
  • Die Gramm -Untereinheit kann gewählt werden:
    Tonne, Quintintal, kg, hg, Tag, Gramm, dg, mg, mg, µg, ng, pg, fg, gr (getreide), dr (drachm), oz (einmalig), oz t (einmal troy),
    lb t (livre troy), lb (livre av), st (stein), qtr (viertel) cwt (Zentner), Tonneau fr, ct
  • Gewicht der angezeigten Einheitsmasse kann ausgewählt werden

Sector 7: BoundBox

  • BoundBox extreme Abmessungen der Form

Sector 8: Center of:

  • Mittelpunkt der Form und dieser Koordinaten XYZ
  • Massenmittelpunkt und diese Koordinaten XYZ
  • Die Schaltfläche kann auf Punkt, Achse, Ebene und Vektorachsenform erstellt werdenFreeCAD.Vector(-24.0, 240.0, 7.0)

Sector 9: Inertia

  • Trägheitsmoment und diese Koordinaten Länge und Gewicht
  • Die Schaltfläche Erstellen auf Punkt, Achse, Ebene, Vektorachse erstellen FreeCAD.Vector (-24.0, 240.0, 7.0)
    • Aktionslinie 1: x1, y1, z1
    • Aktionslinie 2: x2, y2, z2
    • Aktionslinie 3: x3, y3, z3
    • Aktion 4 Diagonale: x1, y2, z3

Länge und Gewicht gleich

  • Determinante 1: Berechnet die Determinante des wissenschaftlichen Matrixwerts
  • Determinante 2: Berechnet die Determinante des Matrix-Dezimalwerts

Section 10: SpreadSheet

  • Read : read the data in a spreadsheet saved .FCInfo or txt, asc, csv
  • Save : save the data in disk in the form selected below .FCInfo or txt, asc, csv
  • Tabulation : the separator is Tabulation
  • Comma : the separator is Comma
  • Semicolon : the separator is Semicolon
  • Space : the separator is Space

Option for save or read the spreadSheet with different separator, Tabulation, Comma, Semicolon, Space
The Tabulation are the separator for the FreeCAD spreadSheet module
The number of this four separator are calculate for help if unknown
The COMMA are the old (01.16 and before) separator of the FCInfo macro
Now for compatibility with the FreeCAD spreadSheet and since 01.17 version the TABULATION is the separator by default
If you want to convert your old FCInfo spreadsheet : Open it in FCInfo and save it with the Tabulation option checked

Section 11: Main

  • CheckBox Clip Board  : if checked the coordinates are saved in clipBoard form : FreeCAD.Vector(-24.0, 240.0, 7.0)
  • CheckBox Point  : if checked one point is created in the coordinate displayed form : FreeCAD.Vector(-24.0, 240.0, 7.0)
  • CheckBox Axis  : if checked one axis is created in the coordinate displayed form : FreeCAD.Vector(-24.0, 240.0, 7.0)
  • CheckBox Plane  : if checked one axis plane is created in the coordinate displayed form : FreeCAD.Vector(-24.0, 240.0, 7.0)
  • Ref  : Refresh the display of data in report view
  • Exit : Exit the macro (you must restart from the tool bar button or menu "View > Panels > FCInfo"
  • CheckBox 1  : If this CheckBox is checked the informations are displayed in the report view window
  • CheckBox 2  : If this CheckBox is not checked the window macro are displayed to right (default). If it is checked the window macro are displayed to left

Once launched macro, the macro remains active and the window remains visible. To exit the macro by pressing Exit. If you leave by the cross, the macro remains in memory and the data appears in the "report view" of FreeCAD.

Options

The unit used

Length unit:

km, hm, dam, m, dm, cm, mm, µm, nm, pm, fm, inch, link, foot, yard, perch, chain, furlong, mile, league, nautique.

Angle degrees :

  1. decimal degree, ex: 174.831872611°
  2. degree minute seconde, ex: 174° 49' 54.741401''
  3. radian, ex: 3.05139181449 rad
  4. grade, ex: 194.257636235 gon
  5. pourcent ex: 30° = 57.74%

Understanding of angles in FCInfo display.

Weight unit :

ton, quintal, kg, hg, dag, gram, dg, cg, mg, µg, ng, pg, fg, gr (grain), dr (drachm), oz (once), oz t (once troy),
lb t (livre troy), lb (livre av), st (stone), qtr (quarter), cwt (hundredweight), tonneau fr, ct

the "spinBox" is set to 7,5 kg, average density of steel. If you want a different default value, change the value of the density, line 206

global densite       ; densite       = 7.5  # (steel = 7.5 kg par dm3)

A file can be created by the button Save. The file is written as a file csv in this way, the data can be studied in a spreadsheet in FreeCAD or Openoffice, LibreOffice...

Script

Copy the contents of the macro in a file named "FCInfo.FCMacro"

  • Windows: the form is usually " drive:\Users\your_user_name\AppData\Roaming\FreeCAD\ "
  • Ubuntu: the form is usually " /home/your_user_name/.FreeCAD ".

Or, directly in the interface of FreeCAD
The icon must be in the same directory as the macro.
Download image positioning on the icon and then drag the mouse right click "save as" (do not change the name)
PS: too long to be contained in the wiki page (for the time being the wiki pages accept only 64 KB) the macro code has been placed in the forum

There is also FCInfo_Alternate_Linux for only for FreeCAD version 0.13... and PyQt4

There is also a Macro_FCInfo_Alternate_Linux here the code is changed (due to the character display error : ² ³ ° μ ordinal not in range (128)") which posed problems in certain configurations the functions are the same
Example :

global uniteSs       ; uniteSs       = u"mm²"
global uniteVs       ; uniteVs       = u"mm³"
global uniteAs       ; uniteAs       = u"°"

remplacés par

global uniteSs       ; uniteSs       = "mm"+iso8859(unichr(178))
global uniteVs       ; uniteVs       = "mm"+iso8859(unichr(179))
global uniteAs       ; uniteAs       = iso8859(unichr(176))

Files saved with this version is incompatible with the other version (docked or not)


Download the icon file Macro_FCInfo_Icon unzip and copy the icon in the same directory of the macro

Dwnload the macro file on gist docked to right


(Or On the forum. )

PS: this macro uses getSelection() and the list of object begin to 1 ex: for a box Edge1 to Edge12 and the code in the console start at 0 ex: for a box Edge[0] to Edge[11]
This is normal the counting on arrays/lists inside OpenCascade always starts at 1 and not at 0

Limitations

Always leave the button Exit. If one exits the program without going through the button Exit the program remains in memory and continues to run and the display will remain in the "view report". You must leave FreeCAD to erase it from memory.
Only the first 200 elements of the object are visible in the table if there are more than 200 items in the object a signal will be displayed by "'(! +200)" '. The complete list of data is visible in the file saved by the button Save.

If the window macro is invisible after the run , see the bottom window :


project:
read the file directly in a table. done
matches the "Edges" and their coordinates done
Association of a substance to its density
inclination on the element rather than the global object done
inlay right in the interface of FreeCAD done

currently:

  • ver 1.20 , 29/01/2018 optimization
  • ver 1.19 , 20/01/2018 create checkBox for use detection all elements of the object if wanted or not , the macro is faster. Optimisation
  • ver 1.18 , 19/12/2017 ...
  • ver 1.17c , 14/12/2017 create plane with coordinate give in one project in other project and replace "FCInfo" by "__title__"
  • ver 1.17b , 13/12/2017 little correction replace FCTreeView to FCInfo
  • ver 1.17 , 12/12/2017 add upgrade Moment of inertia mm and kg by pinq FCMacro and moment of inertia of assembly, and create plane, axis, point, and add options separator for spreadsheet
  • ver 1.16 , 21/06/2017 add control height police (here PointSize 8) and checkbox for position the window to right or left
  • ver 1.15 , 19/12/2015 suppression PyQt4 option see , add checkBox for editing infos in report view
  • ver 1.14 , 04/08/2014 replace PyQt4 and PySide and correct tooltip not displayed cause on PySide and add fg
  • ver 1.13 , 27/07/2014 replace FCInfo_en_Ver_1-12_Docked.FCMacro to FCInfo_en_Ver_1-13_Docked.FCMacro accept PyQt4 and PySide
  • ver 1.12 , 10/03/2014 adding tooltip
  • ver 1.11 , 04/03/2014 adding µm, nm, pm, fm, µg, ng, pg, pourcent, fixed of grandeur carat "cd" in "ct", display of the label and internal name, fixed calculation of angles XY YZ ZX could give an error on a compound shape, window dockable in FreeCAD
  • ver 1.10.b , 19/11/2013 buttons outside the scrollbar and the dimensions of the window blocking

(ver 1.10 , 18/11/2013 create scrollbar)

  • ver 1.08.b , 10/11/2013 translation units in English, error correction to display the area of the faces listed in the table and replacement of the"print" by "App.Console.PrintMessage"

ver 1.09 , 04/11/2013 works perfectly on Windows and Linux (cause of errors on Linux the characters : ² ³ ° "ordinal not in range(128)")
In a Linux distribution and in the case of an error of "ordinal not in range (128)" an alternative version exists on this page Macro_FCInfo_Alternate_Linux

  • ver 1.08 , 24/10/2013 correction of high top "Faces" and "Edges" displaying 100 objects (in the saved file)
  • ver 1.07 , 11/10/2013 matches the "Faces" and their coordinates.
  • ver 1.06 , 22/09/2013 matches the "Edges" and their coordinates, inclination on the element rather than the global object
  • ver 1.05 , 17/09/2013 added an icon for the spreadsheet, conversion barrel fr, affichage des dimensions overall instead of coordinates.
  • ver 1.04 , 11/09/2013: read the file directly in a table.
  • ver 1.03 , 09/09/2013: clearer display in view report and replacement by "typeObject = sel[0].Shape.ShapeType"
  • ver 1.02 , 7/09/2013 : small updates
  • ver 1.00 , 6/09/2013

Links

SeeAlso Arch Survey Arch Survey

You can share your comments on the forum Info Workbench - Help with icons please.
Here another post of FCInfo Macro