saref4bldg.ttl 189 KB
Newer Older
@prefix : <http://saref.linkeddata.es/def/bldg#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix bldg: <http://saref.linkeddata.es/def/bldg#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@base <http://saref.linkeddata.es/def/bldg> .

<http://saref.linkeddata.es/def/bldg> rdf:type owl:Ontology ;
                                       owl:versionIRI <http://saref.linkeddata.es/def/v1/bldg> ;
Raul Garcia-Castro's avatar
Raul Garcia-Castro committed
                                       owl:versionInfo "1.0" ;
                                       dcterms:creator <http://purl.org/net/mpoveda> ,
                                                       <http://www.garcia-castro.com/foaf.rdf#me> ;
                                       vann:preferredNamespacePrefix "saref4bldg" ;
                                       dcterms:license <http://purl.org/NET/rdflicense/cc-by4.0> ;
                                       dc:title "SAREF extension for building devices"@en ;
Raul Garcia-Castro's avatar
Raul Garcia-Castro committed
                                       vann:preferredNamespaceUri "http://saref.linkeddata.es/def/bldg#" ;
                                       rdfs:comment "This ontology extends the SAREF ontology for the building domain by defining building devices and how they are located in a building. This extension is based on the ISO 16739:2013 Industry Foundation Classes (IFC) standard for data sharing in the construction and facility management industries."@en ;
                                       dc:publisher <http://www.oeg-upm.net/> .

#################################################################
#    Annotation properties
#################################################################

###  http://purl.org/dc/terms/creator
dcterms:creator rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/dateCopyrighted
dcterms:dateCopyrighted rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/rightsHolder
dcterms:rightsHolder rdf:type owl:AnnotationProperty .


###  http://purl.org/vocab/vann/preferredNamespacePrefix
vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .


###  http://purl.org/vocab/vann/preferredNamespaceUri
vann:preferredNamespaceUri rdf:type owl:AnnotationProperty .


#################################################################
#    Datatypes
#################################################################

###  http://www.w3.org/2001/XMLSchema#duration
xsd:duration rdf:type rdfs:Datatype .


#################################################################
#    Object Properties
#################################################################

###  http://saref.linkeddata.es/def/bldg#isComponentOf
bldg:isComponentOf rdf:type owl:ObjectProperty ;
                   rdfs:label "isComponentOf"@en .


###  http://saref.linkeddata.es/def/bldg#isComposedBy
bldg:isComposedBy rdf:type owl:ObjectProperty ;
                  rdfs:label "isComposedBy"@en .


###  http://saref.linkeddata.es/def/bldg#switchingDeviceSetPoint
bldg:switchingDeviceSetPoint rdf:type owl:ObjectProperty ;
                             rdfs:domain bldg:SwitchingDevice ;
                             rdfs:range rdfs:Resource ;
                             rdfs:comment " Indicates the setpoint and label. For toggle switches, there are two positions, 0 for off and 1 for on. For dimmer switches, the values may indicate the fully-off and full-on positions, where missing integer values in between are interpolated. For selector switches, the range indicates the available positions. An IfcTable may be attached (using IfcMetric and IfcPropertyConstraintRelationship) containing columns of the specified header names and types: 'Position' (IfcInteger): The discrete setpoint level. 'Sink' (IfcLabel): The Name of the switched input port (IfcDistributionPort with FlowDirection=SINK). 'Source' (IfcLabel): The Name of the switched output port (IfcDistributionPort with FlowDirection=SOURCE). 'Ratio' (IfcNormalizedRatioMeasure): The ratio of power at the setpoint where 0.0 is off and 1.0 is fully on."@en ;
                             rdfs:label "set point"@en .
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000


#################################################################
#    Data properties
#################################################################

###  http://saref.linkeddata.es/def/bldg#actuatorFailPosition
bldg:actuatorFailPosition rdf:type owl:DatatypeProperty ;
                          rdfs:domain bldg:Actuator ;
                          rdfs:range xsd:string ;
                          rdfs:comment " Specifies the required fail-safe position of the actuator."@en ;
                          rdfs:label "fail position"@en .


###  http://saref.linkeddata.es/def/bldg#actuatorManualOverride
bldg:actuatorManualOverride rdf:type owl:DatatypeProperty ;
                            rdfs:domain bldg:Actuator ;
                            rdfs:range xsd:boolean ;
                            rdfs:comment " Identifies whether hand-operated operation is provided as an override (= TRUE) or not (= FALSE). Note that this value should be set to FALSE by default in the case of a Hand Operated Actuator."@en ;
                            rdfs:label "manual override"@en .


###  http://saref.linkeddata.es/def/bldg#airToAirHeatRecoveryHasDefrost
bldg:airToAirHeatRecoveryHasDefrost rdf:type owl:DatatypeProperty ;
                                    rdfs:domain bldg:AirToAirHeatRecovery ;
                                    rdfs:range xsd:boolean ;
                                    rdfs:comment " has the heat exchanger has defrost function or not."@en ;
                                    rdfs:label "has defrost"@en .


###  http://saref.linkeddata.es/def/bldg#airToAirHeatRecoveryHeatTransferTypeEnum
bldg:airToAirHeatRecoveryHeatTransferTypeEnum rdf:type owl:DatatypeProperty ;
                                              rdfs:domain bldg:AirToAirHeatRecovery ;
                                              rdfs:range xsd:string ;
                                              rdfs:comment "Type of heat transfer between the two air streams."@en ;
                                              rdfs:label "heat transfer type enum"@en .


###  http://saref.linkeddata.es/def/bldg#airToAirHeatRecoveryOperationalTemperatureRangeMax
bldg:airToAirHeatRecoveryOperationalTemperatureRangeMax rdf:type owl:DatatypeProperty ;
                                                        rdfs:domain bldg:AirToAirHeatRecovery ;
                                                        rdfs:range xsd:float ;
                                                        rdfs:comment "Allowable operation ambient air temperature range. Usually measured in degrees Kelvin (K)."@en ;
                                                        rdfs:label "operational temperature range max"@en .


###  http://saref.linkeddata.es/def/bldg#airToAirHeatRecoveryOperationalTemperatureRangeMin
bldg:airToAirHeatRecoveryOperationalTemperatureRangeMin rdf:type owl:DatatypeProperty ;
                                                        rdfs:domain bldg:AirToAirHeatRecovery ;
                                                        rdfs:range xsd:float ;
                                                        rdfs:comment "Allowable operation ambient air temperature range. Usually measured in degrees Kelvin (K)."@en ;
                                                        rdfs:label "operational temperature range min"@en .


