saref4bldg.ttl 225 KB
Newer Older
                            owl:onProperty bldg:colorRenderingIndex ;
                            owl:allValuesFrom xsd:integer
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:lampBallastType ;
                            owl:allValuesFrom xsd:string
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:lampCompensationType ;
                            owl:allValuesFrom xsd:string
                          ] ;
          rdfs:comment "A lamp is an artificial light source such as a light bulb or tube."@en ;
          rdfs:label "Lamp"@en ;
          rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcLamp" ;
          prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/lexical/ifclamp.htm> ,
                                <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/pset/pset_lamptypecommon.htm> .
###  http://saref.linkeddata.es/def/bldg#Measurement
bldg:Measurement rdf:type owl:Class ;
                 rdfs:subClassOf [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:relatesToProperty ;
                                   owl:allValuesFrom bldg:Property
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty saref:isMeasuredIn ;
                                   owl:allValuesFrom saref:UnitOfMeasure
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:relatesToProperty ;
                                   owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                   owl:onClass bldg:Property
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty saref:isMeasuredIn ;
                                   owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                   owl:onClass saref:UnitOfMeasure
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:hasTimestamp ;
                                   owl:allValuesFrom xsd:dateTime
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty saref:hasValue ;
                                   owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                   owl:onDataRange xsd:float
                                 ] ;
María's avatar
María committed
                 owl:disjointWith bldg:Property ,
                                  <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ,
                                  saref:UnitOfMeasure ;
María's avatar
María committed
                 rdfs:comment "Represents the measured value made over a property. It is also linked to the unit of measure in which the value is expressed and the timestamp of the measurement."@en ;
                 rdfs:label "Measurement"@en .


###  http://saref.linkeddata.es/def/bldg#MedicalDevice
bldg:MedicalDevice rdf:type owl:Class ;
                   rdfs:subClassOf bldg:FlowTerminal ;
                   rdfs:comment "A medical device is attached to a medical piping system and operates upon medical gases to perform a specific function. Medical gases include medical air, medical vacuum, oxygen, carbon dioxide, nitrogen, and nitrous oxide."@en ;
                   rdfs:label "Medical device"@en ;
                   rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcMedicalDevice" ;
                   prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/lexical/ifcmedicaldevice.htm> ,
                                         <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/pset/pset_medicaldevicetypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#Outlet
bldg:Outlet rdf:type owl:Class ;
            rdfs:subClassOf bldg:FlowTerminal ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty bldg:isPluggableOutlet ;
                              owl:allValuesFrom xsd:boolean
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty bldg:numberOsSockets ;
                              owl:allValuesFrom xsd:integer
                            ] ;
            rdfs:comment """An outlet is a device installed at a point to receive one or more inserted plugs for electrical power or communications.

Power outlets are commonly connected within a junction box; data outlets may be directly connected to a wall. For power outlets sharing the same circuit within a junction box, the ports should indicate the logical wiring relationship to the enclosing junction box, even though they may be physically connected to a cable going to another outlet, switch, or fixture."""@en ;
            rdfs:label "Outlet"@en ;
            rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcOutlet" ;
            prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/lexical/ifcoutlet.htm> ,
                                  <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/pset/pset_outlettypecommon.htm> .
###  http://saref.linkeddata.es/def/bldg#PhysicalObject
bldg:PhysicalObject rdf:type owl:Class ;
                    rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ,
                                    [ rdf:type owl:Restriction ;
                                      owl:onProperty bldg:contains ;
                                      owl:allValuesFrom bldg:PhysicalObject
                                    ] ,
                                    [ rdf:type owl:Restriction ;
                                      owl:onProperty bldg:isContainedIn ;
                                      owl:allValuesFrom [ rdf:type owl:Class ;
                                                          owl:unionOf ( bldg:BuildingSpace
                                                                        bldg:PhysicalObject
                                                                      )
                                                        ]
                                    ] ,
                                    [ rdf:type owl:Restriction ;
                                      owl:onProperty <http://www.w3.org/2003/01/geo/wgs84_pos#location> ;
                                      owl:allValuesFrom <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing>
                                    ] ;
María's avatar
María committed
                    rdfs:comment "Any Object that has a proper space region.  (Definition extracted from DUL ontology)"@en ;
                    rdfs:label "Physical object"@en .


