saref4bldg.ttl 169 KB
Newer Older
María's avatar
María committed
@prefix : <https://w3id.org/def/saref4bldg#> .
@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 xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@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 saref: <https://w3id.org/saref#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
María's avatar
María committed

María's avatar
María committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 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
<https://w3id.org/def/saref4bldg> a owl:Ontology ;
	owl:versionIRI <https://w3id.org/def/v1/saref4bldg> ;
	dcterms:creator <http://purl.org/net/mpoveda> , <http://www.garcia-castro.com/foaf.rdf#me> ;
	dcterms:license <http://purl.org/NET/rdflicense/cc-by4.0> ;
	owl:versionInfo "1.0" ;
	vann:preferredNamespaceUri "https://w3id.org/def/saref4bldg#" ;
	dc:title "SAREF extension for building devices"@en ;
	dc:publisher <http://www.oeg-upm.net/> ;
	vann:preferredNamespacePrefix "s4bldg" ;
	dc:description "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. The descriptions of the classes and properties extracted from IFC have been taken from the IFC documentation."@en .
# 
# 
# #################################################################
# #
# #    Annotation properties
# #
# #################################################################
# 
# 
# http://purl.org/dc/terms/creator

dcterms:creator a owl:AnnotationProperty .
# 
# http://purl.org/dc/terms/dateCopyrighted

dcterms:dateCopyrighted a owl:AnnotationProperty .
# 
# http://purl.org/dc/terms/rightsHolder

dcterms:rightsHolder a owl:AnnotationProperty .
# 
# http://purl.org/vocab/vann/preferredNamespacePrefix

vann:preferredNamespacePrefix a owl:AnnotationProperty .
# 
# http://purl.org/vocab/vann/preferredNamespaceUri

vann:preferredNamespaceUri a owl:AnnotationProperty .
# 
# http://www.w3.org/ns/prov#hadPrimarySource

prov:hadPrimarySource a owl:AnnotationProperty .
# 
# 
# 
# #################################################################
# #
# #    Datatypes
# #
# #################################################################
# 
# 
# http://www.w3.org/2001/XMLSchema#duration

xsd:duration a rdfs:Datatype .
# 
# 
# 
# #################################################################
# #
# #    Object Properties
# #
# #################################################################
# 
# 
# http://www.w3.org/2003/01/geo/wgs84_pos#location

<http://www.w3.org/2003/01/geo/wgs84_pos#location> a owl:ObjectProperty ;
	rdfs:comment "The relation between something and the point,  or other geometrical thing in space, where it is.  For example, the realtionship between a radio tower and a Point with a given lat and long. Or a relationship between a park and its outline as a closed arc of points, or a road and its location as a arc (a sequence of points). Clearly in practice there will be limit to the accuracy of any such statement, but one would expect an accuracy appropriate for the size of the object and uses such as mapping ."@en ;
	rdfs:isDefinedBy <http://www.w3.org/2003/01/geo/wgs84_pos#> ;
	rdfs:label "location"@en .
# 
# https://w3id.org/def/saref4bldg#airFlowRateMax

:airFlowRateMax a owl:ObjectProperty ;
	rdfs:comment "Maximum allowable air flow rate. Usually measured in m3/s."@en ;
	rdfs:label "air flow rate range max"@en .
# 
# https://w3id.org/def/saref4bldg#airFlowRateMin

:airFlowRateMin a owl:ObjectProperty ;
	rdfs:comment "Minimum allowable air flow rate. Usually measured in m3/s."@en ;
	rdfs:label "air flow rate range min"@en .
# 
# https://w3id.org/def/saref4bldg#ambientDesignDryBulbTemperature

:ambientDesignDryBulbTemperature a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#ambientDesignWetBulbTemperature

:ambientDesignWetBulbTemperature a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#apparentPowerMax

:apparentPowerMax a owl:ObjectProperty ;
	rdfs:comment "Maximum apparent power/capacity in VA (volt ampere). Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "maximum apparent power"@en .
# 
# https://w3id.org/def/saref4bldg#audioVolume

:audioVolume a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#basinReserveVolume

:basinReserveVolume a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#bladeThickness

:bladeThickness a owl:ObjectProperty ;
	rdfs:comment "The thickness of the damper blade. Usually measured in millimeters (mm)."@en ;
	rdfs:label "blade thickness"@en .
# 
# https://w3id.org/def/saref4bldg#bodyMass

:bodyMass a owl:ObjectProperty ;
	rdfs:comment "Overall body mass of the heater. Usually measured in kilograms (kg) or grams (g)."@en ;
	rdfs:label "body mass"@en .
# 
# https://w3id.org/def/saref4bldg#capacityWeight

:capacityWeight a owl:ObjectProperty ;
	rdfs:comment "Capacity of the transport element measured by weight. Usually measured in kilograms (kg) or grams (g)."@en ;
	rdfs:label "capacity weight"@en .
# 
# https://w3id.org/def/saref4bldg#closeOffRating

:closeOffRating a owl:ObjectProperty ;
	rdfs:comment "Close off rating. Usually measured in Pascals (Pa, N/m2)."@en ;
	rdfs:label "close off rating"@en .
# 
# https://w3id.org/def/saref4bldg#coilLength

:coilLength a owl:ObjectProperty ;
	rdfs:comment "Length of coil. Usually measured in millimeters (mm)."@en ;
	rdfs:label "coil length"@en .
# 
# https://w3id.org/def/saref4bldg#coilWidth

:coilWidth a owl:ObjectProperty ;
	rdfs:comment "Width of coil. Usually measured in millimeters (mm"@en ;
	rdfs:label "coil width"@en .
# 
# https://w3id.org/def/saref4bldg#colorTemperature

