Arch Structure/uk

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

Arch Structure

Меню прокату
Arch → Structure
Верстаки
Arch
Ярлик за умовчанням
S T
Введено у версії
-
Дивись також
Arch Wall

Description

The Arch Structure tool allows you to build structural elements such as columns or beams, by specifying their width, length and height, or by basing them on a 2D profile (face, wire or sketch).

If no profile is given, a set of presets are available to quickly build a structural element from a predefined standard profile.

Column based on a 2D base profile; a column and a beam defined by their height, length and width, without a base profile; a metallic structure based on a 2D face

Usage

  1. Select a 2D shape (Draft object, face or sketch) (optional).
  2. Select the Utils → Structure tools → Structure option from the menu.
  3. Adjust the desired properties.

Options

Properties

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

Data

View

Presets

The Structure tool also features a series of presets that allow to quickly build standard metallic profiles or precast concrete elements.

Some presets for steel structures

The presets are obtained by choosing a Category from the structure options panel. Available categories are Precast concrete or any of the industry-standard metallic profiles such as HEA, HEB or INP. For each of these categories, a number of presets are available. Once a preset is chosen, its individual parameters such as Length, Width or Height can be adjusted. However, for metallic profiles, the profile size is set by the preset and cannot be changed.

The Switch L/H button can be used to switch Length and Height values, and therefore building a horizontal beam rather than a vertical column.

Some presets for precast concrete structures

Structural nodes

Structural objects also have the ability to display structural nodes. Structural nodes are a sequence of 3D points stored in a "Nodes" property. By switching the "Show Nodes" view property on/off, one can see the structural nodes of a structural element:

Structural nodes made visible for a set of structures

Scripting

See also: Arch API and FreeCAD Scripting Basics.

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

structure = makeStructure(baseobj=None, height=None)
structure = makeStructure(baseobj=None, length=None, width=None, height=None, name="Structure")

Example:

import FreeCAD, Draft, Arch

rect = Draft.make_rectangle(200, 300)
structure1 = Arch.makeStructure(rect, height=2000)
FreeCAD.ActiveDocument.recompute()

structure2 = Arch.makeStructure(None, length=500, width=1000, height=3000)
Draft.move(structure2, FreeCAD.Vector(2000, 0, 0))
FreeCAD.ActiveDocument.recompute()