###  http://saref.linkeddata.es/def/bldg#Property
bldg:Property rdf:type owl:Class ;
María's avatar
María committed
              owl:disjointWith <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ,
                               saref:UnitOfMeasure ;
María's avatar
María committed
              rdfs:comment "An aspect of an entity that can be observable by a sensor."@en ;
              rdfs:label "Property"@en .


###  http://saref.linkeddata.es/def/bldg#ProtectiveDevice
bldg:ProtectiveDevice rdf:type owl:Class ;
                      rdfs:subClassOf bldg:FlowController ;
                      rdfs:comment """A protective device breaks an electrical circuit when a stated electric current that passes through it is exceeded.

A protective device provides protection against electrical current only (not as a general protective device). It may be used to represent the complete set of elements including both the tripping unit and the breaking unit that provide the protection. This may be particularly useful at earlier stages of design where the approach to breaking the electrical supply may be determined but the method of tripping may not. Alternatively, this entity may be used to specifically represent the breaking unit alone (in which case the tripping unit will also be specifically identified). This entity is specific to dedicated protective devices and excludes electrical outlets that may have circuit protection."""@en ;
                      rdfs:label "Protective device"@en ;
                      rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcProtectiveDevice" ;
                      prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/lexical/ifcprotectivedevice.htm> ,
                                            <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/pset/pset_protectivedevicetypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#ProtectiveDeviceTrippingUnit
bldg:ProtectiveDeviceTrippingUnit rdf:type owl:Class ;
                                  rdfs:subClassOf bldg:DistributionControlDevice ,
                                                  [ rdf:type owl:Restriction ;
                                                    owl:onProperty bldg:limitingTerminalSize ;
                                                    owl:allValuesFrom bldg:Measurement
                                                  ] ,
                                                  [ rdf:type owl:Restriction ;
                                                    owl:onProperty bldg:standard ;
                                                    owl:allValuesFrom xsd:string
                                                  ] ;
                                  rdfs:comment "A protective device tripping unit breaks an electrical circuit at a separate breaking unit when a stated electric current that passes through the unit is exceeded."@en ;
                                  rdfs:label "Protective device tripping unit"@en ;
                                  rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcProtectiveDeviceTrippingUnit" ;
                                  prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/lexical/ifcprotectivedevicetrippingunit.htm> ,
                                                        <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingunittypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#Pump
bldg:Pump rdf:type owl:Class ;
          rdfs:subClassOf bldg:FlowMovingDevice ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:connectionSize ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:flowResistanceMax ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:flowResistanceMin ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:netPositiveSuctionHead ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:nomminalRotationSpeed ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:operationTemperatureMax ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:operationTemperatureMin ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:pumpFlowRateMax ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:pumpFlowRateMin ;
                            owl:allValuesFrom bldg:Measurement
                          ] ;
          rdfs:comment "A pump is a device which imparts mechanical work on fluids or slurries to move them through a channel or pipeline. A typical use of a pump is to circulate chilled water or heating hot water in a building services distribution system."@en ;
          rdfs:label "Pump"@en ;
          rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcPump" ;
          prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/lexical/ifcpump.htm> ,
                                <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/pset/pset_pumptypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#SanitaryTerminal
bldg:SanitaryTerminal rdf:type owl:Class ;
                      rdfs:subClassOf bldg:FlowTerminal ;
                      rdfs:comment "A sanitary terminal is a fixed appliance or terminal usually supplied with water and used for drinking, cleaning or foul water disposal or that is an item of equipment directly used with such an appliance or terminal."@en ;
                      rdfs:label "Sanitary terminal"@en ;
                      rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcSanitaryTerminal" ;
                      prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcplumbingfireprotectiondomain/lexical/ifcsanitaryterminal.htm> ,
                                            <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcplumbingfireprotectiondomain/pset/pset_sanitaryterminaltypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#Sensor
bldg:Sensor rdf:type owl:Class ;
            rdfs:subClassOf bldg:DistributionControlDevice ,
                            saref:Sensor ;
            rdfs:comment "A sensor is a device that measures a physical quantity and converts it into a signal which can be read by an observer or by an instrument."@en ;
            rdfs:label "sensor"@en ;
            rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcSensor" ;
            prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcbuildingcontrolsdomain/lexical/ifcsensor.htm> ,
                                  <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#ShadingDevice
