Arch CurtainWall/es

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

Arquitectura Muro Cortina

Ubicación en el Menú
Arquitectura → MuroCortina
Entornos de trabajo
Arquitectura
Atajo de teclado por defecto
C W
Introducido en versión
0.19
Ver también
Arquitectura Muro, Arquitecturah Rejilla

Descripción

Esta herramienta crea un Muro cortina subdividiendo una cara base en caras cuadrangulares, creando luego parteluces verticales en los bordes verticales, parteluces horizontales en los bordes horizontales y rellenando los espacios entre parteluces con paneles.

Los Muros Cortina pueden ser creados a partir de cualquier tipo de objeto existente, en cuyo caso todas las caras del objeto serán subdivididas. Por lo tanto, funciona mejor si se utiliza con un objeto que sólo tiene una cara. Por lo general, primero debe crear una cara, preferiblemente delimitada por exactamente 4 aristas, que represente el área que desea rellenar con un muro cortina, y luego aplicar la herramienta.

Los muros cortina también pueden construirse a partir de un objeto lineal, como una línea, un arco o una polilínea, como la herramienta normal muro.

Las caras que tienen doble curvatura, o las caras con más de 4 aristas también funcionarán, pero el resultado es menos predecible.

Las caras se dividirán en facetas cuadrangulares. Si los 4 puntos de la faceta son coplanares, se crea una faceta cuadrada. Si no, se divide en dos triángulos y se añade un parteluz diagonal.

En caso de que necesites una subdivisión no regular, también es posible construir tu propio objeto subdividido, por ejemplo usando Arch Grid/es, y establecer las subdivisiones verticales y horizontales del muro cortina a 1.

También puede utilizar la herramienta de muro cortina sin ningún objeto seleccionado, en cuyo caso podrá dibujar una línea de base, que será extruida verticalmente para formar la cara sobre la que se construirá el muro cortina.

Utilización

Dibujar un muro cortina desde cero

  1. Make sure nothing is selected
  2. There are several ways to invoke the tool:
    • Press the Curtain Wall button.
    • Select the 3D/BIM → Curtain Wall option from the menu.
    • Use the keyboard shortcut: C then W.
  3. Click a first point on the 3D view, or type coordinates.
  4. Click a second point on the 3D view, or type coordinates.
  5. Adjust needed properties.

Creating a curtain wall from a selected object

  1. Select one or more base geometry objects (Draft object, sketch, etc).
  2. Invoke the tool as described above.
  3. Adjust needed properties.

Opciones

Propiedades

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

Hacer paredes con marco

Curtain walls are convenient to use in conjunction with walls to create frame walls (walls where an inner, structural layer is made of frames, usually wooden or metal, instead of an homogeneous material such as concrete or brick).

The procedure described below creates a wall and a curtain wall based on a same baseline, then gives the wall a multi-material which leaves an empty space, where the curtain wall is placed:

  1. Create a normal Arch Wall, either by clicking two points of from an existing linear object
  2. Select the base object of the newly created arch wall
  3. Press the CurtainWall button, or press the C then W keys to create a curtain wall from the same baseline as the wall
  4. Make sure both the wall and curtain wall have the same Height
  5. Set the number of horizontal sections of the curtain wall to zero if you wish only vertical frames
  6. Set the desired horizontal mullion width and horizontal mullion height (or use a mullion profile)
  7. Prepare two (or more) materials, one for the panels, one for the void where the frame will be
  8. Make one multi-material, using one layer of the panel material, one layer of the void material with a negative width value (which will make it not drawn) corresponding to the vertical mullion height of the curtain wall, and another layer of panel material
  9. Attribute the multi-material to the wall
  10. Set the Host property of the curtain wall to the wall we created in first point

Scripting

See also: Arch API and FreeCAD Scripting Basics.

The Curtain wall tool can be used in macros and from the Python console by using the following function:

MyCurtainWall = makeCurtainWall(baseobj)

Ejemplo:

import FreeCAD, Draft, Arch

p1 = FreeCAD.Vector(0, 0, 0)
p2 = FreeCAD.Vector(2000, 0, 0)
baseline = Draft.makeLine(p1, p2)
baseface = FreeCAD.ActiveDocument.addObject('Part::Extrusion','Extrusion')
baseface.Base = baseline
baseface.DirMode = "Normal"
baseface.LengthFwd = 2000
curtainwall = Arch.makeCurtainWall(baseface)
curtainWall.VerticalSections = 6
FreeCAD.ActiveDocument.recompute()