Reinforcement UShapeRebar/es: Difference between revisions

From FreeCAD Documentation
(Created page with "La herramienta {{KEY | 16px UShape Rebar}} permite al usuario crear una barra de refuerzo de forma de U en el elemento estructural.")
(Created page with "# Crear un elemento structure # Seleccione cualquier cara de la estructura # A continuación, seleccione {{KEY | 16px UShape...")
Line 9: Line 9:
==Utilización==
==Utilización==


# Create a [[Arch Structure|structure]] element
# Crear un elemento [[Arch Structure | structure]]
# Seleccione cualquier cara de la estructura
# Select any face of the structure
# Then select {{KEY|[[Image:UShapeRebar.png|16px]] UShape Rebar}} from the rebar tools
# A continuación, seleccione {{KEY | [[Image: UShapeRebar.png | 16px]] UShape Rebar}} desde las herramientas de la barra de refuerzo
# A task panel will pop-out on the left side of the screen as shown below [[Image:UShapeDialog.png|250px]]
# Aparecerá un panel de tareas en el lado izquierdo de la pantalla como se muestra a continuación [[Image: UShapeDialog.png | 250px]]
# Seleccione la orientación deseada
# Select the desired orientation
# Proporcione las entradas como la cubierta frontal, la cubierta lateral derecha, la cubierta lateral izquierda, la cubierta inferior, la cubierta superior, el factor de redondeo y el diámetro de la barra de refuerzo
# Give the inputs like front cover, right side cover, left side cover, bottom cover, top cover, rounding factor and diameter of the rebar
# Seleccione el modo de distribución, ya sea cantidad o espaciado
# Select the mode of distribution either amount or spacing
# If spacing is selected, a user can also opt for [[Custom_Spacing|custom spacing]]
# Si se selecciona el espaciado, un usuario también puede optar por [[Custom_Spacing | espaciado personalizado]]
# La selección de la cara seleccionada se usa para verificar o cambiar la cara de la distribución de barras de refuerzo
# Pick selected face is used to verify or change the face for rebar distribution
# Click {{KEY|OK}} or {{KEY|Apply}} to generate the rebars
# Haga clic en {{KEY | OK}} o {{KEY | Apply}} para generar las barras de refuerzo
# Click {{KEY|Cancel}} to exit the task panel
# Haga clic en {{KEY | Cancel}} para salir del panel de tareas


==Propiedades==
==Propiedades==

Revision as of 12:32, 13 May 2018

Arch Rebar UShape

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

Descripción

La herramienta UShape Rebar permite al usuario crear una barra de refuerzo de forma de U en el elemento estructural.

Utilización

  1. Crear un elemento structure
  2. Seleccione cualquier cara de la estructura
  3. A continuación, seleccione UShape 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
  5. Seleccione la orientación deseada
  6. Proporcione las entradas como la cubierta frontal, la cubierta lateral derecha, la cubierta lateral izquierda, la cubierta inferior, la cubierta superior, el factor de redondeo y el 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

  • DatosOrientation: It decides the orientation of the rebar (like a bottom, top, right and left).
  • DatosFront Cover: The distance between rebar and selected face.
  • DatosRight Cover: The distance between the right end of the rebar to right face of the structure.
  • DatosLeft Cover: The distance between the left end of the rebar to the left face of the structure.
  • DatosBottom Cover: The distance between rebar from the bottom face of the structure.
  • DatosTop Cover: The distance between rebar from the top face of the structure.
  • DatosRounding: A rounding value to be applied to the corners of the bars, expressed in times the diameter.
  • DatosAmount: The amount of rebars.
  • DatosSpacing: The distance between the axes of each bar.

Programación

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

makeUShapeRebar(FrontCover, BottomCover, RightCover, LeftCover, Diameter, Topcover, Rounding, AmountSpacingCheck, AmountSpacingValue, Orientation, Structure, Facename)
  • The UShape Rebar have four different orientations:
    • Bottom
    • Top
    • Right
    • Left
  • Adds a UShape reinforcing bar object to the given structural object.
  • If no Structure and Facename is given, it will take user selected face as input.
  • Returns the new Rebar object.

Example: Creating UShape rebar.

import Arch, UShapeRebar
structure = Arch.makeStructure(length=1000.0, width=1000.0, height=400.0)
structure.ViewObject.Transparency = 80
FreeCAD.ActiveDocument.recompute()
rebar = UShapeRebar.makeUShapeRebar(20, 20, 20, 20, 8, 20, 4, True, 10, "Bottom", structure, "Face1")

Changing properties of UShape rebar.

import UShapeRebar
UShapeRebar.editUShapeRebar(rebar, 25, 25, 25, 25, 16, 25, 2, True, 15, "Top")