Arch Rebar/de


Arch Rebar.png Arch Rebar

Menüeintrag
Arch → Rebar
Arbeitsbereich
Arch
Standardtastenkürzel
R B
Siehe auch
Arch Structure


Description

The Rebar tool allows you to place reinforcing bars inside Arch Structure objects. Rebar objects are based on 2D profiles such as sketches or draft objects, that must be drawn on a face of a structure object. You can then adjust the configuration of the rebars, such as the number and diameter of the bars, or the offset distance between the two ends of the structural element.

Arch Rebar example.jpg

The above image shows a structural object, where two sketches are drawn, defining two bar diagrams. These two sketches are then turned into rebar objects.

Extension available

The Rebar tool has been greatly enhanced during the Google Summer of Code 2017 edition. The result of that work is a series of new presets and wizards for the most common rebar types. They are packaged under an independent module called Reinforcement, that you can install via menu Tools -> Addons Manager. Once the Reinforcement addon is installed, on next run, FreeCAD will detect it and add a series of new tools under the Rebar button in the Arch toolbar and menu. The different tools from the Reinforcement Addon are described on the Arch Workbench page.

How to use

  1. Create a structure element
  2. Switch to the Sketcher Workbench
  3. Select one face of the structural element
  4. Press the Sketcher NewSketch.png New Sketch button to start a new sketch on the selected face
  5. Draw the diagram of your bar
  6. Press the Sketcher LeaveSketch.png Leave Sketch button to finish
  7. Switch back to the Arch Workbench
  8. Select the sketch you just drew
  9. Press the Arch Rebar.png Arch Rebar button, or press R then B keys
  10. Adjust the desired properties (your rebar might not appear immediately, if some of the properties create an impossible situation, such as the bar diameter being 0, or the offset distances being bigger than the length of the structural element)

Options

Properties

Scripting

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

makeRebar (structure,sketch,[diameter],[amount],[offset]) 

Example:

import FreeCAD, Arch, Sketcher, PArt
struct = Arch.makeStructure(1,1,3)
sketch = FreeCAD.ActiveDocument.addObject('Sketcher::SketchObject','Sketch')
sketch.Support = (struct,["Face6"])
sketch.addGeometry(Part.Line(App.Vector(-0.4,0.4,0),App.Vector(0.4,0.4,0)))
Arch.makeRebar(structure,sketch) 
Online version: "http://www.freecadweb.org/wiki/index.php?title=Arch_Rebar/de&oldid=260029"

Navigation menu