:colorTemperature a owl:ObjectProperty ;
	rdfs:comment "The color temperature of any source of radiation is defined as the temperature (in Kelvin) of a black-body or Planckian radiator whose radiation has the same chromaticity as the source of radiation. Often the values are only approximate color temperatures as the black-body radiator cannot emit radiation of every chromaticity value. The color temperatures of the commonest artificial light sources range from less than 3000K (warm white) to 4000K (intermediate) and over 5000K (daylight). Usually measured in degrees Kelvin (K)."@en ;
	rdfs:label "color temperature"@en .
# 
# https://w3id.org/def/saref4bldg#compressorSpeed

:compressorSpeed a owl:ObjectProperty ;
	rdfs:comment "Compressor speed. Usually measured in cycles/s."@en ;
	rdfs:label "compressor speed"@en .
# 
# https://w3id.org/def/saref4bldg#connectionSize

:connectionSize a owl:ObjectProperty ;
	rdfs:comment "The connection size of the to and from the pump. Usually measured in millimeters (mm)."@en ;
	rdfs:label "connection size"@en .
# 
# https://w3id.org/def/saref4bldg#contains

:contains a owl:ObjectProperty ;
	owl:inverseOf :isContainedIn ;
	a owl:TransitiveProperty ;
	rdfs:comment "A relation between a physical space and the objects located in such space."@en ;
	rdfs:label "contains"@en .
# 
# https://w3id.org/def/saref4bldg#contributedLuminousFlux

:contributedLuminousFlux a owl:ObjectProperty ;
	rdfs:comment "Luminous flux is a photometric measure of radiant flux, i.e. the volume of light emitted from a light source. Luminous flux is measured either for the interior as a whole or for a part of the interior (partial luminous flux for a solid angle). All other photometric parameters are derivatives of luminous flux. Luminous flux is measured in lumens (lm). The luminous flux is given as a nominal value for each lamp. Usually measured in Lumen (lm, Candela Steradian)."@en ;
	rdfs:label "contributed luminous flux"@en .
# 
# https://w3id.org/def/saref4bldg#coverLength

:coverLength a owl:ObjectProperty ;
	rdfs:comment "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the oil interceptor. Usually measured in millimeters (mm)."@en ;
	rdfs:label "cover length"@en .
# 
# https://w3id.org/def/saref4bldg#coverWidth

:coverWidth a owl:ObjectProperty ;
	rdfs:comment "The length measured along the x-axis in the local coordinate system of the cover of the oil interceptor. Usually measured in millimeters (mm)."@en ;
	rdfs:label "cover width"@en .
# 
# https://w3id.org/def/saref4bldg#effectiveCapacity

:effectiveCapacity a owl:ObjectProperty ;
	rdfs:comment "The total effective or actual volumetric capacity of the tank. Usually measured in cubic metre (m3).B3"@en ;
	rdfs:label "effective capacity"@en .
# 
# https://w3id.org/def/saref4bldg#electricGeneratorEfficiency

:electricGeneratorEfficiency a owl:ObjectProperty ;
	rdfs:comment "The ratio of output capacity to intake capacity."@en ;
	rdfs:label "electric generator efficiency"@en .
# 
# https://w3id.org/def/saref4bldg#electricMotorEfficiency

:electricMotorEfficiency a owl:ObjectProperty ;
	rdfs:comment "The ratio of output capacity to intake capacity."@en ;
	rdfs:label "electric motor efficiency"@en .
# 
# https://w3id.org/def/saref4bldg#externalSurfaceArea

:externalSurfaceArea a owl:ObjectProperty ;
	rdfs:comment "External surface area (both primary and secondary area). Usually measured in square metre (m2)."@en ;
	rdfs:label "external surface area"@en .
# 
# https://w3id.org/def/saref4bldg#faceArea

:faceArea a owl:ObjectProperty ;
	rdfs:comment "Face area open to the airstream. Usually measured in square metre (m2)."@en ;
	rdfs:label "face area"@en .
# 
# https://w3id.org/def/saref4bldg#finalResistance

:finalResistance a owl:ObjectProperty ;
	rdfs:comment "Filter fluid resistance when replacement is required (i.e., Pressure drop at the maximum air flowrate across the filter when the filter needs replacement per ASHRAE Standard 52.1). Usually measured in Pascals (Pa, N/m2)."@en ;
	rdfs:label "final resistance"@en .
# 
# https://w3id.org/def/saref4bldg#firstCurvatureRadius

:firstCurvatureRadius a owl:ObjectProperty ;
	rdfs:comment "FirstCurvatureRadius should be defined as the base or left side radius of curvature value. Usually measured in millimeters (mm)."@en ;
	rdfs:label "first curvature radius"@en .
# 
# https://w3id.org/def/saref4bldg#flowCoefficient

:flowCoefficient a owl:ObjectProperty ;
	rdfs:comment "Flow coefficient (the quantity of fluid that passes through a fully open valve at unit pressure drop), typically expressed as the Kv or Cv value for the valve."@en ;
	rdfs:label "flow coefficient"@en .
# 
# https://w3id.org/def/saref4bldg#flowResistanceMax

:flowResistanceMax a owl:ObjectProperty ;
	rdfs:comment "Allowable range of frictional resistance against which the fluid is being pumped. Usually measured in Pascals (Pa, N/m2)."@en ;
	rdfs:label "flow resistance range"@en .
# 
# https://w3id.org/def/saref4bldg#flowResistanceMin

:flowResistanceMin a owl:ObjectProperty ;
	rdfs:comment "Allowable range of frictional resistance against which the fluid is being pumped. Usually measured in Pascals (Pa, N/m2)."@en ;
	rdfs:label "flow resistance range"@en .
# 
# https://w3id.org/def/saref4bldg#fluidFlowRateMax

:fluidFlowRateMax a owl:ObjectProperty ;
	rdfs:comment "Possible range of fluid flowrate that can be delivered. Usually measured in m3/s."@en ;
	rdfs:label "fluid flow rate range"@en .
