Arch Ventana

From FreeCAD Documentation
Revision as of 13:19, 24 May 2018 by Bitacovir (talk | contribs)

Arch Window

Ubicación en el Menú
Arquitectura → Ventana
Entornos de trabajo
Entorno de Arquitectura
Atajo de teclado por defecto
W I
Introducido en versión
-
Ver también
Arch Muro

Descripción

La ventana es un objeto base para todo tipo de objetos "incrustables", como ventanas, puertas, etc. Está diseñado para ser independiente o estar "alojado" dentro de otro componente, como una pared. Tiene su propia geometría, que puede estar compuesta por varios componentes sólidos (el marco de la ventana o los paneles internos, por ejemplo), y también define un volumen que se restará a los objetos anfitriones, para crear una apertura.

Los objetos de ventana se basan en objetos 2D cerrados, como Draft Rectangles o Sketches, que se utilizan para definir sus componentes internos. Por lo tanto, el objeto base 2D debe contener varias lineas cerradas, que se pueden combinar para formar paneles rellenos (una linea) o marcos (varias lineas).

La herramienta de ventana presenta varios preajustes, que permiten crear puertas o ventanas completas a partir de una lista de parámetros, sin la necesidad de crear manualmente los objetos y componentes 2D básicos. Pero también se pueden crear ventanas desde cero, dibujando primero un objeto base en 2D.

En la imagen superior, una ventana es construida a partir de un Rectángulo, luego insertada en un Muro.

La imagen de arriba muestra una ventana más compleja que se está construyendo encima de un boceto. Al ingresar al modo de edición de la ventana, puede crear diferentes componentes, establecer su grosor y seleccionar y asignarles lineas del boceto.

Utilización

Usando un predefinido

  1. Optionally, select an Arch object. If no object is selected, the window will be inserted in the object under the mouse when placing the window.
  2. Press the Arch Window button, or press W then I keys
  3. Select one of the presets in the list
  4. Fill out the desired parameters
  5. Press the OK button

Creating from scratch

  1. Optionally, select a face on the Arch object where you want the window to be incuded
  2. Switch to the Sketcher Workbench
  3. Create a new sketch
  4. Draw one or more closed wires
  5. Close the sketch
  6. Switch back to the Arch Workbench
  7. Press the Arch Window button, or press W then I keys
  8. Enter Edit mode by double-clicking the window in the tree view, to adjust the window components

Presets

The following presets are available:

Building components

Windows can include 3 types of components: panels, frames and louvres. Panels and louvres are made from one closed wire, which gets extruded, while frames are made from 2 or more closed wire, where each one is extruded, then the smaller ones are subtracted from the biggest one. You can access, create, modify and delete components of a window in edit mode (double-click the window in the Tree view). The components have the following properties:

  • Name: A name for the component
  • Type: The type of component. Can be "Frame", "Glass panel", "Solid panel" or "Louvres"
  • Wires: A comma-separated list of wires the component is based on
  • Thickness: The extrusion thickness of the component
  • Z Offset: The distance between the component and its base 2D wire(s)
  • Hinge: This allows you to select an edge from the base 2D object, then set that edge as a hinge for this component and the next ones in the list
  • Opening mode: If you defined a hinge in this component or any other earlier in the list, setting the opening mode will allow the window to appear open or to display 2D opening symbols in plan or elevation.

Options

  • Windows share the common properties and behaviours of all Arch Components
  • If the Auto-includecheckbox on the Window creation task panel is unchecked, the window won't be inserted into any host object on creation.
  • Add a selected window to a wall by selecting both, then pressing the Arch Add button.
  • Remove a selected window from a wall by selecting the window, then pressing the Arch Remove button.
  • When using presets, it is often convenient to turn the "Near" Draft Snap on, so you can snap your window to an existing face.
  • The hole created by a window in its host object is determined by two properties: Hole Depth and Hole Wire (introduced in version 0.17). The Hole Wire number can be picked in the 3D view from the window's task panel available when double-clicking the window in the tree view
  • Windows can make use of Multi-Materials. The window will search in the attached Multi-Material for material layers with a same name for each of its window component, and use it if any is found. For example, a component named "OuterFrame" will search in the attached Multi-Material, for a material layer named "OuterFrame". If such material layer is found, its material will be attributed to the OuterFrame component. The thickness value of the material layer is disregarded.

Doors

Doors can be made easily with the window tool, you only need to draw the base of the inner wire touching the exterior wire like in the image below.

Door

Openings

Doors and windows can appear partially or fully open in the 3D model, or can display opening symbols both in plan and/or elevation. Consequently, these will also appear in extracted 2D views generated by Draft Shape2DView or TechDraw Workbench or Drawing Workbench. To obtain this, at least one of the window components must have a hinge and an opening mode defined (see the 'Building Components' section above). Then, using the Opening, Symbol Plan or Symbol Elevation properties, you can configure the appearance of the window:

A door showing from left to right the Symbol Plan, Symbol Elevation and Opening properties at work

Properties

  • DatosHeight: The height of this window
  • DatosWidth: The width of this window
  • DatosHole Depth: The depth of the hole created by this window in its host object
  • DatosHole Wire: The number of the wire from the base object that is used to create a hole in the host object of this window. This value can be set graphically when double-clicking the window in the tree view. Setting a value of 0 will make the window automatically pick its biggest wire for the hole.
  • DatosWindow Parts: A list of strings (5 strings per component, setting the component options above)
  • DatosLouvre Width: If any of the components is set to "Louvres", this property defines the size of the louvre elements
  • DatosLouvre Spacing: If any of the components is set to "Louvres", this property defines the spacing between the louvre elements
  • DatosOpening: All components that have their opening mode set, and provided a hinge is defined in them or in an earlier component in the list, will appear open by a percentage defined by this value
  • DatosSymbol Plan: Shows 2D opening symbol in plan
  • DatosSymbol Elevation: Shows 2D opening symbol in elevation

Scripting

The Window tool can by used in macros and from the python console by using the following function:

makeWindow (obj,[name])
creates a window based on the given object

Example:

import Draft, Arch
rect = Draft.makeRectangle(length=2,height=4)
Arch.makeWindow(rect)