Arch Site/cs: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 56: Line 56:
== Solar diagram ==
== Solar diagram ==


If [http://pysolar.org/ 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. {{Version|017}}
If [http://pysolar.org/ 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. {{Version|0.17}}


[[Image:Freecad-solar-diagram.jpg]]
[[Image:Freecad-solar-diagram.jpg]]

Revision as of 21:15, 22 November 2016

Arch Site

Umístění Menu
Arch → Site
Pracovní stoly
Arch
Výchozí zástupce
S I
Představen ve verzi
-
Viz také
Arch Floor, Arch Building

Popis

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.

Použití

  1. Volitelně lze vybrat jeden nebo více objektů, které lze vložit do Vašeho nového staveniště
  2. Stiskněte tlačítko Staveniště nebo klávesy S a I

Volby

  • 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

  • ÚdajeTerrain: The base terrain of this site
  • ÚdajeAddress: The street and housenumber of this site
  • ÚdajePostal Code: The postal or zip code of this site
  • ÚdajeCity: The city of this site
  • ÚdajeCountry: The country of this site
  • ÚdajeLatitude: The latitude of this site
  • ÚdajeLongitude: The longitude of this site
  • ÚdajeUrl: An url that shows this site in a mapping website
  • ÚdajeProjected Area: The area of the projection of this object onto the XY plane
  • ÚdajePerimeter: The perimeter length of this terrain
  • ÚdajeAddition Volume: The volume of earth to be added to this terrain
  • ÚdajeSubtraction Volume: The volume of earth to be removed from this terrain
  • ÚdajeExtrusion Vector: An extrusion vector to use when performing boolean operations
  • ÚdajeRemove Splitter: Remove splitters from the resulting shape
  • ÚdajeNorth Deviation: The angle between the true North and the north direction in this document
  • PohledSolar Diagram: Shows or hides the solar diagram
  • PohledSolar Diagram Color: The color of the solar diagram
  • PohledSolar Diagram Position: The position of the solar diagram
  • PohledSolar 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

Skriptování

Nástroj Staveniště může být využit v makrech a z konzoly Pythonu použitím následující funkce:

makeSite ([objectslist])

vytvoří staveniště včetně objektů ze seznamu objectslist

Příklad:

import Arch
Arch.makeSite()

A solar diagram can also be created with:

import Arch,FreeCADGui
node = Arch.makeSolarDiagram(-46.38,-23.33) # longitude, latitude, [scale]
FreeCADGui.ActiveDocument.ActiveView.getSceneGraph().addChild(node)