Arch Structure: Difference between revisions

From FreeCAD Documentation
No edit summary
(Marked this version for translation)
Line 37: Line 37:
* {{PropertyData|Height}}: The height of the structure (or the extrusion length when based on a profile). If no height is given, and the structure is inside a [[Arch Floor|floor]] object with its height defined, the structure will automatically take the value of the floor height.
* {{PropertyData|Height}}: The height of the structure (or the extrusion length when based on a profile). If no height is given, and the structure is inside a [[Arch Floor|floor]] object with its height defined, the structure will automatically take the value of the floor height.


==Presets==
==Presets== <!--T:16-->


<!--T:17-->
The Structure tool also features a series of presets that allow to quickly build standard metallic profiles or precast concrete elements.
The Structure tool also features a series of presets that allow to quickly build standard metallic profiles or precast concrete elements.


Line 45: Line 46:
<translate>
<translate>


<!--T:18-->
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 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.


<!--T:19-->
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.
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.



Revision as of 15:46, 13 June 2016

Arch Structure

Menu location
Arch → Structure
Workbenches
Arch
Default shortcut
S T
Introduced in version
-
See also
Arch Wall

Description

This 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.

The above image shows a column based on a 2D base profile, a column and a beam based on no profile (defined by their height, length and width dimensions) and a metallic profile based on a 2D contour (face, wire or sketch). Additionally, a certain number of presets available during object creation, allow you to quickly build a structural element from a predefined standard profile.

How to use

  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

  • If no object is selected, a default 3-dimension block is created
  • 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

  • DataLength: The length of the structure (only used if not based on a profile)
  • DataWidth: The width of the structure (only used if not based on a profile)
  • DataHeight: The height of the structure (or the extrusion length when based on a profile). If no height is given, and the structure is inside a floor object with its height defined, the structure will automatically take the value of the floor height.

Presets

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

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.

Scripting

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

makeStructure ([obj],[length],[width],[height],[name])
creates a structure element based on the given profile object and the given extrusion height. If no base object is given, you can also specify length and width for a cubic object.

Example:

import Arch
Arch.makeStructure(0.5,1,3)