Warning
This model has not been updated since the last revision of the 223P ontology, and it may not pass validation. 223P was last updated on 2025-01-16 16:12:21. The model file was last updated on 2024-09-12 18:39:55
LBNL Example Building 3 Model 1#
Example Building 3 is a real-world medium-sized office building. It is approximately 67,000 square feet in size, contains 2 floors, 27 space types, and 469 rooms. Labels have been anonymized, and are not interpretable. It uses an underfloor air distribution system with fan-powered terminal reheat coils for perimeter zones. Four roof-top units with VAV are located on the roof. The lighting system primariliy uses fluorescent luminaires and zone-based lighting controllers that communicate with user interface devices and wireless gatetways over DALI networks. The gateways collect occupancy and light sensor data over an ISM-band wireless network.
Example Building 3 Model 1 is provided by Lawrence Berkeley National Laboratory. See PNNL Example Building 3 model 2 for a different modeling approach for the same building.
Contents#
This model contains a representation of the HVAC system.
Source#
Downloads#
Queries#
Description |
Query URL |
---|---|
Zone/room temperature sensors |
Model Components#
Parent Class |
Class |
Instances |
---|---|---|
116 |
||
58 |
||
54 |
||
54 |
||
54 |
||
48 |
||
20 |
||
20 |
||
8 |
||
8 |
||
4 |
||
4 |
||
616 |
||
500 |
||
28 |
||
58 |
||
2 |
||
506 |
||
368 |
||
368 |
||
140 |
||
132 |
||
8 |
||
8 |
Load and Validate Model#
This code uses the BuildingMOTIF library to load the 223P ontology and the model file into a temporary in-memory instance. It then validates the model against the ontology. If the model is invalid, it will print the validation report.
To run this code, you need to have Java installed on your system. If you do not have Java installed, you can remove the shacl_engine='topquadrant'
parameter from the BuildingMOTIF
constructor.
Be warned that without the shacl_engine='topquadrant'
parameter, the validation process will be slower.
Note
BuildingMOTIF installation
To install the buildingmotif
library, you can use the following command:
pip install 'buildingmotif[topquadrant] @ git+https://github.com/NREL/buildingmotif.git@develop'
If you do not have Java installed, you can use the following command to install the library:
pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop'
from buildingmotif import BuildingMOTIF
from buildingmotif.dataclasses import Library, Model
import logging
# Create a BuildingMOTIF object. If you do not have Java installed, remove the "shacl_engine" parameter
bm = BuildingMOTIF('sqlite://', shacl_engine='topquadrant', log_level=logging.ERROR)
# load 223P library. We will load a recent copy from the models.open223.info
# git repository; later, we will load this from the location of the actual standard
s223 = Library.load(ontology_graph="https://github.com/open223/models.open223.info/raw/main/ontologies/223p.ttl")
# load the model into the BuildingMOTIF instance
model = Model.create("urn:lbnl-bdg3-1")
model.graph.parse("https://models.open223.info/lbnl-bdg3-1.ttl")
# validate the model against 223P ontology
ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False)
# print the validation result
print(f"Model is valid: {ctx.valid}")
# if the model is invalid, print the validation report
if not ctx.valid:
print(ctx.report_string[:1000]) # first 1000 characters of the report
# BuildingMOTIF can also interpret the report to provide recommendations on fixes
for focus_node, diffs in ctx.get_reasons_with_severity("Violation").items():
if len(diffs) == 0:
continue
print(focus_node)
for diff in diffs:
print(" - " + diff.reason())
Model is valid: 0
@prefix ns2: <http://data.ashrae.org/standard223#> .
@prefix ns3: <http://qudt.org/schema/qudt/> .
@prefix ns4: <http://data.ashrae.org/standard223/data/lbnl-example-2#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
[] a sh:ValidationReport ;
sh:conforms false ;
sh:result [ a sh:ValidationResult ;
sh:focusNode ns4:01896 ;
sh:resultMessage "s223: A `QuantifiableProperty` must be associated with a QuantityKind using the relation `hasQuantityKind`." ;
sh:resultPath ns3:hasQuantityKind ;
sh:resultSeverity sh:Violation ;
sh:sourceConstraintComponent sh:ClassConstraintComponent ;
sh:sourceShape <urn:well-known/fbe527fd> ;
sh:value <http://qudt.org/vocab/quantitykind/VolumeFlowRate> ],
[ a sh:ValidationResult ;
sh:focusNode ns4:02139 ;
sh:resultMessage "s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/lb
http://data.ashrae.org/standard223/data/lbnl-example-2#02141
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02141 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02141 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02719
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02719 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02719 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02824
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02824 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02824 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02009
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02009 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02009 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02117
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02117 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02117 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02231
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02231 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02231 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01486
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01486 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01486 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01548
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01548 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01548 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01672
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01672 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01672 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02825
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02825 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02825 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-6V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01213
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01213 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01213 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02563
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02563 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02563 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-2V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-2V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01042
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01042 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01042 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02342
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02342 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02342 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01896
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01896 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01896 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01753
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01753 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01753 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00656
- http://qudt.org/vocab/quantitykind/ElectricPower on http://data.ashrae.org/standard223/data/lbnl-example-2#00656 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on http://data.ashrae.org/standard223/data/lbnl-example-2#00656 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02416
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02416 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02416 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02253
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02253 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02253 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02588
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02588 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02588 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00650
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00650 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00650 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00550
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00550 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00550 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02120
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02120 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02120 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01859
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01859 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01859 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02268
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02268 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02268 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCPositiveVoltage-3.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-3.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00785
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#00785 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00785 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Numerical-Frequency
- http://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Numerical-Frequency needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01895
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01895 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01895 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-24V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-24V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-208V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-208V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00755
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00755 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00755 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02811
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02811 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02811 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01711
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01711 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01711 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01043
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01043 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01043 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-4160V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-4160V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02901
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02901 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02901 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00538
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00538 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00538 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00784
- http://data.ashrae.org/standard223#EnumerationKind-OnOff on http://data.ashrae.org/standard223/data/lbnl-example-2#00784 needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00912
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00912 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00912 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02898
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02898 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02898 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01522
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01522 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01522 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01845
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01845 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01845 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02454
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02454 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02454 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02402
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02402 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02402 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01488
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01488 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01488 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01192
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01192 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01192 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01413
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01413 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01413 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02453
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02453 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02453 needs to be a http://qudt.org/schema/qudt/Unit
ndb2b2bc51cb249f6b5f7ff79900660a9b997
- http://qudt.org/vocab/quantitykind/Temperature on ndb2b2bc51cb249f6b5f7ff79900660a9b997 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00776
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00776 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00776 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02756
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02756 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02756 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-110V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-110V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01822
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01822 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01822 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02861
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02861 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02861 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02340
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02340 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02340 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00572
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00572 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00572 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02905
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02905 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02905 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01287
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01287 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01287 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01005
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01005 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01005 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02452
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02452 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02452 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01449
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01449 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01449 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-24V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-24V needs to be a http://qudt.org/schema/qudt/QuantityKind
ndb2b2bc51cb249f6b5f7ff79900660a9b301
- http://qudt.org/vocab/quantitykind/Temperature on ndb2b2bc51cb249f6b5f7ff79900660a9b301 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-110V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-110V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01770
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01770 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01770 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02885
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02885 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02885 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02527
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02527 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02527 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02476
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02476 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02476 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02526
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02526 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02526 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02943
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02943 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02943 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01176
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01176 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01176 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02193
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02193 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02193 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00529
- http://data.ashrae.org/standard223#EnumerationKind-OnOff on http://data.ashrae.org/standard223/data/lbnl-example-2#00529 needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223#LineLineVoltage-240V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00612
- http://qudt.org/vocab/unit/KiloW on http://data.ashrae.org/standard223/data/lbnl-example-2#00612 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on http://data.ashrae.org/standard223/data/lbnl-example-2#00612 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCPositiveVoltage-190.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-190.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02793
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02793 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02793 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-120V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-120V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00781
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00781 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00781 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00700
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00700 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#00700 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02067
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02067 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02067 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00894
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00894 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00894 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02161
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02161 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02161 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01634
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01634 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01634 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02290
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02290 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02290 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-415V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-415V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01864
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01864 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01864 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00585
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00585 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00585 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00952
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00952 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00952 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01746
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01746 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01746 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02082
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02082 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02082 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-208V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-208V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01597
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01597 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01597 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01189
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01189 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01189 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02587
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02587 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02587 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-240V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00699
- http://data.ashrae.org/standard223#EnumerationKind-OnOff on http://data.ashrae.org/standard223/data/lbnl-example-2#00699 needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00698
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00698 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00698 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02936
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02936 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02936 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02488
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02488 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02488 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02564
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02564 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02564 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00615
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#00615 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00615 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02714
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02714 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02714 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01604
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01604 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01604 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-48V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-48V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02198
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02198 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02198 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02490
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02490 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02490 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01749
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01749 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01749 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02309
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02309 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02309 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-240V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01747
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01747 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01747 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02081
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02081 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02081 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02602
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02602 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02602 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02569
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02569 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02569 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-277V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-277V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01177
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01177 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01177 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02899
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02899 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02899 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01398
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01398 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01398 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01266
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01266 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01266 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00487
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00487 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00487 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01957
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01957 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01957 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-12.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-12.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00481
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00481 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00481 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01901
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01901 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01901 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00488
- http://data.ashrae.org/standard223#EnumerationKind-OnOff on http://data.ashrae.org/standard223/data/lbnl-example-2#00488 needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01994
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01994 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01994 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00530
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#00530 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00530 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02550
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02550 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02550 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02750
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02750 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02750 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00799
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00799 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00799 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Numerical-DCVoltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-DCVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01066
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01066 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01066 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Frequency-60Hz
- http://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Frequency-60Hz needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00544
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00544 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00544 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02142
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02142 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02142 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00900
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00900 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00900 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02379
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02379 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02379 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02863
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02863 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02863 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01857
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01857 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01857 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-208V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-208V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01933
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01933 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01933 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01214
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01214 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01214 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02304
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02304 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02304 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01436
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01436 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01436 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00829
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00829 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00829 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02513
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02513 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02513 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01473
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01473 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01473 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01448
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01448 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01448 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02083
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02083 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02083 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01562
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01562 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01562 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00570
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00570 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00570 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01191
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01191 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01191 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00990
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00990 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00990 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01229
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01229 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01229 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02215
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02215 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02215 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01301
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01301 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01301 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00500
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00500 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00500 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02573
- http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/data/lbnl-example-2#02573 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/data/lbnl-example-2#02573 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02414
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02414 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02414 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02216
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02216 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02216 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02119
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02119 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02119 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01196
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01196 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01196 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01115
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01115 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01115 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01044
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01044 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01044 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01337
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01337 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01337 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02378
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02378 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02378 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00744
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00744 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#00744 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01154
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01154 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01154 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00480
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00480 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00480 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02326
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02326 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02326 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00716
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00716 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00716 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-231V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-231V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02087
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02087 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02087 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00633
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00633 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00633 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01376
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01376 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01376 needs to be a http://qudt.org/schema/qudt/Unit
ndb2b2bc51cb249f6b5f7ff79900660a9b319
- http://qudt.org/vocab/unit/PERCENT on ndb2b2bc51cb249f6b5f7ff79900660a9b319 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on ndb2b2bc51cb249f6b5f7ff79900660a9b319 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02050
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02050 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02050 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02900
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02900 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02900 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01598
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01598 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01598 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01708
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01708 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01708 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01361
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01361 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01361 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00835
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00835 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00835 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02849
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02849 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02849 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02458
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02458 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02458 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01561
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01561 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01561 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02787
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02787 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02787 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01710
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01710 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01710 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02384
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02384 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02384 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01894
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01894 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01894 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01942
- http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/data/lbnl-example-2#01942 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/data/lbnl-example-2#01942 needs to be a http://qudt.org/schema/qudt/Unit
ndb2b2bc51cb249f6b5f7ff79900660a9b390
- http://qudt.org/vocab/unit/PERCENT on ndb2b2bc51cb249f6b5f7ff79900660a9b390 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on ndb2b2bc51cb249f6b5f7ff79900660a9b390 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01918
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01918 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01918 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-3300V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-3300V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02045
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02045 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02045 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02267
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02267 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02267 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01636
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01636 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01636 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01510
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01510 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01510 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01919
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01919 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01919 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01970
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01970 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01970 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01671
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01671 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01671 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00710
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00710 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00710 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01599
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01599 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01599 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02155
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02155 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02155 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01584
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01584 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01584 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02625
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02625 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02625 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02909
- http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/data/lbnl-example-2#02909 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/data/lbnl-example-2#02909 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01374
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01374 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01374 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-6600V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6600V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01339
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01339 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01339 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01152
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01152 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01152 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02191
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02191 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02191 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02341
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02341 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02341 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00670
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00670 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00670 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02364
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02364 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02364 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02031
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02031 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02031 needs to be a http://qudt.org/schema/qudt/Unit
ndb2b2bc51cb249f6b5f7ff79900660a9b820
- http://qudt.org/vocab/unit/PERCENT on ndb2b2bc51cb249f6b5f7ff79900660a9b820 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on ndb2b2bc51cb249f6b5f7ff79900660a9b820 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02512
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02512 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02512 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02607
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02607 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02607 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-3810V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-3810V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01411
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01411 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01411 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00510
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00510 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00510 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-1730V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-1730V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00495
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00495 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00495 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00742
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00742 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00742 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02415
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02415 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02415 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00801
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00801 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00801 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00953
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00953 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00953 needs to be a http://qudt.org/schema/qudt/QuantityKind
ndb2b2bc51cb249f6b5f7ff79900660a9b98
- http://qudt.org/vocab/quantitykind/VolumeFraction on ndb2b2bc51cb249f6b5f7ff79900660a9b98 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on ndb2b2bc51cb249f6b5f7ff79900660a9b98 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02662
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02662 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02662 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02475
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02475 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02475 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00782
- http://qudt.org/vocab/unit/KiloW on http://data.ashrae.org/standard223/data/lbnl-example-2#00782 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on http://data.ashrae.org/standard223/data/lbnl-example-2#00782 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00966
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00966 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#00966 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01659
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01659 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01659 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01807
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01807 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01807 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02006
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02006 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02006 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02380
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02380 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02380 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02046
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02046 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02046 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01381
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01381 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01381 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-5770V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-5770V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01303
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01303 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01303 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01004
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01004 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01004 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02439
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02439 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02439 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01288
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01288 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01288 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00708
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00708 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00708 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-380.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-380.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02013
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02013 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02013 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-219V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-219V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCPositiveVoltage-24.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-24.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01786
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01786 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01786 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCPositiveVoltage-2.5V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-2.5V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01414
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01414 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01414 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00972
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00972 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00972 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-6000V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-6000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCPositiveVoltage-380.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-380.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00631
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00631 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00631 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02712
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02712 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02712 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02786
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02786 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02786 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01881
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01881 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01881 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02377
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02377 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02377 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00635
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00635 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00635 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00659
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#00659 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00659 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01153
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01153 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01153 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01028
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01028 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01028 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00714
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00714 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00714 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01455
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01455 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01455 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00765
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00765 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00765 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00774
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00774 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00774 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00783
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00783 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00783 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCVoltage-DCNegativeVoltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCNegativeVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02789
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02789 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02789 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02648
- http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/data/lbnl-example-2#02648 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/data/lbnl-example-2#02648 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-120V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-120V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#NumberOfElectricalPhases-ThreePhase
- http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#NumberOfElectricalPhases-ThreePhase needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-600V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-600V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02068
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02068 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02068 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01525
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01525 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01525 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01972
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01972 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01972 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02192
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02192 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02192 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02350
- http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/data/lbnl-example-2#02350 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/data/lbnl-example-2#02350 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00743
- http://data.ashrae.org/standard223#EnumerationKind-OnOff on http://data.ashrae.org/standard223/data/lbnl-example-2#00743 needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02676
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02676 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02676 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01820
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01820 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01820 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02939
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02939 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02939 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02178
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02178 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02178 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01065
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01065 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01065 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02924
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02924 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02924 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02266
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02266 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02266 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02080
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02080 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02080 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-3460V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-3460V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-1900V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-1900V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02644
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02644 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02644 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-6000V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00665
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00665 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00665 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02549
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02549 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02549 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02156
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02156 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02156 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00965
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00965 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#00965 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01771
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01771 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01771 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02752
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02752 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02752 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00499
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00499 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00499 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01270
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01270 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01270 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-277V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-277V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01081
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01081 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01081 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00740
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00740 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00740 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01976
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01976 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01976 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01190
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01190 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01190 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02489
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02489 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02489 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01529
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01529 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01529 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02194
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02194 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02194 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00697
- http://qudt.org/vocab/quantitykind/ElectricPower on http://data.ashrae.org/standard223/data/lbnl-example-2#00697 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on http://data.ashrae.org/standard223/data/lbnl-example-2#00697 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCNegativeVoltage-2.5V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-2.5V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02401
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02401 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02401 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02008
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02008 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02008 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00741
- http://qudt.org/vocab/quantitykind/ElectricPower on http://data.ashrae.org/standard223/data/lbnl-example-2#00741 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on http://data.ashrae.org/standard223/data/lbnl-example-2#00741 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCVoltage-DCZeroVoltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCZeroVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02601
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02601 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02601 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00528
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00528 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00528 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01263
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01263 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01263 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02700
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02700 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02700 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-3000V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00924
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00924 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00924 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02640
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02640 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02640 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01451
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01451 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01451 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02624
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02624 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02624 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02451
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02451 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02451 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-139V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-139V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01709
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01709 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01709 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02043
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02043 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02043 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00494
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00494 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00494 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01635
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01635 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01635 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02230
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02230 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02230 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02118
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02118 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02118 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00674
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00674 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02868
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02868 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02868 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#EnumerationKind-Numerical
- http://qudt.org/vocab/quantitykind/Unknown on http://data.ashrae.org/standard223#EnumerationKind-Numerical needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02864
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02864 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02864 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02827
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02827 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02827 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Numerical-NumberOfElectricalPhases
- http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#Numerical-NumberOfElectricalPhases needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00611
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00611 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00611 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00805
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00805 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00805 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00691
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00691 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00691 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02749
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02749 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02749 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01117
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01117 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01117 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01251
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01251 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01251 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-480V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-480V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02339
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02339 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02339 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00736
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00736 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00736 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02303
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02303 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02303 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00664
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00664 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00664 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCNegativeVoltage-190.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-190.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01226
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01226 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01226 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01227
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01227 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01227 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01695
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01695 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01695 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01155
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01155 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01155 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00519
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00519 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00519 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02154
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02154 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02154 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02421
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02421 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02421 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01621
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01621 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01621 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01784
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01784 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01784 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01673
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01673 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01673 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01860
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01860 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01860 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01412
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01412 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01412 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00548
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00548 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00548 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-190V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-190V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01450
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01450 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01450 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCNegativeVoltage-6.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-6.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01897
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01897 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01897 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00566
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00566 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00566 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01560
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01560 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01560 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01678
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01678 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01678 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01122
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01122 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01122 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00859
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00859 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00859 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-5V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-5V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02682
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02682 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02682 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00720
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00720 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00720 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00754
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00754 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00754 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01696
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01696 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01696 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00604
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00604 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00604 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01003
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01003 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01003 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00847
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00847 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00847 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01472
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01472 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01472 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01956
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01956 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01956 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02532
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02532 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02532 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-219V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-219V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-2400V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-2400V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01048
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01048 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01048 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-400V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-400V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Frequency-50Hz
- http://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Frequency-50Hz needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01418
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01418 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01418 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00565
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00565 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00565 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01085
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01085 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01085 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02831
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02831 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02831 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01338
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01338 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01338 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02826
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02826 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02826 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02235
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02235 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02235 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-3300V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3300V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01435
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01435 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01435 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00991
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00991 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00991 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02812
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02812 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02812 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02886
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02886 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02886 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02848
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02848 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02848 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00679
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00679 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00679 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01934
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01934 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01934 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00623
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00623 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00623 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01010
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01010 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01010 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01102
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01102 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01102 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01487
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01487 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01487 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01622
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01622 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01622 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01844
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01844 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01844 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00625
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00625 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00625 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01932
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01932 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01932 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00968
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00968 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#00968 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02157
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02157 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02157 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02272
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02272 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02272 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00658
- http://data.ashrae.org/standard223#EnumerationKind-OnOff on http://data.ashrae.org/standard223/data/lbnl-example-2#00658 needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02525
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02525 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02525 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02788
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02788 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02788 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02305
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02305 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02305 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-190V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-190V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01324
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01324 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01324 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02600
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02600 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02600 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-380V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-380V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-2400V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-2400V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00764
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00764 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00764 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00613
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00613 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00613 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01821
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01821 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01821 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-48.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-48.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01080
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01080 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01080 needs to be a http://qudt.org/schema/qudt/Unit
ndb2b2bc51cb249f6b5f7ff79900660a9b1438
- http://qudt.org/vocab/quantitykind/VolumeFraction on ndb2b2bc51cb249f6b5f7ff79900660a9b1438 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on ndb2b2bc51cb249f6b5f7ff79900660a9b1438 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02302
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02302 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02302 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00749
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00749 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00749 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02417
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02417 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02417 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01823
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01823 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01823 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01265
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01265 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01265 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01340
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01340 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01340 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00797
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00797 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00797 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01971
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01971 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01971 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00486
- http://qudt.org/vocab/unit/KiloW on http://data.ashrae.org/standard223/data/lbnl-example-2#00486 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on http://data.ashrae.org/standard223/data/lbnl-example-2#00486 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-1730V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-1730V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02495
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02495 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02495 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02774
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02774 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02774 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00680
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00680 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00680 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02938
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02938 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02938 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02179
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02179 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02179 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02862
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02862 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02862 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-220V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-220V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00696
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00696 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00696 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00526
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00526 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00526 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-400V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-400V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01250
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01250 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01250 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01658
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01658 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01658 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02228
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02228 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02228 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02044
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02044 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02044 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00629
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00629 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00629 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-415V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-415V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01882
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01882 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01882 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01931
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01931 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01931 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01344
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01344 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01344 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01547
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01547 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01547 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02678
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02678 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02678 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02289
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02289 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02289 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00594
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00594 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00594 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00627
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00627 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00627 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02124
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02124 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02124 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01103
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01103 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01103 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01993
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01993 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01993 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00655
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00655 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00655 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01567
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01567 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01567 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-3000V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-3000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01079
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01079 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01079 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01523
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01523 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01523 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01485
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01485 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01485 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-24.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-24.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02736
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02736 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02736 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02562
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02562 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02562 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02937
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02937 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02937 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01533
- http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/data/lbnl-example-2#01533 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/data/lbnl-example-2#01533 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02346
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#02346 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#02346 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCPositiveVoltage-5.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-5.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02663
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02663 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02663 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00540
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00540 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00540 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00803
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00803 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00803 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02603
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02603 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02603 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02491
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02491 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02491 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01118
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01118 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01118 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01637
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01637 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01637 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01790
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01790 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01790 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01006
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01006 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01006 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02105
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02105 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02105 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00509
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00509 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00509 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02923
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02923 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02923 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-347V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-347V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02229
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02229 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02229 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCPositiveVoltage-48.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-48.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00976
- http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/data/lbnl-example-2#00976 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/data/lbnl-example-2#00976 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02637
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02637 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02637 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02751
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02751 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02751 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-4160V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-4160V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01563
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01563 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01563 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01399
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01399 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01399 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00580
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00580 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00580 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01362
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01362 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01362 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01808
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01808 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01808 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01300
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01300 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01300 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00759
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00759 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00735
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00735 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00735 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02638
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02638 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02638 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01029
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01029 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01029 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01140
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01140 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01140 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01524
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01524 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01524 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02639
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02639 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02639 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01585
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01585 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01585 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01827
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01827 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01827 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00718
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00718 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00718 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00669
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00669 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00669 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00542
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00542 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00542 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01307
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01307 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01307 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02675
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02675 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02675 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01858
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01858 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01858 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01492
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01492 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01492 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00521
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00521 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00521 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-231V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-231V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00712
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00712 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00712 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01228
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01228 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01228 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01041
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01041 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01041 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01674
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01674 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01674 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02327
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02327 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02327 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00793
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00793 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00793 needs to be a http://qudt.org/schema/qudt/Unit
ndb2b2bc51cb249f6b5f7ff79900660a9b1686
- http://qudt.org/vocab/unit/PERCENT on ndb2b2bc51cb249f6b5f7ff79900660a9b1686 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on ndb2b2bc51cb249f6b5f7ff79900660a9b1686 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01159
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01159 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01159 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-600V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-600V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01377
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01377 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01377 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01783
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01783 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01783 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02438
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02438 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02438 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00795
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00795 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00795 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02104
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02104 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02104 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00573
- http://data.ashrae.org/standard223#EnumerationKind-OnOff on http://data.ashrae.org/standard223/data/lbnl-example-2#00573 needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00589
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00589 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01116
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01116 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01116 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-3460V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3460V needs to be a http://qudt.org/schema/qudt/QuantityKind
ndb2b2bc51cb249f6b5f7ff79900660a9b1336
- http://qudt.org/vocab/quantitykind/VolumeFraction on ndb2b2bc51cb249f6b5f7ff79900660a9b1336 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on ndb2b2bc51cb249f6b5f7ff79900660a9b1336 needs to be a http://qudt.org/schema/qudt/Unit
ndb2b2bc51cb249f6b5f7ff79900660a9b722
- http://qudt.org/vocab/quantitykind/VolumeFraction on ndb2b2bc51cb249f6b5f7ff79900660a9b722 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on ndb2b2bc51cb249f6b5f7ff79900660a9b722 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01785
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01785 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01785 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Numerical-LineLineVoltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-LineLineVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02565
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02565 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02565 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00606
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00606 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00606 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00584
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00584 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00584 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02365
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02365 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02365 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01302
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01302 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01302 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00571
- http://qudt.org/vocab/quantitykind/ElectricPower on http://data.ashrae.org/standard223/data/lbnl-example-2#00571 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on http://data.ashrae.org/standard223/data/lbnl-example-2#00571 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00579
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00579 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00579 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00689
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#00689 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#00689 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01139
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01139 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01139 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Numerical-Voltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-Voltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00967
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00967 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#00967 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02007
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02007 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02007 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01014
- http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/data/lbnl-example-2#01014 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/data/lbnl-example-2#01014 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02677
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#02677 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#02677 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Numerical-LineNeutralVoltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-LineNeutralVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01375
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01375 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01375 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01233
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01233 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01233 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02713
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02713 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02713 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01748
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#01748 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#01748 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01325
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01325 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01325 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-220V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-220V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00614
- http://data.ashrae.org/standard223#EnumerationKind-OnOff on http://data.ashrae.org/standard223/data/lbnl-example-2#00614 needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223#Voltage-480V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-480V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-5770V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-5770V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01078
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01078 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01078 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02737
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02737 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02737 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02715
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02715 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02715 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02797
- http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/data/lbnl-example-2#02797 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/data/lbnl-example-2#02797 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02030
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02030 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02030 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01969
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01969 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01969 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00485
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00485 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00485 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01938
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01938 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01938 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01719
- http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/data/lbnl-example-2#01719 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/data/lbnl-example-2#01719 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02252
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02252 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02252 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-347V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-347V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-1900V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-1900V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00750
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00750 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00750 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-12V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-12V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-6600V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-6600V needs to be a http://qudt.org/schema/qudt/QuantityKind
ndb2b2bc51cb249f6b5f7ff79900660a9b559
- http://qudt.org/vocab/quantitykind/VolumeFraction on ndb2b2bc51cb249f6b5f7ff79900660a9b559 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on ndb2b2bc51cb249f6b5f7ff79900660a9b559 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-3810V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3810V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-3.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-3.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02265
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#02265 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02265 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01734
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01734 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01734 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01733
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01733 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01733 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02699
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02699 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02699 needs to be a http://qudt.org/schema/qudt/QuantityKind
ndb2b2bc51cb249f6b5f7ff79900660a9b661
- http://qudt.org/vocab/quantitykind/Temperature on ndb2b2bc51cb249f6b5f7ff79900660a9b661 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02773
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#02773 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#02773 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#NumberOfElectricalPhases-SinglePhase
- http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#NumberOfElectricalPhases-SinglePhase needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00651
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00651 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00651 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01600
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#01600 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#01600 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCVoltage-DCPositiveVoltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCPositiveVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-127V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-127V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-127V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-127V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00489
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00489 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#00489 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00657
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00657 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00657 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-139V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-139V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#02528
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#02528 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/data/lbnl-example-2#02528 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00574
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/data/lbnl-example-2#00574 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00574 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-10000V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-10000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01509
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#01509 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01509 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01715
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01715 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01715 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00595
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#00595 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/data/lbnl-example-2#00595 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00546
- http://qudt.org/vocab/quantitykind/ForcePerArea on http://data.ashrae.org/standard223/data/lbnl-example-2#00546 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://data.ashrae.org/standard223/data/lbnl-example-2#00546 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCPositiveVoltage-6.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-6.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-5.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-5.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-380V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-380V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01264
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/data/lbnl-example-2#01264 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/data/lbnl-example-2#01264 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00527
- http://qudt.org/vocab/quantitykind/ElectricPower on http://data.ashrae.org/standard223/data/lbnl-example-2#00527 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on http://data.ashrae.org/standard223/data/lbnl-example-2#00527 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01641
- http://qudt.org/vocab/unit/DEG_F on http://data.ashrae.org/standard223/data/lbnl-example-2#01641 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/data/lbnl-example-2#01641 needs to be a http://qudt.org/schema/qudt/QuantityKind
ndb2b2bc51cb249f6b5f7ff79900660a9b2206
- http://qudt.org/vocab/quantitykind/VolumeFraction on ndb2b2bc51cb249f6b5f7ff79900660a9b2206 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on ndb2b2bc51cb249f6b5f7ff79900660a9b2206 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCPositiveVoltage-12.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-12.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-10000V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-10000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-3V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#00504
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/data/lbnl-example-2#00504 needs to be a http://qudt.org/schema/qudt/QuantityKind