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-14 12:12:25
PNNL Example Building 1 Model 2#
Example Building 1 is a simplistic, reference tiny office building consisting of a single story with 5 rooms spanning 5 space types.
This reference building was developed for and first described in the journal article “Metadata Schemas and Ontologies for Building Energy Applications: A Critical Review and Use Case Analysis”.
Example Building 1 Model 2 is provided by Pacific Northwest National Laboratory. See NIST Example Building 1 Model 1 for a different modeling approach for the same building.
Schematic view#
Contents#
This model contains a representation of the building architecture and electrical/lighting system.
In addition to the s223 ontology, the model uses the Real Estate Core ontology to describe space types. The Real Estate Core ontology is extended by defining 2 subclasses for rec:Office.
recx:OpenOffice rdfs:subClassOf rec:Office;
rdfs:label "Open Office".
recx:PrivateOffice rdfs:subClassOf rec:Office;
rdfs:label "Private Office".
Source#
The model was created from source data consisting of a building information model (BIM) created using Autodesk Revit, and exported via a Speckle interface.
Speckle view of rooms and lighting fixtures#
Model instance data have a prefix that is resolvable to a Speckle URL.
@prefix bdg1: <http://speckle.xyz/streams/59e5e3c6a8/objects/>
For example, the following luminaire resolves to http://speckle.xyz/streams/59e5e3c6a8/objects/e2164e3d14db5fcb6915a4a2c8474579 :
bdg1:e2164e3d14db5fcb6915a4a2c8474579 a s223:Luminaire
Downloads#
Queries#
Model Components#
Parent Class |
Class |
Instances |
---|---|---|
12 |
||
6 |
||
2 |
||
14 |
||
26 |
||
26 |
||
12 |
||
8 |
||
23 |
||
6 |
Load and Validate Model#
This code uses the BuildingMOTIF library to load the 223P ontology and the model file into a temporary in-memory instance. It then validates the model against the ontology. If the model is invalid, it will print the validation report.
To run this code, you need to have Java installed on your system. If you do not have Java installed, you can remove the shacl_engine='topquadrant'
parameter from the BuildingMOTIF
constructor.
Be warned that without the shacl_engine='topquadrant'
parameter, the validation process will be slower.
Note
BuildingMOTIF installation
To install the buildingmotif
library, you can use the following command:
pip install 'buildingmotif[topquadrant] @ git+https://github.com/NREL/buildingmotif.git@develop'
If you do not have Java installed, you can use the following command to install the library:
pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop'
from buildingmotif import BuildingMOTIF
from buildingmotif.dataclasses import Library, Model
import logging
# Create a BuildingMOTIF object. If you do not have Java installed, remove the "shacl_engine" parameter
bm = BuildingMOTIF('sqlite://', shacl_engine='topquadrant', log_level=logging.ERROR)
# load 223P library. We will load a recent copy from the models.open223.info
# git repository; later, we will load this from the location of the actual standard
s223 = Library.load(ontology_graph="https://github.com/open223/models.open223.info/raw/main/ontologies/223p.ttl")
# load the model into the BuildingMOTIF instance
model = Model.create("urn:pnnl-bdg1-2")
model.graph.parse("https://models.open223.info/pnnl-bdg1-2.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 ns2: <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 ns1:NumberOfElectricalPhases-ThreePhase ;
sh:resultMessage "Value must be an instance of ns2:QuantityKind" ;
sh:resultPath ns2:hasQuantityKind ;
sh:resultSeverity sh:Violation ;
sh:sourceConstraintComponent sh:ClassConstraintComponent ;
sh:sourceShape <urn:well-known/8a491ddd> ;
sh:value <http://qudt.org/vocab/quantitykind/Dimensionless> ],
[ a sh:ValidationResult ;
sh:focusNode ns1:DCVoltage-DCNegativeVoltage ;
sh:resultMessage "Value must be an instance of ns2:QuantityKind" ;
sh:resultPath ns2:hasQuantityKind ;
sh:resultSeverity sh:Violation ;
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#LineNeutralVoltage-1900V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-1900V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://speckle.xyz/streams/59e5e3c6a8/objects/bd58478e25040be5137eeed1f1e2f622
- http://speckle.xyz/streams/59e5e3c6a8/objects/f9e99ac2c98b799f695df5c1e1aca159 on http://speckle.xyz/streams/59e5e3c6a8/objects/bd58478e25040be5137eeed1f1e2f622 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
- http://speckle.xyz/streams/59e5e3c6a8/objects/8aa694885f0bc783d007c24a0a81c3b4 on http://speckle.xyz/streams/59e5e3c6a8/objects/bd58478e25040be5137eeed1f1e2f622 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
- http://speckle.xyz/streams/59e5e3c6a8/objects/3ec4d54f9cd50310bd26d2bbb594b11d on http://speckle.xyz/streams/59e5e3c6a8/objects/bd58478e25040be5137eeed1f1e2f622 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
- http://speckle.xyz/streams/59e5e3c6a8/objects/1157c123ff14a75b9beadab2f8c0180f on http://speckle.xyz/streams/59e5e3c6a8/objects/bd58478e25040be5137eeed1f1e2f622 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
- http://speckle.xyz/streams/59e5e3c6a8/objects/73dd5a752ff6dd1b77b259564949bc98 on http://speckle.xyz/streams/59e5e3c6a8/objects/bd58478e25040be5137eeed1f1e2f622 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/59e5e3c6a8/objects/83a72b8eb42e0a6295fcccd3b21ff40e
- http://speckle.xyz/streams/59e5e3c6a8/objects/3ec4d54f9cd50310bd26d2bbb594b11d on http://speckle.xyz/streams/59e5e3c6a8/objects/83a72b8eb42e0a6295fcccd3b21ff40e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://data.ashrae.org/standard223#Voltage-12V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-12V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-1730V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-1730V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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
n656d18c35d404c96bda6a365bd4b146bb12
- http://qudt.org/vocab/quantitykind/VolumeFraction on n656d18c35d404c96bda6a365bd4b146bb12 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on n656d18c35d404c96bda6a365bd4b146bb12 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://data.ashrae.org/standard223#Voltage-5770V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-5770V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-48V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-48V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://speckle.xyz/streams/59e5e3c6a8/objects/e7cb45f8083fac1804a9f98b64d7c27c
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/e7cb45f8083fac1804a9f98b64d7c27c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/e7cb45f8083fac1804a9f98b64d7c27c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-277V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-277V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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#DCNegativeVoltage-6.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-6.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCPositiveVoltage-48.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-48.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://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://speckle.xyz/streams/59e5e3c6a8/objects/eafe74d79e1ab2386bcd74cfe7380ef0
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/eafe74d79e1ab2386bcd74cfe7380ef0 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/eafe74d79e1ab2386bcd74cfe7380ef0 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-3300V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3300V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://speckle.xyz/streams/59e5e3c6a8/objects/82310afe7be18795e744d3829d8c5b02
- http://speckle.xyz/streams/59e5e3c6a8/objects/73dd5a752ff6dd1b77b259564949bc98 on http://speckle.xyz/streams/59e5e3c6a8/objects/82310afe7be18795e744d3829d8c5b02 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://data.ashrae.org/standard223#Voltage-2V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-2V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://speckle.xyz/streams/59e5e3c6a8/objects/1adbed1ad17a5af0a51d5bac56c822ef
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/1adbed1ad17a5af0a51d5bac56c822ef needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/1adbed1ad17a5af0a51d5bac56c822ef 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://speckle.xyz/streams/59e5e3c6a8/objects/a2c2a5feadf56d138ece34afc7fa34dd
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/a2c2a5feadf56d138ece34afc7fa34dd needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/a2c2a5feadf56d138ece34afc7fa34dd needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/59e5e3c6a8/objects/27967fc224f4ffd94032c8a851862769
- http://speckle.xyz/streams/59e5e3c6a8/objects/f9e99ac2c98b799f695df5c1e1aca159 on http://speckle.xyz/streams/59e5e3c6a8/objects/27967fc224f4ffd94032c8a851862769 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
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://speckle.xyz/streams/59e5e3c6a8/objects/4ea70f2ce314f6256af73903cd711f94
- http://speckle.xyz/streams/59e5e3c6a8/objects/8aa694885f0bc783d007c24a0a81c3b4 on http://speckle.xyz/streams/59e5e3c6a8/objects/4ea70f2ce314f6256af73903cd711f94 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://data.ashrae.org/standard223#Voltage-6V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-3V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-24V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-24V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCPositiveVoltage-5.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-5.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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
n656d18c35d404c96bda6a365bd4b146bb72
- http://qudt.org/vocab/unit/PERCENT on n656d18c35d404c96bda6a365bd4b146bb72 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on n656d18c35d404c96bda6a365bd4b146bb72 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
n656d18c35d404c96bda6a365bd4b146bb279
- http://qudt.org/vocab/quantitykind/VolumeFraction on n656d18c35d404c96bda6a365bd4b146bb279 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on n656d18c35d404c96bda6a365bd4b146bb279 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://data.ashrae.org/standard223#DCNegativeVoltage-24.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-24.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-219V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-219V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-231V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-231V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-208V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-208V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-380.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-380.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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-380V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-380V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-400V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-400V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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#LineNeutralVoltage-110V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-110V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-3.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-3.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCPositiveVoltage-6.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-6.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-139V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-139V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Numerical-NumberOfElectricalPhases
- http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#Numerical-NumberOfElectricalPhases needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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#Voltage-2400V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-2400V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-240V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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#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://speckle.xyz/streams/59e5e3c6a8/objects/d35dfa3a711c8827da4ebe2c6c4daeaf
- http://speckle.xyz/streams/59e5e3c6a8/objects/1157c123ff14a75b9beadab2f8c0180f on http://speckle.xyz/streams/59e5e3c6a8/objects/d35dfa3a711c8827da4ebe2c6c4daeaf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
n656d18c35d404c96bda6a365bd4b146bb154
- http://qudt.org/vocab/quantitykind/VolumeFraction on n656d18c35d404c96bda6a365bd4b146bb154 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on n656d18c35d404c96bda6a365bd4b146bb154 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-600V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-600V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-139V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-139V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://speckle.xyz/streams/59e5e3c6a8/objects/2c569c684322c9653aa00f1db661c188
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/2c569c684322c9653aa00f1db661c188 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/2c569c684322c9653aa00f1db661c188 needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/59e5e3c6a8/objects/c01317fdfcfe26384d44f515b3dd2400
- http://speckle.xyz/streams/59e5e3c6a8/objects/1157c123ff14a75b9beadab2f8c0180f on http://speckle.xyz/streams/59e5e3c6a8/objects/c01317fdfcfe26384d44f515b3dd2400 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/59e5e3c6a8/objects/e7583f67f85b0f6389e10c50c39b2ce5
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/e7583f67f85b0f6389e10c50c39b2ce5 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/e7583f67f85b0f6389e10c50c39b2ce5 needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/59e5e3c6a8/objects/f91a946c0b6ab24039e09bdc954504af
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/f91a946c0b6ab24039e09bdc954504af needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/f91a946c0b6ab24039e09bdc954504af needs to be a http://qudt.org/schema/qudt/QuantityKind
http://speckle.xyz/streams/59e5e3c6a8/objects/715a207b1bb5e1a9f5195065deb1323b
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/715a207b1bb5e1a9f5195065deb1323b needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/715a207b1bb5e1a9f5195065deb1323b needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-5V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-5V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#NumberOfElectricalPhases-SinglePhase
- http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#NumberOfElectricalPhases-SinglePhase needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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
n656d18c35d404c96bda6a365bd4b146bb249
- http://qudt.org/vocab/quantitykind/Temperature on n656d18c35d404c96bda6a365bd4b146bb249 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#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
n656d18c35d404c96bda6a365bd4b146bb140
- http://qudt.org/vocab/unit/PERCENT on n656d18c35d404c96bda6a365bd4b146bb140 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on n656d18c35d404c96bda6a365bd4b146bb140 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://data.ashrae.org/standard223#LineLineVoltage-480V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-480V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://speckle.xyz/streams/59e5e3c6a8/objects/9db8a11163a3cf15cdf724157a148128
- http://speckle.xyz/streams/59e5e3c6a8/objects/73dd5a752ff6dd1b77b259564949bc98 on http://speckle.xyz/streams/59e5e3c6a8/objects/9db8a11163a3cf15cdf724157a148128 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/59e5e3c6a8/objects/d0c443539805854ca2e06d22972810cb
- http://speckle.xyz/streams/59e5e3c6a8/objects/73dd5a752ff6dd1b77b259564949bc98 on http://speckle.xyz/streams/59e5e3c6a8/objects/d0c443539805854ca2e06d22972810cb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://data.ashrae.org/standard223#DCVoltage-DCNegativeVoltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCNegativeVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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
n656d18c35d404c96bda6a365bd4b146bb291
- http://qudt.org/vocab/unit/PERCENT on n656d18c35d404c96bda6a365bd4b146bb291 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on n656d18c35d404c96bda6a365bd4b146bb291 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Numerical-Frequency
- http://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Numerical-Frequency needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-110V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-110V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Numerical-Voltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-Voltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-5.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-5.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://speckle.xyz/streams/59e5e3c6a8/objects/98b4ba93290fb58ad5c44f8c47df60db
- http://speckle.xyz/streams/59e5e3c6a8/objects/1157c123ff14a75b9beadab2f8c0180f on http://speckle.xyz/streams/59e5e3c6a8/objects/98b4ba93290fb58ad5c44f8c47df60db needs to be a http://data.ashrae.org/standard223#PhysicalSpace
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#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://speckle.xyz/streams/59e5e3c6a8/objects/69962dede1bb7985d7d34dbb8e6cd3fb
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/69962dede1bb7985d7d34dbb8e6cd3fb needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/69962dede1bb7985d7d34dbb8e6cd3fb needs to be a http://qudt.org/schema/qudt/QuantityKind
http://speckle.xyz/streams/59e5e3c6a8/objects/dc7fc4c0daab77ddb84ca1a1f5c61e62
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/dc7fc4c0daab77ddb84ca1a1f5c61e62 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/dc7fc4c0daab77ddb84ca1a1f5c61e62 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
n656d18c35d404c96bda6a365bd4b146bb82
- http://qudt.org/vocab/quantitykind/VolumeFraction on n656d18c35d404c96bda6a365bd4b146bb82 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on n656d18c35d404c96bda6a365bd4b146bb82 needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/59e5e3c6a8/objects/ea132dc6f9ffb48fcaa86607ff4b65b3
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/ea132dc6f9ffb48fcaa86607ff4b65b3 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/ea132dc6f9ffb48fcaa86607ff4b65b3 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-277V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-277V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-240V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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
n656d18c35d404c96bda6a365bd4b146bb181
- http://qudt.org/vocab/quantitykind/Temperature on n656d18c35d404c96bda6a365bd4b146bb181 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://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
n656d18c35d404c96bda6a365bd4b146bb84
- http://qudt.org/vocab/quantitykind/Temperature on n656d18c35d404c96bda6a365bd4b146bb84 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://speckle.xyz/streams/59e5e3c6a8/objects/4b375708b891b81bb4ae859c5488621c
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/4b375708b891b81bb4ae859c5488621c needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/4b375708b891b81bb4ae859c5488621c needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-120V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-120V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-6000V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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#LineNeutralVoltage-3810V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-3810V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://speckle.xyz/streams/59e5e3c6a8/objects/87dfeb5fa9182df28ee465465f416594
- http://speckle.xyz/streams/59e5e3c6a8/objects/3ec4d54f9cd50310bd26d2bbb594b11d on http://speckle.xyz/streams/59e5e3c6a8/objects/87dfeb5fa9182df28ee465465f416594 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/59e5e3c6a8/objects/6cd35c4f0b85ce96efb182c7f19d4394
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/6cd35c4f0b85ce96efb182c7f19d4394 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/6cd35c4f0b85ce96efb182c7f19d4394 needs to be a http://qudt.org/schema/qudt/Unit
n656d18c35d404c96bda6a365bd4b146bb212
- http://qudt.org/vocab/unit/PERCENT on n656d18c35d404c96bda6a365bd4b146bb212 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/VolumeFraction on n656d18c35d404c96bda6a365bd4b146bb212 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://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://speckle.xyz/streams/59e5e3c6a8/objects/6b94d2f45496e556bbfe5020cd805a56
- http://speckle.xyz/streams/59e5e3c6a8/objects/73dd5a752ff6dd1b77b259564949bc98 on http://speckle.xyz/streams/59e5e3c6a8/objects/6b94d2f45496e556bbfe5020cd805a56 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
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-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://speckle.xyz/streams/59e5e3c6a8/objects/623d78727293db6754a53c99d74131fb
- http://speckle.xyz/streams/59e5e3c6a8/objects/f9e99ac2c98b799f695df5c1e1aca159 on http://speckle.xyz/streams/59e5e3c6a8/objects/623d78727293db6754a53c99d74131fb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/59e5e3c6a8/objects/989a49980114d3ad1b7cd8174b4fbb3e
- http://speckle.xyz/streams/59e5e3c6a8/objects/8aa694885f0bc783d007c24a0a81c3b4 on http://speckle.xyz/streams/59e5e3c6a8/objects/989a49980114d3ad1b7cd8174b4fbb3e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://data.ashrae.org/standard223#Voltage-10000V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-10000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-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://speckle.xyz/streams/59e5e3c6a8/objects/8d15508d58ad00d69c999048ec5d74b7
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/8d15508d58ad00d69c999048ec5d74b7 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/8d15508d58ad00d69c999048ec5d74b7 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-24.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-24.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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-1900V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-1900V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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
n656d18c35d404c96bda6a365bd4b146bb61
- http://qudt.org/vocab/quantitykind/VolumeFraction on n656d18c35d404c96bda6a365bd4b146bb61 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on n656d18c35d404c96bda6a365bd4b146bb61 needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/59e5e3c6a8/objects/fd1eba64d7bac4ac23691283c56da903
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/fd1eba64d7bac4ac23691283c56da903 needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/fd1eba64d7bac4ac23691283c56da903 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://speckle.xyz/streams/59e5e3c6a8/objects/7427f4edf3217904298499200651e74d
- http://qudt.org/vocab/quantitykind/Area on http://speckle.xyz/streams/59e5e3c6a8/objects/7427f4edf3217904298499200651e74d needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/M2 on http://speckle.xyz/streams/59e5e3c6a8/objects/7427f4edf3217904298499200651e74d needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCPositiveVoltage-2.5V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-2.5V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://speckle.xyz/streams/59e5e3c6a8/objects/e9d83bcd0340d3b2c702a83acd90a597
- http://speckle.xyz/streams/59e5e3c6a8/objects/73dd5a752ff6dd1b77b259564949bc98 on http://speckle.xyz/streams/59e5e3c6a8/objects/e9d83bcd0340d3b2c702a83acd90a597 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
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://speckle.xyz/streams/59e5e3c6a8/objects/73abeca540415fb5cc14ce1b47d9591f
- http://qudt.org/vocab/unit/W on http://speckle.xyz/streams/59e5e3c6a8/objects/73abeca540415fb5cc14ce1b47d9591f needs to be a http://qudt.org/schema/qudt/Unit
- http://qudt.org/vocab/quantitykind/RadiantFlux on http://speckle.xyz/streams/59e5e3c6a8/objects/73abeca540415fb5cc14ce1b47d9591f needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Numerical-LineLineVoltage
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-LineLineVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-380V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-380V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#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://speckle.xyz/streams/59e5e3c6a8/objects/2369b84e845898237f185679a49455f3
- http://speckle.xyz/streams/59e5e3c6a8/objects/f9e99ac2c98b799f695df5c1e1aca159 on http://speckle.xyz/streams/59e5e3c6a8/objects/2369b84e845898237f185679a49455f3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
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://speckle.xyz/streams/59e5e3c6a8/objects/0afb7c8e9477410024492f1cf1a1cbd4
- http://speckle.xyz/streams/59e5e3c6a8/objects/8aa694885f0bc783d007c24a0a81c3b4 on http://speckle.xyz/streams/59e5e3c6a8/objects/0afb7c8e9477410024492f1cf1a1cbd4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
n656d18c35d404c96bda6a365bd4b146bb43
- http://qudt.org/vocab/quantitykind/VolumeFraction on n656d18c35d404c96bda6a365bd4b146bb43 needs to be a http://qudt.org/schema/qudt/QuantityKind
- http://qudt.org/vocab/unit/PERCENT on n656d18c35d404c96bda6a365bd4b146bb43 needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/59e5e3c6a8/objects/e2164e3d14db5fcb6915a4a2c8474579
- http://speckle.xyz/streams/59e5e3c6a8/objects/73dd5a752ff6dd1b77b259564949bc98 on http://speckle.xyz/streams/59e5e3c6a8/objects/e2164e3d14db5fcb6915a4a2c8474579 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://data.ashrae.org/standard223#DCPositiveVoltage-12.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-12.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-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://speckle.xyz/streams/59e5e3c6a8/objects/e2684126ff114d569384c6d3a21f953b
- http://speckle.xyz/streams/59e5e3c6a8/objects/8aa694885f0bc783d007c24a0a81c3b4 on http://speckle.xyz/streams/59e5e3c6a8/objects/e2684126ff114d569384c6d3a21f953b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://data.ashrae.org/standard223#DCNegativeVoltage-48.0V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-48.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-480V
- http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-480V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-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://speckle.xyz/streams/59e5e3c6a8/objects/69a3c94b6051eef9648c4a51b61fef2d
- http://speckle.xyz/streams/59e5e3c6a8/objects/3ec4d54f9cd50310bd26d2bbb594b11d on http://speckle.xyz/streams/59e5e3c6a8/objects/69a3c94b6051eef9648c4a51b61fef2d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/59e5e3c6a8/objects/7ce038437255ca97816f40fafc85d5e5
- http://speckle.xyz/streams/59e5e3c6a8/objects/73dd5a752ff6dd1b77b259564949bc98 on http://speckle.xyz/streams/59e5e3c6a8/objects/7ce038437255ca97816f40fafc85d5e5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace