Arch Site

From FreeCAD Documentation
Revision as of 20:13, 7 March 2019 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

Arch Site

Меню прокату
Arch → Site
Верстаки
Arch
Ярлик за умовчанням
S I
Введено у версії
-
Дивись також
Arch Floor, Arch Building

Description

The Arch Site is a special object that combines properties of a standard FreeCAD group object and Arch objects. It is particularly suited for representing a whole project site, or terrain. In IFC-based architectural work, it is mostly used to organize your model, by containing building objects. The site is also used to manage and display a physical terrain, and can computes volumes of earth to be added or removed.

How to use

  1. Optionally, select one or more objects to be included in your new site.
  2. Press the Arch Site button, or press the S then I keys.

Options

  • After creating a site, you can add more objects to it by drag and dropping them in the Tree View or by using the Arch Add tool. This only determines which object is part of the given site, and has no effect on the terrain itself.
  • You can remove objects from a site by drag and dropping them out of it the Tree View or by using the Arch Remove tool
  • You can add a terrain object by editing the Site's ДаніTerrain property. The terrain must be an open shell or surface.
  • You can add volumes to be added or subtracted from the base terrain, by double-clicking the Site, and adding objects to its Subtractions or Additions groups. The objects must be solids.
  • The ДаніExtrusion Vector property can be used to solve some problems that can appear when working with subtractions and additions. In order to perform those additions/subtractions, the terrain surface is extruded into a solid, which is then appropriately unioned/subtracted. Depending on the terrain topology, this extrusion might fail with the default extrusion vector. You might therefore be able to remedy the problem by changing this to a different value.

Properties

Data

  • ДаніTerrain: The base terrain of this site
  • ДаніAddress: The street and housenumber of this site
  • ДаніPostal Code: The postal or zip code of this site
  • ДаніCity: The city of this site
  • ДаніCountry: The country of this site
  • ДаніLatitude: The latitude of this site
  • ДаніLongitude: The longitude of this site
  • ДаніUrl: An url that shows this site in a mapping website
  • ДаніProjected Area: The area of the projection of this object onto the XY plane
  • ДаніPerimeter: The perimeter length of this terrain
  • ДаніAddition Volume: The volume of earth to be added to this terrain
  • ДаніSubtraction Volume: The volume of earth to be removed from this terrain
  • ДаніExtrusion Vector: An extrusion vector to use when performing boolean operations
  • ДаніRemove Splitter: Remove splitters from the resulting shape
  • ДаніNorth Deviation: The angle between the true North and the north direction in this document

View

  • ВиглядSolar Diagram: Shows or hides the solar diagram
  • ВиглядSolar Diagram Color: The color of the solar diagram
  • ВиглядSolar Diagram Position: The position of the solar diagram
  • ВиглядSolar Diagram Scale: The scale of the solar diagram

Typical workflow

Start by creating an object that represents your terrain. It must be an open surface, not a solid. For example, it is easy to import mesh data, that can be turned into a Part Shape from menu Part → Create Shape from Mesh. Then, create a Site object, and set its ДаніTerrain property to the Part we just created:

Create some volumes (they must be solids) that represent the areas that you wish to be excavated or filled. Double-click the Site object in the Tree View, and add these volumes to the Additions or Subtractions groups. Click OK.

The site geometry will be recomputed and the areas, perimeter, and volumes properties recalculated.

Solar diagram

If pysolar is installed on your system, Arch Sites can display a solar diagram. For this, ДаніLongitude, ДаніLatitude and ДаніNorthDeviation properties must be correctly set, and ВиглядSolarDiagram view property turned on. introduced in version 0.17

Scripting

See also: Arch API and FreeCAD Scripting Basics.

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

Site = makeSite(objectslist=None, baseobj=None, name="Site")
  • Creates a Site object from objectslist, which is a list of objects, or baseobj, which is a Shape or Terrain.

Example:

import FreeCAD, Draft, Arch

p1 = FreeCAD.Vector(0, 0, 0)
p2 = FreeCAD.Vector(2000, 0, 0)
baseline = Draft.makeLine(p1, p2)
Wall = Arch.makeWall(baseline, length=None, width=150, height=2000)
FreeCAD.ActiveDocument.recompute()

Site = Arch.makeSite(Wall)
FreeCAD.ActiveDocument.recompute()

Solar diagram

FreeCAD can add a solar diagram to the active document if the Pysolar (or pysolar?) module is available. This module only works with Python3.

A solar diagram can be created with the following function

Node = makeSolarDiagram(longitude, latitude, scale=1, complete=False)
  • Creates a solar diagram as a Pivy node, using longitude and latitude, with an optional scale.
  • If complete is True, the 12 months are drawn.
import FreeCADGui, Arch

Node = Arch.makeSolarDiagram(-46.38, -23.33)
FreeCADGui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node)