Reinforcement StirrupRebar/es: Difference between revisions

From FreeCAD Documentation
(Created page with "==Propiedades==")
(Created page with "* {{PropertyData | Front Cover}}: la distancia entre la barra de refuerzo y la cara seleccionada. * {{PropertyData | Right Cover}}: la distancia entre el extremo derecho de la...")
Line 23: Line 23:
==Propiedades==
==Propiedades==


* {{PropertyData|Front Cover}}: The distance between rebar and selected face.
* {{PropertyData | Front Cover}}: la distancia entre la barra de refuerzo y la cara seleccionada.
* {{PropertyData|Right Cover}}: The distance between the right end of the rebar to right face of the structure.
* {{PropertyData | Right Cover}}: la distancia entre el extremo derecho de la barra de refuerzo a la derecha de la estructura.
* {{PropertyData|Left Cover}}: The distance between the left end of the rebar to the left face of the structure.
* {{PropertyData | Left Cover}}: la distancia entre el extremo izquierdo de la barra de refuerzo a la cara izquierda de la estructura.
* {{PropertyData|Bottom Cover}}: The distance between rebar from the bottom face of the structure.
* {{PropertyData | Bottom Cover}}: la distancia entre las barras de refuerzo desde la cara inferior de la estructura.
* {{PropertyData|Top Cover}}: The distance between rebar from the top face of the structure.
* {{PropertyData | Top Cover}}: la distancia entre barras de refuerzo desde la cara superior de la estructura.
* {{PropertyData|Bent Angle}}: Bent angle defines the angle at the ends of a stirrup.
* {{PropertyData | Bent Angle}}: ángulo doblado define el ángulo en los extremos de un estribo.
* {{PropertyData|Bent Factor}}: Bent Factor defines length of stirrup end.
* {{PropertyData | Bent Factor}}: Bent Factor define la longitud del extremo del estribo.
* {{PropertyData|Amount}}: The amount of rebars.
* {{PropertyData | Amount}}: la cantidad de barras de refuerzo.
* {{PropertyData|Spacing}}: The distance between the axes of each bar.
* {{PropertyData | Spacing}}: la distancia entre los ejes de cada barra.


==Scripting==
==Scripting==

Revision as of 14:44, 14 May 2018

Arch Rebar Stirrup

Menu location
Arch → Rebar tools
Workbenches
Arch
Default shortcut
None
See also
Helical Rebar
 
This command is part of the Reinforcement AddOn, that you can install via menu Tools → Addons Manager

Descripción

La herramienta Stirrup Rebar permite al usuario crear una barra de refuerzo de estribo en el elemento estructural.

Como utilizar

  1. Crear un elemento structure
  2. Seleccione cualquier cara de la estructura
  3. A continuación, seleccione Stirrup Rebar desde las herramientas de la barra de refuerzo
  4. Aparecerá un panel de tareas en el lado izquierdo de la pantalla, como se muestra a continuación 250px
  5. Seleccione la orientación deseada
  6. Proporcione las entradas como cubierta izquierda, cubierta derecha, cubierta superior, parte inferior, cubierta frontal, ángulo doblado, factor doblado, redondeo y diámetro de la barra de refuerzo
  7. Seleccione el modo de distribución, ya sea cantidad o espaciado
  8. Si se selecciona el espaciado, un usuario también puede optar por espaciado personalizado
  9. La selección de la cara seleccionada se usa para verificar o cambiar la cara de la distribución de barras de refuerzo
  10. Haga clic en OK o Apply para generar las barras de refuerzo
  11. Haga clic en Cancel para salir del panel de tareas

Propiedades

  • Datos Front Cover: la distancia entre la barra de refuerzo y la cara seleccionada.
  • Datos Right Cover: la distancia entre el extremo derecho de la barra de refuerzo a la derecha de la estructura.
  • Datos Left Cover: la distancia entre el extremo izquierdo de la barra de refuerzo a la cara izquierda de la estructura.
  • Datos Bottom Cover: la distancia entre las barras de refuerzo desde la cara inferior de la estructura.
  • Datos Top Cover: la distancia entre barras de refuerzo desde la cara superior de la estructura.
  • Datos Bent Angle: ángulo doblado define el ángulo en los extremos de un estribo.
  • Datos Bent Factor: Bent Factor define la longitud del extremo del estribo.
  • Datos Amount: la cantidad de barras de refuerzo.
  • Datos Spacing: la distancia entre los ejes de cada barra.

Scripting

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

makeStirrup(LeftCover, RightCover, TopCover, BottomCover, FrontCover, BentAngle, BentFactor, Diameter, Rounding, AmountSpacingCheck, AmountSpacingValue, Structure, Facename)
  • Adds a Stirrup reinforcing bar object to the given structural object.
  • If no Structure and Facename is given, it will take user selected face as input.
  • Here CoverAlong argument is having type tuple.
  • Returns the new Rebar object.

Example: Creating Stirrup rebar.

import Arch, Stirrup
structure = Arch.makeStructure(length=1000.0, width=400.0, height=400.0)
structure.ViewObject.Transparency = 80
FreeCAD.ActiveDocument.recompute()
rebar = Stirrup.makeStirrup(20,  20, 20, 20, 20, 135, 4, 8, 2, True, 10, structure, "Face6")

Changing properties of Stirrup rebar.

import Stirrup
Stirrup.editStirrup(rebar, 20, 20, 20, 20, 50, 90, 4, 8, 2, True, 6, structure, "Face6")