###  http://saref.linkeddata.es/def/bldg#airToAirHeatRecoveryPrimaryAirFlowRateRangeMax
bldg:airToAirHeatRecoveryPrimaryAirFlowRateRangeMax rdf:type owl:DatatypeProperty ;
                                                    rdfs:domain bldg:AirToAirHeatRecovery ;
                                                    rdfs:range xsd:float ;
                                                    rdfs:comment "possible range of primary airflow that can be delivered. Usually measured in m3/s."@en ;
                                                    rdfs:label "primary air flow rate range max"@en .


###  http://saref.linkeddata.es/def/bldg#airToAirHeatRecoveryPrimaryAirFlowRateRangeMin
bldg:airToAirHeatRecoveryPrimaryAirFlowRateRangeMin rdf:type owl:DatatypeProperty ;
                                                    rdfs:domain bldg:AirToAirHeatRecovery ;
                                                    rdfs:range xsd:float ;
                                                    rdfs:comment "possible range of primary airflow that can be delivered. Usually measured in m3/s."@en ;
                                                    rdfs:label "primary air flow rate range min"@en .


###  http://saref.linkeddata.es/def/bldg#airToAirHeatRecoverySecondaryAirFlowRateRangeMax
bldg:airToAirHeatRecoverySecondaryAirFlowRateRangeMax rdf:type owl:DatatypeProperty ;
                                                      rdfs:domain bldg:AirToAirHeatRecovery ;
                                                      rdfs:range xsd:float ;
                                                      rdfs:comment "possible range of secondary airflow that can be delivered. Usually measured in Pascals (Pa, N/m2)."@en ;
                                                      rdfs:label "secondary air flow rate range max"@en .


###  http://saref.linkeddata.es/def/bldg#airToAirHeatRecoverySecondaryAirFlowRateRangeMin
bldg:airToAirHeatRecoverySecondaryAirFlowRateRangeMin rdf:type owl:DatatypeProperty ;
                                                      rdfs:domain bldg:AirToAirHeatRecovery ;
                                                      rdfs:range xsd:float ;
                                                      rdfs:comment "possible range of secondary airflow that can be delivered. Usually measured in Pascals (Pa, N/m2)."@en ;
                                                      rdfs:label "secondary air flow rate range min"@en .


###  http://saref.linkeddata.es/def/bldg#audioVisualApplianceAudioVolume
bldg:audioVisualApplianceAudioVolume rdf:type owl:DatatypeProperty ;
                                     rdfs:domain bldg:AudioVisualAppliance ;
                                     rdfs:range xsd:float ;
                                     rdfs:comment " Indicates discrete audio volume levels and corresponding sound power offsets, if applicable. Missing values may be interpolated. Measured in watts."@en ;
                                     rdfs:label "audio volume"@en .


###  http://saref.linkeddata.es/def/bldg#audioVisualApplianceMediaSource
bldg:audioVisualApplianceMediaSource rdf:type owl:DatatypeProperty ;
                                     rdfs:domain bldg:AudioVisualAppliance ;
                                     rdfs:range xsd:string ;
                                     rdfs:comment " Indicates media sources and corresponding names of ports (IfcDistributionPort with FlowDirection=SINK and PredefinedType=AUDIOVISUAL) or aggregated audio/video components (IfcAudioVisualAppliance)."@en ;
                                     rdfs:label "media source"@en .


###  http://saref.linkeddata.es/def/bldg#boilerEnergySource
bldg:boilerEnergySource rdf:type owl:DatatypeProperty ;
                        rdfs:domain bldg:Boiler ;
                        rdfs:range xsd:string ;
                        rdfs:comment "Enumeration defining the energy source or fuel cumbusted to generate heat."@en ;
                        rdfs:label "energy source"@en .


###  http://saref.linkeddata.es/def/bldg#boilerHeatTransferSurfaceArea
bldg:boilerHeatTransferSurfaceArea rdf:type owl:DatatypeProperty ;
                                   rdfs:domain bldg:Boiler ;
                                   rdfs:range xsd:float ;
                                   rdfs:comment " Total heat transfer area of the vessel. Usually measured in square metre (m2)."@en ;
                                   rdfs:label "heat transfer surface area"@en .


###  http://saref.linkeddata.es/def/bldg#boilerIsWaterStorageHeater
bldg:boilerIsWaterStorageHeater rdf:type owl:DatatypeProperty ;
                                rdfs:domain bldg:Boiler ;
                                rdfs:range xsd:boolean ;
                                rdfs:comment " This is used to identify if the boiler has storage capacity (TRUE). If FALSE, then there is no storage capacity built into the boiler, such as an instantaneous hot water heater."@en ;
                                rdfs:label "is water storage heater"@en .


###  http://saref.linkeddata.es/def/bldg#boilerNominalEnergyConsumption
bldg:boilerNominalEnergyConsumption rdf:type owl:DatatypeProperty ;
                                    rdfs:domain bldg:Boiler ;
                                    rdfs:range xsd:float ;
                                    rdfs:comment " Nominal fuel consumption rate required to produce the total boiler heat output. Usually measured in Watts (W, J/s)."@en ;
                                    rdfs:label "nominal energy consumption"@en .


###  http://saref.linkeddata.es/def/bldg#boilerNominalPartLoadRatioMax
bldg:boilerNominalPartLoadRatioMax rdf:type owl:DatatypeProperty ;
                                   rdfs:domain bldg:Boiler ;
                                   rdfs:range xsd:float ;
                                   rdfs:comment "Allowable part load ratio range."@en ;
                                   rdfs:label "nominal part load ratio max"@en .


###  http://saref.linkeddata.es/def/bldg#boilerNominalPartLoadRatioMin
bldg:boilerNominalPartLoadRatioMin rdf:type owl:DatatypeProperty ;
                                   rdfs:domain bldg:Boiler ;
                                   rdfs:range xsd:float ;
                                   rdfs:comment "Allowable part load ratio range."@en ;
                                   rdfs:label "nominal part load ratio min"@en .


###  http://saref.linkeddata.es/def/bldg#boilerOperatingMode
bldg:boilerOperatingMode rdf:type owl:DatatypeProperty ;
                         rdfs:domain bldg:Boiler ;
                         rdfs:range xsd:string ;
                         rdfs:comment " Identifies the operating mode of the boiler."@en ;
                         rdfs:label "operating mode"@en .


###  http://saref.linkeddata.es/def/bldg#boilerOutletTemperatureRangeMax
bldg:boilerOutletTemperatureRangeMax rdf:type owl:DatatypeProperty ;
                                     rdfs:domain bldg:Boiler ;
                                     rdfs:range xsd:float ;
                                     rdfs:comment "Allowable outlet temperature of either the water or the steam. Usually measured in degrees Kelvin (K)."@en ;
                                     rdfs:label "outlet temperature range max"@en .


