Files
IfcOpenShell/src/blenderbim/test/files/spaces.ttl
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
804 B
Turtle
Raw Normal View History

2021-11-05 09:19:42 +11:00
@prefix : <ex:#> .
@prefix brick: <https://brickschema.org/schema/Brick#> .
@prefix unit: <http://qudt.org/vocab/unit/> .
:site a brick:Site ;
brick:buildingPrimaryFunction [ brick:value "Library" ] ;
brick:hasPart :bldg .
:bldg a brick:Building ;
brick:hasPart :floor .
:floor a brick:Floor ;
brick:area [ brick:value 5000 ; brick:hasUnit unit:M_2 ] ;
brick:hasPart :space, :hvac_zone, :lighting_zone_1, :lighting_zone_2 .
:space a brick:Space ;
brick:netArea [ brick:value 500 ; brick:hasUnit unit:M_2 ] ;
brick:grossArea [ brick:value 650 ; brick:hasUnit unit:M_2 ] ;
brick:isPartOf :hvac_zone ;
brick:hasPart :lighting_zone_1, :lighting_zone_2 .
:hvac_zone a brick:HVAC_Zone .
:lighting_zone_1 a brick:Lighting_Zone .
:lighting_zone_2 a brick:Lighting_Zone .