# 
# https://w3id.org/def/saref4bldg#fluidFlowRateMin

:fluidFlowRateMin a owl:ObjectProperty ;
	rdfs:comment "Possible range of fluid flowrate that can be delivered. Usually measured in m3/s."@en ;
	rdfs:label "fluid flow rate range"@en .
# 
# https://w3id.org/def/saref4bldg#foulingFactor

:foulingFactor a owl:ObjectProperty ;
	rdfs:comment "Fouling factor of the tubes in the tube bundle. Usually measured in m2 Kelvin/Watt."@en ;
	rdfs:label "fouling factor"@en .
# 
# https://w3id.org/def/saref4bldg#frameDepth

:frameDepth a owl:ObjectProperty ;
	rdfs:comment "The length (or depth) of the damper frame. Usually measured in millimeters (mm)."@en ;
	rdfs:label "frame depth"@en .
# 
# https://w3id.org/def/saref4bldg#frameThickness

:frameThickness a owl:ObjectProperty ;
	rdfs:comment "The thickness of the damper frame material. Usually measured in millimeters (mm)."@en ;
	rdfs:label "frame thickness"@en .
# 
# https://w3id.org/def/saref4bldg#hasSpace

:hasSpace a owl:ObjectProperty ;
	owl:inverseOf :isSpaceOf ;
	a owl:TransitiveProperty ;
	rdfs:comment "Relation between a building or a building space and the spaces it can be divided into."@en ;
	rdfs:label "has space"@en .
# 
# https://w3id.org/def/saref4bldg#heatExchangeArea

:heatExchangeArea a owl:ObjectProperty ;
	rdfs:comment "Heat exchange area. Usually measured in square metre (m2)."@en ;
	rdfs:label "heat exchange area"@en .
# 
# https://w3id.org/def/saref4bldg#heatTransferSurfaceArea

:heatTransferSurfaceArea a owl:ObjectProperty ;
	rdfs:comment "Total heat transfer area of the vessel. Usually measured in square metre (m2)."@en ;
	rdfs:label "heat transfer surface area"@en .
# 
# https://w3id.org/def/saref4bldg#height

:height a owl:ObjectProperty ;
	rdfs:comment "Height of the vibration isolator before tha application of load. Usually measured in millimeters (mm)."@en ;
	rdfs:label "height"@en .
# 
# https://w3id.org/def/saref4bldg#horizontalSpacing

:horizontalSpacing a owl:ObjectProperty ;
	rdfs:comment "Horizontal spacing between tubes in the tube bundle. Usually measured in millimeters (mm)."@en ;
	rdfs:label "horizontal spacing"@en .
# 
# https://w3id.org/def/saref4bldg#hydraulicDiameter

:hydraulicDiameter a owl:ObjectProperty ;
	rdfs:comment "Hydraulic diameter. Usually measured in millimeters (mm)."@en ;
	rdfs:label "hydraulic diameter"@en .
# 
# https://w3id.org/def/saref4bldg#idealCapacity

:idealCapacity a owl:ObjectProperty ;
	rdfs:comment "Compressor capacity under ideal conditions. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "ideal capacity"@en .
# 
# https://w3id.org/def/saref4bldg#idealShaftPower

:idealShaftPower a owl:ObjectProperty ;
	rdfs:comment "Compressor shaft power under ideal conditions. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "ideal shaft power"@en .
# 
# https://w3id.org/def/saref4bldg#imaginaryImpedanceRatio

:imaginaryImpedanceRatio a owl:ObjectProperty ;
	rdfs:comment "The ratio between the imaginary part of the zero sequence impedance and the imaginary part of the positive impedance (i.e. imaginary part of the short-circuit voltage) of the transformer. Used for three-phase transformer which includes a N-conductor."@en ;
	rdfs:label "imaginary impedance ratio"@en .
# 
# https://w3id.org/def/saref4bldg#impellerDiameter

:impellerDiameter a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#inLineRowSpacing

:inLineRowSpacing a owl:ObjectProperty ;
	rdfs:comment "In-line tube row spacing. Usually measured in millimeters (mm)."@en ;
	rdfs:label "in line row spacing"@en .
# 
# https://w3id.org/def/saref4bldg#initialResistance

:initialResistance a owl:ObjectProperty ;
	rdfs:comment "Initial new filter fluid resistance (i.e., pressure drop at the maximum air flowrate across the filter when the filter is new per ASHRAE Standard 52.1). Usually measured in Pascals (Pa, N/m2)."@en ;
	rdfs:label "initial resistance"@en .
# 
# https://w3id.org/def/saref4bldg#inletConnectionSize

:inletConnectionSize a owl:ObjectProperty ;
	rdfs:comment "Size of the inlet connection. Usually measured in millimeters (mm)."@en ;
	rdfs:label "inlet connection size"@en .
# 
# https://w3id.org/def/saref4bldg#insideDiameter

:insideDiameter a owl:ObjectProperty ;
	rdfs:comment "Actual inner diameter of the tube in the tube bundle. Usually measured in millimeters (mm)."@en ;
	rdfs:label "inside diameter"@en .
# 
# https://w3id.org/def/saref4bldg#internalRefrigerantVolume

:internalRefrigerantVolume a owl:ObjectProperty ;
	rdfs:comment "Internal volume of evaporator (refrigerant side). Usually measured in cubic metre (m3)."@en ;
	rdfs:label "internal refrigerant volume"@en .
# 
# https://w3id.org/def/saref4bldg#internalSurfaceArea

:internalSurfaceArea a owl:ObjectProperty ;
	rdfs:comment "Internal surface area. Usually measured in square metre (m2)."@en ;
	rdfs:label "internal surface area"@en .
# 
# https://w3id.org/def/saref4bldg#internalWaterVolume

