Arch Rebar UShape/en


Arch Rebar UShape.png 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


Description

The UShapeRebar.png UShape Rebar tool allows user to create a UShape reinforcing bar in the structural element.

Footing UShapeRebar.png

How to use

  1. Create a structure element
  2. Select any face of the structure
  3. Then select UShapeRebar.png UShape Rebar from the rebar tools
  4. A task panel will pop-out on the left side of the screen as shown below UShapeDialog.png
  5. Select the desired orientation
  6. Give the inputs like front cover, right side cover, left side cover, bottom cover, top cover, rounding factor and diameter of the rebar
  7. Select the mode of distribution either amount or spacing
  8. If spacing is selected, a user can also opt for custom spacing
  9. Pick selected face is used to verify or change the face for rebar distribution
  10. Click OK or Apply to generate the rebars
  11. Click Cancel to exit the task panel

Properties

Scripting

The UShapeRebar.png 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) 

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") 
Online version: "http://www.freecadweb.org/wiki/index.php?title=Arch_Rebar_UShape/en&oldid=284434"

Navigation menu