Arch Panel: Difference between revisions

From FreeCAD Documentation
m (code)
No edit summary
Line 10: Line 10:
</translate>
</translate>
[[Image:Arch Panel example.jpg|700px]]
[[Image:Arch Panel example.jpg|700px]]
<translate>

Since version 0.17, the Arch Panel can also be used to create corrugated or trapezoidal profiles:

</translate>
[[Image:Arch panel wave.jpg|700px]]
<translate>
<translate>


Line 18: Line 24:


<!--T:9-->
<!--T:9-->
# Select a 2D shape (draft object, face or sketch)
# Select a 2D shape (draft object, face or sketch) - optional
# Press the {{KEY|[[Image:Arch Panel.png|16px]] [[Arch Panel]]}} button, or press {{KEY|P}} then {{KEY|A}} keys
# Press the {{KEY|[[Image:Arch Panel.png|16px]] [[Arch Panel]]}} button, or press {{KEY|P}} then {{KEY|A}} keys
# Adjust the desired properties
# Adjust the desired properties
Line 33: Line 39:


<!--T:13-->
<!--T:13-->
* {{PropertyData|Length}}: The length of the panel
* {{PropertyData|Width}}: The width of the panel
* {{PropertyData|Thickness}}: The thickness of the panel
* {{PropertyData|Thickness}}: The thickness of the panel
* {{PropertyData|Area}}: The area of the panel (automatic)
* {{PropertyData|Sheets}}: The number of sheets of material the panel is made of
* {{PropertyData|Sheets}}: The number of sheets of material the panel is made of
* {{PropertyData|Wave Length}}: The length of the wave for corrugated panels
* {{PropertyData|Wave Height}}: The height of the wave for corrugated panels
* {{PropertyData|Wave Type}}: The type of the wave for corrugated panels, curved or trapezoidal
* {{PropertyData|Wave Direction}}: The orientation of the waves for corrugated panels


==Scripting== <!--T:14-->
==Scripting== <!--T:14-->

Revision as of 21:37, 14 October 2016

Arch Panel

Menu location
Arch → Panel
Workbenches
Arch
Default shortcut
P,A
Introduced in version
-
See also
Arch Structure

Description

This tool allows you to build all kinds of panel-like elements, typically for panel constructions like the WikiHouse project, but also for all kinds of objects that are based on a flat profile.

Since version 0.17, the Arch Panel can also be used to create corrugated or trapezoidal profiles:

The above image shows a series of panel objects, simply made from imported 2D contours from a DXF file. They can then be rotated and assembled to create structures.

How to use

  1. Select a 2D shape (draft object, face or sketch) - optional
  2. Press the Arch Panel button, or press P then A keys
  3. Adjust the desired properties

Options

  • The thickness of a panel can be adjusted after creation
  • Press ESC or the Cancel button to abort the current command.
  • Double-clicking on the panel in the tree view after it is created allows you to enter edit mode and access and modify its additions and subtractions
  • It is possible to automatically make panels composed of more than one sheet of a material, by raising its Sheets property.

Properties

  • DataLength: The length of the panel
  • DataWidth: The width of the panel
  • DataThickness: The thickness of the panel
  • DataArea: The area of the panel (automatic)
  • DataSheets: The number of sheets of material the panel is made of
  • DataWave Length: The length of the wave for corrugated panels
  • DataWave Height: The height of the wave for corrugated panels
  • DataWave Type: The type of the wave for corrugated panels, curved or trapezoidal
  • DataWave Direction: The orientation of the waves for corrugated panels

Scripting

The Panel tool can by used in macros and from the python console by using the following function:

makePanel ([obj],[thickness],[name])

Example:

import Arch,Draft
base = Draft.makeRectangle(500,200)
Arch.makePanel(base,36)

Limitations

  • There is currently no automatic system to produce 2D cutting sheets from panel objects, but such feature is in the plans and will be added in the future.
  • This tool is not available in FreeCAD versions prior to 0.15