:internalWaterVolume a owl:ObjectProperty ;
	rdfs:comment "Internal volume of evaporator (water side). Usually measured in cubic metre (m3)."@en ;
	rdfs:label "internal water volume"@en .
# 
# https://w3id.org/def/saref4bldg#isContainedIn

:isContainedIn a owl:ObjectProperty , owl:TransitiveProperty ;
	rdfs:comment "A relation between an object and the physical space in which it is located."@en ;
	rdfs:label "is contained in"@en .
# 
# https://w3id.org/def/saref4bldg#isSpaceOf

:isSpaceOf a owl:ObjectProperty , owl:TransitiveProperty ;
	rdfs:comment "Relation between a building space and the building or building space it belongs to."@en ;
	rdfs:label "isSpaceOf"@en .
# 
# https://w3id.org/def/saref4bldg#isolatorCompressibility

:isolatorCompressibility a owl:ObjectProperty ;
	rdfs:comment "The compressibility of the vibration isolator."@en ;
	rdfs:label "isolator compressibility"@en .
# 
# https://w3id.org/def/saref4bldg#isolatorStaticDeflection

:isolatorStaticDeflection a owl:ObjectProperty ;
	rdfs:comment "Static deflection of the vibration isolator. Usually measured in millimeters (mm)."@en ;
	rdfs:label "isolator static deflection"@en .
# 
# https://w3id.org/def/saref4bldg#lampMaintenanceFactor

:lampMaintenanceFactor a owl:ObjectProperty ;
	rdfs:comment "Non recoverable losses of luminous flux of a lamp due to lamp depreciation i.e. the decreasing of light output of a luminaire due to aging and dirt."@en ;
	rdfs:label "lamp maintenance factor"@en .
# 
# https://w3id.org/def/saref4bldg#leakageFullyClosed

:leakageFullyClosed a owl:ObjectProperty ;
	rdfs:comment "Leakage when fully closed. Usually measured in m3/s."@en ;
	rdfs:label "leakage fully closed"@en .
# 
# https://w3id.org/def/saref4bldg#length

:length a owl:ObjectProperty ;
	rdfs:comment "The finished length of the device. Usually measured in millimeters (mm)."@en ;
	rdfs:label "length"@en .
# 
# https://w3id.org/def/saref4bldg#liftElevationDifference

:liftElevationDifference a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#lightEmitterNominalPower

:lightEmitterNominalPower a owl:ObjectProperty ;
	rdfs:comment "Light emitter nominal power. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "light emitter nominal power"@en .
# 
# https://w3id.org/def/saref4bldg#limitingTerminalSize

:limitingTerminalSize a owl:ObjectProperty ;
	rdfs:comment "The maximum terminal size capacity of the device. Usually measured in square metre (m2)."@en ;
	rdfs:label "limiting terminal size"@en .
# 
# https://w3id.org/def/saref4bldg#lockedRotorCurrent

:lockedRotorCurrent a owl:ObjectProperty ;
	rdfs:comment "Input current when a motor armature is energized but not rotating. Usually measured in Ampere (A)."@en ;
	rdfs:label "locked rotor current"@en .
# 
# https://w3id.org/def/saref4bldg#netPositiveSuctionHead

:netPositiveSuctionHead a owl:ObjectProperty ;
	rdfs:comment "Minimum liquid pressure at the pump inlet to prevent cavitation. Usually measured in Pascals (Pa, N/m2)."@en ;
	rdfs:label "net positive suction head"@en .
# 
# https://w3id.org/def/saref4bldg#nominalAirFlowRate

:nominalAirFlowRate a owl:ObjectProperty ;
	rdfs:comment "Nominal rate of air flow. Usually measured in m3/s."@en ;
	rdfs:label "nominal air flow rate"@en .
# 
# https://w3id.org/def/saref4bldg#nominalBodyDepth

:nominalBodyDepth a owl:ObjectProperty ;
	rdfs:comment "Nominal or quoted =length, measured along the z-axis of the local coordinate system of the object, of the body of the object. Usually measured in millimeters (mm)."@en ;
	rdfs:label "nominal body depth"@en .
# 
# https://w3id.org/def/saref4bldg#nominalBodyLength

:nominalBodyLength a owl:ObjectProperty ;
	rdfs:comment "Nominal or quoted length, measured along the x-axis of the local coordinate system of the object, of the body of the object. Usually measured in millimeters (mm)."@en ;
	rdfs:label "nominal body length"@en .
# 
# https://w3id.org/def/saref4bldg#nominalBodyWidth

:nominalBodyWidth a owl:ObjectProperty ;
	rdfs:comment "Nominal or quoted length, measured along the y-axis of the local coordinate system of the object, of the body of the object. Usually measured in millimeters (mm)."@en ;
	rdfs:label "nominal body width"@en .
# 
# https://w3id.org/def/saref4bldg#nominalCapacity

:nominalCapacity a owl:ObjectProperty ;
	rdfs:comment "Nominal capacity. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "nominal capacity"@en .
# 
# https://w3id.org/def/saref4bldg#nominalCondensingTemperature

:nominalCondensingTemperature a owl:ObjectProperty ;
	rdfs:comment "Chiller condensing temperature. Usually measured in degrees Kelvin (K)."@en ;
	rdfs:label "nominal condensing temperature"@en .
# 
# https://w3id.org/def/saref4bldg#nominalCoolingCapacity

:nominalCoolingCapacity a owl:ObjectProperty ;
	rdfs:comment "Nominal cooling capacity. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "nominal cooling capacity"@en .
# 
# https://w3id.org/def/saref4bldg#nominalDepth

:nominalDepth a owl:ObjectProperty ;
	rdfs:comment "The nominal depth of the tank. Note: Not required for a horizontal cylindrical tank. Usually measured in millimeters (mm)."@en ;
	rdfs:label "nominal depth"@en .
# 
# https://w3id.org/def/saref4bldg#nominalDiameter

