Difference between revisions of "Arch Floor/es"
Renatorivo (talk | contribs) (Created page with "{{GuiCommand/es|Name=Arch Floor|Workbenches=Entorno de Arquitectura|MenuLocation=Arquitectura -> Piso|Shortcut=F L|SeeAlso= Arch Celda}}") |
(Updating to match new version of source page) |
||
(23 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | {{GuiCommand/es|Name=Arch Floor|Workbenches=[[Arch Module/es|Entorno de Arquitectura]]|MenuLocation=Arquitectura | + | <languages/> |
+ | {{docnav|[[Arch_Rebar|Rebar]]|[[Arch_BuildingPart|Building Part]]|[[Arch_Module|Arch]]|IconL=Arch_Rebar.svg |IconC=Workbench_Arch.svg |IconR=Arch_BuildingPart.svg}} | ||
+ | |||
+ | <div class="mw-translate-fuzzy"> | ||
+ | {{GuiCommand/es|Name=Arch Floor|Name/es=Arch Floor|Workbenches=[[Arch Module/es|Entorno de Arquitectura]]|MenuLocation=Arquitectura → Piso|Shortcut=F L|SeeAlso=[[Arch Cell/es| Arch Celda]]}} | ||
+ | </div> | ||
+ | |||
+ | ==Descripción== | ||
+ | |||
+ | <div class="mw-translate-fuzzy"> | ||
+ | El Piso de Arquitectura es un tipo especial de [[Arch Cell/es|Celda]] que tiene un par de propiedades adicionales particularmente ajustadas para la construcción de pisos. En particular, tienen una propiedad de altura, que sus objetos descendientes ([[Arch Wall/es|muros]] y [[Arch Structure/es|estructuras]]) pueden utilizar para ajustar su altura automáticamente | ||
+ | </div> | ||
− | + | Starting from FreeCAD 0.18, the Arch Floor is derived entirely from the [[Arch BuildingPart|Arch BuildingPart]] object, which is a general container to organize a building model not limited to floors or storeys. Older Floor objects can be converted to the new type by right clicking on them and choosing {{incode|Convert to BuildingPart}}. | |
− | + | ==Como utilizar== | |
− | = | + | <div class="mw-translate-fuzzy"> |
+ | # Opcionalmente, seleccione uno o más objetos para incluir en su nuevo piso | ||
+ | # Presione el botón {{KEY|[[Image:Arch Floor.png|16px]] '''Arch Floor'''}} o presione las teclas {{KEY|F}} y {{KEY|L}} | ||
+ | </div> | ||
− | + | ==Opciones== | |
− | |||
− | = | + | <div class="mw-translate-fuzzy"> |
+ | * Después de la creación de un piso, puedes añadirle más objetos arrastrando y soltándolos en la vista en árbol o utilizando la herramienta [[Image:Arch Add.png|16px]] [[Arch Add/es|Añadir]] | ||
+ | * Puedes eliminar objetos de un piso arrastrando y soltándolos fuera en la vista de árbol o utilizando la herramienta [[Image:Arch Remove.png|16px]] [[Arch Remove/es|Remover]] | ||
+ | </div> | ||
− | + | ==Propiedades== | |
− | |||
− | + | An Arch Floor object shares all properties from an [[Arch BuildingPart|Arch BuildingPart]], with the {{PropertyData|Ifc Role}} set to {{incode|"Building Storey"}}. | |
− | + | <div class="mw-translate-fuzzy"> | |
+ | ==Programación== | ||
+ | </div> | ||
− | == | + | <div class="mw-translate-fuzzy"> |
+ | La herramientas piso se puede utilizar en [[macros/es|macros]] y desde la consola de Python utilizando las siguiente funcion: | ||
+ | </div> | ||
+ | {{Code|code= | ||
+ | Floor = makeFloor(objectslist=None, baseobj=None, name="Floor") | ||
+ | }} | ||
− | + | <div class="mw-translate-fuzzy"> | |
− | < | + | :Crea un piso incluyendo los objetos de la lista dada. |
− | + | </div> | |
− | </ | ||
− | |||
− | + | Ejemplo: | |
− | + | {{Code|code= | |
− | + | import FreeCAD, Draft, Arch | |
− | + | ||
− | </ | + | p1 = FreeCAD.Vector(0, 0, 0) |
− | < | + | p2 = FreeCAD.Vector(2000, 0, 0) |
+ | baseline = Draft.makeLine(p1, p2) | ||
+ | baseline2 = Draft.makeLine(p1, -1*p2) | ||
+ | |||
+ | Wall1 = Arch.makeWall(baseline, length=None, width=150, height=2000) | ||
+ | Wall2 = Arch.makeWall(baseline2, length=None, width=150, height=1800) | ||
+ | FreeCAD.ActiveDocument.recompute() | ||
+ | |||
+ | Floor = Arch.makeFloor([Wall1, Wall2]) | ||
+ | |||
+ | Building = Arch.makeBuilding([Floor]) | ||
+ | Site = Arch.makeSite(Building) | ||
+ | FreeCAD.ActiveDocument.recompute() | ||
+ | }} | ||
+ | <div class="mw-translate-fuzzy"> | ||
+ | [[Category:Arch/es]] | ||
+ | </div> | ||
+ | |||
+ | {{Arch Tools navi}} | ||
+ | |||
+ | {{Userdocnavi}} |
Revision as of 08:16, 5 May 2019
Ubicación en el Menú |
---|
Arquitectura → Piso |
Entornos de trabajo |
Entorno de Arquitectura |
Atajo de teclado por defecto |
F L |
Introducido en versión |
- |
Ver también |
Arch Celda |
Descripción
El Piso de Arquitectura es un tipo especial de Celda que tiene un par de propiedades adicionales particularmente ajustadas para la construcción de pisos. En particular, tienen una propiedad de altura, que sus objetos descendientes (muros y estructuras) pueden utilizar para ajustar su altura automáticamente
Starting from FreeCAD 0.18, the Arch Floor is derived entirely from the Arch BuildingPart object, which is a general container to organize a building model not limited to floors or storeys. Older Floor objects can be converted to the new type by right clicking on them and choosing Convert to BuildingPart
.
Como utilizar
Opciones
Propiedades
An Arch Floor object shares all properties from an Arch BuildingPart, with the DataIfc Role set to "Building Storey"
.
Programación
La herramientas piso se puede utilizar en macros y desde la consola de Python utilizando las siguiente funcion:
Floor = makeFloor(objectslist=None, baseobj=None, name="Floor")
- Crea un piso incluyendo los objetos de la lista dada.
Ejemplo:
import FreeCAD, Draft, Arch
p1 = FreeCAD.Vector(0, 0, 0)
p2 = FreeCAD.Vector(2000, 0, 0)
baseline = Draft.makeLine(p1, p2)
baseline2 = Draft.makeLine(p1, -1*p2)
Wall1 = Arch.makeWall(baseline, length=None, width=150, height=2000)
Wall2 = Arch.makeWall(baseline2, length=None, width=150, height=1800)
FreeCAD.ActiveDocument.recompute()
Floor = Arch.makeFloor([Wall1, Wall2])
Building = Arch.makeBuilding([Floor])
Site = Arch.makeSite(Building)
FreeCAD.ActiveDocument.recompute()
- Elements: Wall, Structure, Roof, Window, Door, Stairs, Space, Frame, Equipment; Pipe, Pipe Connector; Schedule
- Reinforcements: Rebar; Straight Rebar, UShape Rebar, LShape Rebar, Bent Shape Rebar, Stirrup Rebar, Helical Rebar
- Panels: Panel, Panel Cut, Panel Sheet, Nest
- Materials: Material, Multi-Material
- Organization: Site, Reference, Building, Floor, Building Part, Section Plane
- Axes: Axis, Axes system, Grid
- Modification: Cut with plane, Add component, Remove component, Survey
- Utilities: Component, Clone component, Split Mesh, Mesh To Shape, Select non-solid meshes, Remove Shape, Close Holes, Merge Walls, Check, Ifc Explorer, Toggle IFC Brep flag, 3 Views from mesh, Create IFC spreadsheet, Toggle Subcomponents
- Additional: Preferences, Import Export Preferences (IFC, DAE, OBJ, JSON, 3DS), IfcOpenShell, IfcPlusPlus; Arch API

- Getting started
- Installation: Download, Windows, Linux, Mac, Additional components, Docker, AppImage, Ubuntu Snap
- Basics: About FreeCAD, Interface, Mouse navigation, Selection methods, Object name, Preferences, Workbenches, Document structure, Properties; Help FreeCAD, Donate
- Help: Tutorials, Video tutorials
- Workbenches: Std Base; Arch, Draft, FEM, Image, Inspection, Mesh, OpenSCAD, Part, PartDesign, Path, Points, Raytracing, Reverse Engineering, Sketcher, Spreadsheet, Start, Surface, TechDraw, Test Framework, Web
- Deprecated or unmaintained workbenches: Complete, Drawing, Robot
- Hubs: User hub, Power users hub, Developer hub