Arch: Armatura a U

From FreeCAD Documentation
Revision as of 09:27, 11 February 2018 by Renatorivo (talk | contribs) (Created page with "# Creare un elemento Struttura # Selezionare una qualsiasi faccia della struttura # Selezionare {{KEY|16px Armatura a U}} dagl...")

Armatura a U

Posizione nel menu
Arch → Strumenti armatura
Ambienti
Arch
Avvio veloce
None
Vedere anche
Armatura, Armatura dritta, Armatura a L, Armatura sagomata, Staffe armatura, Armatura elicoidale
 
Questo comando fa parte del Addon Reinforcement, che è possibile installare tramite il menu Strumenti → Addons Manager

Descrizione

Lo strumento Armatura a U consente all'utente di creare una barra di rinforzo piegata a U (due ganci) nell'elemento strutturale.

Utilizzo

  1. Creare un elemento Struttura
  2. Selezionare una qualsiasi faccia della struttura
  3. Selezionare Armatura a U dagli strumenti Armatura
  4. Sul lato sinistro dello schermo appare un pannello delle azioni come il seguente
  5. Selezionare l'orientamento desiderato
  6. Fornire i dati per front cover, right side cover, left side cover, bottom cover, top cover, rounding factor and diameter of the rebar
  7. Selezionare la modalità di distribuzione per la quantità e per la spaziatura
  8. Se la spaziatura è selezionata, l'utente può anche optare per una spaziatura personalizzata
  9. Cliccare sulla faccia selezionata serve per verificare o modificare la faccia per la distribuzione dell'armatura
  10. Cliccare OK o Apply per generare l'armatura
  11. Cliccare Cancel per uscire dal pannello delle azioni

Properties

  • DatiOrientation: It decides the orientation of the rebar (like a bottom, top, right and left).
  • DatiFront Cover: The distance between rebar and selected face.
  • DatiRight Cover: The distance between the right end of the rebar to right face of the structure.
  • DatiLeft Cover: The distance between the left end of the rebar to the left face of the structure.
  • DatiBottom Cover: The distance between rebar from the bottom face of the structure.
  • DatiTop Cover: The distance between rebar from the top face of the structure.
  • DatiRounding: A rounding value to be applied to the corners of the bars, expressed in times the diameter.
  • DatiAmount: The amount of rebars.
  • DatiSpacing: The distance between the axes of each bar.

Scripting

The UShape Rebar tool can by used in macros and from the python console by using the following function:

makeUShapeRebar(FrontCover, BottomCover, RightCover, LeftCover, Diameter, Topcover, Rounding, AmountSpacingCheck, AmountSpacingValue, Orientation, Structure, Facename)
  • The UShape Rebar have four different orientations:
    • Bottom
    • Top
    • Right
    • Left
  • Adds a UShape reinforcing bar object to the given structural object.
  • If no Structure and Facename is given, it will take user selected face as input.
  • Returns the new Rebar object.

Example: Creating UShape rebar.

import Arch, UShapeRebar
structure = Arch.makeStructure(length=1000.0, width=1000.0, height=400.0)
structure.ViewObject.Transparency = 80
FreeCAD.ActiveDocument.recompute()
rebar = UShapeRebar.makeUShapeRebar(20, 20, 20, 20, 8, 20, 4, True, 10, "Bottom", structure, "Face1")

Changing properties of UShape rebar.

import UShapeRebar
UShapeRebar.editUShapeRebar(rebar, 25, 25, 25, 25, 16, 25, 2, True, 15, "Top")