:nominalDiameter a owl:ObjectProperty ;
	rdfs:comment "Nominal diameter or width of the tubes in the tube bundle. Usually measured in millimeters (mm)."@en ;
	rdfs:label "nominal diameter"@en .
# 
# https://w3id.org/def/saref4bldg#nominalEfficiency

:nominalEfficiency a owl:ObjectProperty ;
	rdfs:comment "Nominal chiller efficiency under nominal conditions. "@en ;
	rdfs:label "nominal efficiency"@en .
# 
# https://w3id.org/def/saref4bldg#nominalEnergyConsumption

:nominalEnergyConsumption a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#nominalEvaporatingTemmperature

:nominalEvaporatingTemmperature a owl:ObjectProperty ;
	rdfs:comment "Chiller evaporating temperature.Usually measured in degrees Kelvin (K)."@en ;
	rdfs:label "nominal evaporating temmperature"@en .
# 
# https://w3id.org/def/saref4bldg#nominalFilterFaceVelocity

:nominalFilterFaceVelocity a owl:ObjectProperty ;
	rdfs:comment "Filter face velocity. Usually measured in m/s."@en ;
	rdfs:label "nominal filter face velocity"@en .
# 
# https://w3id.org/def/saref4bldg#nominalFlowRate

:nominalFlowRate a owl:ObjectProperty ;
	rdfs:comment "Nominal fluid flow rate through the filter. Usually measured in m3/s."@en ;
	rdfs:label "nominal flow rate"@en .
# 
# https://w3id.org/def/saref4bldg#nominalFrequency

:nominalFrequency a owl:ObjectProperty ;
	rdfs:comment "The nominal frequency of the supply. Usually measured in cycles/s or Hertz (Hz)."@en ;
	rdfs:label "nominal frequency"@en .
# 
# https://w3id.org/def/saref4bldg#nominalHeatRejectionRate

:nominalHeatRejectionRate a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#nominalHeatTransferArea

:nominalHeatTransferArea a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#nominalHeatTransferCoefficient

:nominalHeatTransferCoefficient a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#nominalHeatingCapacity

:nominalHeatingCapacity a owl:ObjectProperty ;
	rdfs:comment "Nominal heating capacity. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "nominal heating capacity"@en .
# 
# https://w3id.org/def/saref4bldg#nominalLatentCapacity

:nominalLatentCapacity a owl:ObjectProperty ;
	rdfs:comment "Nominal latent capacity. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "nominal latent capacity"@en .
# 
# https://w3id.org/def/saref4bldg#nominalLengthOrDiameter

:nominalLengthOrDiameter a owl:ObjectProperty ;
	rdfs:comment "The nominal length or, in the case of a vertical cylindrical tank, the nominal diameter of the tank. Usually measured in millimeters (mm)."@en ;
	rdfs:label "nominal length or diameter"@en .
# 
# https://w3id.org/def/saref4bldg#nominalMediaSurfaceVelocity

:nominalMediaSurfaceVelocity a owl:ObjectProperty ;
	rdfs:comment "Average fluid velocity at the media surface. Usually measured in m/s."@en ;
	rdfs:label "nominal media surface velocity"@en .
# 
# https://w3id.org/def/saref4bldg#nominalMoistureGain

:nominalMoistureGain a owl:ObjectProperty ;
	rdfs:comment "Nominal rate of water vapor added into the airstream. Usually measured in kg/s."@en ;
	rdfs:label "nominal moisture gain"@en .
# 
# https://w3id.org/def/saref4bldg#nominalPartLoadRatio

:nominalPartLoadRatio a owl:ObjectProperty ;
	rdfs:comment "Allowable part load ratio range."@en ;
	rdfs:label "nominal part load ratio"@en .
# 
# https://w3id.org/def/saref4bldg#nominalParticleGeometricMeanDiameter

:nominalParticleGeometricMeanDiameter a owl:ObjectProperty ;
	rdfs:comment "Particle geometric mean diameter associated with nominal efficiency. Usually measured in millimeters (mm)."@en ;
	rdfs:label "nominal particle geometric mean diameter"@en .
# 
# https://w3id.org/def/saref4bldg#nominalParticleGeometricStandardDeviation

:nominalParticleGeometricStandardDeviation a owl:ObjectProperty ;
	rdfs:comment "Particle geometric standard deviation associated with nominal efficiency. "@en ;
	rdfs:label "nominal particle geometric standard deviation"@en .
# 
# https://w3id.org/def/saref4bldg#nominalPowerConsumption

:nominalPowerConsumption a owl:ObjectProperty ;
	rdfs:comment "Nominal total power consumption. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "nominal power consumption"@en .
# 
# https://w3id.org/def/saref4bldg#nominalPowerRate

:nominalPowerRate a owl:ObjectProperty ;
	rdfs:comment "Nominal fan power rate.Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "nominal power rate"@en .
# 
# https://w3id.org/def/saref4bldg#nominalPressureDrop

:nominalPressureDrop a owl:ObjectProperty ;
	rdfs:comment "Total pressure drop across the filter. Usually measured in Pascals (Pa, N/m2)."@en ;
	rdfs:label "nominal pressure drop"@en .
# 
# https://w3id.org/def/saref4bldg#nominalReturnWaterTemperatureCooling

:nominalReturnWaterTemperatureCooling a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#nominalReturnWaterTemperatureHeating

:nominalReturnWaterTemperatureHeating a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#nominalRotationSpeed

:nominalRotationSpeed a owl:ObjectProperty ;
	rdfs:comment "Nominal fan wheel speed. Usually measured in cycles/s."@en ;
	rdfs:label "nominal rotation speed"@en .
# 
# https://w3id.org/def/saref4bldg#nominalSensibleCapacity

:nominalSensibleCapacity a owl:ObjectProperty ;
	rdfs:comment "Nominal sensible capacity. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "nominal sensible capacity"@en .
