Arch Stairs/it: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 10: Line 10:
}}
}}


<div class="mw-translate-fuzzy">
{{GuiCommand/it
{{GuiCommand/it
|Name=Arch_Stairs
|Name=Arch Stairs
|Name/it=Scala
|Name/it=Scala
|Workbenches=[[Arch_Workbench/it|Arch]]
|MenuLocation=Arch → Scala
|MenuLocation=Arch → Scala
|Workbenches=[[Arch_Workbench/it|Arch]]
|Shortcut={{KEY|S}} {{KEY|R}}
|Shortcut={{KEY|S}} {{KEY|R}}
|SeeAlso=[[Arch Structure/it|Struttura]], [[Arch Equipment/it|Arredo]]
|Version=0.14
|Version=0.14
|SeeAlso=[[Arch_Structure/it|Struttura]], [[Arch_Equipment/it|Arredo]]
}}
}}
</div>


<span id="Description"></span>
<span id="Description"></span>

Revision as of 16:37, 17 November 2023

Scala

Posizione nel menu
Arch → Scala
Ambiente
Arch
Avvio veloce
S R
Introdotto nella versione
0.14
Vedere anche
Struttura, Arredo

Descrizione

Lo strumento Scale consente di creare automaticamente i diversi tipi di scale. Al momento, sono supportate solo le scale dritte (con o senza pianerottolo) sono supportati. Le scale possono essere costruite da zero, o da una linea dritta, nel qual caso le scale seguono la linea. Se la linea non è orizzontale, ma è inclinata verticalmente, anche le scale seguono la sua pendenza.

Vedere in Stairs entry in wikipedia la definizione dei diversi termini usati per descrivere le parti delle scale.

Due scale, uno con una struttura massiccia e un pianerottolo, e l'altra con un solo montante.

Opzioni

  • Gli elementi Scala condividono le proprietà e i comportamenti comuni di tutti i Componenti Arch

Utilizzo

Utilizzo

  • Premere il pulsante Scala, oppure i tasti S, R.
  1. Adeguare le proprietà desiderate. Alcune parti delle scale potrebbero non apparire immediatamente se una qualsiasi delle proprietà lo rende impossibile. Ad esempio, potrebbe non apparire la struttura se il suo spessore è impostato pari a 0.

Complex stairs based on a selection of lines and wired as shown on the left.
In red the wires used for the landings at Z=1500mm, Z=3000mm and Z=4500mm.
In black the lines connecting them used for the flights.

Proprietà

Dati

Segment and Parts

  • DatiAbs Top (Vector): (read-only) The absolute top level the stairs lead to.
  • DatiLast Segment (Link): Last segment (flight or landing) of an Arch Stairs connecting to this segment. The start level of the stairs will be the end level of this last segment.
  • DatiOutline Left (VectorList): The left outline of the stairs.
  • DatiOutline Left All (VectorList): The left outline of all segments of the stairs.
  • DatiOutline Right (VectorList): The right outline of the stairs.
  • DatiOutline Right All (VectorList): The right outline of all segments of the stairs.
  • DatiRailing Height Left (Length): Height of the left railing of the stairs or landing.
  • DatiRailing Height Right (Length): Height of the right railing of the stairs or landing.
  • DatiRailing Left (LinkHidden): The left railing object. introduced in version 0.20: Property type updated from String to LinkHidden.
  • DatiRailing Offset Left (Length): Offset of the left railing from the edge of the stairs or landing.
  • DatiRailing Offset Right (Length): Offset of the right railing from the edge of the stairs or landing.
  • DatiRailing Right (LinkHidden): The right railing object. introduced in version 0.20: Property type updated from String to LinkHidden.

Stairs

  • DatiAlign: L'allineamento delle scale sulla loro linea base, se applicabile.
  • DatiBase: La linea base delle scale, se presente.
  • DatiHeight: Interpiano. L'altezza totale delle scale, se non sono basate su una linea base o se la linea base è orizzontale.
  • DatiLength: La lunghezza totale delle scale se non è definita una linea base.
  • DatiWidth: La larghezza della scala

Base

  • DatiLabel: nome
  • DatiPlacement: posizionamento del punto base della scala (angolo anteriore sinistro del primo scalino)

Steps

  • DatiNosing: lunghezza di sovrapposizione degli scalini
  • DatiNumber of risers: numero di scalini, numero di alzate
  • DatiRiser Height: alzata, altezza del gradino
  • DatiTread Depth: pedata, larghezza del gradino
  • DatiTread Thickness: spessore degli scalini (aggiunto verso il basso)

Structure

  • DatiLandigs: pianerottoli
  • DatiStringer Offset: distanza tra il bordo degli scalini e la struttura di sostegno
  • DatiStringer Width: larghezza della struttura di sostegno
  • DatiStructure: tipo di struttura della scala
  • DatiStructure...: dimensione per la struttura massiccia, piena
  • DatiWinders: gradini a ventaglio

Limitazioni

  • Al momento sono disponibili solo scale dritte
  • Vedere nel forum per scale circolari.
  • Per seguire l'evoluzione dello strumento consultare la pagina Arch Stairs nel forum

Script

Vedere anche: API di Arch e Nozioni di base sugli script di FreeCAD.

Le Scale possono essere create con le macro e dalla console Python tramite la seguente funzione:

Stairs = makeStairs(baseobj=None, length=None, width=None, height=None, steps=None, name="Stairs")
  • Crea un oggetto Stairs da un dato baseobj.
  • Se non viene fornito il baseobj, usa length, width, height, e steps, per costruire un oggetto solido.

Esempio:

import Arch

Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14)