###  http://saref.linkeddata.es/def/bldg#boilerOutletTemperatureRangeMin
bldg:boilerOutletTemperatureRangeMin rdf:type owl:DatatypeProperty ;
                                     rdfs:domain bldg:Boiler ;
                                     rdfs:range xsd:float ;
                                     rdfs:comment "Allowable outlet temperature of either the water or the steam. Usually measured in degrees Kelvin (K)."@en ;
                                     rdfs:label "outlet temperature range min"@en .


###  http://saref.linkeddata.es/def/bldg#boilerPressureRating
bldg:boilerPressureRating rdf:type owl:DatatypeProperty ;
                          rdfs:domain bldg:Boiler ;
                          rdfs:range xsd:float ;
                          rdfs:comment " Nominal pressure rating of the boiler as rated by the agency having jurisdiction. Usually measured in Pascals (Pa, N/m2)."@en ;
                          rdfs:label "pressure rating"@en .


###  http://saref.linkeddata.es/def/bldg#boilerWaterInletTemperatureRangeMax
bldg:boilerWaterInletTemperatureRangeMax rdf:type owl:DatatypeProperty ;
                                         rdfs:domain bldg:Boiler ;
                                         rdfs:range xsd:float ;
                                         rdfs:comment "Allowable water inlet temperature range. Usually measured in degrees Kelvin (K)."@en ;
                                         rdfs:label "water inlet temperature range max"@en .


###  http://saref.linkeddata.es/def/bldg#boilerWaterInletTemperatureRangeMin
bldg:boilerWaterInletTemperatureRangeMin rdf:type owl:DatatypeProperty ;
                                         rdfs:domain bldg:Boiler ;
                                         rdfs:range xsd:float ;
                                         rdfs:comment "Allowable water inlet temperature range. Usually measured in degrees Kelvin (K)."@en ;
                                         rdfs:label "water inlet temperature range min"@en .


###  http://saref.linkeddata.es/def/bldg#boilerWaterStorageCapacity
bldg:boilerWaterStorageCapacity rdf:type owl:DatatypeProperty ;
                                rdfs:domain bldg:Boiler ;
                                rdfs:range xsd:float ;
                                rdfs:comment " Water storage capacity. Usually measured in cubic metre (m3)."@en ;
                                rdfs:label "water storage capacity"@en .


###  http://saref.linkeddata.es/def/bldg#burnerEnergySource
bldg:burnerEnergySource rdf:type owl:DatatypeProperty ;
                        rdfs:domain bldg:Burner ;
                        rdfs:range xsd:string ;
                        rdfs:comment "Enumeration defining the energy source or fuel cumbusted to generate heat."@en ;
                        rdfs:label "energy source"@en .


###  http://saref.linkeddata.es/def/bldg#chillerNominalCapacity
bldg:chillerNominalCapacity rdf:type owl:DatatypeProperty ;
                            rdfs:domain bldg:Chiller ;
                            rdfs:range xsd:float ;
                            rdfs:comment " Nominal cooling capacity of chiller at standardized conditions as defined by the agency having jurisdiction. Usually measured in Watts (W, J/s)."@en ;
                            rdfs:label "nominal capacity"@en .


###  http://saref.linkeddata.es/def/bldg#chillerNominalCondensingTemperature
bldg:chillerNominalCondensingTemperature rdf:type owl:DatatypeProperty ;
                                         rdfs:domain bldg:Chiller ;
                                         rdfs:range xsd:float ;
                                         rdfs:comment " Chiller condensing temperature. Usually measured in degrees Kelvin (K)."@en ;
                                         rdfs:label "nominal condensing temperature"@en .


###  http://saref.linkeddata.es/def/bldg#chillerNominalEfficiency
bldg:chillerNominalEfficiency rdf:type owl:DatatypeProperty ;
                              rdfs:domain bldg:Chiller ;
                              rdfs:range xsd:float ;
                              rdfs:comment " Nominal chiller efficiency under nominal conditions. "@en ;
                              rdfs:label "nominal efficiency"@en .


###  http://saref.linkeddata.es/def/bldg#chillerNominalEvaporatingTemmperature
bldg:chillerNominalEvaporatingTemmperature rdf:type owl:DatatypeProperty ;
                                           rdfs:domain bldg:Chiller ;
                                           rdfs:range xsd:float ;
                                           rdfs:comment " Chiller evaporating temperature.Usually measured in degrees Kelvin (K)."@en ;
                                           rdfs:label "nominal evaporating temmperature"@en .


###  http://saref.linkeddata.es/def/bldg#chillerNominalHeatRejectionRate
bldg:chillerNominalHeatRejectionRate rdf:type owl:DatatypeProperty ;
                                     rdfs:domain bldg:Chiller ;
                                     rdfs:range xsd:float ;
                                     rdfs:comment " Sum of the refrigeration effect and the heat equivalent of the power input to the compressor. Usually measured in Watts (W, J/s)."@en ;
                                     rdfs:label "nominal heat rejection rate"@en .


###  http://saref.linkeddata.es/def/bldg#chillerNominalPowerConsumption
bldg:chillerNominalPowerConsumption rdf:type owl:DatatypeProperty ;
                                    rdfs:domain bldg:Chiller ;
                                    rdfs:range xsd:float ;
                                    rdfs:comment " Nominal total power consumption. Usually measured in Watts (W, J/s)."@en ;
                                    rdfs:label "nominal power consumption"@en .


###  http://saref.linkeddata.es/def/bldg#coilAirFlowRateRangeMax
bldg:coilAirFlowRateRangeMax rdf:type owl:DatatypeProperty ;
                             rdfs:domain bldg:Coil ;
                             rdfs:range xsd:float ;
                             rdfs:comment "Possible range of airflow that can be delivered. For cases where there is no airflow across the coil (e.g. electric coil in a floor slab), then the value is zero. Usually measured in m3/s."@en ;
                             rdfs:label "air flow rate range max"@en .


###  http://saref.linkeddata.es/def/bldg#coilAirFlowRateRangeMin
bldg:coilAirFlowRateRangeMin rdf:type owl:DatatypeProperty ;
                             rdfs:domain bldg:Coil ;
                             rdfs:range xsd:float ;
                             rdfs:comment "Possible range of airflow that can be delivered. For cases where there is no airflow across the coil (e.g. electric coil in a floor slab), then the value is zero. Usually measured in m3/s."@en ;
                             rdfs:label "air flow rate range min"@en .


###  http://saref.linkeddata.es/def/bldg#coilNominalLatentCapacity
bldg:coilNominalLatentCapacity rdf:type owl:DatatypeProperty ;
                               rdfs:domain bldg:Coil ;
                               rdfs:range xsd:float ;
                               rdfs:comment " Nominal latent capacity. Usually measured in Watts (W, J/s)."@en ;
                               rdfs:label "nominal latent capacity"@en .