# 
# https://w3id.org/def/saref4bldg#nominalSorroundingHumidityCooling

:nominalSorroundingHumidityCooling a owl:ObjectProperty ;
	rdfs:comment "Nominal surrounding humidity (refers to nominal cooling capacity). Usually measured in degrees Kelvin (K)."@en ;
	rdfs:label "nominal sorrounding humidity cooling"@en .
# 
# https://w3id.org/def/saref4bldg#nominalSorroundingTemperatureCooling

:nominalSorroundingTemperatureCooling a owl:ObjectProperty ;
	rdfs:comment "Nominal surrounding temperature (refers to nominal cooling capacity). Usually measured in degrees Kelvin (K)."@en ;
	rdfs:label "nominal sorrounding temperature cooling"@en .
# 
# https://w3id.org/def/saref4bldg#nominalSorroundingTemperatureHeating

:nominalSorroundingTemperatureHeating a owl:ObjectProperty ;
	rdfs:comment "Nominal surrounding temperature (refers to nominal heating capacity). Usually measured in degrees Kelvin (K)."@en ;
	rdfs:label "nominal sorrounding temperature heating"@en .
# 
# https://w3id.org/def/saref4bldg#nominalStaticPressure

:nominalStaticPressure a owl:ObjectProperty ;
	rdfs:comment "The static pressure within the air stream that the fan must overcome to insure designed circulation of air. Usually measured in Pascals (Pa, N/m2)."@en ;
	rdfs:label "nominal static pressure"@en .
# 
# https://w3id.org/def/saref4bldg#nominalSupplyVoltage

:nominalSupplyVoltage a owl:ObjectProperty ;
	rdfs:comment "The nominal voltage of the supply. Usually measured in Volts (V, W/A)."@en ;
	rdfs:label "nominal supply voltage"@en .
# 
# https://w3id.org/def/saref4bldg#nominalSupplyVoltageMax

:nominalSupplyVoltageMax a owl:ObjectProperty ;
	rdfs:comment "The maximum and minimum allowed voltage of the supply e.g. boundaries of 380V/440V may be applied for a nominal voltage of 400V."@en ;
	rdfs:label "nominal supply voltage offset"@en .
# 
# https://w3id.org/def/saref4bldg#nominalSupplyVoltageMin

:nominalSupplyVoltageMin a owl:ObjectProperty ;
	rdfs:comment "The maximum and minimum allowed voltage of the supply e.g. boundaries of 380V/440V may be applied for a nominal voltage of 400V."@en ;
	rdfs:label "nominal supply voltage offset"@en .
# 
# https://w3id.org/def/saref4bldg#nominalSupplyWaterTemperatureCooling

:nominalSupplyWaterTemperatureCooling a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#nominalSupplyWaterTemperatureHeating

:nominalSupplyWaterTemperatureHeating a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#nominalTotalPressure

:nominalTotalPressure a owl:ObjectProperty ;
	rdfs:comment "Nominal total pressure rise across the fan. Usually measured in Pascals (Pa, N/m2)."@en ;
	rdfs:label "nominal total pressure"@en .
# 
# https://w3id.org/def/saref4bldg#nominalUa

:nominalUa a owl:ObjectProperty ;
	rdfs:comment "Nominal UA value."@en ;
	rdfs:label "nominal ua"@en .
# 
# https://w3id.org/def/saref4bldg#nominalVolumetricCapacity

:nominalVolumetricCapacity a owl:ObjectProperty ;
	rdfs:comment "The total nominal or design volumetric capacity of the tank. Usually measured in cubic metre (m3)."@en ;
	rdfs:label "nominal volumetric capacity"@en .
# 
# https://w3id.org/def/saref4bldg#nominalWaterFlowCooling

:nominalWaterFlowCooling a owl:ObjectProperty ;
	rdfs:comment "Nominal water flow (refers to nominal cooling capacity). Usually measured in m3/s."@en ;
	rdfs:label "nominal water flow cooling"@en .
# 
# https://w3id.org/def/saref4bldg#nominalWaterFlowHeating

:nominalWaterFlowHeating a owl:ObjectProperty ;
	rdfs:comment "Nominal water flow (refers to nominal heating capacity). Usually measured in m3/s."@en ;
	rdfs:label "nominal water flow heating"@en .
# 
# https://w3id.org/def/saref4bldg#nominalWidthOrDiameter

:nominalWidthOrDiameter a owl:ObjectProperty ;
	rdfs:comment "The nominal width or, in the case of a horizontal cylindrical tank, the nominal diameter of the tank. Note: Not required for a vertical cylindrical tank. Usually measured in millimeters (mm)."@en ;
	rdfs:label "nominal width or diameter"@en .
# 
# https://w3id.org/def/saref4bldg#nomminalRotationSpeed

:nomminalRotationSpeed a owl:ObjectProperty ;
	rdfs:comment "Pump rotational speed under nominal conditions. Usually measured in cycles/s."@en ;
	rdfs:label "nomminal rotation speed"@en .
# 
# https://w3id.org/def/saref4bldg#openPressureDrop

:openPressureDrop a owl:ObjectProperty ;
	rdfs:comment "Total pressure drop across damper. Usually measured in Pascals (Pa, N/m2)."@en ;
	rdfs:label "open pressure drop"@en .
# 
# https://w3id.org/def/saref4bldg#operatingWight

:operatingWight a owl:ObjectProperty ;
	rdfs:comment "Operating weight of the tank including all of its contents. Usually measured in kilograms (kg) or grams (g)."@en ;
	rdfs:label "operating wight"@en .
# 
# https://w3id.org/def/saref4bldg#operationTemperatureMax

:operationTemperatureMax a owl:ObjectProperty ;
	rdfs:comment "Allowable operation ambient (air, fluid) temperature range. Usually measured in degrees Kelvin (K)."@en ;
	rdfs:label "operation temperature range"@en .
