Arch: Bara de armătură îndoită
Jump to navigation
Jump to search
Outdated translations are marked like this.
|
Menu location |
---|
Arch → Rebar tools |
Workbenches |
Arch |
Default shortcut |
None |
See also |
Stirrup |
This command is part of the Reinforcement AddOn, that you can install via menu Tools → Addons Manager |
Menu location |
---|
Arch → Rebar tools → Bent-Shape Rebar or 3D/BIM → Reinforcement → Bent-Shape Rebar |
Workbenches |
Arch, BIM |
Default shortcut |
None |
Introduced in version |
0.17 |
See also |
Reinforcement, Arch Rebar, Arch Rebar Stirrup |
Descriere
Instrumentul Bent Shape Rebar permite utilizatorului să creeze o formă de armătură bent shape reinforcing bar în elementul de structură.
The BentShape Rebar tool is also integrated into BIM Workbench.
This command is part of the Reinforcement Workbench, an external workbench that can be installed with the Addon Manager via the Tools → Addon manager → Reinforcement menu.
Cum se folosește
- Creați un elemente de structure
- Selectați orice fațetă a structurii
- Apoi selectați
Bent Shape Rebar dintre instrumentele dedicate rebar tools
- Un panou de activități contextual va apărea în partea stângă a ecranului, după cum se arată mai jos
- Selectați orientarea dorită
- Definiți datele inițiale ca și capacul frontal, capacul din stânga, capacul din dreapta, capacul inferior, capacul superior, lungimea ancorei, unghiul îndoit, rotunjirea ș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
- Selectați fațete utilizată petnru a verifica sau schimba faștea pentru distrubuția armăturii/ rebar distribution
- Click pe OK sau pe Apply pentru a genera armăturile
- Click pe Cancel pentru a ieși din task panel
Taskview panel for the Arch Rebar BentShape tool
Proprietăți
- DataOrientation: Acesta decide orientarea armăturii (de ex. jos, sus, drepta și stânga).
- DataFront Cover: Distanța dintre armături și fațetele selectate.
- DataRight Cover: Distanța între capătul dintre capătul dreapta al armăturii și fațeta dreapta a structurii.
- DataLeft Cover: Distanța dintre capătul din stânga al armăturii și fațeta stângă a structurii
- DataBottom Cover: Distanța dintre armătură și fațeta de jos a structurii.
- DataTop Cover: Distanța dintre armătură și fața superioară a structurii.
- DataAnchor Length: Aceasta este lungimea brațelor armăturii îndoite/bent shape rebar.
- DataBent Angle: Stabilește unghiul de îndoire a bent shape rebar.
- DataAmount: Cantitatea de armătură.
- DataSpacing: Distanța între acele fiecărei bare.
Scrip-Programare
Instrumentul Bent Shape Rebar poate fi utilizat în macros și de la consola Python console utilizând următorele funcții:
Rebar = makeBentShapeRebar(f_cover, b_cover, l_cover, r_cover,
diameter, t_cover, bentLength, bentAngle, rounding, amount_spacing_check, amount_spacing_value, orientation="Bottom",
structure=None, facename=None)
- Bent Shape Rebar are patru orientări diferite:
- Bottom
- Top
- Left
- Right
- Adaugă un obiect Bent Shape reinforcing bar la obeictul structural selectat .
- Dacă nu este dată nici o structură și nici o Facename, ea va avea ca intrare fațeta selectată de utilizator.
- Aici argumentul CoverAlong este de tip tuplă.
- Returnează noul obiect Rebar.
Example
import FreeCAD, Arch, BentShapeRebar
Structure = Arch.makeStructure(length=1000, width=1000, height=100)
Structure.ViewObject.Transparency = 80
FreeCAD.ActiveDocument.recompute()
Rebar = BentShapeRebar.makeBentShapeRebar(50, 20, 20, 20,
8, 40, 100, 135, 2, True, 4, "Bottom", Structure, "Face4")
Rebar.ViewObject.ShapeColor = (0.9, 0.0, 0.0)
Rebar2 = BentShapeRebar.makeBentShapeRebar(50, 40, 20, 20,
8, 20, 100, 135, 2, True, 4, "Bottom", Structure, "Face6")
Rebar2.ViewObject.ShapeColor = (0.0, 0.0, 0.9)
Edition of the rebar
You can change the properties of the rebar with the following function
editBentShapeRebar(Rebar, f_cover, b_cover, l_cover, r_cover,
diameter, t_cover, bentLength, bentAngle, rounding, amount_spacing_check, amount_spacing_value, orientation,
structure=None, facename=None)
Rebar
is a previously createdBentShapeRebar
object.- The other parameters are the same as required by the
makeBentShapeRebar()
function. structure
andfacename
may be omitted so that the rebar stays in the original structure.
import BentShapeRebar
BentShapeRebar.editBentShapeRebar(Rebar, 50, 20, 20, 20,
12, 20, 100, 155, 2, True, 6, "Top")
BentShapeRebar.editBentShapeRebar(Rebar2, 50, 35, 20, 20,
12, 35, 100, 155, 2, True, 6, "Top")
Arch
- Elements: Wall, Structure, Roof, Window, Door, Stairs, Space, Frame, Equipment; Pipe, Pipe Connector; Schedule
- Reinforcements: Rebar; Straight Rebar, UShape Rebar, LShape Rebar, Bent Shape Rebar, Stirrup Rebar, Helical Rebar
- Panels: Panel, Panel Cut, Panel Sheet, Nest
- Materials: Material, Multi-Material
- Organization: Site, Reference, Building, Floor, Building Part, Section Plane
- Axes: Axis, Axes system, Grid
- Modification: Cut with plane, Add component, Remove component, Survey
- Utilities: Component, Clone component, Split Mesh, Mesh To Shape, Select non-solid meshes, Remove Shape, Close Holes, Merge Walls, Check, Ifc Explorer, Toggle IFC Brep flag, 3 Views from mesh, Create IFC spreadsheet, Toggle Subcomponents
- Additional: Preferences, Import-Export Preferences (IFC, DAE, OBJ, JSON, 3DS); Arch API
User documentation

- Installation: Windows, Linux, Mac; Getting started
- Basics: About FreeCAD, Workbenches, Preferences, Document structure, Interface Customization, Properties, Mouse Model; Tutorials
- Workbenches: Arch, Draft, FEM, Image, Inspection, Mesh, OpenSCAD, Part, PartDesign, Path, Plot, Points, Raytracing, Reverse Engineering, Robot, Ship, Sketcher, Spreadsheet, Start, Surface workbench, TechDraw, Test Framework, Web
- Scripting: Introduction to Python, FreeCAD scripting tutorial, FreeCAD Scripting Basics, How to install macros, Gui Command, Units Modules: Builtin modules, Workbench creation, Installing more workbenches Meshes: Mesh Scripting, Mesh Module Parts: The Part Module, Topological data scripting, PythonOCC, Mesh to Part Coin scenegraph: The Coin/Inventor scenegraph, Pivy Qt interface: PySide, Using the FreeCAD GUI, Dialog creation Parametric objects: Scripted objects Other: Code snippets, Line drawing function, Embedding FreeCAD, FreeCAD vector math library, Power users hub, Python, Macros, FreeCAD Scripting Basics, Topological data scripting