saref4bldg.ttl 212 KB
Newer Older
María's avatar
María committed
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :spectrumMin ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :colorAppearance ;
                        owl:allValuesFrom xsd:string
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :colorRenderingIndex ;
                        owl:allValuesFrom xsd:integer
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :lampBallastType ;
                        owl:allValuesFrom xsd:string
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :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> .


###  https://w3id.org/def/saref4bldg#Measurement
:Measurement rdf:type owl:Class ;
             rdfs:subClassOf [ rdf:type owl:Restriction ;
                               owl:onProperty :relatesToProperty ;
                               owl:allValuesFrom :Property
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty saref:isMeasuredIn ;
                               owl:allValuesFrom saref:UnitOfMeasure
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :relatesToProperty ;
                               owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                               owl:onClass :Property
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty saref:isMeasuredIn ;
                               owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                               owl:onClass saref:UnitOfMeasure
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :hasTimestamp ;
                               owl:allValuesFrom xsd:dateTime
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty saref:hasValue ;
                               owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                               owl:onDataRange xsd:float
                             ] ;
             owl:disjointWith :Property ,
                              saref:UnitOfMeasure ;
             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 .


###  https://w3id.org/def/saref4bldg#MedicalDevice
:MedicalDevice rdf:type owl:Class ;
               rdfs:subClassOf :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> .