# 
# https://w3id.org/def/saref4bldg#operationTemperatureMin

:operationTemperatureMin a owl:ObjectProperty ;
	rdfs:comment "Allowable operation ambient (air, fluid) temperature range. Usually measured in degrees Kelvin (K)."@en ;
	rdfs:label "operation temperature range"@en .
# 
# https://w3id.org/def/saref4bldg#operationalRiterial

:operationalRiterial a owl:ObjectProperty ;
	rdfs:comment "Time of operation at maximum operational ambient air temperature. Measured in seconds (s) or days (d) or other units of time."@en ;
	rdfs:label "operational riterial"@en .
# 
# https://w3id.org/def/saref4bldg#outletConnectionSize

:outletConnectionSize a owl:ObjectProperty ;
	rdfs:comment "Size of the outlet connection. Usually measured in millimeters (mm)."@en ;
	rdfs:label "outlet connection size"@en .
# 
# https://w3id.org/def/saref4bldg#outletTemperatureMax

:outletTemperatureMax a owl:ObjectProperty ;
	rdfs:comment "Allowable outlet temperature of either the water or the steam. Usually measured in degrees Kelvin (K)."@en ;
	rdfs:label "outlet temperature range"@en .
# 
# https://w3id.org/def/saref4bldg#outletTemperatureMin

:outletTemperatureMin a owl:ObjectProperty ;
	rdfs:comment "Allowable outlet temperature of either the water or the steam. Usually measured in degrees Kelvin (K)."@en ;
	rdfs:label "outlet temperature range"@en .
# 
# https://w3id.org/def/saref4bldg#outputCapacity

:outputCapacity a owl:ObjectProperty ;
	rdfs:comment "Total nominal heat output as listed by the manufacturer. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "output capacity"@en .
# 
# https://w3id.org/def/saref4bldg#outsideDiameter

:outsideDiameter a owl:ObjectProperty ;
	rdfs:comment "Actual outside diameter of the tube in the tube bundle. Usually measured in millimeters (mm)."@en ;
	rdfs:label "outside diameter"@en .
# 
# https://w3id.org/def/saref4bldg#partLoadRatioMax

:partLoadRatioMax a owl:ObjectProperty ;
	rdfs:comment "Maximum part load ratio as a fraction of nominal capacity."@en ;
	rdfs:label "maximum part load ratio"@en .
# 
# https://w3id.org/def/saref4bldg#partLoadRatioMin

:partLoadRatioMin a owl:ObjectProperty ;
	rdfs:comment "Minimum part load ratio as a fraction of nominal capacity."@en ;
	rdfs:label "minimum part load ratio"@en .
# 
# https://w3id.org/def/saref4bldg#powerOutputMax

:powerOutputMax a owl:ObjectProperty ;
	rdfs:comment "The maximum output power rating of the engine. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "maximum power output"@en .
# 
# https://w3id.org/def/saref4bldg#pressureRating

:pressureRating a owl:ObjectProperty ;
	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 .
# 
# https://w3id.org/def/saref4bldg#primaryAirFlowRateMax

:primaryAirFlowRateMax a owl:ObjectProperty ;
	rdfs:comment "Maximum primary airflow that can be delivered. Usually measured in m3/s."@en ;
	rdfs:label "primary air flow rate range"@en .
# 
# https://w3id.org/def/saref4bldg#primaryAirFlowRateMin

:primaryAirFlowRateMin a owl:ObjectProperty ;
	rdfs:comment "Minimum primary airflow that can be delivered. Usually measured in m3/s."@en ;
	rdfs:label "primary air flow rate range"@en .
# 
# https://w3id.org/def/saref4bldg#primaryApparentPower

:primaryApparentPower a owl:ObjectProperty ;
	rdfs:comment "The power in VA (volt ampere) that has been transformed and that runs into the transformer on the primary side. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "primary apparent power"@en .
# 
# https://w3id.org/def/saref4bldg#primaryCurrent

:primaryCurrent a owl:ObjectProperty ;
	rdfs:comment "The current that is going to be transformed and that runs into the transformer on the primary side. Usually measured in Ampere (A)."@en ;
	rdfs:label "primary current"@en .
# 
# https://w3id.org/def/saref4bldg#primaryFrequency

:primaryFrequency a owl:ObjectProperty ;
	rdfs:comment "The frequency that is going to be transformed and that runs into the transformer on the primary side. Usually measured in cycles/s or Hertz (Hz)."@en ;
	rdfs:label "primary frequency"@en .
# 
# https://w3id.org/def/saref4bldg#primaryVoltage

:primaryVoltage a owl:ObjectProperty ;
	rdfs:comment "The voltage that is going to be transformed and that runs into the transformer on the primary side. Usually measured in Volts (V, W/A)."@en ;
	rdfs:label "primary voltage"@en .
# 
# https://w3id.org/def/saref4bldg#pumpFlowRateMax

:pumpFlowRateMax a owl:ObjectProperty ;
	rdfs:comment "Allowable range of volume of fluid being pumped against the resistance specified. Usually measured in kg/s."@en ;
	rdfs:label "pump flow rate range"@en .
# 
# https://w3id.org/def/saref4bldg#pumpFlowRateMin

:pumpFlowRateMin a owl:ObjectProperty ;
	rdfs:comment "Allowable range of volume of fluid being pumped against the resistance specified. Usually measured in kg/s."@en ;
	rdfs:label "pump flow rate range"@en .
# 
# https://w3id.org/def/saref4bldg#realImpedanceRatio

:realImpedanceRatio a owl:ObjectProperty ;
	rdfs:comment "The ratio between the real part of the zero sequence impedance and the real part of the positive impedance (i.e. real part of the short-circuit voltage) of the transformer. Used for three-phase transformer which includes a N-conductor."@en ;
	rdfs:label "real impedance ratio"@en .