###  http://saref.linkeddata.es/def/bldg#coilNominalSensibleCapacity
bldg:coilNominalSensibleCapacity rdf:type owl:DatatypeProperty ;
                                 rdfs:domain bldg:Coil ;
                                 rdfs:range xsd:float ;
                                 rdfs:comment " Nominal sensible capacity. Usually measured in Watts (W, J/s)."@en ;
                                 rdfs:label "nominal sensible capacity"@en .


###  http://saref.linkeddata.es/def/bldg#coilNominalUa
bldg:coilNominalUa rdf:type owl:DatatypeProperty ;
                   rdfs:domain bldg:Coil ;
                   rdfs:range xsd:float ;
                   rdfs:comment " Nominal UA value."@en ;
                   rdfs:label "nominal ua"@en .


###  http://saref.linkeddata.es/def/bldg#coilOperationalTemperatureRangeMax
bldg:coilOperationalTemperatureRangeMax rdf:type owl:DatatypeProperty ;
                                        rdfs:domain bldg:Coil ;
                                        rdfs:range xsd:float ;
                                        rdfs:comment "Allowable operational air temperature range. Usually measured in degrees Kelvin (K)."@en ;
                                        rdfs:label "operational temperature range max"@en .


###  http://saref.linkeddata.es/def/bldg#coilOperationalTemperatureRangeMin
bldg:coilOperationalTemperatureRangeMin rdf:type owl:DatatypeProperty ;
                                        rdfs:domain bldg:Coil ;
                                        rdfs:range xsd:float ;
                                        rdfs:comment "Allowable operational air temperature range. Usually measured in degrees Kelvin (K)."@en ;
                                        rdfs:label "operational temperature range min"@en .


###  http://saref.linkeddata.es/def/bldg#coilPlacementType
bldg:coilPlacementType rdf:type owl:DatatypeProperty ;
                       rdfs:domain bldg:Coil ;
                       rdfs:range xsd:string ;
                       rdfs:comment " Indicates the placement of the coil. FLOOR indicates an under floor heater (if coil type is WATERHEATINGCOIL or ELECTRICHEATINGCOIL), CEILING indicates a cooling ceiling (if coil type is WATERCOOLINGCOIL), UNIT indicates that the coil is part of a cooling or heating unit, like cooled beam, etc."@en ;
                       rdfs:label "placement type"@en .


###  http://saref.linkeddata.es/def/bldg#compressorCompressorSpeed
bldg:compressorCompressorSpeed rdf:type owl:DatatypeProperty ;
                               rdfs:domain bldg:Compressor ;
                               rdfs:range xsd:float ;
                               rdfs:comment " Compressor speed. Usually measured in cycles/s."@en ;
                               rdfs:label "compressor speed"@en .


###  http://saref.linkeddata.es/def/bldg#compressorHasHotGasBypass
bldg:compressorHasHotGasBypass rdf:type owl:DatatypeProperty ;
                               rdfs:domain bldg:Compressor ;
                               rdfs:range xsd:boolean ;
                               rdfs:comment " Whether or not hot gas bypass is provided for the compressor. TRUE = Yes, FALSE = No."@en ;
                               rdfs:label "has hot gas bypass"@en .


###  http://saref.linkeddata.es/def/bldg#compressorIdealCapacity
bldg:compressorIdealCapacity rdf:type owl:DatatypeProperty ;
                             rdfs:domain bldg:Compressor ;
                             rdfs:range xsd:float ;
                             rdfs:comment " Compressor capacity under ideal conditions. Usually measured in Watts (W, J/s)."@en ;
                             rdfs:label "ideal capacity"@en .


###  http://saref.linkeddata.es/def/bldg#compressorIdealShaftPower
bldg:compressorIdealShaftPower rdf:type owl:DatatypeProperty ;
                               rdfs:domain bldg:Compressor ;
                               rdfs:range xsd:float ;
                               rdfs:comment " Compressor shaft power under ideal conditions. Usually measured in Watts (W, J/s)."@en ;
                               rdfs:label "ideal shaft power"@en .


###  http://saref.linkeddata.es/def/bldg#compressorImpellerDiameter
bldg:compressorImpellerDiameter rdf:type owl:DatatypeProperty ;
                                rdfs:domain bldg:Compressor ;
                                rdfs:range xsd:float ;
                                rdfs:comment " Diameter of compressor impeller - used to scale performance of geometrically similar compressors. Usually measured in millimeters (mm)."@en ;
                                rdfs:label "impeller diameter"@en .


###  http://saref.linkeddata.es/def/bldg#compressorMaximumPartLoadRatio
bldg:compressorMaximumPartLoadRatio rdf:type owl:DatatypeProperty ;
                                    rdfs:domain bldg:Compressor ;
                                    rdfs:range xsd:float ;
                                    rdfs:comment " Maximum part load ratio as a fraction of nominal capacity."@en ;
                                    rdfs:label "maximum part load ratio"@en .


###  http://saref.linkeddata.es/def/bldg#compressorMinimunPartLoadRatio
bldg:compressorMinimunPartLoadRatio rdf:type owl:DatatypeProperty ;
                                    rdfs:domain bldg:Compressor ;
                                    rdfs:range xsd:float ;
                                    rdfs:comment " Minimum part load ratio as a fraction of nominal capacity."@en ;
                                    rdfs:label "minimun part load ratio"@en .


###  http://saref.linkeddata.es/def/bldg#compressorNominalCapacity
bldg:compressorNominalCapacity rdf:type owl:DatatypeProperty ;
                               rdfs:domain bldg:Compressor ;
                               rdfs:range xsd:float ;
                               rdfs:comment " Compressor nameplate capacity. Usually measured in Watts (W, J/s)."@en ;
                               rdfs:label "nominal capacity"@en .


###  http://saref.linkeddata.es/def/bldg#compressorPowerSource
bldg:compressorPowerSource rdf:type owl:DatatypeProperty ;
                           rdfs:domain bldg:Compressor ;
                           rdfs:range xsd:string ;
                           rdfs:comment " Type of power driving the compressor."@en ;
                           rdfs:label "power source"@en .


###  http://saref.linkeddata.es/def/bldg#compressorRefrigerantClass
bldg:compressorRefrigerantClass rdf:type owl:DatatypeProperty ;
                                rdfs:domain bldg:Compressor ;
                                rdfs:range xsd:string ;
                                rdfs:comment "Refrigerant class used by the compressor. CFC: Chlorofluorocarbons. HCFC: Hydrochlorofluorocarbons. HFC: Hydrofluorocarbons."@en ;
                                rdfs:label "refrigerant class"@en .


###  http://saref.linkeddata.es/def/bldg#condenserExternalSurfaceArea
bldg:condenserExternalSurfaceArea rdf:type owl:DatatypeProperty ;
                                  rdfs:domain bldg:Condenser ;
                                  rdfs:range xsd:float ;
                                  rdfs:comment " External surface area (both primary and secondary area). Usually measured in square metre (m2)."@en ;
                                  rdfs:label "external surface area"@en .


