Arch Escaleras

From FreeCAD Documentation
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

Ubicación en el Menú
Arch → Stairs
Entornos de trabajo
Arch
Atajo de teclado por defecto
S R
Introducido en versión
-
Ver también
Ninguno

Description

Descripción

La herramienta de escaleras le permite construir automáticamente varios tipos de escaleras. Por el momento, solo se admiten escaleras rectas (con o sin un rellano central). Las escaleras se pueden construir desde cero, o desde una recta line, en cuyo caso las escaleras siguen la línea. Si la línea no es horizontal, pero tiene una inclinación vertical, las escaleras también seguirán su pendiente.

Consulte la entrada Stairs en wikipedia para obtener una definición de los diferentes términos utilizados para describir las partes de las escaleras.

En la imagen de arriba, se crearon dos escaleras, una con una estructura masiva y un rellano, y otra con un único larguero.

Opciones

  • Las escaleras comparten las propiedades y comportamientos comunes de todos Arch Components

Usage

Utilización

Presiona el botón Escaleras, o pulsa las teclas S, R

  1. Ajuste las propiedades deseadas. Algunas partes de las escaleras, como la estructura, pueden no aparecer inmediatamente, ya que alguna de las propiedades lo hace imposible, como un grosor de estructura de 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.

Propiedades

Data

Segment and Parts

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

Stairs

  • DATOSAlign: La alineación de estas escaleras en su línea base, si corresponde.
  • DATOSBase: La línea base de estas escaleras, si hay alguna.
  • DATOSHeight: La altura total de estas escaleras, si no se basa en una línea de base, o la línea de base es horizontal.
  • DATOSLength: La longitud total de estas escaleras si no se define una línea de base.
  • DATOSWidth: El ancho de estas escaleras.

Escalones

  • DATOSNosing: El tamaño de la nariz.
  • DATOSNumber of Steps: La cantidad de escalones (peralte) en estas escaleras.
  • DATOSRiser Height: La altura de los peraltes
  • DATOSTread Depth: La profundidad de las huellas.
  • DATOSTread Thickness: El grosor de las huellas.

Estructura

  • DATOSLandings: El tipo de rellanos.
  • DATOSStringer Offset: El desplazamiento entre el borde de las escaleras y la estructura.
  • DATOSStringer Width: El ancho de los largueros.
  • DATOSStructure: El tipo de estructura de estas escaleras.
  • DATOSStructure Thickness: El espesor de la estructura.
  • DATOSWinders: Tipo de escalones no rectangulares

Limitations

Limitaciones

  • No disponible antes de la versión 0.14 de FreeCAD
  • Solo escaleras rectas están disponibles en este momento
  • Ver la entrada foro para las escaleras en círculo.
  • Ver el anuncio del foro.

Scripting

Programación

Las escaleras se pueden crear a partir de scripts de Python y macros utilizando la siguiente función:

Stairs = makeStairs(baseobj=None, length=None, width=None, height=None, steps=None, name="Stairs")
  • Crea un objeto de escaleras con los atributos dados.
  • Devuelve el nuevo objeto de escaleras.

Ejemplo:

import Arch

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