# 
# https://w3id.org/def/saref4bldg#secondCurvatureRadius

:secondCurvatureRadius a owl:ObjectProperty ;
	rdfs:comment "SecondCurvatureRadius should be defined as the top or right side radius of curvature value. Usually measured in millimeters (mm)."@en ;
	rdfs:label "second curvature radius"@en .
# 
# https://w3id.org/def/saref4bldg#secondaryAirFlowRateMax

:secondaryAirFlowRateMax a owl:ObjectProperty ;
	rdfs:comment "Maximum secondary airflow that can be delivered. Usually measured in Pascals (Pa, N/m2)."@en ;
	rdfs:label "secondary air flow rate range"@en .
# 
# https://w3id.org/def/saref4bldg#secondaryAirFlowRateMin

:secondaryAirFlowRateMin a owl:ObjectProperty ;
	rdfs:comment "Maximum secondary airflow that can be delivered. Usually measured in Pascals (Pa, N/m2)."@en ;
	rdfs:label "secondary air flow rate range"@en .
# 
# https://w3id.org/def/saref4bldg#secondaryApparentPower

:secondaryApparentPower a owl:ObjectProperty ;
	rdfs:comment "The power in VA (volt ampere) that has been transformed and is running out of the transformer on the secondary side. Usually measured in Watts (W, J/s)."@en ;
	rdfs:label "secondary apparent power"@en .
# 
# https://w3id.org/def/saref4bldg#secondaryCurrent

:secondaryCurrent a owl:ObjectProperty ;
	rdfs:comment "The current that has been transformed and is running out of the transformer on the secondary side. Usually measured in Ampere (A)."@en ;
	rdfs:label "secondary current"@en .
# 
# https://w3id.org/def/saref4bldg#secondaryFrequency

:secondaryFrequency a owl:ObjectProperty ;
	rdfs:comment "The frequency that has been transformed and is running out of the transformer on the secondary side. Usually measured in cycles/s or Hertz (Hz)."@en ;
	rdfs:label "secondary frequency"@en .
# 
# https://w3id.org/def/saref4bldg#secondaryVoltage

:secondaryVoltage a owl:ObjectProperty ;
	rdfs:comment "The voltage that has been transformed and is running out of the transformer on the secondary side. Usually measured in Volts (V, W/A)."@en ;
	rdfs:label "secondary voltage"@en .
# 
# https://w3id.org/def/saref4bldg#shortCircuitVoltage

:shortCircuitVoltage a owl:ObjectProperty ;
	rdfs:comment "A complex number that specifies the real and imaginary parts of the short-circuit voltage at rated current of a transformer given in %."@en ;
	rdfs:label "short circuit voltage"@en .
# 
# https://w3id.org/def/saref4bldg#size

:size a owl:ObjectProperty ;
	rdfs:comment "The size of the connection to the valve (or to each connection for faucets, mixing valves, etc.). Usually measured in millimeters (mm)."@en ;
	rdfs:label "size"@en .
# 
# https://w3id.org/def/saref4bldg#solarReflectance

:solarReflectance a owl:ObjectProperty ;
	rdfs:comment "(Rsol): The ratio of incident solar radiation that is reflected by a shading system (also named _e). Note the following equation Asol + Rsol + Tsol = 1"@en ;
	rdfs:label "solar reflectance"@en .
# 
# https://w3id.org/def/saref4bldg#solarTransmittance

:solarTransmittance a owl:ObjectProperty ;
	rdfs:comment "(Tsol) The ratio of incident solar radiation that directly passes through a shading system (also named _e). Note the following equation Asol + Rsol + Tsol = 1"@en ;
	rdfs:label "solar transmittance"@en .
# 
# https://w3id.org/def/saref4bldg#spectrumMax

:spectrumMax a owl:ObjectProperty ;
	rdfs:comment "The spectrum of radiation describes its composition with regard to wavelength. Light, for example, as the portion of electromagnetic radiation that is visible to the human eye, is radiation with wavelengths in the range of approx. 380 to 780 nm (1 nm = 10 m). The corresponding range of colours varies from violet to indigo, blue, green, yellow, orange, and red. These colours form a continuous spectrum, in which the various spectral sectors merge into each other."@en ;
	rdfs:label "maximum spectrum"@en .
# 
# https://w3id.org/def/saref4bldg#spectrumMin

:spectrumMin a owl:ObjectProperty ;
	rdfs:comment "The spectrum of radiation describes its composition with regard to wavelength. Light, for example, as the portion of electromagnetic radiation that is visible to the human eye, is radiation with wavelengths in the range of approx. 380 to 780 nm (1 nm = 10 m). The corresponding range of colours varies from violet to indigo, blue, green, yellow, orange, and red. These colours form a continuous spectrum, in which the various spectral sectors merge into each other."@en ;
	rdfs:label "minimum spectrum"@en .
# 
# https://w3id.org/def/saref4bldg#staggeredRowSpacing

:staggeredRowSpacing a owl:ObjectProperty ;
	rdfs:comment "Staggered tube row spacing. Usually measured in millimeters (mm)."@en ;
	rdfs:label "staggered row spacing"@en .
# 
# https://w3id.org/def/saref4bldg#startCurrentFactor

:startCurrentFactor a owl:ObjectProperty ;
	rdfs:comment "IEC. Start current factor defines how large the peek starting current will become on the engine. StartCurrentFactor is multiplied to NominalCurrent and we get the start current."@en ;
	rdfs:label "start current factor"@en .
# 
# https://w3id.org/def/saref4bldg#startingTime

:startingTime a owl:ObjectProperty ;
	rdfs:comment "The time (in s) needed for the motor to reach its rated speed with its driven equipment attached, starting from standstill and at the nominal voltage applied at its terminals."@en ;
	rdfs:label "starting time"@en .
#