Arch: Stairs/Scări

From FreeCAD Documentation
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
This page is a translated version of the page Arch Stairs and the translation is 13% complete.
Outdated translations are marked like this.

Arch Stairs

poziția meniului
Arch → Stairs
Ateliere
Arch
scurtătură
S R
Prezentat în versiune
0.14
A se vedea, de asemenea,
Arch Structure/ro, Arch Equipment/ro

Description

Descriere

Instrumentul Scara vă permite să construiți automat mai multe tipuri de scări. În prezent, sunt suportate doar scările drepte (cu sau fără odihnă centrală). Scările pot fi construite de la zero sau dintr-o linie linie, caz în care scările urmează linia. Dacă linia nu este orizontală, dar are o înclinație verticală, scările vor urma și ele această pantă.

A se vedea Stairs entry in wikipedia pentru o definiție a diferitor termeni utilizați pentru a descrie piese/părți ale scărilor. (pentru liMba română avem https://www.spatiulconstruit.ro/ghid-de-constructii/scari-notiuni-generale-clasificari/9 )

În imaginea de mai suse, două scări au fost create, una cu o structură masivă și o odihnă, alta cu un singur vang central.

Opţiuni

  • Scările partajează proprietățile și comportamentele comune tuturor Arch Components

Usage

Cum se folosește

  1. Apăsați butonul Arch Stairs button, sau apăsați testele S, R
  2. Adjust the desired properties. Some parts of the stairs, such as the structure, might not appear immediately, if any of the properties makes it impossible, such as a structure thickness of 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ăți

Data

Segment and Parts

  • DateAbs Top (Vector): (read-only) The absolute top level the stairs lead to.
  • DateLast 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.
  • DateOutline Left (VectorList): The left outline of the stairs.
  • DateOutline Left All (VectorList): The left outline of all segments of the stairs.
  • DateOutline Right (VectorList): The right outline of the stairs.
  • DateOutline Right All (VectorList): The right outline of all segments of the stairs.
  • DateRailing Height Left (Length): Height of the left railing of the stairs or landing.
  • DateRailing Height Right (Length): Height of the right railing of the stairs or landing.
  • DateRailing Left (LinkHidden): The left railing object. introduced in version 0.20: Property type updated from String to LinkHidden.
  • DateRailing Offset Left (Length): Offset of the left railing from the edge of the stairs or landing.
  • DateRailing Offset Right (Length): Offset of the right railing from the edge of the stairs or landing.
  • DateRailing Right (LinkHidden): The right railing object. introduced in version 0.20: Property type updated from String to LinkHidden.

Stairs

  • DateAlign: Alinerea acestor scări cu linia de bază, dacă se poate aplica.
  • DateBase: The baseline of these stairs, if any.
  • DateHeight: The total height of these stairs, if not based on a baseline, or the baseline is horizontal.
  • DateLength: The total length of these stairs if no baseline is defined.
  • DateWidth: Lățimea acestor scări.

Steps

  • DateNosing: Mărimea proeminenței treptei (nasul).
  • DateNumber of Steps: Numărul de trepte a scării.
  • DateRiser Height: Înălțimea contratreptei.
  • DateTread Depth: Adâncimea treptei.
  • DateTread Thickness: Grosimea treptelor.

Structure

  • DateLandings: Tipul odihnelor/palierelor.
  • DateStringer Offset: The offset between the border of the stairs and the structure.
  • DateStringer Width: Lățimea vangurilor/lonjeroanelor.
  • DateStructure: Tipul și structura acestor scări.
  • DateStructure Thickness: Grosimea structurii.
  • DateWinders: Tipul treptelor de schimbare a direcției (mai înguste pe o latură).

Limitations

Limitări

  • Instrumetnul este disponibil de la versiunea FreeCAD 0.14 sau una mai recentă
  • Momentan sunt disponibile doar scări drepte
  • Consultați intrarea forumului forum entry pentru scări circulare.
  • A se vedea forum announcement..

Scripting

Scrip-Programare

Stairs pot fi creat din scripturi Python și macros utilizând urmăotarea funcție:

Stairs = makeStairs(baseobj=None, length=None, width=None, height=None, steps=None, name="Stairs")
  • Creează obiecte tip cu atributele specificate.
  • Returnează scările ca pe un obiect nou.

Exempluː

import Arch

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