Macro FCInfo/cs


Dává řadu informací o vybraném tvaru a může zobrazit konverzi délky, sklonu (stupně, radiány, procenta) tělesa, povrchu, objemu a váhy tvaru s měrnou hmotností vybranou v různých jednotkách hmotnosti mezinárodních i Anglo-Saských.


FCInfo

Použití

Vyberete objekt nebo spustíte aplikaci a vyberete objekt a zobrazí se řada informací. Jeho výpočty založené na jednotce FreeCADu, což je mm pro kažbý nový výběr, vrací vždy délku v mm a úhel v dekadických stupních.

  • Read : Otevře soubor .FCInfo *Save : Uloží soubor .FCInfo *Exit : Ukončí makro a vymaže je z paměti.
  • Ref : Aktualizuje zobrazení reportu na displeji

Když makro jednou spustíte, zůstává aktivní a okno zůstává viditelné. Makro lze ukončit stisknutím Exit. Když okno zavřte křížkem (vpravo nahoře), makro zůstává v paměti a data se zobrazují v "reportovacím pohledu" FreeCADu.

Sector 2: Coordinates click mouse

Sector 3: Value

Sector 4: Vertexes and details

Sector 5: Inclination

Sector 6: Surface and Volume

Sector 7: BoundBox

Sector 8: Center of:

Sector 9: Inertia

same for length and weigth

Section 10: SpreadSheet

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

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.


Volby

Použité jednotky

Délková jednotka:

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

Úhlové stupně :
  1. dekadické stupně, např: 174.831872611°
  2. stupně minuty vteřiny, např.: 174° 49' 54.741401''
  3. radiány, např.: 3.05139181449 rad
  4. grade, např.: 194.257636235 gon
  5. procenta např.: 30° = 57.74%

Pochopení úhlů v zobrazení FCInfo.


Váhové jednotky :

ton, quintal, kg, hg, dag, gram, dg, cg, mg, µg, ng, pg, 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
"spinBox" je nastaven na 7,5 kg, tj. průměrná měrná hmotnost oceli. Chcete-li jinou defaultní (přednastavenou) hodnotu, změňte hodnotu měrné hmotnosti na řádku 182

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

Soubor můůže být vytvořen tlačítkem Save. Takto je vytvořen soubor jako .csv soubor, data mohou být prohlížena v tabulkovém editoru ve FreeCADu nebo Openoffice, LibreOffice...

Skript

Zkopírujte obsah tohoto makra do souboru nazvaného "FCInfo.FCMacro" (ve Windowsech) do "C:\Program Files\FreeCAD0.13".
Nebo přímo do okna FreeCADu
Ikona musí být ve stejném adresáři jako je makro pro Windows "C:\Program Files\FreeCAD0.13".
Stáhněte umístění obrázků u ikon FCInfo.png FCInfoSpreadsheet.png a pravým tlačítkem je "Uložte jako" (neměňte jméno) (originál - Download image positioning on the icon FCInfo.png FCInfoSpreadsheet.png 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

Omezení

Pro ukončení vždy používejte tlačítko Exit. Ukončení jiným způsobem zapříčiní, že program zůstane v paměti a běží a zobrazuje data v "reportovacím pohledu". Abyste uvolnili pamět, musíte ukončit celý FreeCAD.
V tabulce je viditelných pouze prvních 200 prvků objektu. Je-li jich v objektu více zobrazí se upozornění "'(! +200)" '. Kompletní seznam dat je viditelný v souboru uloženém pomocí tlačítka Save.

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

Macro FCInfo 08.png


FCInfo begin 00.gif


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.10 , 18/11/2013 create scrollbar)

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

Links

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

Online version: "http://www.freecadweb.org/wiki/index.php?title=Macro_FCInfo/cs&oldid=246622"

Navigation menu