Arch Survey/de: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Created page with "Wenn eine solche Information gesammelt wird, geschehen mehrere Dinge:")
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{Docnav/de
{{docnav
|[[Arch_Remove|Remove component]]
|[[Arch_Remove/de|Komponente entfernen]]
|[[Arch_Component|Component]]
|[[Arch_Component/de|Komponente]]
|[[Arch_Module|Arch]]
|[[Arch_Module/de|Arch]]
|IconL=Arch_Remove.svg
|IconL=Arch_Remove.svg
|IconC=Workbench_Arch.svg
|IconC=Workbench_Arch.svg
Line 9: Line 9:
}}
}}


<div class="mw-translate-fuzzy">
{{GuiCommand/de
{{GuiCommand/de
|Name=Arch Survey|Name/de=Arch Survey
|Name=Arch Übersicht
|MenuLocation=Arch → Survey
|MenuLocation=Arch → Übersicht
|Workbenches=[[Arch Module/de|Arch]]
|Workbenches=[[Arch Module/de|Arch]]
|SeeAlso=[[File:FCInfo.png|FCInfo|24px]] [[Macro FCInfo/de|FCInfo (macro)]]
|SeeAlso=[[File:FCInfo.png|FCInfo|24px]] [[Macro FCInfo/de|FCInfo (Makro)]]<br />[[Macro_SimpleProperties/de|Makro EinfacheEigenschaften (Makro)]]
}}
}}
</div>


==Beschreibung==
==Beschreibung==
Line 27: Line 25:
* If you double-click anything, therefore select the whole object, you get its volume
* If you double-click anything, therefore select the whole object, you get its volume


Wenn eine solche Information gesammelt wird, geschehen mehrere Dinge:
When such a piece of information is gathered, several things happen:


* A label is placed on top of the element you clicked, that displays the value (with "a" for area, "l" for length, "z" for height, or "v" for volume)
* A label is placed on top of the element you clicked, that displays the value (with "a" for area, "l" for length, "z" for height, or "v" for volume)
Line 37: Line 35:
[[Image:Arch Survey example.jpg|640px]]
[[Image:Arch Survey example.jpg|640px]]


''Das obige Bild zeigt, was passiert, wenn der Übersichtsmodus ausgeführt wird.
''The above image shows what happens when running the survey mode.''


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 48: Line 46:
# Press {{KEY|Esc}} or the {{Button|Close}} button to exit survey mode and remove all the labels.
# Press {{KEY|Esc}} or the {{Button|Close}} button to exit survey mode and remove all the labels.


==Options==
==Optionen==


* You can add a custom label to any line in the Task dialog by clicking that line, then adding a text in the description field, then press the '''set description''' button.
* You can add a custom label to any line in the Task dialog by clicking that line, then adding a text in the description field, then press the '''set description''' button.
Line 55: Line 53:
[[Image:Arch Survey spreadsheet.jpg|640px]]
[[Image:Arch Survey spreadsheet.jpg|640px]]


==Skripten==
<div class="mw-translate-fuzzy">
{{Emphasis|Siehe auch:}} [[Arch API/de|Arch API]] und [[FreeCAD Scripting Basics/de|FreeCAD Grundlagen Skripten]].
==Scripting==
{{Emphasis|Siehe auch:}} [[Arch API/de|Arch API]] und [[FreeCAD Scripting Basics/de|FreeCAD Scripting Basics]].
</div>


Das Übersichtswerkzeug verfügt nicht über eine Programmierschnittstelle, aber die Erfassung, der gleichen Informationen von jedem ausgewählten [[Part Module/de|Teil]]-basierten Objekt wird mit dem folgenden Skript reproduziert:
The Survey tool doesn't have a programming interface, but gathering but gathering the same information from any selected [[Part Module|Part]]-based object is reproduced with the following script:


{{Code|code=
{{Code|code=
Line 75: Line 71:
}}
}}


{{Docnav/de
{{docnav
|[[Arch_Remove|Remove component]]
|[[Arch_Remove/de|Komponente entfernen]]
|[[Arch_Component|Component]]
|[[Arch_Component/de|Komponente]]
|[[Arch_Module|Arch]]
|[[Arch_Module/de|Arch]]
|IconL=Arch_Remove.svg
|IconL=Arch_Remove.svg
|IconC=Workbench_Arch.svg
|IconC=Workbench_Arch.svg

Revision as of 15:53, 7 July 2020

Arch Übersicht

Menüeintrag
Arch → Übersicht
Arbeitsbereich
Arch
Standardtastenkürzel
Keiner
Eingeführt in Version
-
Siehe auch
FCInfo FCInfo (Makro)
Makro EinfacheEigenschaften (Makro)

Beschreibung

The Arch Survey tool enters a special surveying mode, which allows you to quickly grab measures and information from a model, and transfer that information to other applications. Once you are in Survey mode, clicking on different subelements of 3D objects gathers the following information, depending on what you click:

  • If you click on an edge, you get its length
  • If you click on a vertex, you get its height (coordinate on the Z axis)
  • If you click on a face, you get its area
  • If you double-click anything, therefore select the whole object, you get its volume

Wenn eine solche Information gesammelt wird, geschehen mehrere Dinge:

  • A label is placed on top of the element you clicked, that displays the value (with "a" for area, "l" for length, "z" for height, or "v" for volume)
  • The numeric value is copied to the clipboard, so you can paste it in another application
  • A line is printed on the FreeCAD output window. After you exit the survey mode, those lines can be copied and pasted in another application (the values are comma-separated, making it easy to convert to spreadsheet data)
  • The total length or area of the elements you clicked so far is also printed in the output window
  • Each length or area is also recorded in the task dialog

Das obige Bild zeigt, was passiert, wenn der Übersichtsmodus ausgeführt wird.

Anwendung

  1. Press the Arch Survey button.
  2. Click on vertices, edges, faces or double-click to select whole objects.
  3. Click outside any geometry (on the background of the 3D view) to remove existing labels, print a total line in the Task dialog, and restart counting lengths and areas from zero.
  4. Press Esc or the Close button to exit survey mode and remove all the labels.

Optionen

  • You can add a custom label to any line in the Task dialog by clicking that line, then adding a text in the description field, then press the set description button.
  • Once you are done, before closing, you can export the contents of the Task dialog by pressing the "export CSV" button. The resulting CSV file can then be opened in any spreadsheet application such as Excel or LibreOffice Calc. The values and units will be separated in the resulting CSV file, and the totals are written as SUM() functions.

Skripten

Siehe auch: Arch API und FreeCAD Grundlagen Skripten.

Das Übersichtswerkzeug verfügt nicht über eine Programmierschnittstelle, aber die Erfassung, der gleichen Informationen von jedem ausgewählten Teil-basierten Objekt wird mit dem folgenden Skript reproduziert:

import FreeCADGui

selection = FreeCADGui.Selection.getSelectionEx()

for obj in selection:
    for element in obj.SubObjects:
        print("Area: %f", element.Area)
        print("Length: %f", element.Length)
        print("Volume: %f", element.Volume)
        print("Center of Mass: %f", element.CenterOfMass)