bldg:ShadingDevice rdf:type owl:Class ;
                   rdfs:subClassOf bldg:BuildingDevice ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty bldg:solarReflectance ;
                                     owl:allValuesFrom bldg:Measurement
                                   ] ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty bldg:solarTransmittance ;
                                     owl:allValuesFrom bldg:Measurement
                                   ] ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty bldg:thermalTransmittance ;
                                     owl:allValuesFrom bldg:Measurement
                                   ] ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty bldg:visibleLightReflectance ;
                                     owl:allValuesFrom bldg:Measurement
                                   ] ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty bldg:visibleLightTransmittance ;
                                     owl:allValuesFrom bldg:Measurement
                                   ] ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty bldg:isExternal ;
                                     owl:allValuesFrom xsd:boolean
                                   ] ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty bldg:mechanicalOperated ;
                                     owl:allValuesFrom xsd:boolean
                                   ] ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty bldg:roughness ;
                                     owl:allValuesFrom xsd:string
                                   ] ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty bldg:shadingDeviceType ;
                                     owl:allValuesFrom xsd:string
                                   ] ;
                   rdfs:comment "Shading devices are purpose built devices to protect from the sunlight, from natural light, or screening them from view. Shading devices can form part of the facade or can be mounted inside the building, they can be fixed or operable."@en ;
                   rdfs:label "Shading device"@en ;
                   rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcShadingDevice" ;
                   prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcsharedbldgelements/lexical/ifcshadingdevice.htm> ,
                                         <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcsharedbldgelements/pset/pset_shadingdevicecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#SolarDevice
bldg:SolarDevice rdf:type owl:Class ;
                 rdfs:subClassOf bldg:EnergyConversionDevice ;
                 rdfs:comment "A solar device converts solar radiation into other energy such as electric current or thermal energy."@en ;
                 rdfs:label "solar device"@en ;
                 rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcSolarDevice" ;
                 prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/lexical/ifcsolardevicetypeenum.htm> ,
                                       <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/pset/pset_solardevicetypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#SpaceHeater
bldg:SpaceHeater rdf:type owl:Class ;
                 rdfs:subClassOf bldg:FlowTerminal ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:bodyMass ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:outputCapacity ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:thermalEfficiency ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:thermalMassHeatCapacity ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:energySource ;
                                   owl:allValuesFrom xsd:string
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:heatTransferDimension ;
                                   owl:allValuesFrom xsd:string
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:heatTransferMedium ;
                                   owl:allValuesFrom xsd:string
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:numberOfPanels ;
                                   owl:allValuesFrom xsd:integer
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:numberOfSections ;
                                   owl:allValuesFrom xsd:integer
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:placementType ;
                                   owl:allValuesFrom xsd:string
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:temperatureClassification ;
                                   owl:allValuesFrom xsd:string
                                 ] ;
                 rdfs:comment """Space heaters utilize a combination of radiation and/or natural convection using a heating source such as electricity, steam or hot water to heat a limited space or area. Examples of space heaters include radiators, convectors, baseboard and finned-tube heaters.

UnitaryEquipment should be used for packaged units supporting a combination of heating, cooling, and/or dehumidification; Coil should be used for coil-based floor heating."""@en ;
                 rdfs:label "Space heater"@en ;
                 rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcSpaceHeater" ;
                 prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/lexical/ifcspaceheater.htm> ,
                                       <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/pset/pset_spaceheatertypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#SwitchingDevice
bldg:SwitchingDevice rdf:type owl:Class ;
                     rdfs:subClassOf bldg:FlowController ,
                                     [ rdf:type owl:Restriction ;
                                       owl:onProperty bldg:hasLock ;
                                       owl:allValuesFrom xsd:boolean
                                     ] ,
                                     [ rdf:type owl:Restriction ;
                                       owl:onProperty bldg:isIlluminated ;
                                       owl:allValuesFrom xsd:boolean
                                     ] ,
                                     [ rdf:type owl:Restriction ;
                                       owl:onProperty bldg:legend ;
                                       owl:allValuesFrom xsd:string
                                     ] ,
                                     [ rdf:type owl:Restriction ;
                                       owl:onProperty bldg:numberOfGangs ;
                                       owl:allValuesFrom xsd:integer
                                     ] ,
                                     [ rdf:type owl:Restriction ;
                                       owl:onProperty bldg:switchFunction ;
                                       owl:allValuesFrom xsd:string
                                     ] ;
                     rdfs:comment """A switch is used in a cable distribution system (electrical circuit) to control or modulate the flow of electricity.

Switches include those used for electrical power, communications, audio-visual, or other distribution system types as determined by the available ports."""@en ;
                     rdfs:label "Switching device"@en ;
                     rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcSwitchingDevice" ;
                     prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/lexical/ifcswitchingdevice.htm> ,
                                           <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/pset/pset_switchingdevicetypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#Tank
