|
|
| poziția meniului |
|---|
| Arch → Rebar tools |
| Ateliere |
| Arch |
| scurtătură |
| None |
| Prezentat în versiune |
| - |
| A se vedea, de asemenea, |
| LShape Rebar |
Description
Descriere
Instrumentul
Straight Rebarpoate permite utilizatorului să creeze o bară de armare dreaptă în elementul structural.
This tool is part of the Reinforcement Workbench, an external workbench that can be installed with the Addon Manager.
Cum se folosește
- Creați un element Structura structură
- Selectați orice față a structurii
- Apoi selectați
Șipcă drept din uneltele pentru bare - Un panou de activități va apărea în partea stângă a ecranului, după cum se arată mai jos

- Selectați orientarea dorită
- Dați intrările ca și capacul frontal, capacul lateral din dreapta, capacul lateral din stânga, capacul inferior și diametrul barei
- Selectați modul de distribuire fie cantitate, fie spațiere
- Dacă spațiul este selectat, un utilizator poate de asemenea să opteze pentru spacing custom
- Selectează fața selectată este utilizată pentru a verifica sau schimba fața pentru distribuția barei
- Faceți clic pe OK sau pe Apply pentru a genera barele de armare
- Faceți clic pe Cancel pentru a ieși din panoul de activități
Task panel for the tool
Proprietăți
- DateOrientation: Acesta decide orientarea armăturii (de ex. jos, sus, drepta și stânga).
- DateFront Cover: Distanța dintre armături și fațetele selectate.
- DateRight Cover: Distanța între capătul dintre capătul dreapta al armăturii și fațeta dreapta a structurii.
- DateLeft Cover: Distanța dintre capătul din stânga al armăturii și fațeta stângă a structurii
- DateBottom Cover: Distanța dintre armătură și fațeta de jos a structurii.
- DateTop Cover: Distanța dintre armătură și fața superioară a structurii.
- DateRounding: O valoare de rotunjire care trebuie aplicată colțurilor barelor, exprimată în raport cu diametrul acestora.
- DateAmount: Cantitatea de armătură
- DateSpacing: Distnța dintre acele fiecărei bare.
Scripting
Scrip-Programare
Instrumentul
Straight Rebar poate fi utilizat în macros și de la consola Python prin utilizarea următoarei funcții:
Rebar = makeStraightRebar(f_cover, coverAlong, rt_cover, lb_cover,
diameter, amount_spacing_check, amount_spacing_value, orientation="Horizontal",
structure=None, facename=None)
- Creates a
Rebarobject from the givenstructure, which is an Structure, andfacename, which is a face of that structure.- If no
structurenorfacenameare given, it will take the user selected face as input.
- If no
f_cover,coverAlong,rt_cover, andlb_coverare inner offset distances for the rebar elements with respect to the faces of the structure.f_coveris the frontal cover offset.coverAlongis a tuple(position, value)that defines the offset value in one position (top, bottom, left, right) depending on theorientation.rt_coveris either the right or the top cover offset, depending on the value ofcoverAlongandorientation.lb_coveris either the left or the bottom cover offset, depending on the value ofcoverAlongandorientation.
diameteris the diameter of the reinforcement bars inside the structure.amount_spacing_checkif it isTrueit will create as many reinforcement bars as given byamount_spacing_value; if it isFalseit will create reinforcement bars separated by the numerical value ofamount_spacing_value.amount_spacing_valuespecifies the number of reinforcement bars, or the value of the separation between them, depending onamount_spacing_check.orientationspecifies the orientation of the rebar; it can be"Horizontal"or"Vertical".
Depending on the orientation of the rebar, the function can be called in two general ways by setting coverAlong appropriately.
The rebar is horizontal
Rebar = makeStraightRebar(f_cover, ("Top Side", value), right_cover, left_cover, ...)
Rebar = makeStraightRebar(f_cover, ("Bottom Side", value), right_cover, left_cover, ...)
coverAlongis a tuple with either a"Top Side"or a"Bottom Side"offsetvalue.- In this case
rt_coverrefers to theright_coveroffset, andlb_coverrefers to theleft_coveroffset.
The rebar is vertical
Rebar = makeStraightRebar(f_cover, ("Left Side", value), top_cover, bottom_cover, ...)
Rebar = makeStraightRebar(f_cover, ("Right Side", value), top_cover, bottom_cover, ...)
coverAlongis a tuple with either a"Left Side"or a"Right Side"offsetvalue.- In this case
rt_coverrefers to thetop_coveroffset, andlb_coverrefers to thebottom_coveroffset.
Example horizontal
import Arch, Draft, StraightRebar
Structure = Arch.makeStructure(length=1000, width=1000, height=400)
Structure.ViewObject.Transparency = 80
FreeCAD.ActiveDocument.recompute()
Rebar = StraightRebar.makeStraightRebar(50, ("Bottom Side", 20), 100, 100,
12, True, 5, "Horizontal", Structure, "Face4")
Rebar.ViewObject.ShapeColor = (0.9, 0.0, 0.0)
Rebar2 = StraightRebar.makeStraightRebar(50, ("Bottom Side", 50), 100, 100,
12, True, 5, "Horizontal", Structure, "Face6")
Rebar2.ViewObject.ShapeColor = (0.0, 0.0, 0.9)
Example vertical
import Arch, Draft, StraightRebar
Structure2 = Arch.makeStructure(length=1000, width=1000, height=400)
Structure2.ViewObject.Transparency = 80
Draft.move(Structure2, FreeCAD.Vector(1500, 0, 0))
FreeCAD.ActiveDocument.recompute()
Rebar3 = StraightRebar.makeStraightRebar(50, ("Left Side", 20), 100, 100,
12, True, 5, "Vertical", Structure2, "Face4")
Rebar3.ViewObject.ShapeColor = (0.9, 0.5, 0.0)
Rebar4 = StraightRebar.makeStraightRebar(50, ("Left Side", 50), 100, 100,
12, True, 5, "Vertical", Structure2, "Face6")
Rebar4.ViewObject.ShapeColor = (0.0, 0.5, 0.5)
Edition of rebar
Schimbarea proprietăților armăturii tip bară dreaptă.
editStraightRebar(Rebar, f_cover, coverAlong, rt_cover, lb_cover,
diameter, amount_spacing_check, amount_spacing_value, orientation,
structure=None, facename=None)
Rebaris a previously createdStraightRebarobject.- The other parameters are the same as required by the
makeStraightRebar()function. structureandfacenamemay be omitted so that the rebar stays in the original structure.
Example:
import StraightRebar
StraightRebar.editStraightRebar(Rebar, 50, ("Top Side", 20), 100, 100,
24, True, 7, "Horizontal")
StraightRebar.editStraightRebar(Rebar2, 50, ("Top Side", 50), 100, 100,
24, True, 7, "Horizontal")
StraightRebar.editStraightRebar(Rebar3, 50, ("Right Side", 20), 100, 100,
24, True, 7, "Vertical")
StraightRebar.editStraightRebar(Rebar4, 50, ("Right Side", 50), 100, 100,
24, True, 7, "Vertical")
Această pagină este preluată de la https://wiki.freecad.org/Reinforcement_StraightRebar