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-02-19 09:11:32. The model file was last updated on 2024-08-21 10:19:01
NREL Example Building#
This is an example building provided by the National Renewable Energy Laboratory, built with the BuildingMOTIF tool.
Downloads#
Queries#
Description |
Query URL |
---|---|
Zone/room temperature sensors |
Model Components#
Parent Class |
Class |
Instances |
---|---|---|
131 |
||
41 |
||
19 |
||
13 |
||
12 |
||
10 |
||
9 |
||
9 |
||
4 |
||
4 |
||
2 |
||
2 |
||
1 |
||
57 |
||
196 |
||
187 |
||
15 |
||
3 |
||
381 |
||
119 |
||
66 |
||
29 |
||
6 |
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:nrel-example")
model.graph.parse("https://models.open223.info/nrel-example.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 ns1: <http://qudt.org/schema/qudt/> .
@prefix ns2: <http://data.ashrae.org/standard223#> .
@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 ns2:Voltage-2V ;
sh:resultMessage "Value must be an instance of ns1:QuantityKind" ;
sh:resultPath ns1:hasQuantityKind ;
sh:resultSeverity sh:Violation ;
sh:sourceConstraintComponent sh:ClassConstraintComponent ;
sh:sourceShape <urn:well-known/30807f22> ;
sh:value <http://qudt.org/vocab/quantitykind/Voltage> ],
[ a sh:ValidationResult ;
sh:focusNode <urn:nrel_example/nrel00000168> ;
sh:resultMessage "s223: An `ObservableProperty` normally is referred to by a `Sensor` using the relation `observes`." ;
sh:resultPath [ sh:inversePath ns2:observes ] ;
sh:resul
urn:nrel_example/nrel00000851
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000851 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000851 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000429
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000429 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on urn:nrel_example/nrel00000429 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001178
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001178 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001178 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001117
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001117 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001117 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000499
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000499 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000499 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000683
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000683 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000683 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000373
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000373 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000373 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-6000V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001207
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001207 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001207 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000939
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000939 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000939 needs to be a http://qudt.org/schema/qudt/QuantityKind
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-400V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000248
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000248 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000248 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000272
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000272 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000272 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001325
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001325 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001325 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001219
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00001219 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00001219 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000626
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000626 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000626 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000144
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000144 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000144 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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-48.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b570
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b570 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b570 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001236
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001236 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001236 needs to be a http://qudt.org/schema/qudt/Unit
nf3bbb611076d410f8dfa811547f222c4b932
- http://qudt.org/vocab/quantitykind/Temperature on nf3bbb611076d410f8dfa811547f222c4b932 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000177
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000177 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000177 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000585
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000585 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000585 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000509
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on urn:nrel_example/nrel00000509 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000509 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000313
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000313 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000313 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001235
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001235 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001235 needs to be a http://qudt.org/schema/qudt/Unit
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://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-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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-1900V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000456
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000456 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000456 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001084
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001084 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001084 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001041
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001041 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001041 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000046
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000046 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000046 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000597
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000597 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000597 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000210
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on urn:nrel_example/nrel00000210 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000210 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000480
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on urn:nrel_example/nrel00000480 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000480 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001053
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001053 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001053 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001274
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00001274 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00001274 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-0V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000656
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000656 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000656 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000352
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000352 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000352 needs to be a http://qudt.org/schema/qudt/Unit
nf3bbb611076d410f8dfa811547f222c4b186
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b186 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b186 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000627
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000627 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000627 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000133
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000133 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000133 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000058
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000058 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000058 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000375
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000375 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000375 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000045
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000045 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000045 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001209
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001209 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001209 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001081
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001081 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001081 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-110V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000371
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000371 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000371 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000138
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000138 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000138 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6000V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000736
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000736 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000736 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001108
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001108 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on urn:nrel_example/nrel00001108 needs to be a http://qudt.org/schema/qudt/QuantityKind
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-48.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000650
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000650 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000650 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000131
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000131 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000131 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000141
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000141 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000141 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://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#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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000944
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000944 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000944 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000532
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000532 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000532 needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b792
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b792 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b792 needs to be a http://qudt.org/schema/qudt/Unit
nf3bbb611076d410f8dfa811547f222c4b249
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b249 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b249 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000879
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000879 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000879 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001146
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001146 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001146 needs to be a http://qudt.org/schema/qudt/QuantityKind
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-DCVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001047
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001047 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001047 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000111
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000111 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000111 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-LineLineVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000980
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000980 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000980 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000430
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000430 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000430 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-1900V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000841
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000841 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000841 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000451
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000451 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000451 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000550
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000550 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000550 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000069
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000069 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000069 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001308
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00001308 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00001308 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000594
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000594 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000594 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000233
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000233 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000233 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-220V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000909
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000909 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000909 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://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Frequency-60Hz needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000078
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000078 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000078 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000449
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000449 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000449 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000338
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000338 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000338 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000090
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000090 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000090 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000143
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000143 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000143 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000304
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000304 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000304 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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-231V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000238
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000238 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000238 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001205
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001205 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001205 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000155
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000155 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000155 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000178
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000178 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000178 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000150
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000150 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000150 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://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Frequency-50Hz needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000963
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000963 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000963 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000501
- urn:nrel_example/nrel00000501 expected 1 instance(s) of ns2:Connectable on path ns2:isConnectionPointOf
urn:nrel_example/nrel00001102
- urn:nrel_example/nrel00001102 expected 1 instance(s) of ns2:Connectable on path ns2:isConnectionPointOf
urn:nrel_example/nrel00000308
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000308 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000308 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000659
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000659 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000659 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000871
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000871 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000871 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000035
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000035 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000035 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001110
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001110 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001110 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
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-24V 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-5770V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000562
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000562 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000562 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001301
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00001301 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00001301 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-5.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001234
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001234 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001234 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000819
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000819 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000819 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001316
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00001316 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00001316 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001115
- urn:nrel_example/nrel00001115 expected 1 instance(s) of ns2:Connectable on path ns2:isConnectionPointOf
urn:nrel_example/nrel00001293
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001293 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on urn:nrel_example/nrel00001293 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-3460V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001187
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001187 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001187 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000634
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000634 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000634 needs to be a http://qudt.org/schema/qudt/QuantityKind
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://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#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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-380V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000611
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000611 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000611 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-347V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000582
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000582 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000582 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-24.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b1294
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b1294 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b1294 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000263
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000263 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000263 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000982
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000982 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000982 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001172
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001172 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001172 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000970
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000970 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000970 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001157
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00001157 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00001157 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3000V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000973
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000973 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000973 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000086
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000086 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000086 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000104
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000104 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000104 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000470
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000470 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000470 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://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#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://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#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://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#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://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#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://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#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
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3460V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000435
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000435 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000435 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000239
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000239 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000239 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000993
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000993 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000993 needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b2063
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b2063 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b2063 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000283
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000283 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000283 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-139V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000551
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000551 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000551 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000251
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000251 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000251 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001287
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00001287 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00001287 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000903
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000903 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000903 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000012
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000012 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000012 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000991
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000991 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000991 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000358
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000358 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000358 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001101
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001101 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001101 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000252
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000252 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000252 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#Numerical-NumberOfElectricalPhases needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000332
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000332 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000332 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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-190V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001055
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00001055 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00001055 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001296
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00001296 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00001296 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000730
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000730 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000730 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000774
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000774 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000774 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000698
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000698 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000698 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001150
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00001150 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00001150 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000117
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000117 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000117 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000780
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000780 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000780 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000164
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000164 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000164 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000541
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000541 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000541 needs to be a http://qudt.org/schema/qudt/Unit
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://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#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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3810V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000091
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000091 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000091 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000065
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000065 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000065 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001183
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00001183 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00001183 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-480V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000916
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000916 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000916 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000478
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000478 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000478 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000397
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000397 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000397 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000082
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000082 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000082 needs to be a http://qudt.org/schema/qudt/QuantityKind
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-6.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000101
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000101 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000101 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000134
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000134 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000134 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000749
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000749 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000749 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001167
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00001167 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00001167 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000668
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000668 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000668 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001249
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00001249 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00001249 needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b2185
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b2185 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b2185 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000410
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000410 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000410 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000718
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000718 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000718 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000829
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000829 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000829 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000556
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000556 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000556 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-3.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000790
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000790 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000790 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000893
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000893 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000893 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001088
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00001088 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00001088 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-24.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000894
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000894 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000894 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000845
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000845 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000845 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000735
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000735 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000735 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-127V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001248
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001248 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001248 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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-120V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001025
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001025 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001025 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000174
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000174 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000174 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000275
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000275 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000275 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001303
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001303 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001303 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000561
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000561 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000561 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000459
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000459 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000459 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000913
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000913 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000913 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://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#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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-208V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000132
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000132 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000132 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000676
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000676 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000676 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000860
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000860 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000860 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-219V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000064
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000064 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000064 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-3000V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000250
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000250 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000250 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000176
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000176 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000176 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000152
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000152 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000152 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://qudt.org/vocab/quantitykind/Unknown on http://data.ashrae.org/standard223#EnumerationKind-Numerical needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000114
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000114 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000114 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000399
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000399 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000399 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001213
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00001213 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00001213 needs to be a http://qudt.org/schema/qudt/Unit
nf3bbb611076d410f8dfa811547f222c4b299
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b299 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b299 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000887
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000887 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000887 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000570
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000570 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000570 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-190V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000350
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000350 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000350 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000588
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000588 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000588 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001198
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001198 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001198 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000185
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000185 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000185 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000761
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000761 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000761 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000168
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000168 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000168 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000079
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000079 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000079 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000608
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000608 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000608 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000891
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000891 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000891 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000347
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000347 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000347 needs to be a http://qudt.org/schema/qudt/Unit
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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-415V needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b312
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b312 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b312 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000244
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000244 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000244 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000028
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000028 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000028 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000280
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000280 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000280 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000116
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000116 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000116 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001037
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001037 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001037 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000103
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000103 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000103 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001186
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00001186 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00001186 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000108
- urn:nrel_example/nrel00000108 expected 1 instance(s) of ns2:Connectable on path ns2:isConnectionPointOf
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCNegativeVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001039
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001039 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001039 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-220V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000508
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000508 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000508 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-5770V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001290
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001290 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001290 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000987
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000987 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000987 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000286
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000286 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000286 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001273
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001273 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001273 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-277V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000723
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000723 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000723 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-12V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000546
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000546 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000546 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000529
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000529 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000529 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000986
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000986 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000986 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000912
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000912 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000912 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000145
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000145 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000145 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001122
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001122 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001122 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001051
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001051 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001051 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000637
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000637 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000637 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000502
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000502 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000502 needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b775
- http://qudt.org/vocab/quantitykind/Temperature on nf3bbb611076d410f8dfa811547f222c4b775 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001327
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001327 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001327 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000070
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000070 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000070 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000994
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000994 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on urn:nrel_example/nrel00000994 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001138
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001138 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001138 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000956
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000956 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000956 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000278
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000278 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000278 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000760
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000760 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000760 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001090
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001090 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001090 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000960
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000960 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000960 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000762
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000762 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000762 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-110V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000849
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000849 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000849 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000625
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000625 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000625 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001112
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001112 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001112 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000776
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000776 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000776 needs to be a http://qudt.org/schema/qudt/QuantityKind
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-415V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000744
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000744 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000744 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000169
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000169 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000169 needs to be a http://qudt.org/schema/qudt/QuantityKind
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-48V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001093
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00001093 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00001093 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000566
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000566 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000566 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000563
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000563 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000563 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000654
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000654 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000654 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000770
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000770 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000770 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001217
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00001217 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00001217 needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b1244
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b1244 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b1244 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000926
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000926 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000926 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000571
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000571 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000571 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000905
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000905 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000905 needs to be a http://qudt.org/schema/qudt/Unit
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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-219V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000726
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000726 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000726 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-139V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000369
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000369 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000369 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000412
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000412 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000412 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000865
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000865 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000865 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000201
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000201 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000201 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000978
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000978 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000978 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-10000V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000685
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000685 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000685 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000854
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000854 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000854 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000504
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000504 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000504 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000542
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000542 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000542 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000895
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000895 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000895 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001054
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001054 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001054 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000047
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000047 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000047 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001121
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001121 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001121 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-3.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000695
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000695 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000695 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-120V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000768
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000768 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000768 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000299
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000299 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/DimensionlessRatio on urn:nrel_example/nrel00000299 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000935
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000935 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000935 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000080
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000080 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000080 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000543
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000543 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000543 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-10000V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000197
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000197 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000197 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001259
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001259 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001259 needs to be a http://qudt.org/schema/qudt/Unit
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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-600V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000765
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000765 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000765 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000492
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000492 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000492 needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b263
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b263 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b263 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000209
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000209 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000209 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000163
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000163 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000163 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000663
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000663 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000663 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000646
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000646 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000646 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-380.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000875
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000875 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000875 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
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-6600V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001043
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00001043 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00001043 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001134
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001134 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001134 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000782
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000782 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000782 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001254
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001254 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001254 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-4160V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000784
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000784 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000784 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001191
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00001191 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00001191 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001330
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00001330 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00001330 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000635
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000635 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000635 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000791
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000791 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000791 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000995
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000995 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000995 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000737
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000737 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000737 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-127V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000915
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00000915 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00000915 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001332
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001332 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001332 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001009
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001009 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001009 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000759
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000759 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000759 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001194
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001194 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001194 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000941
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000941 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000941 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000036
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000036 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000036 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000337
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000337 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000337 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000943
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000943 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000943 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000472
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000472 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000472 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-12.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001158
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001158 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001158 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000586
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000586 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000586 needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b356
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b356 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b356 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000127
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000127 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000127 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001227
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00001227 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00001227 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000328
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000328 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000328 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001143
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001143 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001143 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001262
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001262 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001262 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000165
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000165 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000165 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000988
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000988 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000988 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000013
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000013 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000013 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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3V needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b454
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b454 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b454 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000675
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000675 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000675 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000531
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000531 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000531 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000037
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000037 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000037 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000710
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000710 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000710 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000173
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000173 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000173 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000122
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000122 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000122 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000048
- urn:nrel_example/nrel00000048 expected 1 instance(s) of ns2:Connectable on path ns2:isConnectionPointOf
nf3bbb611076d410f8dfa811547f222c4b54
- http://qudt.org/vocab/quantitykind/Temperature on nf3bbb611076d410f8dfa811547f222c4b54 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000162
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000162 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000162 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001181
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001181 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001181 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000951
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000951 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000951 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001080
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001080 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001080 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://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#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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-380.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000932
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000932 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000932 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000403
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000403 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000403 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000183
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000183 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000183 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000097
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000097 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000097 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001045
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00001045 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00001045 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000756
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000756 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000756 needs to be a http://qudt.org/schema/qudt/Unit
nf3bbb611076d410f8dfa811547f222c4b57
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b57 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b57 needs to be a http://qudt.org/schema/qudt/Unit
nf3bbb611076d410f8dfa811547f222c4b305
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b305 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b305 needs to be a http://qudt.org/schema/qudt/QuantityKind
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-2.5V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000221
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000221 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000221 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001118
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001118 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001118 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Numerical-Frequency needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000681
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000681 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000681 needs to be a http://qudt.org/schema/qudt/QuantityKind
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-4160V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000607
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000607 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000607 needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b615
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b615 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b615 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001313
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00001313 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00001313 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000489
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000489 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000489 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001237
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001237 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001237 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-5.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000389
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000389 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000389 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001152
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001152 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001152 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000686
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000686 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000686 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000534
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000534 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000534 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000599
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000599 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000599 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001161
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00001161 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00001161 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000697
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000697 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000697 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001328
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001328 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001328 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001018
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001018 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001018 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000648
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000648 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000648 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000290
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000290 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000290 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000777
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000777 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000777 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001260
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00001260 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00001260 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000831
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000831 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000831 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000678
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000678 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000678 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000612
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000612 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000612 needs to be a http://qudt.org/schema/qudt/QuantityKind
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000766
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000766 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000766 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001233
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00001233 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00001233 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001252
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00001252 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00001252 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000880
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000880 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000880 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000616
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000616 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000616 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000448
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000448 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000448 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001315
- urn:nrel_example/nrel00001315 expected 1 instance(s) of ns2:Connectable on path ns2:isConnectionPointOf
urn:nrel_example/nrel00000460
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000460 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000460 needs to be a http://qudt.org/schema/qudt/Unit
nf3bbb611076d410f8dfa811547f222c4b484
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b484 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b484 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000984
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000984 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000984 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000326
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000326 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000326 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001321
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001321 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001321 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001306
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00001306 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00001306 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001079
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00001079 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00001079 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001281
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00001281 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00001281 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-3810V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000921
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000921 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000921 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001329
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001329 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001329 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000885
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000885 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000885 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000049
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000049 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000049 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000015
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000015 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000015 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000106
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00000106 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00000106 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000156
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000156 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000156 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000525
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000525 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000525 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001119
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001119 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001119 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000696
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000696 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000696 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000284
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000284 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000284 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000320
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000320 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000320 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001226
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001226 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001226 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-3300V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001323
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001323 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001323 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001128
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00001128 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00001128 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000886
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000886 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000886 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3300V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000999
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000999 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000999 needs to be a http://qudt.org/schema/qudt/QuantityKind
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6600V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000019
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000019 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000019 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000927
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000927 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000927 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001203
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001203 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001203 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000346
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000346 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000346 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000282
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000282 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000282 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-380V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000833
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000833 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000833 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000874
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000874 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000874 needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b1907
- http://qudt.org/vocab/quantitykind/Temperature on nf3bbb611076d410f8dfa811547f222c4b1907 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001075
- urn:nrel_example/nrel00001075 expected 1 instance(s) of ns2:Connectable on path ns2:isConnectionPointOf
urn:nrel_example/nrel00000042
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000042 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000042 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000050
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000050 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000050 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000621
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000621 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000621 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000038
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000038 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000038 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000253
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000253 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000253 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000318
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000318 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000318 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000802
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000802 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000802 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001144
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00001144 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00001144 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001175
- http://qudt.org/vocab/quantitykind/ElectricPower on urn:nrel_example/nrel00001175 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW on urn:nrel_example/nrel00001175 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000966
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000966 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000966 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001046
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00001046 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00001046 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000305
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000305 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000305 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000274
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000274 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000274 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000742
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000742 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000742 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000232
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000232 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000232 needs to be a http://qudt.org/schema/qudt/QuantityKind
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-12.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001120
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001120 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001120 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001222
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00001222 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00001222 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001014
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001014 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001014 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000406
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000406 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000406 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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCZeroVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000619
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000619 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000619 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000464
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000464 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000464 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000814
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000814 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000814 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000579
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000579 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000579 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000137
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000137 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000137 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000564
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000564 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000564 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-208V needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000715
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000715 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000715 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000734
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000734 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000734 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000461
- http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio on urn:nrel_example/nrel00000461 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on urn:nrel_example/nrel00000461 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000690
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000690 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000690 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000752
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000752 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000752 needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b171
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b171 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b171 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000583
- urn:nrel_example/nrel00000583 expected 1 instance(s) of ns2:Connectable on path ns2:isConnectionPointOf
urn:nrel_example/nrel00000655
- http://qudt.org/vocab/quantitykind/ElectricPotential on urn:nrel_example/nrel00000655 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on urn:nrel_example/nrel00000655 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000323
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000323 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000323 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000793
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000793 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000793 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001317
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00001317 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00001317 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000188
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000188 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000188 needs to be a http://qudt.org/schema/qudt/Unit
nf3bbb611076d410f8dfa811547f222c4b107
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b107 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b107 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000493
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000493 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000493 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001042
- http://qudt.org/vocab/unit/A on urn:nrel_example/nrel00001042 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricCurrent on urn:nrel_example/nrel00001042 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000709
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000709 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000709 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000694
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000694 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000694 needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b1789
- http://qudt.org/vocab/quantitykind/Temperature on nf3bbb611076d410f8dfa811547f222c4b1789 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000208
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000208 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000208 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000053
- http://qudt.org/vocab/unit/PERCENT_RH on urn:nrel_example/nrel00000053 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on urn:nrel_example/nrel00000053 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00001272
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001272 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001272 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000497
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000497 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000497 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001231
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001231 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001231 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00001038
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00001038 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00001038 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000011
- http://qudt.org/vocab/unit/HZ on urn:nrel_example/nrel00000011 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Frequency on urn:nrel_example/nrel00000011 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000417
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000417 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000417 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000794
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on urn:nrel_example/nrel00000794 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on urn:nrel_example/nrel00000794 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000950
- http://qudt.org/vocab/quantitykind/Temperature on urn:nrel_example/nrel00000950 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_C on urn:nrel_example/nrel00000950 needs to be a http://qudt.org/schema/qudt/Unit
urn:nrel_example/nrel00000520
- http://qudt.org/vocab/quantitykind/Pressure on urn:nrel_example/nrel00000520 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/IN_H2O on urn:nrel_example/nrel00000520 needs to be a http://qudt.org/schema/qudt/Unit
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://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#NumberOfElectricalPhases-SinglePhase needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b493
- http://qudt.org/vocab/quantitykind/Temperature on nf3bbb611076d410f8dfa811547f222c4b493 needs to be a http://qudt.org/schema/qudt/QuantityKind
nf3bbb611076d410f8dfa811547f222c4b212
- http://qudt.org/vocab/unit/PERCENT on nf3bbb611076d410f8dfa811547f222c4b212 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on nf3bbb611076d410f8dfa811547f222c4b212 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000085
- http://qudt.org/vocab/unit/KiloW-HR on urn:nrel_example/nrel00000085 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Energy on urn:nrel_example/nrel00000085 needs to be a http://qudt.org/schema/qudt/QuantityKind
urn:nrel_example/nrel00000574
- urn:nrel_example/nrel00000574 needs to match one of the following shapes: na71e8d6c615a4d489f6852b3db260f2ab1094, na71e8d6c615a4d489f6852b3db260f2ab1095
urn:nrel_example/nrel00000020
- urn:nrel_example/nrel00000020 needs to match one of the following shapes: na71e8d6c615a4d489f6852b3db260f2ab1094, na71e8d6c615a4d489f6852b3db260f2ab1095