###  http://saref.linkeddata.es/def/bldg#condenserInternalRefrigerantVolume
bldg:condenserInternalRefrigerantVolume rdf:type owl:DatatypeProperty ;
                                        rdfs:domain bldg:Condenser ;
                                        rdfs:range xsd:float ;
                                        rdfs:comment " Internal volume of condenser (refrigerant side). Usually measured in cubic metre (m3)."@en ;
                                        rdfs:label "internal refrigerant volume"@en .


###  http://saref.linkeddata.es/def/bldg#condenserInternalSurfaceArea
bldg:condenserInternalSurfaceArea rdf:type owl:DatatypeProperty ;
                                  rdfs:domain bldg:Condenser ;
                                  rdfs:range xsd:float ;
                                  rdfs:comment " Internal surface area. Usually measured in square metre (m2)."@en ;
                                  rdfs:label "internal surface area"@en .


###  http://saref.linkeddata.es/def/bldg#condenserInternalWaterVolume
bldg:condenserInternalWaterVolume rdf:type owl:DatatypeProperty ;
                                  rdfs:domain bldg:Condenser ;
                                  rdfs:range xsd:float ;
                                  rdfs:comment " Internal volume of condenser (water side). Usually measured in cubic metre (m3)."@en ;
                                  rdfs:label "internal water volume"@en .


###  http://saref.linkeddata.es/def/bldg#condenserNominalHeatTransferArea
bldg:condenserNominalHeatTransferArea rdf:type owl:DatatypeProperty ;
                                      rdfs:domain bldg:Condenser ;
                                      rdfs:range xsd:float ;
                                      rdfs:comment " Nominal heat transfer surface area associated with nominal overall heat transfer coefficient. Usually measured in square metre (m2)."@en ;
                                      rdfs:label "nominal heat transfer area"@en .


###  http://saref.linkeddata.es/def/bldg#condenserNominalHeatTransferCoefficient
bldg:condenserNominalHeatTransferCoefficient rdf:type owl:DatatypeProperty ;
                                             rdfs:domain bldg:Condenser ;
                                             rdfs:range xsd:float ;
                                             rdfs:comment " Nominal overall heat transfer coefficient associated with nominal heat transfer area. Usually measured in Watts/m2 Kelvin."@en ;
                                             rdfs:label "nominal heat transfer coefficient"@en .


###  http://saref.linkeddata.es/def/bldg#condenserRefrigerantClass
bldg:condenserRefrigerantClass rdf:type owl:DatatypeProperty ;
                               rdfs:domain bldg:Condenser ;
                               rdfs:range xsd:string ;
                               rdfs:comment "Refrigerant class used by the condenser. CFC: Chlorofluorocarbons. HCFC: Hydrochlorofluorocarbons. HFC: Hydrofluorocarbons."@en ;
                               rdfs:label "refrigerant class"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamCoilLength
bldg:cooledBeamCoilLength rdf:type owl:DatatypeProperty ;
                          rdfs:domain bldg:CooledBeam ;
                          rdfs:range xsd:float ;
                          rdfs:comment " Length of coil. Usually measured in millimeters (mm)."@en ;
                          rdfs:label "coil length"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamCoilWidth
bldg:cooledBeamCoilWidth rdf:type owl:DatatypeProperty ;
                         rdfs:domain bldg:CooledBeam ;
                         rdfs:range xsd:float ;
                         rdfs:comment " Width of coil. Usually measured in millimeters (mm"@en ;
                         rdfs:label "coil width"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamFinishColor
bldg:cooledBeamFinishColor rdf:type owl:DatatypeProperty ;
                           rdfs:domain bldg:CooledBeam ;
                           rdfs:range xsd:string ;
                           rdfs:comment " Finish color for cooled beam."@en ;
                           rdfs:label "finish color"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamIntegratedLightingType
bldg:cooledBeamIntegratedLightingType rdf:type owl:DatatypeProperty ;
                                      rdfs:domain bldg:CooledBeam ;
                                      rdfs:range xsd:string ;
                                      rdfs:comment "Integrated lighting in cooled beam."@en ;
                                      rdfs:label "integrated lighting type"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamIsFreeHanging
bldg:cooledBeamIsFreeHanging rdf:type owl:DatatypeProperty ;
                             rdfs:domain bldg:CooledBeam ;
                             rdfs:range xsd:boolean ;
                             rdfs:comment " Is it free hanging type (not mounted in a false ceiling)?"@en ;
                             rdfs:label "is free hanging"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamNominalCoolingCapacity
bldg:cooledBeamNominalCoolingCapacity rdf:type owl:DatatypeProperty ;
                                      rdfs:domain bldg:CooledBeam ;
                                      rdfs:range xsd:float ;
                                      rdfs:comment " Nominal cooling capacity. Usually measured in Watts (W, J/s)."@en ;
                                      rdfs:label "nominal cooling capacity"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamNominalHeatingCapacity
bldg:cooledBeamNominalHeatingCapacity rdf:type owl:DatatypeProperty ;
                                      rdfs:domain bldg:CooledBeam ;
                                      rdfs:range xsd:float ;
                                      rdfs:comment " Nominal heating capacity. Usually measured in Watts (W, J/s)."@en ;
                                      rdfs:label "nominal heating capacity"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamNominalReturnWaterTemperatureCooling
bldg:cooledBeamNominalReturnWaterTemperatureCooling rdf:type owl:DatatypeProperty ;
                                                    rdfs:domain bldg:CooledBeam ;
                                                    rdfs:range xsd:float ;
                                                    rdfs:comment " Nominal return water temperature (refers to nominal cooling capacity). Usually measured in degrees Kelvin (K)."@en ;
                                                    rdfs:label "nominal return water temperature cooling"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamNominalReturnWaterTemperatureHeating
bldg:cooledBeamNominalReturnWaterTemperatureHeating rdf:type owl:DatatypeProperty ;
                                                    rdfs:domain bldg:CooledBeam ;
                                                    rdfs:range xsd:float ;
                                                    rdfs:comment " Nominal return water temperature (refers to nominal heating capacity). Usually measured in degrees Kelvin (K)."@en ;
                                                    rdfs:label "nominal return water temperature heating"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamNominalSorroundingHumidityCooling
bldg:cooledBeamNominalSorroundingHumidityCooling rdf:type owl:DatatypeProperty ;
                                                 rdfs:domain bldg:CooledBeam ;
                                                 rdfs:range xsd:float ;
                                                 rdfs:comment " Nominal surrounding humidity (refers to nominal cooling capacity). Usually measured in degrees Kelvin (K)."@en ;
                                                 rdfs:label "nominal sorrounding humidity cooling"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamNominalSorroundingTemperatureCooling
bldg:cooledBeamNominalSorroundingTemperatureCooling rdf:type owl:DatatypeProperty ;
                                                    rdfs:domain bldg:CooledBeam ;
                                                    rdfs:range xsd:float ;
                                                    rdfs:comment " Nominal surrounding temperature (refers to nominal cooling capacity). Usually measured in degrees Kelvin (K)."@en ;
                                                    rdfs:label "nominal sorrounding temperature cooling"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamNominalSorroundingTemperatureHeating
bldg:cooledBeamNominalSorroundingTemperatureHeating rdf:type owl:DatatypeProperty ;
                                                    rdfs:domain bldg:CooledBeam ;
                                                    rdfs:range xsd:float ;
                                                    rdfs:comment " Nominal surrounding temperature (refers to nominal heating capacity). Usually measured in degrees Kelvin (K)."@en ;
                                                    rdfs:label "nominal sorrounding temperature heating"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamNominalSupplyWaterTemperatureCooling
bldg:cooledBeamNominalSupplyWaterTemperatureCooling rdf:type owl:DatatypeProperty ;
                                                    rdfs:domain bldg:CooledBeam ;
                                                    rdfs:range xsd:float ;
                                                    rdfs:comment " Nominal supply water temperature (refers to nominal cooling capacity). Usually measured in degrees Kelvin (K)."@en ;
                                                    rdfs:label "nominal supply water temperature cooling"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamNominalSupplyWaterTemperatureHeating
bldg:cooledBeamNominalSupplyWaterTemperatureHeating rdf:type owl:DatatypeProperty ;
                                                    rdfs:domain bldg:CooledBeam ;
                                                    rdfs:range xsd:float ;
                                                    rdfs:comment " Nominal supply water temperature (refers to nominal heating capacity). Usually measured in degrees Kelvin (K)."@en ;
                                                    rdfs:label "nominal supply water temperature heating"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamNominalWaterFlowCooling
bldg:cooledBeamNominalWaterFlowCooling rdf:type owl:DatatypeProperty ;
                                       rdfs:domain bldg:CooledBeam ;
                                       rdfs:range xsd:float ;
                                       rdfs:comment " Nominal water flow (refers to nominal cooling capacity). Usually measured in m3/s."@en ;
                                       rdfs:label "nominal water flow cooling"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamNominalWaterFlowHeating
bldg:cooledBeamNominalWaterFlowHeating rdf:type owl:DatatypeProperty ;
                                       rdfs:domain bldg:CooledBeam ;
                                       rdfs:range xsd:float ;
                                       rdfs:comment " Nominal water flow (refers to nominal heating capacity). Usually measured in m3/s."@en ;
                                       rdfs:label "nominal water flow heating"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamPipeConnectionEnum
bldg:cooledBeamPipeConnectionEnum rdf:type owl:DatatypeProperty ;
                                  rdfs:domain bldg:CooledBeam ;
                                  rdfs:range xsd:string ;
                                  rdfs:comment "The manner in which the pipe connection is made to the cooled beam."@en ;
                                  rdfs:label "pipe connection enum"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamWaterFlowControlSystemType
bldg:cooledBeamWaterFlowControlSystemType rdf:type owl:DatatypeProperty ;
                                          rdfs:domain bldg:CooledBeam ;
                                          rdfs:range xsd:string ;
                                          rdfs:comment " Factory fitted waterflow control system."@en ;
                                          rdfs:label "water flow control system type"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamWaterPressureRangeMax
bldg:cooledBeamWaterPressureRangeMax rdf:type owl:DatatypeProperty ;
                                     rdfs:domain bldg:CooledBeam ;
                                     rdfs:range xsd:float ;
                                     rdfs:comment "Allowable water circuit working pressure range. Usually measured in Pascals (Pa, N/m2)."@en ;
                                     rdfs:label "water pressure range max"@en .


###  http://saref.linkeddata.es/def/bldg#cooledBeamWaterPressureRangeMin
bldg:cooledBeamWaterPressureRangeMin rdf:type owl:DatatypeProperty ;
                                     rdfs:domain bldg:CooledBeam ;
                                     rdfs:range xsd:float ;
                                     rdfs:comment "Allowable water circuit working pressure range. Usually measured in Pascals (Pa, N/m2)."@en ;
                                     rdfs:label "water pressure range min"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerAmbientDesignDryBulbTemperature
bldg:coolingTowerAmbientDesignDryBulbTemperature rdf:type owl:DatatypeProperty ;
                                                 rdfs:domain bldg:CoolingTower ;
                                                 rdfs:range xsd:float ;
                                                 rdfs:comment " Ambient design dry bulb temperature used for selecting the cooling tower. Usually measured in degrees Kelvin (K)."@en ;
                                                 rdfs:label "ambient design dry bulb temperature"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerAmbientDesignWetBulbTemperature
bldg:coolingTowerAmbientDesignWetBulbTemperature rdf:type owl:DatatypeProperty ;
                                                 rdfs:domain bldg:CoolingTower ;
                                                 rdfs:range xsd:float ;
                                                 rdfs:comment " Ambient design wet bulb temperature used for selecting the cooling tower. Usually measured in degrees Kelvin (K)."@en ;
                                                 rdfs:label "ambient design wet bulb temperature"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerBasinReserveVolume
bldg:coolingTowerBasinReserveVolume rdf:type owl:DatatypeProperty ;
                                    rdfs:domain bldg:CoolingTower ;
                                    rdfs:range xsd:float ;
                                    rdfs:comment " Volume between operating and overflow levels in cooling tower basin. Usually measured in cubic metre (m3)."@en ;
                                    rdfs:label "basin reserve volume"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerCapacityControl
bldg:coolingTowerCapacityControl rdf:type owl:DatatypeProperty ;
                                 rdfs:domain bldg:CoolingTower ;
                                 rdfs:range xsd:string ;
                                 rdfs:comment "FanCycling: Fan is cycled on and off to control duty. TwoSpeedFan: Fan is switched between low and high speed to control duty. VariableSpeedFan: Fan speed is varied to control duty. DampersControl: Dampers modulate the air flow to control duty. BypassValveControl: Bypass valve modulates the water flow to control duty. MultipleSeriesPumps: Turn on/off multiple series pump to control duty. TwoSpeedPump: Switch between high/low pump speed to control duty. VariableSpeedPump: vary pump speed to control duty."@en ;
                                 rdfs:label "capacity control"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerCircuitType
bldg:coolingTowerCircuitType rdf:type owl:DatatypeProperty ;
                             rdfs:domain bldg:CoolingTower ;
                             rdfs:range xsd:string ;
                             rdfs:comment "OpenCircuit: Exposes water directly to the cooling atmosphere. CloseCircuit: The fluid is separated from the atmosphere by a heat exchanger. Wet: The air stream or the heat exchange surface is evaporatively cooled. Dry: No evaporation into the air stream. DryWet: A combination of a dry tower and a wet tower."@en ;
                             rdfs:label "circuit type"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerControlStrategy
bldg:coolingTowerControlStrategy rdf:type owl:DatatypeProperty ;
                                 rdfs:domain bldg:CoolingTower ;
                                 rdfs:range xsd:string ;
                                 rdfs:comment "FixedExitingWaterTemp: The capacity is controlled to maintain a fixed exiting water temperature. WetBulbTempReset: The set-point is reset based on the wet-bulb temperature."@en ;
                                 rdfs:label "control strategy"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerFlowArrangement
bldg:coolingTowerFlowArrangement rdf:type owl:DatatypeProperty ;
                                 rdfs:domain bldg:CoolingTower ;
                                 rdfs:range xsd:string ;
                                 rdfs:comment " CounterFlow: Air and water flow enter in different directions. CrossFlow: Air and water flow are perpendicular. ParallelFlow: air and water flow enter in same directions."@en ;
                                 rdfs:label "flow arrangement"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerLiftElevationDifference
bldg:coolingTowerLiftElevationDifference rdf:type owl:DatatypeProperty ;
                                         rdfs:domain bldg:CoolingTower ;
                                         rdfs:range xsd:float ;
                                         rdfs:comment " Elevation difference between cooling tower sump and the top of the tower. Usually measured in millimeters (mm)."@en ;
                                         rdfs:label "lift elevation difference"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerNominalCapcity
bldg:coolingTowerNominalCapcity rdf:type owl:DatatypeProperty ;
                                rdfs:domain bldg:CoolingTower ;
                                rdfs:range xsd:float ;
                                rdfs:comment " Nominal cooling tower capacity in terms of heat transfer rate of the cooling tower between air stream and water stream at nominal conditions. Usually measured in Watts (W, J/s)."@en ;
                                rdfs:label "nominal capcity"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerNumberOfCells
bldg:coolingTowerNumberOfCells rdf:type owl:DatatypeProperty ;
                               rdfs:domain bldg:CoolingTower ;
                               rdfs:range xsd:integer ;
                               rdfs:comment " Number of cells in one cooling tower unit."@en ;
                               rdfs:label "number of cells"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerOperationTemperatureRange
bldg:coolingTowerOperationTemperatureRange rdf:type owl:DatatypeProperty ;
                                           rdfs:domain bldg:CoolingTower ;
                                           rdfs:range xsd:float ;
                                           rdfs:comment " Allowable operation ambient air temperature range. Usually measured in degrees Kelvin (K)."@en ;
                                           rdfs:label "operation temperature range"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerSprayType
bldg:coolingTowerSprayType rdf:type owl:DatatypeProperty ;
                           rdfs:domain bldg:CoolingTower ;
                           rdfs:range xsd:string ;
                           rdfs:comment " SprayFilled: Water is sprayed into airflow. SplashTypeFill: water cascades over successive rows of splash bars. FilmTypeFill: water flows in a thin layer over closely spaced sheets."@en ;
                           rdfs:label "spray type"@en .


###  http://saref.linkeddata.es/def/bldg#coolingTowerWaterRequirement
bldg:coolingTowerWaterRequirement rdf:type owl:DatatypeProperty ;
                                  rdfs:domain bldg:CoolingTower ;
                                  rdfs:range xsd:float ;
                                  rdfs:comment " Make-up water requirements. Usually measured in m3/s."@en ;
                                  rdfs:label "water requirement"@en .


###  http://saref.linkeddata.es/def/bldg#damperBladeAction
bldg:damperBladeAction rdf:type owl:DatatypeProperty ;
                       rdfs:domain bldg:Damper ;
                       rdfs:range xsd:string ;
                       rdfs:comment "Blade action."@en ;
                       rdfs:label "blade action"@en .


###  http://saref.linkeddata.es/def/bldg#damperBladeEdge
bldg:damperBladeEdge rdf:type owl:DatatypeProperty ;
                     rdfs:domain bldg:Damper ;
                     rdfs:range xsd:string ;
                     rdfs:comment "Blade edge."@en ;
                     rdfs:label "blade edge"@en .


###  http://saref.linkeddata.es/def/bldg#damperBladeShape
bldg:damperBladeShape rdf:type owl:DatatypeProperty ;
                      rdfs:domain bldg:Damper ;
                      rdfs:range xsd:string ;
                      rdfs:comment "Blade shape. Flat means triple V-groove."@en ;
                      rdfs:label "blade shape"@en .


###  http://saref.linkeddata.es/def/bldg#damperBladeThickness
bldg:damperBladeThickness rdf:type owl:DatatypeProperty ;
                          rdfs:domain bldg:Damper ;
                          rdfs:range xsd:float ;
                          rdfs:comment " The thickness of the damper blade. Usually measured in millimeters (mm)."@en ;
                          rdfs:label "blade thickness"@en .


###  http://saref.linkeddata.es/def/bldg#damperCloseOffRating
bldg:damperCloseOffRating rdf:type owl:DatatypeProperty ;
                          rdfs:domain bldg:Damper ;
                          rdfs:range xsd:float ;
                          rdfs:comment " Close off rating. Usually measured in Pascals (Pa, N/m2)."@en ;
                          rdfs:label "close off rating"@en .


###  http://saref.linkeddata.es/def/bldg#damperFaceArea
bldg:damperFaceArea rdf:type owl:DatatypeProperty ;
                    rdfs:domain bldg:Damper ;
                    rdfs:range xsd:float ;
                    rdfs:comment " Face area open to the airstream. Usually measured in square metre (m2)."@en ;
                    rdfs:label "face area"@en .


###  http://saref.linkeddata.es/def/bldg#damperFrameDepth
bldg:damperFrameDepth rdf:type owl:DatatypeProperty ;
                      rdfs:domain bldg:Damper ;
                      rdfs:range xsd:float ;
                      rdfs:comment " The length (or depth) of the damper frame. Usually measured in millimeters (mm)."@en ;
                      rdfs:label "frame depth"@en .


###  http://saref.linkeddata.es/def/bldg#damperFrameThickness
bldg:damperFrameThickness rdf:type owl:DatatypeProperty ;
                          rdfs:domain bldg:Damper ;
                          rdfs:range xsd:float ;
                          rdfs:comment " The thickness of the damper frame material. Usually measured in millimeters (mm)."@en ;
                          rdfs:label "frame thickness"@en .


