Arch: Rebar LShape/Armătura în L
Jump to navigation
Jump to search
Outdated translations are marked like this.
poziția meniului |
---|
Arch → Rebar tools |
Workbenches |
Arch, BIM |
scurtătură |
nici unul |
Prezentat în versiune |
0.17 |
A se vedea, de asemenea, |
Bent Rebar, Rebar |
Descriere
Instrumentul LShape Rebar permite utilizatorului să creeze o armătură LShape reinforcing bar în elementele structurale.
The LShape 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
- Create a structure element
- Select any face of the structure
- Then select
LShape Rebar from the rebar tools
- A task panel will pop-out on the left side of the screen as shown below
- Select the desired orientation
- Give the inputs like front cover, left side cover, right side cover, bottom cover, top cover, rounding and diameter of the rebar
- Select the mode of distribution either amount or spacing
- If spacing is selected, a user can also opt for custom spacing
- Pick selected face is used to verify or change the face for rebar distribution
- Click OK or Apply to generate the rebars
- Click Cancel to exit the task panel
Taskview panel for the Arch Rebar LShape tool
Proprietăți
- DataOrientation: Stabilește orientarea armăturii (ca de ex jos, sus, dreapta ș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.
- DataRounding: o valoarea a racordării de aplicat la colțutile barelor , exprimată în raport cu diametrul acestora.
- DataAmount: Cantitatea de armătură
- DataSpacing: Distanța dintre acele fiecărei bare.
Scrip-Programare
The LShape Rebar tool can by used in macros and from the python console by using the following function:
Rebar = makeLShapeRebar(f_cover, b_cover, l_cover, r_cover,
diameter, t_cover, rounding, amount_spacing_check, amount_spacing_value, orientation="Bottom Left",
structure=None, facename=None):
- O armătură tip LShape Rebar are patru orientări diferite:
- Bottom Right
- Bottom Left
- Top Right
- Top Left
- Adaugă obiectul LShape reinforcing bar la obiectul 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, LShapeRebar
Structure = Arch.makeStructure(length=1000, width=1000, height=400)
Structure.ViewObject.Transparency = 80
FreeCAD.ActiveDocument.recompute()
Rebar = LShapeRebar.makeLShapeRebar(50, 20, 20, 20,
8, 50, 4, True, 6, "Bottom Left", Structure, "Face4")
Rebar.ViewObject.ShapeColor = (0.9, 0.0, 0.0)
Rebar2 = LShapeRebar.makeLShapeRebar(50, 50, 20, 20,
8, 50, 4, True, 6, "Bottom Left", 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
editLShapeRebar(Rebar, f_cover, b_cover, l_cover, r_cover,
diameter, t_cover, rounding, amount_spacing_check, amount_spacing_value, orientation,
structure=None, facename=None)
Rebar
is a previously createdLShapeRebar
object.- The other parameters are the same as required by the
makeLShapeRebar()
function. structure
andfacename
may be omitted so that the rebar stays in the original structure.
import LShapeRebar
LShapeRebar.editLShapeRebar(Rebar, 50, 50, 20, 20,
12, 50, 6, True, 5, "Top Right")
LShapeRebar.editLShapeRebar(Rebar2, 50, 50, 20, 20,
12, 70, 6, True, 5, "Top Right")
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