Arch Structure

From FreeCAD Documentation
This page is a translated version of the page Arch Structure and the translation is 3% complete.
Outdated translations are marked like this.

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. Press the Arch Structure button, or press S then T keys.
  3. Adjust the desired properties.

Options

  • When no base 2D object is selected, the structure tool has 2 drawing modes: Column and beam:
    • In column mode, you are asked to pick one point on screen or by entering coordinates. The new structural object will be placed at that point.
    • In beam mode, you are asked to pick two points on screen or by entering coordinates. The new structural object will span between these two points.
  • Structural elements share the common properties and behaviours of all Arch Components
  • The height, width and length of a structure can be adjusted after creation
  • Press Esc or the Cancel button to abort the current command.
  • Double-clicking on the structure in the tree view after it is created allows you to enter edit mode and access and modify its additions and subtractions
  • In edit mode, it is also possible to add axes systems to the structural element. When adding one axes system, the structural element will be copied once on each axis of the system. When adding two axes systems, the structural element will be copied once on each intersection of the two systems.

Properties

Data

  • ДаніTool: an optional extrusion path, which can be any type of wire. If this property is empty, the extrusion will be straight, and happen in the direction given by the Normal property
  • ДаніNormal: specifies the direction in which the base face of this structure will be extruded. If this property is kept to (0,0,0), the direction will be automatically set to the normal direction of the base face.
  • ДаніFace Maker: specifies the type of face generation algorithm to use to build the profile. Choices are None, Simple, Cheese and Bullseye.
  • ДаніLength: specifies the length of the structure. This is only used if the structure is not based on a profile.
  • ДаніWidth: specifies the width of the structure. This is only used if the structure is not based on a profile.
  • ДаніHeight: specifies the height of the structure, or the extrusion length when based on a profile. If no height is given, and the structure is inside an Arch Floor object with its height defined, the structure will automatically take the value of the floor height.
  • ДаніNodes Offset: specifies an optional offset between the centerline and the nodes line.

View

  • ВиглядNodes Type: The type of structural nodes of this object, linear or area.
  • ВиглядShow Nodes: Shows or hides the structural nodes.

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

  • Nodes are calculated and updated automatically, as long as you don't modify them manually. If you did, they won't be updated if the shape of the structural object changes, unless you use the "Reset nodes" tool below.
  • Arch structures can have not only linear nodes, but also planar nodes. For this, 1- There must be at least 3 vectors in the "Nodes" property of the object, 2- the "NodesType" property of their ViewObject must be set to "Area".
  • When the nodes calculation is automatic (that is, if you never touched them manually), when setting the Role property of a structure to "Slab", it will automatically become a planar node (there will be more than 3 vectors and the NodesType will be set to "Area").
  • When editing a structure object (double-click), a couple of node tools are available in the task view:
    • Reset the nodes to automatic calculation, in case you modified them manually
    • Edit the nodes graphically, works the same way as Draft Edit
    • Extend the nodes of the edited object until it touches the node of another object
    • Make the node of this object and another one coincident
    • Toggle the display of all nodes of all structural objects of the document on/off

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")
  • Creates a Structure object from the given baseobj, which is a closed profile, and the given extrusion height.
    • If no baseobj is given, you can provide the numerical values for the length, width, and height to create a block structure.
    • The baseobj can also be any existing solid object.

Example:

import FreeCAD, Draft, Arch

Rect = Draft.makeRectangle(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()