Arch Panel

THIS COMMAND IS PART OF THE INTEGRATED BIM WORKBENCH IN V1.0
This page has been updated for that version.

Arch Panel

Menu location
3D/BIM → Panel
Utils → Panel tools → Panel
Workbenches
BIM
Default shortcut
P A
Introduced in version
0.15
See also
Arch Panel Cut, Arch Panel Sheet

Description

The Arch Panel 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.

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.

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

Usage

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

Limitations

Options

Properties

An Arch Panel object shares the common properties and behaviors of all Arch Components.

Scripting

See also: Arch API and FreeCAD Scripting Basics.

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

Panel = makePanel(baseobj=None, length=0, width=0, thickness=0, placement=None, name="Panel")

Example:

import FreeCAD, Draft, Arch

Rect = Draft.makeRectangle(1000, 400)
Panel = Arch.makePanel(Rect, thickness=36)

Tutorials