Reinforcement LShapeRebar/it: Difference between revisions

From FreeCAD Documentation
(Created page with "Lo strumento {{KEY|16px Armatura a L}} può essere usato nelle macro e dalla console python utilizzando la seguente funzione:")
(Created page with "{{Code|code= makeLShapeRebar(FrontCover, BottomCover, LeftCover, RightCover, Diameter, TopCover, Rounding, AmountSpacingCheck, AmountSpacingValue, orientation, Structure, Face...")
Line 40: Line 40:
makeLShapeRebar(FrontCover, BottomCover, LeftCover, RightCover, Diameter, TopCover, Rounding, AmountSpacingCheck, AmountSpacingValue, orientation, Structure, Facename)
makeLShapeRebar(FrontCover, BottomCover, LeftCover, RightCover, Diameter, TopCover, Rounding, AmountSpacingCheck, AmountSpacingValue, orientation, Structure, Facename)
}}
}}
* L'armatura a L può avere quattro diversi orientamenti:
* The LShape Rebar have four different orientations:
** Bottom Right
** Bottom Right
** Bottom Left
** Bottom Left
** Top Right
** Top Right
** Top Left
** Top Left
* Aggiunge un oggetto armatura UShape all'oggetto strutturale specificato.
* Adds a LShape reinforcing bar object to the given structural object.
* If no Structure and Facename is given, it will take user selected face as input.
* Se Structure e Facename non sono fornite, prende come input la faccia selezionata dall'utente.
* Here CoverAlong argument is having type tuple.
* Here CoverAlong argument is having type tuple.
* Restituisce il nuovo oggetto Rebar.
* Returns the new Rebar object.


Example:
Example:

Revision as of 09:36, 11 February 2018

Armatura a L

Posizione nel menu
Arch → Strumenti armatura
Ambienti
Arch
Avvio veloce
None
Vedere anche
Armatura, Armatura dritta, Armatura a U, 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 L consente all'utente di creare una barra di rinforzo piegata a L (un gancio) nell'elemento strutturale.

Utilizzo

  1. Creare un elemento Struttura
  2. Selezionare una qualsiasi faccia della struttura
  3. Selezionare Armatura a L 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

Proprietà

  • DatiOrientation: Decide l'orientamento dell'armatura (es. verso il basso, verso l'alto, a destra o a sinistra).
  • DatiFront Cover: La distanza tra l'armatura e la faccia selezionata. Copriferro anteriore
  • DatiRight Cover: La distanza tra l'estremità destra della barra di destra e la faccia destra della struttura. Copriferro destro
  • DatiLeft Cover: La distanza tra l'estremità sinistra della barra di sinistra e la faccia sinistra della struttura. Copriferro sinistro
  • DatiBottom Cover: La distanza tra l'armatura e la parte inferiore della struttura. Copriferro inferiore
  • DatiTop Cover: La distanza tra l'armatura e la parte superiore della struttura. Copriferro superiore
  • DatiRounding: Il raggio di curvatura da applicare agli angoli delle barre, espresso quantità di diametro delle barre.
  • DatiAmount: La quantità di barre.
  • DatiSpacing: La distanza tra gli assi di ogni barra.

Script

Lo strumento Armatura a L può essere usato nelle macro e dalla console python utilizzando la seguente funzione:

makeLShapeRebar(FrontCover, BottomCover, LeftCover, RightCover, Diameter, TopCover, Rounding, AmountSpacingCheck, AmountSpacingValue, orientation, Structure, Facename)
  • L'armatura a L può avere quattro diversi orientamenti:
    • Bottom Right
    • Bottom Left
    • Top Right
    • Top Left
  • Aggiunge un oggetto armatura UShape all'oggetto strutturale specificato.
  • Se Structure e Facename non sono fornite, prende come input la faccia selezionata dall'utente.
  • Here CoverAlong argument is having type tuple.
  • Restituisce il nuovo oggetto Rebar.

Example: Creating LShape rebar.

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

Changing properties of LShape rebar.

import LShapeRebar
LShapeRebar.editLShapeRebar(50, 50, 20, 20, 8, 20, 2, True, 5, "Top Left")