Lámina de Panel Arch
Jump to navigation
Jump to search
Outdated translations are marked like this.
Ubicación en el Menú |
---|
Arch → Panel tools → Panel Sheet |
Entornos de trabajo |
Arch |
Atajo de teclado por defecto |
P S |
Introducido en versión |
- |
Ver también |
Arch Panel |
Descripción
Esta herramienta permite construir una lámina 2D, incluyendo cualquier número de objetos Arch Panel Cut, o cualquier otro objeto 2D como los realizados por Draft Workbench y Sketcher Workbench. La lámina del panel se hace típicamente para cortes de layout que se realizarán por una máquina CNC. Estas hojas pueden luego exportarse a un archivo DXF.
La imagen de arriba muestra cómo aparecen las láminas del panel cuando se exportan a DXF.
Utilización
- Opcionalmente, seleccione uno o más objetos Arch Panel Cut o cualquier otro objeto 2D que se encuentre en el plano XY
- Presione el botón
Arch Panel Sheet, o presione P y luego S
- Ajuste las propiedades deseadas
Opciones
- Después de crear la lámina del panel, con o sin objetos secundarios, se puede agregar/eliminar cualquier otro objeto secundario a/desde la lámina del panel haciendo doble clic en ella en la vista de árbol y agregando o quitando objetos de su carpeta de grupo
- Hacer doble clic en el panel en la vista de árbol también le permite mover los objetos contenidos en esta lámina, o mover su etiqueta
- Es posible crear automáticamente paneles compuestos de más de una lámina de un material, mediante el aumento de su propiedad de láminas
- Las láminas del panel pueden mostrar un margen, que es útil para asegurarse de que siempre haya un espacio determinado entre los objetos internos y el borde de la lámina
- Cuando las láminas del Panel se exportan a DXF, los contornos, agujeros internos, etiquetas de sus hijos internos se colocan en diferentes capas, como se muestra en la imagen de arriba
Propiedades
- DATOSHeight: la altura de la lámina
- DATOSWidth: el ancho de la lámina
- DATOSFill Ratio: El porcentaje del área de la lámina que se llena con cortes (automático)
- DATOSTag Text: el texto para mostrar
- DATOSTag Size: el tamaño del texto de la etiqueta
- DATOSTag Position: la posición del texto de la etiqueta. Mantener (0,0,0) para la posición central automática
- DATOSTag Rotation: la rotación del texto de la etiqueta
- DATOSFont File: la fuente del texto de la etiqueta
- DATOSMake Face: si es verdadero, el panel es una Part cara, de lo contrario, una Part wire
- DATOSGrain Direction: Esto le permite informar la dirección principal de la fibra del panel (sentido horario, 0 ° significa arriba)
- VISTAMargin: un margen que se puede mostrar dentro del borde del panel
- VISTAShow Margin: Activa/desactiva la visualización del margen
- VISTAShow Grain: muestra una textura de fibra (Make Face debe establecerse en True)
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)
Programación
La herramienta Hoja de panel puede utilizarse en macros y desde la consola de Python mediante la siguiente función:
Sheet = makePanelSheet(panels=[], name="PanelSheet")
- Creates a
Sheet
object frompanels
, which is a list of Arch Panel objects.
Ejemplo:
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])
Tutoriales
Arch
- Elements: Wall, Structure, Roof, Window, Door, Stairs, Space, Frame, Equipment; Pipe, Pipe Connector; Schedule
- Reinforcements: Rebar; Straight Rebar, UShape Rebar, LShape Rebar, Bent Shape Rebar, Stirrup Rebar, Helical Rebar
- Panels: Panel, Panel Cut, Panel Sheet, Nest
- Materials: Material, Multi-Material
- Organization: Site, Reference,Building, Floor, Building Part, Section Plane
- Axes: Axis, Axes system, Grid
- Modification: Cut with plane, Add component, Remove component, Survey
- Utilities: Component, Clone component, Split Mesh, Mesh To Shape, Select non-solid meshes, Remove Shape, Close Holes, Merge Walls, Check, Ifc Explorer, Toggle IFC Brep flag, 3 Views from mesh, Create IFC spreadsheet, Toggle Subcomponents
- Additional: Preferences, Import-Export Preferences (IFC, DAE, OBJ, JSON, 3DS); Arch API
User documentation

- Installation: Windows, Linux, Mac; Getting started
- Basics: About FreeCAD, Workbenches, Preferences, Document structure, Interface Customization, Properties, Mouse Model; Tutorials
- Workbenches: Arch, Draft, FEM, Image, Inspection, Mesh, OpenSCAD, Part, PartDesign, Path, Plot, Points, Raytracing, Reverse Engineering, Robot, Ship, Sketcher, Spreadsheet, Start, Surface workbench, TechDraw, Test Framework, Web
- Scripting: Introduction to Python, FreeCAD scripting tutorial, FreeCAD Scripting Basics, How to install macros, Gui Command, Units Modules: Builtin modules, Workbench creation, Installing more workbenches Meshes: Mesh Scripting, Mesh Module Parts: The Part Module, Topological data scripting, PythonOCC, Mesh to Part Coin scenegraph: The Coin/Inventor scenegraph, Pivy Qt interface: PySide, Using the FreeCAD GUI, Dialog creation Parametric objects: Scripted objects Other: Code snippets, Line drawing function, Embedding FreeCAD, FreeCAD vector math library, Power users hub, Python, Macros, FreeCAD Scripting Basics, Topological data scripting