|
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
Rebar
object from the givenstructure
, which is an Arch Structure, andfacename
, which is a face of that structure.- If no
structure
norfacename
are given, it will take the user selected face as input.
- If no
f_cover
,coverAlong
,rt_cover
, andlb_cover
are inner offset distances for the rebar elements with respect to the faces of the structure.f_cover
is the frontal cover offset.coverAlong
is a tuple(position, value)
that defines the offset value in one position (top, bottom, left, right) depending on theorientation
.rt_cover
is either the right or the top cover offset, depending on the value ofcoverAlong
andorientation
.lb_cover
is either the left or the bottom cover offset, depending on the value ofcoverAlong
andorientation
.
diameter
is the diameter of the reinforcement bars inside the structure.amount_spacing_check
if it isTrue
it will create as many reinforcement bars as given byamount_spacing_value
; if it isFalse
it will create reinforcement bars separated by the numerical value ofamount_spacing_value
.amount_spacing_value
specifies the number of reinforcement bars, or the value of the separation between them, depending onamount_spacing_check
.orientation
specifies 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, ...)
coverAlong
is a tuple with either a"Top Side"
or a"Bottom Side"
offsetvalue
.- In this case
rt_cover
refers to theright_cover
offset, andlb_cover
refers to theleft_cover
offset.
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, ...)
coverAlong
is a tuple with either a"Left Side"
or a"Right Side"
offsetvalue
.- In this case
rt_cover
refers to thetop_cover
offset, andlb_cover
refers to thebottom_cover
offset.
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)
Rebar
is a previously createdStraightRebar
object.- The other parameters are the same as required by the
makeStraightRebar()
function. structure
andfacename
may 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