Arch Stairs/ro

THIS COMMAND IS PART OF THE INTEGRATED BIM WORKBENCH IN V1.0
This page has been updated for that version.

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

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

An Arch Stairs object shares the common properties and behaviors of all Arch Components.

Data

Segment and Parts

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)