bldg:Tank rdf:type owl:Class ;
          rdfs:subClassOf bldg:FlowStorageDevice ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:effectiveCapacity ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:firstCurvatureRadius ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:nominalDepth ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:nominalLengthOrDiameter ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:nominalVolumetricCapacity ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:nominalWidthOrDiameter ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:operatingWight ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:secondCurvatureRadius ;
                            owl:allValuesFrom bldg:Measurement
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:accessType ;
                            owl:allValuesFrom xsd:string
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:endShapeType ;
                            owl:allValuesFrom xsd:string
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:numberOfSections ;
                            owl:allValuesFrom xsd:integer
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:patternType ;
                            owl:allValuesFrom xsd:string
                          ] ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty bldg:storageType ;
                            owl:allValuesFrom xsd:string
                          ] ;
          rdfs:comment "A tank is a vessel or container in which a fluid or gas is stored for later use."@en ;
          rdfs:label "Tank"@en ;
          rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcTank" ;
          prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/lexical/ifctank.htm> ,
                                <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/pset/pset_tanktypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#Transformer
bldg:Transformer rdf:type owl:Class ;
                 rdfs:subClassOf bldg:EnergyConversionDevice ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:apparentPowerMax ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:imaginaryImpedanceRatio ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:primaryApparentPower ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:primaryCurrent ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:primaryFrequency ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:primaryVoltage ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:realImpedanceRatio ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:secondaryApparentPower ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:secondaryCurrent ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:secondaryFrequency ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:secondaryVoltage ;
                                   owl:allValuesFrom bldg:Measurement
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:isNeutralPrimaryTerminalAvailable ;
                                   owl:allValuesFrom xsd:boolean
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:isNeutralSecondaryTerminalAvailable ;
                                   owl:allValuesFrom xsd:boolean
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:secondaryCurrentType ;
                                   owl:allValuesFrom xsd:string
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty bldg:transformerVectorGroup ;
                                   owl:allValuesFrom xsd:string
                                 ] ;
                 rdfs:comment """A transformer is an inductive stationary device that transfers electrical energy from one circuit to another.

Transformer is used to transform electric power; conversion of electric signals for other purposes is handled at other entities: Controller converts arbitrary signals, AudioVisualAppliance converts signals for audio or video streams, and CommunicationsAppliance converts signals for data or other communications usage."""@en ;
                 rdfs:label "Transformer"@en ;
                 rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcTransformer" ;
                 prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/lexical/ifctransformer.htm> ,
                                       <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcelectricaldomain/pset/pset_transformertypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#TransportElement
bldg:TransportElement rdf:type owl:Class ;
                      rdfs:subClassOf saref:Device ,
                                      [ rdf:type owl:Restriction ;
                                        owl:onProperty bldg:capacityWeight ;
                                        owl:allValuesFrom bldg:Measurement
                                      ] ,
                                      [ rdf:type owl:Restriction ;
                                        owl:onProperty bldg:capacityPeople ;
                                        owl:allValuesFrom xsd:positiveInteger
                                      ] ,
                                      [ rdf:type owl:Restriction ;
                                        owl:onProperty bldg:fireExit ;
                                        owl:allValuesFrom xsd:boolean
                                      ] ;
                      rdfs:comment "A transport element is a generalization of all transport related objects that move people, animals or goods within a building or building complex. The TransportElement defines the occurrence of a transport element. "@en ;
                      rdfs:label "Transport element"@en ;
                      rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcTransportElement" ;
                      prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcproductextension/lexical/ifctransportelement.htm> ,
                                            <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcproductextension/pset/pset_transportelementcommon.htm> .


