|
Расположение в меню |
---|
Архитектура → Место |
Верстаки |
Arch |
Быстрые клавиши |
S I |
Представлено в версии |
- |
См. также |
Уровень, Здание |
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 compute volumes of earth to be added or removed.
Site
Volume
): The volume of earth to be added to this terrain.LinkList
): Other shapes that are appended to this object.String
): The street and house number of this site.String
): The city of this site.String
): The country of this site.Angle
): The angle between the true North and the North direction in this document, that is, the Y axis. This means that by default North points to the Y axis, and East to the X axis; the angle increments counterclockwise. This property was previously known as ДанныеNorth Deviation.FileIncluded
): Allow to attach an EPW file from the Ladybug EPW data website to this site. This is needed to display wind rose diagrams.Length
): The elevation of level 0 of this site.Vector
): An extrusion vector to use when performing boolean operations.Float
): The latitude of this site.Float
): The longitude of this site.Vector
): An optional offset between the model (0,0,0) origin and the point indicated by the geo-coordinates.Length
): The perimeter length of the projected area.String
): The postal or zip code of this site.Area
): The area of the projection of this object onto the XY planeString
): The region, province or county of this site.Bool
): Remove splitters from the resulting shape.Volume
): The volume of earth to be removed from this terrain.LinkList
): Other shapes that are subtracted from this object.Link
): The base terrain of this siteInteger
): Represents the time zone of the site's location. Since this value is an integer only standard time zones are allowed. If the ВидSolar Diagram property is set to true
, and the right module is installed, this value will be used to generate more accurate solar and wind diagrams. The time zone should be an offset between -12 and +14, where 0 is at Greenwich, UK, (GMT+0). Positive values are to the East of Greenwich and negative values are to the West.String
): An url that shows this site in a mapping website.
Compass
Bool
): Default is False
. Shows or hides the compass.Vector
): The position of the compass relative to the site placement.Angle
): The rotation of the compass relative to the site.Bool
): Default is False
. Update the declination value based on the compass rotation.Site
Enumeration
): Default is Project North
. When set to True North
the whole geometry will be rotated to match the true north of this site.Bool
): Default is False
. Shows or hides the sun path diagram. See Solar and wind diagrams.Color
): The color of the sun path diagram.Vector
): The position of the sun path diagram.Float
): The scale of the sun path diagram.Bool
): Default is False
. Shows or hides the wind rose diagram (requires the EPW File data property filled, and the Ladybug Python module installed. See Solar and wind diagrams).
Start by creating an object that represents your terrain. 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.
If Ladybug is installed on your system, Arch Sites can display a sun path diagram and/or a wind rose. For this, ДанныеLongitude, ДанныеLatitude and ДанныеDeclination (previously ДанныеNorth Deviation) must be correctly set, and ВидSolar Diagram or ВидWind Rose set to true
.
Note: If you don't have Ladybug, pysolar (version 0.7 and above) is still supported to generate sun path diagrams, but not wind roses. However, Ladybug is a much more powerful tool that will probably be used more in the future, so we recommend using it instead of pysolar. Ladybug can be installed simply via the pip Python package manager.
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")
Site
object from objectslist
, which is a list of objects, or baseobj
, which is a Shape
or Terrain
.Пример:
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()
Building = Arch.makeBuilding([Wall])
Site = Arch.makeSite([Building])
FreeCAD.ActiveDocument.recompute()
FreeCAD.Gui.ActiveDocument.ActiveView.viewIsometric()
As long as the pysolar
module is present, a sun path diagram can be added to the site. Set the longitude, latitude and declination angles as appropriate, as well as an adequate scale for the size of your model.
At this time, the diagram serves only informative purposes and is there for visual display. For a sun path diagram that enables visualizing shadows and interactively changing dates and times, the best option is to use an external website that allows uploading 3D models. Some of them support .obj and .stl formats for instance, which can be exported to with FreeCAD.
Please note that Pysolar 0.7 or above is required, and this version only works with Python 3.
Site.Longitude = -46.38
Site.Latitude = -23.33
Site.Declination = 30
# Uncomment if you want to show the compass
# Site.ViewObject.Compass = True
Site.ViewObject.SolarDiagram = True
Site.ViewObject.SolarDiagramScale = 10000
FreeCAD.ActiveDocument.recompute()
A sun path diagram can be created with the following function, independently of any site.
Node = makeSolarDiagram(longitude, latitude, scale=1, complete=False)
longitude
and latitude
, with an optional scale
.complete
is True
, the 12 months are drawn, which shows the full solar analemma.import FreeCADGui, Arch
Node = Arch.makeSolarDiagram(-46.38, -23.33, scale=10000, complete=True)
FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node)