###  https://w3id.org/def/saref4bldg#Outlet
:Outlet rdf:type owl:Class ;
        rdfs:subClassOf :FlowTerminal ,
                        [ rdf:type owl:Restriction ;
                          owl:onProperty :isPluggableOutlet ;
                          owl:allValuesFrom xsd:boolean
                        ] ,
                        [ rdf:type owl:Restriction ;
                          owl:onProperty :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> .


###  https://w3id.org/def/saref4bldg#PhysicalObject
:PhysicalObject rdf:type owl:Class ;
                rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ,
                                [ 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>
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty :contains ;
                                  owl:allValuesFrom :PhysicalObject
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty :isContainedIn ;
                                  owl:allValuesFrom [ rdf:type owl:Class ;
                                                      owl:unionOf ( :BuildingSpace
                                                                    :PhysicalObject
                                                                  )
                                                    ]
                                ] ;
                rdfs:comment "Any Object that has a proper space region.  (Definition extracted from DUL ontology)"@en ;
                rdfs:label "Physical object"@en .
María's avatar
María committed
###  https://w3id.org/def/saref4bldg#Property
:Property rdf:type owl:Class ;
          owl:disjointWith saref:UnitOfMeasure ;
          rdfs:comment "An aspect of an entity that can be observable by a sensor."@en ;
          rdfs:label "Property"@en .
María's avatar
María committed
3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500
###  https://w3id.org/def/saref4bldg#ProtectiveDevice
:ProtectiveDevice rdf:type owl:Class ;
                  rdfs:subClassOf :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> .


###  https://w3id.org/def/saref4bldg#ProtectiveDeviceTrippingUnit
:ProtectiveDeviceTrippingUnit rdf:type owl:Class ;
                              rdfs:subClassOf :DistributionControlDevice ,
                                              [ rdf:type owl:Restriction ;
                                                owl:onProperty :limitingTerminalSize ;
                                                owl:allValuesFrom :Measurement
                                              ] ,
                                              [ rdf:type owl:Restriction ;
                                                owl:onProperty :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> .


###  https://w3id.org/def/saref4bldg#Pump
:Pump rdf:type owl:Class ;
      rdfs:subClassOf :FlowMovingDevice ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :connectionSize ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :flowResistanceMax ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :flowResistanceMin ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :netPositiveSuctionHead ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :nomminalRotationSpeed ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :operationTemperatureMax ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :operationTemperatureMin ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :pumpFlowRateMax ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :pumpFlowRateMin ;
                        owl:allValuesFrom :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> .


###  https://w3id.org/def/saref4bldg#SanitaryTerminal
:SanitaryTerminal rdf:type owl:Class ;
                  rdfs:subClassOf :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> .


###  https://w3id.org/def/saref4bldg#Sensor
:Sensor rdf:type owl:Class ;
        rdfs:subClassOf :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> .


###  https://w3id.org/def/saref4bldg#ShadingDevice
:ShadingDevice rdf:type owl:Class ;
               rdfs:subClassOf :BuildingDevice ,
                               [ rdf:type owl:Restriction ;
                                 owl:onProperty :solarReflectance ;
                                 owl:allValuesFrom :Measurement
                               ] ,
                               [ rdf:type owl:Restriction ;
                                 owl:onProperty :solarTransmittance ;
                                 owl:allValuesFrom :Measurement
                               ] ,
                               [ rdf:type owl:Restriction ;
                                 owl:onProperty :thermalTransmittance ;
                                 owl:allValuesFrom :Measurement
                               ] ,
                               [ rdf:type owl:Restriction ;
                                 owl:onProperty :visibleLightReflectance ;
                                 owl:allValuesFrom :Measurement
                               ] ,
                               [ rdf:type owl:Restriction ;
                                 owl:onProperty :visibleLightTransmittance ;
                                 owl:allValuesFrom :Measurement
                               ] ,
                               [ rdf:type owl:Restriction ;
                                 owl:onProperty :isExternal ;
                                 owl:allValuesFrom xsd:boolean
                               ] ,
                               [ rdf:type owl:Restriction ;
                                 owl:onProperty :mechanicalOperated ;
                                 owl:allValuesFrom xsd:boolean
                               ] ,
                               [ rdf:type owl:Restriction ;
                                 owl:onProperty :roughness ;
                                 owl:allValuesFrom xsd:string
                               ] ,
                               [ rdf:type owl:Restriction ;
                                 owl:onProperty :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> .


###  https://w3id.org/def/saref4bldg#SolarDevice
:SolarDevice rdf:type owl:Class ;
             rdfs:subClassOf :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> .


###  https://w3id.org/def/saref4bldg#SpaceHeater
:SpaceHeater rdf:type owl:Class ;
             rdfs:subClassOf :FlowTerminal ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :bodyMass ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :outputCapacity ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :thermalEfficiency ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :thermalMassHeatCapacity ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :energySource ;
                               owl:allValuesFrom xsd:string
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :heatTransferDimension ;
                               owl:allValuesFrom xsd:string
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :heatTransferMedium ;
                               owl:allValuesFrom xsd:string
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :numberOfPanels ;
                               owl:allValuesFrom xsd:integer
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :numberOfSections ;
                               owl:allValuesFrom xsd:integer
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :placementType ;
                               owl:allValuesFrom xsd:string
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :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> .


###  https://w3id.org/def/saref4bldg#SwitchingDevice
:SwitchingDevice rdf:type owl:Class ;
                 rdfs:subClassOf :FlowController ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty :hasLock ;
                                   owl:allValuesFrom xsd:boolean
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty :isIlluminated ;
                                   owl:allValuesFrom xsd:boolean
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty :legend ;
                                   owl:allValuesFrom xsd:string
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty :numberOfGangs ;
                                   owl:allValuesFrom xsd:integer
                                 ] ,
                                 [ rdf:type owl:Restriction ;
                                   owl:onProperty :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> .


###  https://w3id.org/def/saref4bldg#Tank
:Tank rdf:type owl:Class ;
      rdfs:subClassOf :FlowStorageDevice ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :effectiveCapacity ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :firstCurvatureRadius ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :nominalDepth ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :nominalLengthOrDiameter ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :nominalVolumetricCapacity ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :nominalWidthOrDiameter ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :operatingWight ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :secondCurvatureRadius ;
                        owl:allValuesFrom :Measurement
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :accessType ;
                        owl:allValuesFrom xsd:string
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :endShapeType ;
                        owl:allValuesFrom xsd:string
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :numberOfSections ;
                        owl:allValuesFrom xsd:integer
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :patternType ;
                        owl:allValuesFrom xsd:string
                      ] ,
                      [ rdf:type owl:Restriction ;
                        owl:onProperty :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> .


###  https://w3id.org/def/saref4bldg#Transformer
:Transformer rdf:type owl:Class ;
             rdfs:subClassOf :EnergyConversionDevice ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :apparentPowerMax ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :imaginaryImpedanceRatio ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :primaryApparentPower ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :primaryCurrent ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :primaryFrequency ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :primaryVoltage ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :realImpedanceRatio ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :secondaryApparentPower ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :secondaryCurrent ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :secondaryFrequency ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :secondaryVoltage ;
                               owl:allValuesFrom :Measurement
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :isNeutralPrimaryTerminalAvailable ;
                               owl:allValuesFrom xsd:boolean
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :isNeutralSecondaryTerminalAvailable ;
                               owl:allValuesFrom xsd:boolean
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :secondaryCurrentType ;
                               owl:allValuesFrom xsd:string
                             ] ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :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> .


###  https://w3id.org/def/saref4bldg#TransportElement
:TransportElement rdf:type owl:Class ;
                  rdfs:subClassOf saref:Device ,
                                  [ rdf:type owl:Restriction ;
María's avatar
María committed
                                    owl:onProperty :capacityWeight ;
                                    owl:allValuesFrom :Measurement
                                  ] ,
                                  [ rdf:type owl:Restriction ;
María's avatar
María committed
                                    owl:onProperty :capacityPeople ;
                                    owl:allValuesFrom xsd:positiveInteger
                                  ] ,
                                  [ rdf:type owl:Restriction ;
María's avatar
María committed
                                    owl:onProperty :fireExit ;
                                    owl:allValuesFrom xsd:boolean
                                  ] ;
María's avatar
María committed
                  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> .
María's avatar
María committed
###  https://w3id.org/def/saref4bldg#TubeBundle
:TubeBundle rdf:type owl:Class ;
            rdfs:subClassOf :EnergyConversionDevice ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :foulingFactor ;
                              owl:allValuesFrom :Measurement
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :horizontalSpacing ;
                              owl:allValuesFrom :Measurement
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :inLineRowSpacing ;
                              owl:allValuesFrom :Measurement
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :insideDiameter ;
                              owl:allValuesFrom :Measurement
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :length ;
                              owl:allValuesFrom :Measurement
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :nominalDiameter ;
                              owl:allValuesFrom :Measurement
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :outsideDiameter ;
                              owl:allValuesFrom :Measurement
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :staggeredRowSpacing ;
                              owl:allValuesFrom :Measurement
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :thermalConductivity ;
                              owl:allValuesFrom :Measurement
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :verticalSpacing ;
                              owl:allValuesFrom :Measurement
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :volumen ;
                              owl:allValuesFrom :Measurement
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :hasTurbulator ;
                              owl:allValuesFrom xsd:boolean
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :numberOfCircuits ;
                              owl:allValuesFrom xsd:integer
                            ] ,
                            [ rdf:type owl:Restriction ;
María's avatar
María committed
                              owl:onProperty :numberOfRows ;
                              owl:allValuesFrom xsd:integer
María's avatar
María committed
            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> .
María's avatar
María committed
###  https://w3id.org/def/saref4bldg#UnitaryControlElement
:UnitaryControlElement rdf:type owl:Class ;
                       rdfs:subClassOf :DistributionControlDevice ;
                       rdfs:comment """A unitary control element combines a number of control components into a single product, such as a thermostat or humidistat.
María's avatar
María committed
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> .


###  https://w3id.org/def/saref4bldg#Valve
:Valve rdf:type owl:Class ;
       rdfs:subClassOf :FlowController ,
                       [ rdf:type owl:Restriction ;
                         owl:onProperty :closeOffRating ;
                         owl:allValuesFrom :Measurement
                       ] ,
                       [ rdf:type owl:Restriction ;
                         owl:onProperty :flowCoefficient ;
                         owl:allValuesFrom :Measurement
                       ] ,
                       [ rdf:type owl:Restriction ;
                         owl:onProperty :size ;
                         owl:allValuesFrom :Measurement
                       ] ,
                       [ rdf:type owl:Restriction ;
                         owl:onProperty :testPressure ;
                         owl:allValuesFrom :Measurement
                       ] ,
                       [ rdf:type owl:Restriction ;
                         owl:onProperty :workingPressure ;
                         owl:allValuesFrom :Measurement
                       ] ,
                       [ rdf:type owl:Restriction ;
                         owl:onProperty :valveMechanism ;
                         owl:allValuesFrom xsd:string
                       ] ,
                       [ rdf:type owl:Restriction ;
                         owl:onProperty :valveOperation ;
                         owl:allValuesFrom xsd:string
                       ] ,
                       [ rdf:type owl:Restriction ;
                         owl:onProperty :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> .


###  https://w3id.org/def/saref4bldg#VibrationIsolator
:VibrationIsolator rdf:type owl:Class ;
                   rdfs:subClassOf saref:Device ,
                                   [ rdf:type owl:Restriction ;
María's avatar
María committed
                                     owl:onProperty :height ;
                                     owl:allValuesFrom :Measurement
                                   ] ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty :isolatorCompressibility ;
                                     owl:allValuesFrom :Measurement
                                   ] ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty :isolatorStaticDeflection ;
                                     owl:allValuesFrom :Measurement
                                   ] ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty :supportedWeightMax ;
                                     owl:allValuesFrom :Measurement
                                   ] ,
                                   [ rdf:type owl:Restriction ;
                                     owl:onProperty :vibrationTransmissibility ;
                                     owl:allValuesFrom :Measurement
María's avatar
María committed
                   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> .


###  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 :PhysicalObject ;
María's avatar
María committed
             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 .
María's avatar
María committed


###  Generated by the OWL API (version 4.2.6.20160910-2108) https://github.com/owlcs/owlapi