###  http://saref.linkeddata.es/def/bldg#TubeBundle
bldg:TubeBundle rdf:type owl:Class ;
                rdfs:subClassOf bldg:EnergyConversionDevice ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:foulingFactor ;
                                  owl:allValuesFrom bldg:Measurement
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:horizontalSpacing ;
                                  owl:allValuesFrom bldg:Measurement
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:inLineRowSpacing ;
                                  owl:allValuesFrom bldg:Measurement
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:insideDiameter ;
                                  owl:allValuesFrom bldg:Measurement
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:length ;
                                  owl:allValuesFrom bldg:Measurement
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:nominalDiameter ;
                                  owl:allValuesFrom bldg:Measurement
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:outsideDiameter ;
                                  owl:allValuesFrom bldg:Measurement
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:staggeredRowSpacing ;
                                  owl:allValuesFrom bldg:Measurement
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:thermalConductivity ;
                                  owl:allValuesFrom bldg:Measurement
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:verticalSpacing ;
                                  owl:allValuesFrom bldg:Measurement
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:volumen ;
                                  owl:allValuesFrom bldg:Measurement
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:hasTurbulator ;
                                  owl:allValuesFrom xsd:boolean
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:numberOfCircuits ;
                                  owl:allValuesFrom xsd:integer
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty bldg:numberOfRows ;
                                  owl:allValuesFrom xsd:integer
                                ] ;
                rdfs:comment "A tube bundle is a device consisting of tubes and bundles of tubes used for heat transfer and contained typically within other energy conversion devices, such as a chiller or coil."@en ;
                rdfs:label "Tube bundle"@en ;
                rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcTubeBundle" ;
                prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/lexical/ifctubebundle.htm> ,
                                      <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/pset/pset_tubebundletypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#UnitaryControlElement
bldg:UnitaryControlElement rdf:type owl:Class ;
                           rdfs:subClassOf bldg:DistributionControlDevice ;
                           rdfs:comment """A unitary control element combines a number of control components into a single product, such as a thermostat or humidistat.

A unitary control element provides a housing for an aggregation of control or electrical distribution elements that, in combination, perform a singular (unitary) purpose. Each item in the aggregation may have its own geometric representation and location."""@en ;
                           rdfs:label "Unitary control element"@en ;
                           rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcUnitaryControlElement" ;
                           prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcbuildingcontrolsdomain/lexical/ifcunitarycontrolelement.htm> ,
                                                 <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifcbuildingcontrolsdomain/pset/pset_unitarycontrolelementtypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#Valve
bldg:Valve rdf:type owl:Class ;
           rdfs:subClassOf bldg:FlowController ,
                           [ rdf:type owl:Restriction ;
                             owl:onProperty bldg:closeOffRating ;
                             owl:allValuesFrom bldg:Measurement
                           ] ,
                           [ rdf:type owl:Restriction ;
                             owl:onProperty bldg:flowCoefficient ;
                             owl:allValuesFrom bldg:Measurement
                           ] ,
                           [ rdf:type owl:Restriction ;
                             owl:onProperty bldg:size ;
                             owl:allValuesFrom bldg:Measurement
                           ] ,
                           [ rdf:type owl:Restriction ;
                             owl:onProperty bldg:testPressure ;
                             owl:allValuesFrom bldg:Measurement
                           ] ,
                           [ rdf:type owl:Restriction ;
                             owl:onProperty bldg:workingPressure ;
                             owl:allValuesFrom bldg:Measurement
                           ] ,
                           [ rdf:type owl:Restriction ;
                             owl:onProperty bldg:valveMechanism ;
                             owl:allValuesFrom xsd:string
                           ] ,
                           [ rdf:type owl:Restriction ;
                             owl:onProperty bldg:valveOperation ;
                             owl:allValuesFrom xsd:string
                           ] ,
                           [ rdf:type owl:Restriction ;
                             owl:onProperty bldg:valvePattern ;
                             owl:allValuesFrom xsd:string
                           ] ;
           rdfs:comment "A valve is used in a building services piping distribution system to control or modulate the flow of the fluid."@en ;
           rdfs:label "Valve"@en ;
           rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcValve" ;
           prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/lexical/ifcvalve.htm> ,
                                 <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/pset/pset_valvetypecommon.htm> .


