Arch Tafel Platte
Jump to navigation
Jump to search
Outdated translations are marked like this.
Menüeintrag |
---|
Arch → Tafelwerkzeuge → Tafel Blech |
Arbeitsbereich |
Arch |
Standardtastenkürzel |
P S |
Eingeführt in Version |
- |
Siehe auch |
Arch Tafel, Arch Tafelschnitt, Arch Verschachteln |
Beschreibung
Dieses Werkzeug ermöglicht eine 2D Zeichnung zu erstellen, einschließlich einer beliebigen Anzahl von Arch Tafelschnitt Objekten, oder jedes andere 2D Objekt, wie z.B. diejenigen, die mit Entwurf Arbeitsbereich und Skizzierer Arbeitsbereich erstellt wurden. Das Tafelblech wird in der Regel für Layout Schnitte erstellt, die von einer CNC Maschine ausgeführt werden sollen. Diese Blätter können dann in eine DXF Datei exportiert werden.
Das obige Bild zeigt, wie Tafelplatten beim Export nach DXF erscheinen.
Anwendung
- Optionally, select one or more Arch Panel Cut objects or any other 2D object that lies on the XY plane.
- Press the
Arch Panel Sheet button, or press P then S keys.
- Adjust the desired properties.
Optionen
- After the panel sheet is created, with or without child objects, Any other child object can be added/removed to/from the panel sheet by double-clicking it in the tree view and adding or removing objects from its Group folder
- Double-clicking on the panel in the tree view also allows you to move the objects contained in this sheet, or move its tag
- It is possible to automatically make panels composed of more than one sheet of a material, by raising its Sheets property
- Panel Sheets can display a margin, that is useful to make sure a certain space is always present between inner objects and the border of the sheet
- When Panel sheets are exported to DXF, the outlines, inner holes, tags of their inner children are placed on different layers, as shown on the above image
Eigenschaften
Data
- DataHeight: The height of the sheet
- DataWidth: The width of the sheet
- DataFill Ratio: The percentage of the sheet area that is filled by cuts (automatic)
- DataTag Text: The text to display
- DataTag Size: The size of the tag text
- DataTag Position: The position of the tag text. Keep (0,0,0) for automatic center position
- DataTag Rotation: The rotation of the tag text
- DataFont File: The font of the tag text
- DataMake Face: If True, the panel is a Part Face, otherwise a Part Wire
- DataGrain Direction: This allows you to inform the main direction of the panel fiber (clockwise direction, 0° means up)
View
- ViewMargin: A margin that can be displayed inside the panel border
- ViewShow Margin: Turns the display of the margin on/off
- ViewShow Grain: Shows a fiber texture (Make Face must be set to True)
Scripting
See also: Arch API and FreeCAD Scripting Basics.
The Panel sheet tool can be used in macros and from the Python console by using the following function:
Sheet = makePanelSheet(panels=[], name="PanelSheet")
- Creates a
Sheet
object frompanels
, which is a list of Arch Panel objects.
Beispiel:
import FreeCAD, Draft, Arch
Rect = Draft.makeRectangle(500, 200)
Polygon = Draft.makePolygon(5, 750)
p1 = FreeCAD.Vector(1000, 0, 0)
p2 = FreeCAD.Vector(2000, 400, 0)
p3 = FreeCAD.Vector(1250, 800, 0)
Wire = Draft.makeWire([p1, p2, p3], closed=True)
Panel1 = Arch.makePanel(Rect, thickness=36)
Panel2 = Arch.makePanel(Polygon, thickness=36)
Panel3 = Arch.makePanel(Wire, thickness=36)
FreeCAD.ActiveDocument.recompute()
Cut1 = Arch.makePanelCut(Panel1)
Cut2 = Arch.makePanelCut(Panel2)
Cut3 = Arch.makePanelCut(Panel3)
Cut1.ViewObject.LineWidth = 3
Cut2.ViewObject.LineWidth = 3
Cut3.ViewObject.LineWidth = 3
FreeCAD.ActiveDocument.recompute()
Sheet = Arch.makePanelSheet([Cut1, Cut2, Cut3])
Tutorien
Arch
- Elemente: Wand, Struktur, Dach, Fenster, Tür, Treppe, Raum, Rahmen, Ausstattung; Pipe, Pipe Connector; Schedule
- Bewehrung: Bewehrungsstab; Straight Rebar, UShape Rebar, LShape Rebar, Bent Shape Rebar, Stirrup Rebar, Helical Rebar
- Paneele: Panel, Panel Cut, Panel Sheet, Nest
- Material: Material, Multi-Material
- Organisation: Baugrund, Referenz,Gebäude, Geschoss, Gebäudeteil, Schnittebene
- Achsen: Achse, Achsensystem, Raster
- Änderungen: Schneiden in einer Ebene, Komponente hinzufügen, Teil entfernen, Survey
- Dienstprogramme: Komponente, Komponente klonen, Netz zerlegen, Netz in Form umwandeln, Wähle nicht-mehrfache Polygonnetze, Entferne Form, Schließt Löcher, Wände zusammenfügen, Check, Ifc Explorer, Toggle IFC Brep flag, 3 Ansichten aus Netz, Erstelle IFC Kalkulationstabelle..., Toggle Subcomponents
- Additional: Einstellungen, Import-Export Preferences (IFC, DAE, OBJ, JSON, 3DS); Arch API
Anwenderdokumentation

- Installation: Installieren auf Windows, Installieren auf Linux, Installieren auf MacOSX; Erste Schritte
- Grundlagen: Über FreeCAD, Arbeitsbereiche, Programmeinstellungen, Dokumentstruktur, Graphische Oberfläche anpassen, Objekteigenschaften, Mausbedienung; Tutorials
- Arbeitsbereiche: Arch, Draft, FEM, Image, Inspection, Mesh, OpenSCAD, Part, PartDesign, Path, Plot, Points, Raytracing, Reverse Engineering, Robot, Ship, Sketcher, Spreadsheet, Start, Surface, TechDraw, Test Framework, Web
- Scripting: Allgemein: Einführung in Python, FreeCAD scripting tutorial, FreeCAD Scripting Basics, Wie installiere ich Makros?, Gui Command, Units Module: Builtin modules, Erstellung von Arbeitsbereichen, Weitere Workbenches installieren Meshes (Netze): Mesh Scripting, Arbeitsbereich Mesh Teile: Arbeitsbereich Part, Topological data scripting, PythonOCC, Mesh to Part Coin scenegraph: The Coin/Inventor scenegraph, Pivy Qt-Interface: PySide, Using the FreeCAD GUI, Dialog creation Parametrische Objekte: Scripted objects Andere: Code-Schnipsel, Linienzeichnungsfunktion, Einbetten von FreeCAD, FreeCAD-Bibliothek für Vektormathematik, Übersicht für erfahrene Anwender, Grundlagen der FreeCAD-Skripterstellung, Topologisches Daten-Scripting