Arch: Rebar Helical/Armătură elicoidală
Jump to navigation
Jump to search
Outdated translations are marked like this.
|
Menu location |
---|
Arch → Rebar tools |
Workbenches |
Arch |
Default shortcut |
None |
See also |
Arch Rebar |
This command is part of the Reinforcement AddOn, that you can install via menu Tools → Addons Manager |
Descriere
Instrumentul Helical Rebar permite utilizatorului să creeze o armătură elicoidală în elementul de structură.
The Helical 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 element structure
- Selectați orice fațetă a structurii
- Apoi selectați
Helix Rebar din uneltele pentru bare
- Va apărea un panou de sarcini î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 fie 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țeta 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
Taskview panel for the Arch Rebar Helical tool
Proprietăți
- DataSide Cover:distanța dintre armatură și fața curbată.
- DataTop Cover: Distanța dintre armătură din fața superioară a structurii.
- DataBottom Cover: distanța dintre barele din partea inferioară a structurii.
- Data Pitch: Pasul unei spirale este înălțimea unei singure rotiri helix, măsurată paralel cu axa spiralei.
- Data Diameter: Diametrul barei.
Scrip-Programare
Instrumentul Helical Rebar poate fi utilizat în macros și de la consola Python prin utilizarea următoarei funcției:
Rebar = makeHelicalRebar(s_cover, b_cover, diameter, t_cover, pitch, structure=None, facename=None)
- Adaugă un obiect Straight reinforcing bar la obiectul structural dat.
- Dacă nu este dată nici o structură și 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, Draft, Arch, HelicalRebar
Circle = Draft.makeCircle(radius=250)
Structure = Arch.makeStructure(Circle)
Structure.ViewObject.Transparency = 80
FreeCAD.ActiveDocument.recompute()
Rebar = HelicalRebar.makeHelicalRebar(10, 50, 8, 50, 50, structure, "Face2")
Edition of the rebar
You can change the properties of the rebar with the following function
editHelicalRebar(Rebar, s_cover, b_cover, diameter, t_cover, pitch, structure=None, facename=None)
Rebar
is a previously createdHelicalRebar
object.- The other parameters are the same as required by the
makeHelicalRebar()
function. structure
andfacename
may be omitted so that the rebar stays in the original structure.
import HelicalRebar
HelicalRebar.editHelicalRebar(Rebar, 20, 100, 20, 20, 100)
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