###  http://saref.linkeddata.es/def/bldg#VibrationIsolator
bldg:VibrationIsolator rdf:type owl:Class ;
                       rdfs:subClassOf saref:Device ,
                                       [ rdf:type owl:Restriction ;
                                         owl:onProperty bldg:height ;
                                         owl:allValuesFrom bldg:Measurement
                                       ] ,
                                       [ rdf:type owl:Restriction ;
                                         owl:onProperty bldg:isolatorCompressibility ;
                                         owl:allValuesFrom bldg:Measurement
                                       ] ,
                                       [ rdf:type owl:Restriction ;
                                         owl:onProperty bldg:isolatorStaticDeflection ;
                                         owl:allValuesFrom bldg:Measurement
                                       ] ,
                                       [ rdf:type owl:Restriction ;
                                         owl:onProperty bldg:supportedWeightMax ;
                                         owl:allValuesFrom bldg:Measurement
                                       ] ,
                                       [ rdf:type owl:Restriction ;
                                         owl:onProperty bldg:vibrationTransmissibility ;
                                         owl:allValuesFrom bldg:Measurement
                                       ] ;
                       rdfs:comment "A vibration isolator is a device used to minimize the effects of vibration transmissibility in a building."@en ;
                       rdfs:label "Vibration isolator"@en ;
                       rdfs:seeAlso "https://w3id.org/ifc/IFC4_ADD1#IfcVibrationIsolator" ;
                       prov:hadPrimarySource <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/lexical/ifcvibrationisolator.htm> ,
                                             <http://www.buildingsmart-tech.org/ifc/IFC4/Add1/html/schema/ifchvacdomain/pset/pset_vibrationisolatortypecommon.htm> .
###  http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing
María's avatar
María committed
<http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> rdf:type owl:Class ;
María's avatar
María committed
                                                       owl:disjointWith saref:UnitOfMeasure ;
María's avatar
María committed
                                                       rdfs:comment "Anything with spatial extent, i.e. size, shape, or position. e.g. people, places, bowling balls, as well as abstract areas like cubes."@en ;
                                                       rdfs:isDefinedBy <http://www.w3.org/2003/01/geo/wgs84_pos#> ;
                                                       rdfs:label "Spatial thing"@en .


###  https://w3id.org/saref#Actuator
María's avatar
María committed
saref:Actuator rdf:type owl:Class ;
               rdfs:comment "A device responsible for moving or controlling a mechanism or system"@en ;
               rdfs:isDefinedBy saref: ;
               rdfs:label "Actuator"@en .
###  https://w3id.org/saref#Device
saref:Device rdf:type owl:Class ;
María's avatar
María committed
             rdfs:subClassOf bldg:PhysicalObject ;
             rdfs:comment "A tangible object designed to accomplish a particular task in households, common public buildings or offices. In order to accomplish this task, the device performs one or more functions. For example, a washing machine is designed to wash (task) and to accomplish this task it performs the start and stop function."@en ;
             rdfs:isDefinedBy saref: ;
             rdfs:label "Device"@en .


###  https://w3id.org/saref#Sensor
María's avatar
María committed
saref:Sensor rdf:type owl:Class ;
             rdfs:comment """A device that detects and responds to events or changes in the physical environment such as light, motion, or temperature changes.
A device that has category saref:Sensor and performs a saref:SensingFunction."""@en ;
             rdfs:isDefinedBy saref: ;
             rdfs:label "Sensor"@en .
###  https://w3id.org/saref#UnitOfMeasure
María's avatar
María committed
saref:UnitOfMeasure rdf:type owl:Class ;
                    rdfs:comment "The unit of measure is a standard for measurement of a quantity, such as a Property. For example,  Power is a property and Watt is a unit of power that represents a definite predetermined power: when we say 10 Watt, we actually mean 10 times the definite predetermined power called \"watt\". Our definition is based on the definition of unit of measure in the Ontology of units of Measure (OM). We propose here a list of some units of measure that are relevant for the purpose of the Smart Appliances ontology, but this list can be extended."@en ;
                    rdfs:isDefinedBy saref: ;
                    rdfs:label "Unit of measure"@en .
###  Generated by the OWL API (version 4.2.6.20160910-2108) https://github.com/owlcs/owlapi