Warning
This model has not been updated since the last revision of the 223P ontology, and it may not pass validation. 223P was last updated on 2025-01-16 16:12:21. The model file was last updated on 2024-09-12 16:11:46
Intelligent Buildings Agents Laboratory (IBAL)#
The IBAL is a mixed system lab at NIST that is able to test commercial equipment under simulated conditions. For more information, vist the IBAL Database.
Schematic view#
Downloads#
Queries#
Description |
Query URL |
---|---|
Zone/room temperature sensors |
|
Search for all the sensors along the connections and the associated property they’re observing. |
|
Sensors in AHU1 and what units the properties are measured in |
Model Components#
Parent Class |
Class |
Instances |
---|---|---|
90 |
||
57 |
||
28 |
||
21 |
||
19 |
||
19 |
||
12 |
||
12 |
||
10 |
||
9 |
||
9 |
||
7 |
||
7 |
||
5 |
||
5 |
||
4 |
||
3 |
||
3 |
||
2 |
||
2 |
||
1 |
||
1 |
||
226 |
||
221 |
||
66 |
||
4 |
||
6 |
||
151 |
||
99 |
||
10 |
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:NIST-IBAL")
model.graph.parse("https://models.open223.info/NIST-IBAL.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://data.ashrae.org/standard223#> .
@prefix ns3: <http://qudt.org/schema/qudt/> .
@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 <http://example.org/IBAL#ch2_on> ;
sh:resultMessage "s223: A `QuantifiableProperty` can be associated with at most one Unit using the relation `hasUnit`." ;
sh:resultPath ns3:hasUnit ;
sh:resultSeverity sh:Violation ;
sh:sourceConstraintComponent sh:ClassConstraintComponent ;
sh:sourceShape <urn:well-known/3ae4fb85> ;
sh:value <http://qudt.org/vocab/unit/V> ],
[ a sh:ValidationResult ;
sh:focusNode <http://example.org/IBAL#zs4_t_sp_f> ;
sh:resultMessage "s223: A `QuantifiableProperty` must be associated with a QuantityKind using the relation `hasQuantityKind`." ;
sh:
http://example.org/IBAL#d15_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#d15_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#d15_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#tmc3_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#tmc3_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#tmc3_out_rtd 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://example.org/IBAL#hx3_f_pg
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#hx3_f_pg needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#hx3_f_pg needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#tmc3_in_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#tmc3_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#tmc3_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#tmc2_in_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#tmc2_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#tmc2_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Numerical-DCVoltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-DCVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-240V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-347V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-347V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-3300V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3300V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#ahu2_fan_power
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#ahu2_fan_power needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#ahu2_fan_power needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu2_cc_out_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu2_cc_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu2_cc_out_rtd 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://example.org/IBAL#d15_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#d15_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#d15_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu2_t_sa
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu2_t_sa needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu2_t_sa needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#d3_pos_fb
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d3_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d3_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ch1_on
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#ch1_on needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#ch1_on needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-347V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-347V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#zs3_out_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#zs3_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#zs3_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#hx2_dp
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#hx2_dp needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PSI on http://example.org/IBAL#hx2_dp needs to be a http://qudt.org/schema/qudt/Unit
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://example.org/IBAL#vav4_t_in
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#vav4_t_in needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#vav4_t_in needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu2_cc_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu2_cc_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu2_cc_rtd 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://example.org/IBAL#pump5_vfd
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#pump5_vfd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#pump5_vfd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu2_cc_in_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu2_cc_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu2_cc_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#hx1_f_pg
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#hx1_f_pg needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#hx1_f_pg needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCPositiveVoltage-6.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-6.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#Segment_76temp
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#Segment_76temp needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#Segment_76temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v4_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v4_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v4_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu2_f_cc
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#ahu2_f_cc needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#ahu2_f_cc 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://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://example.org/IBAL#oau_out_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#oau_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#oau_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu2_f_sa
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#ahu2_f_sa needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#ahu2_f_sa needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#oau_p_up
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#oau_p_up needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://example.org/IBAL#oau_p_up needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-3000V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#exf1_p_down
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#exf1_p_down needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://example.org/IBAL#exf1_p_down needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCPositiveVoltage-48.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-48.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#pump1_vfd
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#pump1_vfd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#pump1_vfd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v6_pos_fb
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v6_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v6_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-120V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-120V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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
n357f9d5d61de45d28be4c94dc0a42009b188
- http://qudt.org/vocab/quantitykind/VolumeFraction on n357f9d5d61de45d28be4c94dc0a42009b188 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on n357f9d5d61de45d28be4c94dc0a42009b188 needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#pl_in_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#pl_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#pl_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
n357f9d5d61de45d28be4c94dc0a42009b634
- http://qudt.org/vocab/quantitykind/VolumeFraction on n357f9d5d61de45d28be4c94dc0a42009b634 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on n357f9d5d61de45d28be4c94dc0a42009b634 needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#pump1_on
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#pump1_on needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#pump1_on needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#EnumerationKind-Numerical
- http://qudt.org/vocab/quantitykind/Unknown on http://data.ashrae.org/standard223#EnumerationKind-Numerical needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#pump4_power
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#pump4_power needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#pump4_power 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://example.org/IBAL#v9_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v9_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v9_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#d7_pos_fb
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d7_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d7_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ch2_f_c
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#ch2_f_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#ch2_f_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v9_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v9_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v9_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#pump3_vfd
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#pump3_vfd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#pump3_vfd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#HEC2_LowerOCP
- http://example.org/IBAL#HEC2_LowerOCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#hx1_f_hw
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#hx1_f_hw needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#hx1_f_hw 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
n357f9d5d61de45d28be4c94dc0a42009b248
- http://qudt.org/vocab/unit/PERCENT on n357f9d5d61de45d28be4c94dc0a42009b248 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on n357f9d5d61de45d28be4c94dc0a42009b248 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v15_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v15_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v15_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu1_cc_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu1_cc_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu1_cc_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v14_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v14_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v14_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ch2_c_in_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ch2_c_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ch2_c_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#exf2_p_up
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#exf2_p_up needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://example.org/IBAL#exf2_p_up needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu2_heat_power
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#ahu2_heat_power needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#ahu2_heat_power needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d6_pos_c
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d6_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d6_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#pump3_power
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#pump3_power needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#pump3_power needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ch2_power
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#ch2_power needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#ch2_power needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-5.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-5.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#vav1_heat_c
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#vav1_heat_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#vav1_heat_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v13_pos_fb
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v13_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v13_pos_fb 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://example.org/IBAL#PlateHeatExchange_1_ConnectionTemperature
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#PlateHeatExchange_1_ConnectionTemperature needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#PlateHeatExchange_1_ConnectionTemperature needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#v8_pos_fb
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v8_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v8_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ch2_t_reset
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#ch2_t_reset needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#ch2_t_reset needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#pump1_power
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#pump1_power needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#pump1_power 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://example.org/IBAL#v12_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v12_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v12_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#pump1_p_up
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#pump1_p_up needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PSI on http://example.org/IBAL#pump1_p_up needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#vav1_t_in
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#vav1_t_in needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#vav1_t_in needs to be a http://qudt.org/schema/qudt/Unit
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://example.org/IBAL#pump5_on
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#pump5_on needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#pump5_on needs to be a http://qudt.org/schema/qudt/Unit
n357f9d5d61de45d28be4c94dc0a42009b380
- http://qudt.org/vocab/unit/PERCENT on n357f9d5d61de45d28be4c94dc0a42009b380 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on n357f9d5d61de45d28be4c94dc0a42009b380 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#exf1_t_in
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#exf1_t_in needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#exf1_t_in needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#v17_pos_c
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v17_pos_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v17_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v8_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v8_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v8_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#tmc4_in_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#tmc4_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#tmc4_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-10000V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-10000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCPositiveVoltage-190.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-190.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-4160V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-4160V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-12.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-12.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-231V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-231V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#d10_pos_c
- http://qudt.org/vocab/quantitykind/ElectricCurrent on http://example.org/IBAL#d10_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on http://example.org/IBAL#d10_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#sl_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#sl_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#sl_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ch2_f_e
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#ch2_f_e needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#ch2_f_e needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v3_pos_fb
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v3_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v3_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#zs2_heat_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#zs2_heat_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#zs2_heat_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ch1_f_c
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#ch1_f_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#ch1_f_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#d16_pos_c
- http://qudt.org/vocab/unit/A on http://example.org/IBAL#d16_pos_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricCurrent on http://example.org/IBAL#d16_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#tmc1_in_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#tmc1_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#tmc1_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu2_heat_c
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#ahu2_heat_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#ahu2_heat_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#pump4_vfd
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#pump4_vfd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#pump4_vfd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu1_heat_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#ahu1_heat_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#ahu1_heat_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#HEE2_UpperOCP
- http://example.org/IBAL#HEE2_UpperOCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#d3_pos_c
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d3_pos_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d3_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#hw_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#hw_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#hw_rtd 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://example.org/IBAL#oau_heat_c
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#oau_heat_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#oau_heat_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#PlateHeatExchange_3_Upper_ICP
- http://example.org/IBAL#PlateHeatExchange_3_Upper_ICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#v16_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v16_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v16_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
n357f9d5d61de45d28be4c94dc0a42009b568
- http://qudt.org/vocab/quantitykind/VolumeFraction on n357f9d5d61de45d28be4c94dc0a42009b568 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on n357f9d5d61de45d28be4c94dc0a42009b568 needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#v5_pos_fb
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v5_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v5_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#zs4_t_sp_f
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#zs4_t_sp_f needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#zs4_t_sp_f needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#exf2_vfd
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#exf2_vfd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#exf2_vfd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#zs2_out_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#zs2_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#zs2_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#vav2_heat_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#vav2_heat_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#vav2_heat_c needs to be a http://qudt.org/schema/qudt/Unit
n357f9d5d61de45d28be4c94dc0a42009b463
- http://qudt.org/vocab/unit/PERCENT on n357f9d5d61de45d28be4c94dc0a42009b463 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on n357f9d5d61de45d28be4c94dc0a42009b463 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#zs4_heat_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#zs4_heat_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#zs4_heat_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
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://example.org/IBAL#ahu2_in_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu2_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu2_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#pl_f
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#pl_f needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#pl_f needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#indoor_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#indoor_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#indoor_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#exf2_power
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#exf2_power needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#exf2_power needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#oau_vfd
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#oau_vfd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#oau_vfd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#HC-3-OutletFlow
- http://qudt.org/vocab/unit/PA on http://example.org/IBAL#HC-3-OutletFlow needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#HC-3-OutletFlow needs to be a http://qudt.org/schema/qudt/QuantityKind
n357f9d5d61de45d28be4c94dc0a42009b176
- http://qudt.org/vocab/unit/PERCENT on n357f9d5d61de45d28be4c94dc0a42009b176 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on n357f9d5d61de45d28be4c94dc0a42009b176 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://example.org/IBAL#v7_pos_fb
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v7_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v7_pos_fb 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://example.org/IBAL#ahu2_vfd
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#ahu2_vfd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#ahu2_vfd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-139V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-139V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v2_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v2_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v2_pos_c 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://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://example.org/IBAL#ch1_t_sp
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ch1_t_sp needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ch1_t_sp needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ReturnAir-1-Flow
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#ReturnAir-1-Flow needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#ReturnAir-1-Flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#pl_out_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#pl_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#pl_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#vav1_f
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#vav1_f needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#vav1_f needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d5_pos_c
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d5_pos_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d5_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-10000V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-10000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#ahu1_rh_down
- http://qudt.org/vocab/unit/PERCENT_RH on http://example.org/IBAL#ahu1_rh_down needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on http://example.org/IBAL#ahu1_rh_down needs to be a http://qudt.org/schema/qudt/QuantityKind
n357f9d5d61de45d28be4c94dc0a42009b230
- http://qudt.org/vocab/quantitykind/Temperature on n357f9d5d61de45d28be4c94dc0a42009b230 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#hx3_cw_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#hx3_cw_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#hx3_cw_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ts_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ts_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ts_out_rtd 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://example.org/IBAL#pump3_dp
- http://qudt.org/vocab/unit/PSI on http://example.org/IBAL#pump3_dp needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#pump3_dp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#exf1_f
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#exf1_f needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#exf1_f needs to be a http://qudt.org/schema/qudt/QuantityKind
n357f9d5d61de45d28be4c94dc0a42009b296
- http://qudt.org/vocab/unit/PERCENT on n357f9d5d61de45d28be4c94dc0a42009b296 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on n357f9d5d61de45d28be4c94dc0a42009b296 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCVoltage-DCNegativeVoltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCNegativeVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ch1_power
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#ch1_power needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#ch1_power needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#vav2_t_in
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#vav2_t_in needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#vav2_t_in needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v20_pos_c
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v20_pos_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v20_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu1_f_ra
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#ahu1_f_ra needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#ahu1_f_ra needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#PlateHeatExchange_2_Lower_OCP
- http://example.org/IBAL#PlateHeatExchange_2_Lower_OCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#ahu2_out_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu2_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu2_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#zs3_rh
- http://qudt.org/vocab/unit/PERCENT_RH on http://example.org/IBAL#zs3_rh needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on http://example.org/IBAL#zs3_rh needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu2_p_down
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#ahu2_p_down needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/IN_H2O on http://example.org/IBAL#ahu2_p_down needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#pump5_power
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#pump5_power needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#pump5_power needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#pump2_on
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#pump2_on needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#pump2_on needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d18_pos_c
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#d18_pos_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#d18_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#HC-1-InletTemp
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#HC-1-InletTemp needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#HC-1-InletTemp needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu1_heat_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu1_heat_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu1_heat_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#vch2_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#vch2_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#vch2_pos_fb 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://example.org/IBAL#ch1_e_in_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ch1_e_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ch1_e_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu1_f_cc
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#ahu1_f_cc needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#ahu1_f_cc needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu1_rh_up
- http://qudt.org/vocab/quantitykind/RelativeHumidity on http://example.org/IBAL#ahu1_rh_up needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on http://example.org/IBAL#ahu1_rh_up needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu2_f_ra
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#ahu2_f_ra needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#ahu2_f_ra needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d2_pos_fb
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d2_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d2_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-400V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-400V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#zs4_rh
- http://qudt.org/vocab/quantitykind/RelativeHumidity on http://example.org/IBAL#zs4_rh needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on http://example.org/IBAL#zs4_rh needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCNegativeVoltage-2.5V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-2.5V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#v19_pos_c
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v19_pos_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v19_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#vav2_f
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#vav2_f needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#vav2_f needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v13_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v13_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v13_pos_c needs to be a http://qudt.org/schema/qudt/Unit
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://example.org/IBAL#exf2_p_down
- http://qudt.org/vocab/unit/PA on http://example.org/IBAL#exf2_p_down needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#exf2_p_down needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#tmc2_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#tmc2_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#tmc2_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-1900V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-1900V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#HEC2_UpperOCP
- http://example.org/IBAL#HEC2_UpperOCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#vav3_t_in
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#vav3_t_in needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#vav3_t_in needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#v11_pos_fb
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v11_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v11_pos_fb 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://example.org/IBAL#pump4_p_down
- http://qudt.org/vocab/unit/PSI on http://example.org/IBAL#pump4_p_down needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#pump4_p_down needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#HEC1_LowerOCP
- http://example.org/IBAL#HEC1_LowerOCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#zs1_rh
- http://qudt.org/vocab/quantitykind/RelativeHumidity on http://example.org/IBAL#zs1_rh needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on http://example.org/IBAL#zs1_rh needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#d17_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#d17_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#d17_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu2_t_ra
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu2_t_ra needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu2_t_ra needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d18_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#d18_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#d18_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCPositiveVoltage-380.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-380.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#NumberOfElectricalPhases-ThreePhase
- http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#NumberOfElectricalPhases-ThreePhase needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#pump3_p_down
- http://qudt.org/vocab/unit/PSI on http://example.org/IBAL#pump3_p_down needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#pump3_p_down needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d8_pos_fb
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d8_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d8_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#vav4_f
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#vav4_f needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#vav4_f needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#HEE1_LowerOCP
- http://example.org/IBAL#HEE1_LowerOCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#pump3_p_up
- http://qudt.org/vocab/unit/PSI on http://example.org/IBAL#pump3_p_up needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#pump3_p_up needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-127V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-127V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#PlateHeatExchange_1_Upper_ICP
- http://example.org/IBAL#PlateHeatExchange_1_Upper_ICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#v18_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v18_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v18_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#vav3_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#vav3_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#vav3_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#exf2_f
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#exf2_f needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#exf2_f needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#PlateHeatExchange_1_Lower_ICP
- http://example.org/IBAL#PlateHeatExchange_1_Lower_ICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
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://example.org/IBAL#exf2_on
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#exf2_on needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#exf2_on needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#pump2_p_down
- http://qudt.org/vocab/unit/PSI on http://example.org/IBAL#pump2_p_down needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#pump2_p_down needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d4_pos_c
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d4_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d4_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#oau_cc_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#oau_cc_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#oau_cc_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Frequency-60Hz
- http://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Frequency-60Hz needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#sl_f
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#sl_f needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#sl_f needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu1_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu1_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu1_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-220V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-220V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#pump5_p_up
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#pump5_p_up needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PSI on http://example.org/IBAL#pump5_p_up needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#zs2_t_sp_f
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#zs2_t_sp_f needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#zs2_t_sp_f needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu1_t_sa
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu1_t_sa needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu1_t_sa needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#v17_pos_fb
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v17_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v17_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
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://example.org/IBAL#oau_p_down
- http://qudt.org/vocab/unit/PA on http://example.org/IBAL#oau_p_down needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#oau_p_down needs to be a http://qudt.org/schema/qudt/QuantityKind
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://example.org/IBAL#d5_pos_fb
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d5_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d5_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ch1_f_e
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#ch1_f_e needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#ch1_f_e needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#zs2_rh
- http://qudt.org/vocab/unit/PERCENT_RH on http://example.org/IBAL#zs2_rh needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on http://example.org/IBAL#zs2_rh needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#hx3_f_cw
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#hx3_f_cw needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#hx3_f_cw needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d10_pos_fb
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d10_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d10_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#hx2_cw_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#hx2_cw_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#hx2_cw_rtd 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://example.org/IBAL#vav3_f
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#vav3_f needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#vav3_f needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#oau_rh
- http://qudt.org/vocab/quantitykind/RelativeHumidity on http://example.org/IBAL#oau_rh needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT_RH on http://example.org/IBAL#oau_rh 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://example.org/IBAL#zs1_heat_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#zs1_heat_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#zs1_heat_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Numerical-LineNeutralVoltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-LineNeutralVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-190V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-190V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#v2_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v2_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v2_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu2_on
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#ahu2_on needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#ahu2_on needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#pump1_p_down
- http://qudt.org/vocab/unit/PSI on http://example.org/IBAL#pump1_p_down needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#pump1_p_down 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
n357f9d5d61de45d28be4c94dc0a42009b36
- http://qudt.org/vocab/quantitykind/VolumeFraction on n357f9d5d61de45d28be4c94dc0a42009b36 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on n357f9d5d61de45d28be4c94dc0a42009b36 needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#PlateHeatExchange_1_Lower_OCP
- http://example.org/IBAL#PlateHeatExchange_1_Lower_OCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#vav2_heat_power
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#vav2_heat_power needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#vav2_heat_power needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu2_p_up
- http://qudt.org/vocab/unit/PA on http://example.org/IBAL#ahu2_p_up needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#ahu2_p_up needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d11_pos_fb
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d11_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d11_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v5_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v5_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v5_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu1_fan_power
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#ahu1_fan_power needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#ahu1_fan_power needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#PlateHeatExchange_1_Upper_OCP
- http://example.org/IBAL#PlateHeatExchange_1_Upper_OCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#ahu1_in_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu1_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu1_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#zs3_heat_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#zs3_heat_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#zs3_heat_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d8_pos_c
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d8_pos_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d8_pos_c 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://example.org/IBAL#zs3_t_sp_f
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#zs3_t_sp_f needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#zs3_t_sp_f needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d16_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#d16_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#d16_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ch1_t_reset
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ch1_t_reset needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ch1_t_reset needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-5V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-5V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#cw_in_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#cw_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#cw_in_rtd 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://example.org/IBAL#ch1_e_out_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ch1_e_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ch1_e_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#v11_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v11_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v11_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#HEE1_UpperICP
- http://example.org/IBAL#HEE1_UpperICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#pl_ftemp
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#pl_ftemp needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#pl_ftemp needs to be a http://qudt.org/schema/qudt/Unit
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://example.org/IBAL#tmc4_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#tmc4_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#tmc4_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ch2_on
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#ch2_on needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#ch2_on needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v10_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v10_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v10_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#pump2_vfd
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#pump2_vfd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#pump2_vfd needs to be a http://qudt.org/schema/qudt/Unit
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://example.org/IBAL#v7_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v7_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v7_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCPositiveVoltage-3.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-3.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#pump4_out_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#pump4_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#pump4_out_rtd 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://example.org/IBAL#ahu2_heat_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu2_heat_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu2_heat_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d7_pos_c
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d7_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d7_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-48V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-48V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu2_f_cc_mag
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#ahu2_f_cc_mag needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#ahu2_f_cc_mag 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://example.org/IBAL#d17_pos_fb
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#d17_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#d17_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#Segment_88_Temp
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#Segment_88_Temp needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#Segment_88_Temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#hx1_pg_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#hx1_pg_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#hx1_pg_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#HC-5-OutletFlow
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#HC-5-OutletFlow needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#HC-5-OutletFlow needs to be a http://qudt.org/schema/qudt/Unit
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://example.org/IBAL#vav4_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#vav4_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#vav4_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#pump2_power
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#pump2_power needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#pump2_power needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#vsh_out
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#vsh_out needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#vsh_out needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#pump3_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#pump3_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#pump3_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#tmc1_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#tmc1_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#tmc1_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
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://example.org/IBAL#v14_pos_c
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v14_pos_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v14_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#vav1_heat_power
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#vav1_heat_power needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#vav1_heat_power needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#HEE1_LowerICP
- http://example.org/IBAL#HEE1_LowerICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#pump5_p_down
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#pump5_p_down needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PSI on http://example.org/IBAL#pump5_p_down needs to be a http://qudt.org/schema/qudt/Unit
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://example.org/IBAL#v3_pos_c
- http://qudt.org/vocab/unit/A on http://example.org/IBAL#v3_pos_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/ElectricCurrent on http://example.org/IBAL#v3_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#oau_fan_power
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#oau_fan_power needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#oau_fan_power 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://example.org/IBAL#v6_pos_c
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v6_pos_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v6_pos_c 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://example.org/IBAL#ahu1_cc_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu1_cc_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu1_cc_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu1_vfd
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#ahu1_vfd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#ahu1_vfd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v10_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v10_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v10_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#zs1_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#zs1_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#zs1_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
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://example.org/IBAL#v18_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v18_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v18_pos_c needs to be a http://qudt.org/schema/qudt/Unit
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://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://example.org/IBAL#ahu1_p_up
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#ahu1_p_up needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://example.org/IBAL#ahu1_p_up needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#vch1_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#vch1_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#vch1_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ch1_c_in_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ch1_c_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ch1_c_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#HEC1_UpperICP
- http://example.org/IBAL#HEC1_UpperICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
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://example.org/IBAL#PlateHeatExchange_3_Lower_OCP
- http://example.org/IBAL#PlateHeatExchange_3_Lower_OCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#ahu1_t_ra
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ahu1_t_ra needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ahu1_t_ra needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ch2_c_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ch2_c_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ch2_c_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#exf1_power
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#exf1_power needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#exf1_power needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#hx3_pg_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#hx3_pg_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#hx3_pg_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#HEC1_UpperOCP
- http://example.org/IBAL#HEC1_UpperOCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#zs1_t_sp_f
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#zs1_t_sp_f needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#zs1_t_sp_f needs to be a http://qudt.org/schema/qudt/Unit
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://example.org/IBAL#ch2_t_sp
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ch2_t_sp needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ch2_t_sp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu2_rh_down
- http://qudt.org/vocab/unit/PERCENT_RH on http://example.org/IBAL#ahu2_rh_down needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on http://example.org/IBAL#ahu2_rh_down needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu1_p_down
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#ahu1_p_down needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/IN_H2O on http://example.org/IBAL#ahu1_p_down needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#v1_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v1_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v1_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
n357f9d5d61de45d28be4c94dc0a42009b454
- http://qudt.org/vocab/quantitykind/Temperature on n357f9d5d61de45d28be4c94dc0a42009b454 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCVoltage-DCPositiveVoltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCPositiveVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-190.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-190.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#vav1_out_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#vav1_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#vav1_out_rtd 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://example.org/IBAL#vav2_out_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#vav2_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#vav2_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#v1_pos_c
- http://qudt.org/vocab/quantitykind/ElectricCurrent on http://example.org/IBAL#v1_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on http://example.org/IBAL#v1_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#d2_pos_c
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d2_pos_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d2_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ch1_c_out_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ch1_c_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ch1_c_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#vav4_heat_c
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#vav4_heat_c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#vav4_heat_c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#vav4_heat_power
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#vav4_heat_power needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#vav4_heat_power needs to be a http://qudt.org/schema/qudt/QuantityKind
n357f9d5d61de45d28be4c94dc0a42009b205
- http://qudt.org/vocab/quantitykind/VolumeFraction on n357f9d5d61de45d28be4c94dc0a42009b205 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on n357f9d5d61de45d28be4c94dc0a42009b205 needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#v4_pos_fb
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v4_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v4_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#exf1_vfd
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#exf1_vfd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#exf1_vfd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#v19_pos_fb
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v19_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v19_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#v20_pos_fb
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v20_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v20_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#cl_f
- http://qudt.org/vocab/unit/GAL_US-PER-MIN on http://example.org/IBAL#cl_f needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#cl_f needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu2_rh_up
- http://qudt.org/vocab/unit/PERCENT_RH on http://example.org/IBAL#ahu2_rh_up needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RelativeHumidity on http://example.org/IBAL#ahu2_rh_up needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#v12_pos_fb
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v12_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v12_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#hx2_hw_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#hx2_hw_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#hx2_hw_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#vav3_heat_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#vav3_heat_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#vav3_heat_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ahu1_on
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#ahu1_on needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#ahu1_on needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#d6_pos_fb
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d6_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d6_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#ts_in_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ts_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ts_in_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#PlateHeatExchange_2_Upper_OCP
- http://example.org/IBAL#PlateHeatExchange_2_Upper_OCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#pump4_p_up
- http://qudt.org/vocab/unit/PSI on http://example.org/IBAL#pump4_p_up needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#pump4_p_up needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#exf2_t_in
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#exf2_t_in needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#exf2_t_in needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#hx1_hw_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#hx1_hw_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#hx1_hw_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#PlateHeatExchange_2_Upper_ICP
- http://example.org/IBAL#PlateHeatExchange_2_Upper_ICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#d4_pos_fb
- http://qudt.org/vocab/unit/PERCENT on http://example.org/IBAL#d4_pos_fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Dimensionless on http://example.org/IBAL#d4_pos_fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#vav3_heat_power
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#vav3_heat_power needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#vav3_heat_power needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#oau_hs_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#oau_hs_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#oau_hs_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#exf1_p_up
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#exf1_p_up needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PA on http://example.org/IBAL#exf1_p_up needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#PlateHeatExchange_3_Lower_ICP
- http://example.org/IBAL#PlateHeatExchange_3_Lower_ICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#vsh_in
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#vsh_in needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#vsh_in needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#pump4_on
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#pump4_on needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#pump4_on needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#PlateHeatExchange_2_Lower_ICP
- http://example.org/IBAL#PlateHeatExchange_2_Lower_ICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
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://example.org/IBAL#v16_pos_c
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#v16_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#v16_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#HEC2_UpperICP
- http://example.org/IBAL#HEC2_UpperICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#zs4_out_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#zs4_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#zs4_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-24V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-24V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#oau_in_rtd
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#oau_in_rtd needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#oau_in_rtd 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://example.org/IBAL#HEC2_LowerICP
- http://example.org/IBAL#HEC2_LowerICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#ch2_e_out_rtd
- http://qudt.org/vocab/quantitykind/Temperature on http://example.org/IBAL#ch2_e_out_rtd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/DEG_F on http://example.org/IBAL#ch2_e_out_rtd needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#exf1_on
- http://qudt.org/vocab/unit/V on http://example.org/IBAL#exf1_on needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Voltage on http://example.org/IBAL#exf1_on needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#oau_f_out
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#oau_f_out needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#oau_f_out needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#HEC1_LowerICP
- http://example.org/IBAL#HEC1_LowerICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#HEE1_UpperOCP
- http://example.org/IBAL#HEE1_UpperOCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
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://example.org/IBAL#ahu1_heat_power
- http://qudt.org/vocab/unit/W on http://example.org/IBAL#ahu1_heat_power needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Power on http://example.org/IBAL#ahu1_heat_power needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#ahu1_f_sa
- http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://example.org/IBAL#ahu1_f_sa needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/FT3-PER-MIN on http://example.org/IBAL#ahu1_f_sa 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://example.org/IBAL#pump2_p_up
- http://qudt.org/vocab/quantitykind/Pressure on http://example.org/IBAL#pump2_p_up needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PSI on http://example.org/IBAL#pump2_p_up needs to be a http://qudt.org/schema/qudt/Unit
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://example.org/IBAL#HEE2_LowerICP
- http://example.org/IBAL#HEE2_LowerICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://data.ashrae.org/standard223#LineNeutralVoltage-1730V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-1730V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://example.org/IBAL#d11_pos_c
- http://qudt.org/vocab/quantitykind/ElectricCurrent on http://example.org/IBAL#d11_pos_c needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/A on http://example.org/IBAL#d11_pos_c needs to be a http://qudt.org/schema/qudt/Unit
http://example.org/IBAL#HEE2_LowerOCP
- http://example.org/IBAL#HEE2_LowerOCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
n357f9d5d61de45d28be4c94dc0a42009b223
- http://qudt.org/vocab/quantitykind/Temperature on n357f9d5d61de45d28be4c94dc0a42009b223 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://example.org/IBAL#HEE2_UpperICP
- http://example.org/IBAL#HEE2_UpperICP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#PlateHeatExchange_3_Upper_OCP
- http://example.org/IBAL#PlateHeatExchange_3_Upper_OCP expected 1 instance(s) of ns1:Connectable on path ns1:isConnectionPointOf
http://example.org/IBAL#WaterChiller_2
- http://example.org/IBAL#WaterChiller_2 needs to match one of the following shapes: nf97605aaa76a45a78f3f8f12135a54d2b994, nf97605aaa76a45a78f3f8f12135a54d2b995
- http://example.org/IBAL#WaterChiller_2 needs to match one of the following shapes: nf97605aaa76a45a78f3f8f12135a54d2b994, nf97605aaa76a45a78f3f8f12135a54d2b995
http://example.org/IBAL#WaterChiller_1
- http://example.org/IBAL#WaterChiller_1 needs to match one of the following shapes: nf97605aaa76a45a78f3f8f12135a54d2b994, nf97605aaa76a45a78f3f8f12135a54d2b995
- http://example.org/IBAL#WaterChiller_1 needs to match one of the following shapes: nf97605aaa76a45a78f3f8f12135a54d2b994, nf97605aaa76a45a78f3f8f12135a54d2b995