Arquitectura Estructura

From FreeCAD Documentation
Revision as of 18:10, 30 December 2014 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

Arch Structure

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

Descripción

Esta herramienta permite construir elementos estructurales como columnas o vigas, especificando su ancho, largo y alto, o basándose en un perfil 2D.

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.

Utilización

  1. Seleccionar una forma 2D (objeto bocetado, cara o croquis) (opcional)
  2. Presionar el botón Estructura, o pulsar las teclas S y T
  3. Ajusta las propiedades deseadas

Opciones

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

Propiedades

  • DatosLength: The length of the structure (only used if not based on a profile)
  • DatosWidth: The width of the structure (only used if not based on a profile)
  • DatosHeight: 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.

Programación

La herramienta Estructura se puede utilizar en macros y desde la consola de Python mediante las siguientes funciones:

makeStructure ([obj],[length],[width],[height],[name])
Crea un elemento de estructura basado en el objeto perfil y altura de extrusión dadas. Si no se indica un objeto base, se puede especificar la longitud y ancho para un objeto cúbico.

Ejemplo:

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