###  http://saref.linkeddata.es/def/bldg#damperFrameType
bldg:damperFrameType rdf:type owl:DatatypeProperty ;
                     rdfs:domain bldg:Damper ;
                     rdfs:range xsd:string ;
                     rdfs:comment " The type of frame used by the damper (e.g., Standard, Single Flange, Single Reversed Flange, Double Flange, etc.)."@en ;
                     rdfs:label "frame type"@en .


###  http://saref.linkeddata.es/def/bldg#damperLeakageFullyClosed
bldg:damperLeakageFullyClosed rdf:type owl:DatatypeProperty ;
                              rdfs:domain bldg:Damper ;
                              rdfs:range xsd:float ;
                              rdfs:comment " Leakage when fully closed. Usually measured in m3/s."@en ;
                              rdfs:label "leakage fully closed"@en .


###  http://saref.linkeddata.es/def/bldg#damperMaximumAirFlowRate
bldg:damperMaximumAirFlowRate rdf:type owl:DatatypeProperty ;
                              rdfs:domain bldg:Damper ;
                              rdfs:range xsd:float ;
                              rdfs:comment " Maximum allowable air flow rate. Usually measured in m3/s."@en ;
                              rdfs:label "maximum air flow rate"@en .


###  http://saref.linkeddata.es/def/bldg#damperMaximumWorkingPressure
bldg:damperMaximumWorkingPressure rdf:type owl:DatatypeProperty ;
                                  rdfs:domain bldg:Damper ;
                                  rdfs:range xsd:float ;
                                  rdfs:comment " Maximum working pressure. Usually measured in Pascals (Pa, N/m2)."@en ;
                                  rdfs:label "maximum working pressure"@en .


###  http://saref.linkeddata.es/def/bldg#damperNominalAirFlowRate
bldg:damperNominalAirFlowRate rdf:type owl:DatatypeProperty ;
                              rdfs:domain bldg:Damper ;
                              rdfs:range xsd:float ;
                              rdfs:comment " Nominal air flow rate. Usually measured in m3/s."@en ;
                              rdfs:label "nominal air flow rate"@en .


###  http://saref.linkeddata.es/def/bldg#damperNumberOfBlades
bldg:damperNumberOfBlades rdf:type owl:DatatypeProperty ;
                          rdfs:domain bldg:Damper ;
                          rdfs:range xsd:integer ;
                          rdfs:comment " Number of blades."@en ;
                          rdfs:label "number of blades"@en .


###  http://saref.linkeddata.es/def/bldg#damperOpenPressureDrop
bldg:damperOpenPressureDrop rdf:type owl:DatatypeProperty ;
                            rdfs:domain bldg:Damper ;
                            rdfs:range xsd:float ;
                            rdfs:comment " Total pressure drop across damper. Usually measured in Pascals (Pa, N/m2)."@en ;
                            rdfs:label "open pressure drop"@en .


###  http://saref.linkeddata.es/def/bldg#damperOperation
bldg:damperOperation rdf:type owl:DatatypeProperty ;
                     rdfs:domain bldg:Damper ;
                     rdfs:range xsd:string ;
                     rdfs:comment "The operational mechanism for the damper operation."@en ;
                     rdfs:label "operation"@en .


###  http://saref.linkeddata.es/def/bldg#damperOrientation
bldg:damperOrientation rdf:type owl:DatatypeProperty ;
                       rdfs:domain bldg:Damper ;
                       rdfs:range xsd:string ;
                       rdfs:comment "The intended orientation for the damper as specified by the manufacturer."@en ;
                       rdfs:label "orientation"@en .


###  http://saref.linkeddata.es/def/bldg#damperTemperatureRangeMax
bldg:damperTemperatureRangeMax rdf:type owl:DatatypeProperty ;
                               rdfs:domain bldg:Damper ;
                               rdfs:range xsd:float ;
                               rdfs:comment "Temperature range. Usually measured in degrees Kelvin (K)."@en ;
                               rdfs:label "temperature range max"@en .


###  http://saref.linkeddata.es/def/bldg#damperTemperatureRangeMin
bldg:damperTemperatureRangeMin rdf:type owl:DatatypeProperty ;
                               rdfs:domain bldg:Damper ;
                               rdfs:range xsd:float ;
                               rdfs:comment "Temperature range. Usually measured in degrees Kelvin (K)."@en ;
                               rdfs:label "temperature range min"@en .


###  http://saref.linkeddata.es/def/bldg#damperTemperatureRating
bldg:damperTemperatureRating rdf:type owl:DatatypeProperty ;
                             rdfs:domain bldg:Damper ;
                             rdfs:range xsd:float ;
                             rdfs:comment " Temperature rating. Usually measured in degrees Kelvin (K)."@en ;
                             rdfs:label "temperature rating"@en .


###  http://saref.linkeddata.es/def/bldg#ductSilencerAirFlowRateRangeMax
bldg:ductSilencerAirFlowRateRangeMax rdf:type owl:DatatypeProperty ;
                                     rdfs:domain bldg:DuctSilencer ;
                                     rdfs:range xsd:float ;
                                     rdfs:comment "Possible range of airflow that can be delivered. Usually measured in m3/s."@en ;
                                     rdfs:label "air flow rate range max"@en .


###  http://saref.linkeddata.es/def/bldg#ductSilencerAirFlowRateRangeMin
bldg:ductSilencerAirFlowRateRangeMin rdf:type owl:DatatypeProperty ;
                                     rdfs:domain bldg:DuctSilencer ;
                                     rdfs:range xsd:float ;
                                     rdfs:comment "Possible range of airflow that can be delivered. Usually measured in m3/s."@en ;
                                     rdfs:label "air flow rate range min"@en .


###  http://saref.linkeddata.es/def/bldg#ductSilencerHasExteriorInsulation
bldg:ductSilencerHasExteriorInsulation rdf:type owl:DatatypeProperty ;
                                       rdfs:domain bldg:DuctSilencer ;
                                       rdfs:range xsd:boolean ;
                                       rdfs:comment " TRUE if the silencer has exterior insulation. FALSE if it does not."@en ;
                                       rdfs:label "has exterior insulation"@en .


###  http://saref.linkeddata.es/def/bldg#ductSilencerHydraulicDiameter
bldg:ductSilencerHydraulicDiameter rdf:type owl:DatatypeProperty ;
                                   rdfs:domain bldg:DuctSilencer ;
                                   rdfs:range xsd:float ;
                                   rdfs:comment " Hydraulic diameter. Usually measured in millimeters (mm)."@en ;
                                   rdfs:label "hydraulic diameter"@en .


###  http://saref.linkeddata.es/def/bldg#ductSilencerLength
bldg:ductSilencerLength rdf:type owl:DatatypeProperty ;
                        rdfs:domain bldg:DuctSilencer ;
                        rdfs:range xsd:float ;
                        rdfs:comment " The finished length of the silencer. Usually measured in millimeters (mm)."@en ;
                        rdfs:label "length"@en .