diff --git a/_sources/examples/NREL-example.md b/_sources/examples/NREL-example.md index c26d1c9b..5fc93895 100644 --- a/_sources/examples/NREL-example.md +++ b/_sources/examples/NREL-example.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # NREL Example Building This is an example building provided by the National Renewable Energy Laboratory, built with the [BuildingMOTIF](https://github.com/NREL/BuildingMOTIF) tool. diff --git a/_sources/examples/bdg1-1.md b/_sources/examples/bdg1-1.md index 35df8eb3..af008304 100644 --- a/_sources/examples/bdg1-1.md +++ b/_sources/examples/bdg1-1.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # Example Building 1 model 1 Example Building 1 is a simplistic, reference tiny office building consisting of a single story with 5 rooms spanning 5 space types. @@ -69,3 +80,50 @@ The model was created using [TopQuadrant](https://www.topquadrant.com/) TopBraid | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedActuatableProperty](https://explore.open223.info/s223/EnumeratedActuatableProperty.html) | 5 | | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedObservableProperty](https://explore.open223.info/s223/EnumeratedObservableProperty.html) | 4 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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:bdg1-1") +model.graph.parse("https://models.open223.info/compiled/bdg1-1.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/bdg1-2.md b/_sources/examples/bdg1-2.md index 32fcde87..f733df18 100644 --- a/_sources/examples/bdg1-2.md +++ b/_sources/examples/bdg1-2.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # 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. @@ -60,3 +71,50 @@ bdg1:05749166d93671bedf16efb52636ce38 a s223:Luminaire | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableProperty](https://explore.open223.info/s223/QuantifiableProperty.html) | 24 | | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedObservableProperty](https://explore.open223.info/s223/EnumeratedObservableProperty.html) | 6 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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:bdg1-2") +model.graph.parse("https://models.open223.info/compiled/bdg1-2.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/design-patterns.md b/_sources/examples/design-patterns.md index fbfd74a8..72a92bbe 100644 --- a/_sources/examples/design-patterns.md +++ b/_sources/examples/design-patterns.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # Design Patterns This file contains the Turtle code supporting the set of design patterns presented in the User Documentation site, in the section titled ["Modeling Design Patterns"](https://docs.open223.info/guides/design-patterns.html#) @@ -31,3 +42,50 @@ The model was created using [TopQuadrant](https://www.topquadrant.com/) TopBraid | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedObservableProperty](https://explore.open223.info/s223/EnumeratedObservableProperty.html) | 4 | | [Property](https://explore.open223.info/s223/Property.html) | [EnumerableProperty](https://explore.open223.info/s223/EnumerableProperty.html) | 3 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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:design-patterns") +model.graph.parse("https://models.open223.info/compiled/design-patterns.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/guideline36-2021-A-1.md b/_sources/examples/guideline36-2021-A-1.md index b0741ff2..27f96bae 100644 --- a/_sources/examples/guideline36-2021-A-1.md +++ b/_sources/examples/guideline36-2021-A-1.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # ASHRAE Guideline 36-2021 A-1 VAV Terminal Unit, Cooling Only This component model is an example of the variable air volume (VAV) terminal unit with cooling only from Guideline 36-2021, Appendix A, Figure A-1. @@ -21,3 +32,50 @@ This component model is an example of the variable air volume (VAV) terminal uni | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableObservableProperty](https://explore.open223.info/s223/QuantifiableObservableProperty.html) | 2 | | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableActuatableProperty](https://explore.open223.info/s223/QuantifiableActuatableProperty.html) | 1 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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:guideline36-2021-A-1") +model.graph.parse("https://models.open223.info/compiled/guideline36-2021-A-1.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/guideline36-2021-A-2.md b/_sources/examples/guideline36-2021-A-2.md index efcc1d64..8dee4806 100644 --- a/_sources/examples/guideline36-2021-A-2.md +++ b/_sources/examples/guideline36-2021-A-2.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # ASHRAE Guideline 36-2021 A-2 VAV Terminal Unit with Reheat This component model is an example of the variable air volume (VAV) terminal unit with reheat from Guideline 36-2021, Appendix A, Figure A-2. @@ -27,3 +38,50 @@ This component model is an example of the variable air volume (VAV) terminal uni | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableObservableProperty](https://explore.open223.info/s223/QuantifiableObservableProperty.html) | 4 | | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableActuatableProperty](https://explore.open223.info/s223/QuantifiableActuatableProperty.html) | 2 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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:guideline36-2021-A-2") +model.graph.parse("https://models.open223.info/compiled/guideline36-2021-A-2.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/guideline36-2021-A-3.md b/_sources/examples/guideline36-2021-A-3.md index 97c8d1d1..619f0023 100644 --- a/_sources/examples/guideline36-2021-A-3.md +++ b/_sources/examples/guideline36-2021-A-3.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # ASHRAE Guideline 36-2021 A-3 Parallel Fan-Powered Terminal Unit, Constant Volume Fan This component model is an example of the parallel fan-powered terminal unit with constant volume fan from Guideline 36-2021, Appendix A, Figure A-3. @@ -27,3 +38,50 @@ This component model is an example of the parallel fan-powered terminal unit wit | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedActuatableProperty](https://explore.open223.info/s223/EnumeratedActuatableProperty.html) | 1 | | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedObservableProperty](https://explore.open223.info/s223/EnumeratedObservableProperty.html) | 1 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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:guideline36-2021-A-3") +model.graph.parse("https://models.open223.info/compiled/guideline36-2021-A-3.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/guideline36-2021-A-4.md b/_sources/examples/guideline36-2021-A-4.md index 16a490dd..5a055fc4 100644 --- a/_sources/examples/guideline36-2021-A-4.md +++ b/_sources/examples/guideline36-2021-A-4.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # ASHRAE Guideline 36-2021 A-4 Parallel Fan-Powered Terminal Unit, Variable Volume Fan This component model is an example of the parallel fan-powered terminal unit with variable volume fan from Guideline 36-2021, Appendix A, Figure A-4. @@ -27,3 +38,50 @@ This component model is an example of the parallel fan-powered terminal unit wit | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedActuatableProperty](https://explore.open223.info/s223/EnumeratedActuatableProperty.html) | 1 | | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedObservableProperty](https://explore.open223.info/s223/EnumeratedObservableProperty.html) | 1 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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:guideline36-2021-A-4") +model.graph.parse("https://models.open223.info/compiled/guideline36-2021-A-4.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/guideline36-2021-A-7.md b/_sources/examples/guideline36-2021-A-7.md index 26457b13..599ec647 100644 --- a/_sources/examples/guideline36-2021-A-7.md +++ b/_sources/examples/guideline36-2021-A-7.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # ASHRAE Guideline 36-2021 A-7 Dual Duct Terminal Unit with Inlet Sensors This component model is an example of the dual duct terminal unit with inlet sensors from Guideline 36-2021, Appendix A, Figure A-7. @@ -21,3 +32,50 @@ This component model is an example of the dual duct terminal unit with inlet sen | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableObservableProperty](https://explore.open223.info/s223/QuantifiableObservableProperty.html) | 4 | | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableActuatableProperty](https://explore.open223.info/s223/QuantifiableActuatableProperty.html) | 2 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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:guideline36-2021-A-7") +model.graph.parse("https://models.open223.info/compiled/guideline36-2021-A-7.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/guideline36-2021-A-8.md b/_sources/examples/guideline36-2021-A-8.md index 572f7dcf..e830b2ec 100644 --- a/_sources/examples/guideline36-2021-A-8.md +++ b/_sources/examples/guideline36-2021-A-8.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # ASHRAE Guideline 36-2021 A-8 Dual Duct Terminal Unit with Discharge Sensor This component model is an example of the dual duct terminal unit with discharge sensor from Guideline 36-2021, Appendix A, Figure A-8. @@ -21,3 +32,50 @@ This component model is an example of the dual duct terminal unit with discharge | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableObservableProperty](https://explore.open223.info/s223/QuantifiableObservableProperty.html) | 3 | | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableActuatableProperty](https://explore.open223.info/s223/QuantifiableActuatableProperty.html) | 2 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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:guideline36-2021-A-8") +model.graph.parse("https://models.open223.info/compiled/guideline36-2021-A-8.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/guideline36-2021-A-9.md b/_sources/examples/guideline36-2021-A-9.md index ef7722fc..19b5c6c3 100644 --- a/_sources/examples/guideline36-2021-A-9.md +++ b/_sources/examples/guideline36-2021-A-9.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # ASHRAE Guideline 36-2021 A-9 Multiple Zone VAV Air Handling Unit This component model is an example of the multiple zone VAV air handling unit _with return fan and OA measurement station_ from Guideline 36-2021, Appendix A, Figure A-9. @@ -30,3 +41,50 @@ This component model is an example of the multiple zone VAV air handling unit _w | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedActuatableProperty](https://explore.open223.info/s223/EnumeratedActuatableProperty.html) | 2 | | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedObservableProperty](https://explore.open223.info/s223/EnumeratedObservableProperty.html) | 2 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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:guideline36-2021-A-9") +model.graph.parse("https://models.open223.info/compiled/guideline36-2021-A-9.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/lbnl-example-2.md b/_sources/examples/lbnl-example-2.md index 903a7803..81a7e98d 100644 --- a/_sources/examples/lbnl-example-2.md +++ b/_sources/examples/lbnl-example-2.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # LBNL Example Building 2 This is a reference model provided by LBNL of a medium-sized office building with two office floors. It uses an underfloor air distribution system with fan-powered terminal reheat coils for perimeter zones. Four roof-top units with VAV are located on the roof. Labels have been anonymized, and are not interpretable. @@ -38,3 +49,50 @@ This is a reference model provided by LBNL of a medium-sized office building wit | [Property](https://explore.open223.info/s223/Property.html) | [EnumerableProperty](https://explore.open223.info/s223/EnumerableProperty.html) | 8 | | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedActuatableProperty](https://explore.open223.info/s223/EnumeratedActuatableProperty.html) | 8 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +from buildingmotif import BuildingMOTIF +from buildingmotif.dataclasses import Library, Model +import logging + +# Create a BuildingMOTIF object. If you do not have Java installed, remove the "shacl_engine" parameter +bm = BuildingMOTIF('sqlite://', shacl_engine='topquadrant', log_level=logging.ERROR) + +# load 223P library. We will load a recent copy from the models.open223.info +# git repository; later, we will load this from the location of the actual standard +s223 = Library.load(ontology_graph="https://github.com/open223/models.open223.info/raw/main/ontologies/223p.ttl") + +# load the model into the BuildingMOTIF instance +model = Model.create("urn:lbnl-example-2") +model.graph.parse("https://models.open223.info/compiled/lbnl-example-2.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/lbnl-example-radiant.md b/_sources/examples/lbnl-example-radiant.md index e39db7fc..8300f4dc 100644 --- a/_sources/examples/lbnl-example-radiant.md +++ b/_sources/examples/lbnl-example-radiant.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # LBNL Example SMB Radiant This is a reference model provided by LBNL of a medium office building using a radiant system. Labels have been anonymized, and may not be interpretable. @@ -23,3 +34,50 @@ This is a reference model provided by LBNL of a medium office building using a r | [Zone](https://explore.open223.info/s223/Zone.html) | [](https://explore.open223.info/s223/.html) | 38 | | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableProperty](https://explore.open223.info/s223/QuantifiableProperty.html) | 6 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +from buildingmotif import BuildingMOTIF +from buildingmotif.dataclasses import Library, Model +import logging + +# Create a BuildingMOTIF object. If you do not have Java installed, remove the "shacl_engine" parameter +bm = BuildingMOTIF('sqlite://', shacl_engine='topquadrant', log_level=logging.ERROR) + +# load 223P library. We will load a recent copy from the models.open223.info +# git repository; later, we will load this from the location of the actual standard +s223 = Library.load(ontology_graph="https://github.com/open223/models.open223.info/raw/main/ontologies/223p.ttl") + +# load the model into the BuildingMOTIF instance +model = Model.create("urn:lbnl-example-radiant") +model.graph.parse("https://models.open223.info/compiled/lbnl-example-radiant.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/lbnl-example.md b/_sources/examples/lbnl-example.md index a05fba35..9fe0f657 100644 --- a/_sources/examples/lbnl-example.md +++ b/_sources/examples/lbnl-example.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # LBNL Example Building This is an example building provided by Lawrence Berkeley National Laboratory @@ -39,3 +50,50 @@ This is an example building provided by Lawrence Berkeley National Laboratory | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableProperty](https://explore.open223.info/s223/QuantifiableProperty.html) | 6 | | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedActuatableProperty](https://explore.open223.info/s223/EnumeratedActuatableProperty.html) | 2 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +from buildingmotif import BuildingMOTIF +from buildingmotif.dataclasses import Library, Model +import logging + +# Create a BuildingMOTIF object. If you do not have Java installed, remove the "shacl_engine" parameter +bm = BuildingMOTIF('sqlite://', shacl_engine='topquadrant', log_level=logging.ERROR) + +# load 223P library. We will load a recent copy from the models.open223.info +# git repository; later, we will load this from the location of the actual standard +s223 = Library.load(ontology_graph="https://github.com/open223/models.open223.info/raw/main/ontologies/223p.ttl") + +# load the model into the BuildingMOTIF instance +model = Model.create("urn:lbnl-example") +model.graph.parse("https://models.open223.info/compiled/lbnl-example.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/nist-example.md b/_sources/examples/nist-example.md index 0e1618ca..3010ae1c 100644 --- a/_sources/examples/nist-example.md +++ b/_sources/examples/nist-example.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # NIST Example Building This is a model of the Intelligent Buildings Agents Laboratory (IBAL) at NIST. @@ -48,3 +59,50 @@ The schematics of the air and hydronic systems can be found [here](../_static/sc | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableProperty](https://explore.open223.info/s223/QuantifiableProperty.html) | 10 | | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableActuatableProperty](https://explore.open223.info/s223/QuantifiableActuatableProperty.html) | 3 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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-example") +model.graph.parse("https://models.open223.info/compiled/nist-example.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/pnnl-example2.md b/_sources/examples/pnnl-example2.md index 6cff8969..44ced045 100644 --- a/_sources/examples/pnnl-example2.md +++ b/_sources/examples/pnnl-example2.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # PNNL Example Building 2 This is an example building model provided by Pacific Northwest National Laboratory. @@ -46,3 +57,50 @@ bdg1:05749166d93671bedf16efb52636ce38 a s223:Luminaire | [Zone](https://explore.open223.info/s223/Zone.html) | [](https://explore.open223.info/s223/.html) | 220 | | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableProperty](https://explore.open223.info/s223/QuantifiableProperty.html) | 394 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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-example2") +model.graph.parse("https://models.open223.info/compiled/pnnl-example2.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/scb-rtu.md b/_sources/examples/scb-rtu.md index 30ca1087..147e0e03 100644 --- a/_sources/examples/scb-rtu.md +++ b/_sources/examples/scb-rtu.md @@ -1,3 +1,14 @@ +--- +jupytext: + formats: md:myst + text_representation: + extension: .md + format_name: myst +kernelspec: + display_name: Python 3 + language: python + name: python3 +--- # LBNL Example SCB RTU This is a reference model provided by LBNL of a small office building using two individually zoned Rooftop HVAC Units. Labels have been anonymized, and may not be interpretable. @@ -26,3 +37,50 @@ This is a reference model provided by LBNL of a small office building using two | [Property](https://explore.open223.info/s223/Property.html) | [ObservableProperty](https://explore.open223.info/s223/ObservableProperty.html) | 138 | | [Property](https://explore.open223.info/s223/Property.html) | [QuantifiableObservableProperty](https://explore.open223.info/s223/QuantifiableObservableProperty.html) | 138 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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:scb-rtu") +model.graph.parse("https://models.open223.info/compiled/scb-rtu.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sources/examples/scb-vrf.md b/_sources/examples/scb-vrf.md index 0a2015c4..c7ae4579 100644 --- a/_sources/examples/scb-vrf.md +++ b/_sources/examples/scb-vrf.md @@ -36,3 +36,50 @@ This is a reference model provided by LBNL of a small office building using a VR | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedActuatableProperty](https://explore.open223.info/s223/EnumeratedActuatableProperty.html) | 152 | | [Property](https://explore.open223.info/s223/Property.html) | [EnumeratedObservableProperty](https://explore.open223.info/s223/EnumeratedObservableProperty.html) | 125 | + +## Load and Validate Model + +This code uses the [BuildingMOTIF](https://github.com/NREL/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 +:class: dropdown +To install the `buildingmotif` library, you can use the following command: + +```shell +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: + +```shell +pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@develop' +``` +```` + + +```{code-cell} ipython3 +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:scb-vrf") +model.graph.parse("https://models.open223.info/compiled/scb-vrf.ttl") + +# validate the model against 223P ontology +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False) +if not ctx.valid: + print(ctx.report_string) + +``` diff --git a/_sphinx_design_static/sphinx-design.min.css b/_sphinx_design_static/sphinx-design.min.css index a325746f..860c36da 100644 --- a/_sphinx_design_static/sphinx-design.min.css +++ b/_sphinx_design_static/sphinx-design.min.css @@ -1 +1 @@ -.sd-bg-primary{background-color:var(--sd-color-primary) !important}.sd-bg-text-primary{color:var(--sd-color-primary-text) !important}button.sd-bg-primary:focus,button.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}a.sd-bg-primary:focus,a.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}.sd-bg-secondary{background-color:var(--sd-color-secondary) !important}.sd-bg-text-secondary{color:var(--sd-color-secondary-text) !important}button.sd-bg-secondary:focus,button.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}a.sd-bg-secondary:focus,a.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}.sd-bg-success{background-color:var(--sd-color-success) !important}.sd-bg-text-success{color:var(--sd-color-success-text) !important}button.sd-bg-success:focus,button.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}a.sd-bg-success:focus,a.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}.sd-bg-info{background-color:var(--sd-color-info) !important}.sd-bg-text-info{color:var(--sd-color-info-text) !important}button.sd-bg-info:focus,button.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}a.sd-bg-info:focus,a.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}.sd-bg-warning{background-color:var(--sd-color-warning) !important}.sd-bg-text-warning{color:var(--sd-color-warning-text) !important}button.sd-bg-warning:focus,button.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}a.sd-bg-warning:focus,a.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}.sd-bg-danger{background-color:var(--sd-color-danger) !important}.sd-bg-text-danger{color:var(--sd-color-danger-text) !important}button.sd-bg-danger:focus,button.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}a.sd-bg-danger:focus,a.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}.sd-bg-light{background-color:var(--sd-color-light) !important}.sd-bg-text-light{color:var(--sd-color-light-text) !important}button.sd-bg-light:focus,button.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}a.sd-bg-light:focus,a.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}.sd-bg-muted{background-color:var(--sd-color-muted) !important}.sd-bg-text-muted{color:var(--sd-color-muted-text) !important}button.sd-bg-muted:focus,button.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}a.sd-bg-muted:focus,a.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}.sd-bg-dark{background-color:var(--sd-color-dark) !important}.sd-bg-text-dark{color:var(--sd-color-dark-text) !important}button.sd-bg-dark:focus,button.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}a.sd-bg-dark:focus,a.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}.sd-bg-black{background-color:var(--sd-color-black) !important}.sd-bg-text-black{color:var(--sd-color-black-text) !important}button.sd-bg-black:focus,button.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}a.sd-bg-black:focus,a.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}.sd-bg-white{background-color:var(--sd-color-white) !important}.sd-bg-text-white{color:var(--sd-color-white-text) !important}button.sd-bg-white:focus,button.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}a.sd-bg-white:focus,a.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}.sd-text-primary,.sd-text-primary>p{color:var(--sd-color-primary) !important}a.sd-text-primary:focus,a.sd-text-primary:hover{color:var(--sd-color-primary-highlight) !important}.sd-text-secondary,.sd-text-secondary>p{color:var(--sd-color-secondary) !important}a.sd-text-secondary:focus,a.sd-text-secondary:hover{color:var(--sd-color-secondary-highlight) !important}.sd-text-success,.sd-text-success>p{color:var(--sd-color-success) !important}a.sd-text-success:focus,a.sd-text-success:hover{color:var(--sd-color-success-highlight) !important}.sd-text-info,.sd-text-info>p{color:var(--sd-color-info) !important}a.sd-text-info:focus,a.sd-text-info:hover{color:var(--sd-color-info-highlight) !important}.sd-text-warning,.sd-text-warning>p{color:var(--sd-color-warning) !important}a.sd-text-warning:focus,a.sd-text-warning:hover{color:var(--sd-color-warning-highlight) !important}.sd-text-danger,.sd-text-danger>p{color:var(--sd-color-danger) !important}a.sd-text-danger:focus,a.sd-text-danger:hover{color:var(--sd-color-danger-highlight) !important}.sd-text-light,.sd-text-light>p{color:var(--sd-color-light) !important}a.sd-text-light:focus,a.sd-text-light:hover{color:var(--sd-color-light-highlight) !important}.sd-text-muted,.sd-text-muted>p{color:var(--sd-color-muted) !important}a.sd-text-muted:focus,a.sd-text-muted:hover{color:var(--sd-color-muted-highlight) !important}.sd-text-dark,.sd-text-dark>p{color:var(--sd-color-dark) !important}a.sd-text-dark:focus,a.sd-text-dark:hover{color:var(--sd-color-dark-highlight) !important}.sd-text-black,.sd-text-black>p{color:var(--sd-color-black) !important}a.sd-text-black:focus,a.sd-text-black:hover{color:var(--sd-color-black-highlight) !important}.sd-text-white,.sd-text-white>p{color:var(--sd-color-white) !important}a.sd-text-white:focus,a.sd-text-white:hover{color:var(--sd-color-white-highlight) !important}.sd-outline-primary{border-color:var(--sd-color-primary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-primary:focus,a.sd-outline-primary:hover{border-color:var(--sd-color-primary-highlight) !important}.sd-outline-secondary{border-color:var(--sd-color-secondary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-secondary:focus,a.sd-outline-secondary:hover{border-color:var(--sd-color-secondary-highlight) !important}.sd-outline-success{border-color:var(--sd-color-success) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-success:focus,a.sd-outline-success:hover{border-color:var(--sd-color-success-highlight) !important}.sd-outline-info{border-color:var(--sd-color-info) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-info:focus,a.sd-outline-info:hover{border-color:var(--sd-color-info-highlight) !important}.sd-outline-warning{border-color:var(--sd-color-warning) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-warning:focus,a.sd-outline-warning:hover{border-color:var(--sd-color-warning-highlight) !important}.sd-outline-danger{border-color:var(--sd-color-danger) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-danger:focus,a.sd-outline-danger:hover{border-color:var(--sd-color-danger-highlight) !important}.sd-outline-light{border-color:var(--sd-color-light) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-light:focus,a.sd-outline-light:hover{border-color:var(--sd-color-light-highlight) !important}.sd-outline-muted{border-color:var(--sd-color-muted) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-muted:focus,a.sd-outline-muted:hover{border-color:var(--sd-color-muted-highlight) !important}.sd-outline-dark{border-color:var(--sd-color-dark) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-dark:focus,a.sd-outline-dark:hover{border-color:var(--sd-color-dark-highlight) !important}.sd-outline-black{border-color:var(--sd-color-black) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-black:focus,a.sd-outline-black:hover{border-color:var(--sd-color-black-highlight) !important}.sd-outline-white{border-color:var(--sd-color-white) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-white:focus,a.sd-outline-white:hover{border-color:var(--sd-color-white-highlight) !important}.sd-bg-transparent{background-color:transparent !important}.sd-outline-transparent{border-color:transparent !important}.sd-text-transparent{color:transparent !important}.sd-p-0{padding:0 !important}.sd-pt-0,.sd-py-0{padding-top:0 !important}.sd-pr-0,.sd-px-0{padding-right:0 !important}.sd-pb-0,.sd-py-0{padding-bottom:0 !important}.sd-pl-0,.sd-px-0{padding-left:0 !important}.sd-p-1{padding:.25rem !important}.sd-pt-1,.sd-py-1{padding-top:.25rem !important}.sd-pr-1,.sd-px-1{padding-right:.25rem !important}.sd-pb-1,.sd-py-1{padding-bottom:.25rem !important}.sd-pl-1,.sd-px-1{padding-left:.25rem !important}.sd-p-2{padding:.5rem !important}.sd-pt-2,.sd-py-2{padding-top:.5rem !important}.sd-pr-2,.sd-px-2{padding-right:.5rem !important}.sd-pb-2,.sd-py-2{padding-bottom:.5rem !important}.sd-pl-2,.sd-px-2{padding-left:.5rem !important}.sd-p-3{padding:1rem !important}.sd-pt-3,.sd-py-3{padding-top:1rem !important}.sd-pr-3,.sd-px-3{padding-right:1rem !important}.sd-pb-3,.sd-py-3{padding-bottom:1rem !important}.sd-pl-3,.sd-px-3{padding-left:1rem !important}.sd-p-4{padding:1.5rem !important}.sd-pt-4,.sd-py-4{padding-top:1.5rem !important}.sd-pr-4,.sd-px-4{padding-right:1.5rem !important}.sd-pb-4,.sd-py-4{padding-bottom:1.5rem !important}.sd-pl-4,.sd-px-4{padding-left:1.5rem !important}.sd-p-5{padding:3rem !important}.sd-pt-5,.sd-py-5{padding-top:3rem !important}.sd-pr-5,.sd-px-5{padding-right:3rem !important}.sd-pb-5,.sd-py-5{padding-bottom:3rem !important}.sd-pl-5,.sd-px-5{padding-left:3rem !important}.sd-m-auto{margin:auto !important}.sd-mt-auto,.sd-my-auto{margin-top:auto !important}.sd-mr-auto,.sd-mx-auto{margin-right:auto !important}.sd-mb-auto,.sd-my-auto{margin-bottom:auto !important}.sd-ml-auto,.sd-mx-auto{margin-left:auto !important}.sd-m-0{margin:0 !important}.sd-mt-0,.sd-my-0{margin-top:0 !important}.sd-mr-0,.sd-mx-0{margin-right:0 !important}.sd-mb-0,.sd-my-0{margin-bottom:0 !important}.sd-ml-0,.sd-mx-0{margin-left:0 !important}.sd-m-1{margin:.25rem !important}.sd-mt-1,.sd-my-1{margin-top:.25rem !important}.sd-mr-1,.sd-mx-1{margin-right:.25rem !important}.sd-mb-1,.sd-my-1{margin-bottom:.25rem !important}.sd-ml-1,.sd-mx-1{margin-left:.25rem !important}.sd-m-2{margin:.5rem !important}.sd-mt-2,.sd-my-2{margin-top:.5rem !important}.sd-mr-2,.sd-mx-2{margin-right:.5rem !important}.sd-mb-2,.sd-my-2{margin-bottom:.5rem !important}.sd-ml-2,.sd-mx-2{margin-left:.5rem !important}.sd-m-3{margin:1rem !important}.sd-mt-3,.sd-my-3{margin-top:1rem !important}.sd-mr-3,.sd-mx-3{margin-right:1rem !important}.sd-mb-3,.sd-my-3{margin-bottom:1rem !important}.sd-ml-3,.sd-mx-3{margin-left:1rem !important}.sd-m-4{margin:1.5rem !important}.sd-mt-4,.sd-my-4{margin-top:1.5rem !important}.sd-mr-4,.sd-mx-4{margin-right:1.5rem !important}.sd-mb-4,.sd-my-4{margin-bottom:1.5rem !important}.sd-ml-4,.sd-mx-4{margin-left:1.5rem !important}.sd-m-5{margin:3rem !important}.sd-mt-5,.sd-my-5{margin-top:3rem !important}.sd-mr-5,.sd-mx-5{margin-right:3rem !important}.sd-mb-5,.sd-my-5{margin-bottom:3rem !important}.sd-ml-5,.sd-mx-5{margin-left:3rem !important}.sd-w-25{width:25% !important}.sd-w-50{width:50% !important}.sd-w-75{width:75% !important}.sd-w-100{width:100% !important}.sd-w-auto{width:auto !important}.sd-h-25{height:25% !important}.sd-h-50{height:50% !important}.sd-h-75{height:75% !important}.sd-h-100{height:100% !important}.sd-h-auto{height:auto !important}.sd-d-none{display:none !important}.sd-d-inline{display:inline !important}.sd-d-inline-block{display:inline-block !important}.sd-d-block{display:block !important}.sd-d-grid{display:grid !important}.sd-d-flex-row{display:-ms-flexbox !important;display:flex !important;flex-direction:row !important}.sd-d-flex-column{display:-ms-flexbox !important;display:flex !important;flex-direction:column !important}.sd-d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media(min-width: 576px){.sd-d-sm-none{display:none !important}.sd-d-sm-inline{display:inline !important}.sd-d-sm-inline-block{display:inline-block !important}.sd-d-sm-block{display:block !important}.sd-d-sm-grid{display:grid !important}.sd-d-sm-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 768px){.sd-d-md-none{display:none !important}.sd-d-md-inline{display:inline !important}.sd-d-md-inline-block{display:inline-block !important}.sd-d-md-block{display:block !important}.sd-d-md-grid{display:grid !important}.sd-d-md-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 992px){.sd-d-lg-none{display:none !important}.sd-d-lg-inline{display:inline !important}.sd-d-lg-inline-block{display:inline-block !important}.sd-d-lg-block{display:block !important}.sd-d-lg-grid{display:grid !important}.sd-d-lg-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 1200px){.sd-d-xl-none{display:none !important}.sd-d-xl-inline{display:inline !important}.sd-d-xl-inline-block{display:inline-block !important}.sd-d-xl-block{display:block !important}.sd-d-xl-grid{display:grid !important}.sd-d-xl-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.sd-align-major-start{justify-content:flex-start !important}.sd-align-major-end{justify-content:flex-end !important}.sd-align-major-center{justify-content:center !important}.sd-align-major-justify{justify-content:space-between !important}.sd-align-major-spaced{justify-content:space-evenly !important}.sd-align-minor-start{align-items:flex-start !important}.sd-align-minor-end{align-items:flex-end !important}.sd-align-minor-center{align-items:center !important}.sd-align-minor-stretch{align-items:stretch !important}.sd-text-justify{text-align:justify !important}.sd-text-left{text-align:left !important}.sd-text-right{text-align:right !important}.sd-text-center{text-align:center !important}.sd-font-weight-light{font-weight:300 !important}.sd-font-weight-lighter{font-weight:lighter !important}.sd-font-weight-normal{font-weight:400 !important}.sd-font-weight-bold{font-weight:700 !important}.sd-font-weight-bolder{font-weight:bolder !important}.sd-font-italic{font-style:italic !important}.sd-text-decoration-none{text-decoration:none !important}.sd-text-lowercase{text-transform:lowercase !important}.sd-text-uppercase{text-transform:uppercase !important}.sd-text-capitalize{text-transform:capitalize !important}.sd-text-wrap{white-space:normal !important}.sd-text-nowrap{white-space:nowrap !important}.sd-text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sd-fs-1,.sd-fs-1>p{font-size:calc(1.375rem + 1.5vw) !important;line-height:unset !important}.sd-fs-2,.sd-fs-2>p{font-size:calc(1.325rem + 0.9vw) !important;line-height:unset !important}.sd-fs-3,.sd-fs-3>p{font-size:calc(1.3rem + 0.6vw) !important;line-height:unset !important}.sd-fs-4,.sd-fs-4>p{font-size:calc(1.275rem + 0.3vw) !important;line-height:unset !important}.sd-fs-5,.sd-fs-5>p{font-size:1.25rem !important;line-height:unset !important}.sd-fs-6,.sd-fs-6>p{font-size:1rem !important;line-height:unset !important}.sd-border-0{border:0 solid !important}.sd-border-top-0{border-top:0 solid !important}.sd-border-bottom-0{border-bottom:0 solid !important}.sd-border-right-0{border-right:0 solid !important}.sd-border-left-0{border-left:0 solid !important}.sd-border-1{border:1px solid !important}.sd-border-top-1{border-top:1px solid !important}.sd-border-bottom-1{border-bottom:1px solid !important}.sd-border-right-1{border-right:1px solid !important}.sd-border-left-1{border-left:1px solid !important}.sd-border-2{border:2px solid !important}.sd-border-top-2{border-top:2px solid !important}.sd-border-bottom-2{border-bottom:2px solid !important}.sd-border-right-2{border-right:2px solid !important}.sd-border-left-2{border-left:2px solid !important}.sd-border-3{border:3px solid !important}.sd-border-top-3{border-top:3px solid !important}.sd-border-bottom-3{border-bottom:3px solid !important}.sd-border-right-3{border-right:3px solid !important}.sd-border-left-3{border-left:3px solid !important}.sd-border-4{border:4px solid !important}.sd-border-top-4{border-top:4px solid !important}.sd-border-bottom-4{border-bottom:4px solid !important}.sd-border-right-4{border-right:4px solid !important}.sd-border-left-4{border-left:4px solid !important}.sd-border-5{border:5px solid !important}.sd-border-top-5{border-top:5px solid !important}.sd-border-bottom-5{border-bottom:5px solid !important}.sd-border-right-5{border-right:5px solid !important}.sd-border-left-5{border-left:5px solid !important}.sd-rounded-0{border-radius:0 !important}.sd-rounded-1{border-radius:.2rem !important}.sd-rounded-2{border-radius:.3rem !important}.sd-rounded-3{border-radius:.5rem !important}.sd-rounded-pill{border-radius:50rem !important}.sd-rounded-circle{border-radius:50% !important}.shadow-none{box-shadow:none !important}.sd-shadow-sm{box-shadow:0 .125rem .25rem var(--sd-color-shadow) !important}.sd-shadow-md{box-shadow:0 .5rem 1rem var(--sd-color-shadow) !important}.sd-shadow-lg{box-shadow:0 1rem 3rem var(--sd-color-shadow) !important}@keyframes sd-slide-from-left{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}@keyframes sd-slide-from-right{0%{transform:translateX(200%)}100%{transform:translateX(0)}}@keyframes sd-grow100{0%{transform:scale(0);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50{0%{transform:scale(0.5);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50-rot20{0%{transform:scale(0.5) rotateZ(-20deg);opacity:.5}75%{transform:scale(1) rotateZ(5deg);opacity:1}95%{transform:scale(1) rotateZ(-1deg);opacity:1}100%{transform:scale(1) rotateZ(0);opacity:1}}.sd-animate-slide-from-left{animation:1s ease-out 0s 1 normal none running sd-slide-from-left}.sd-animate-slide-from-right{animation:1s ease-out 0s 1 normal none running sd-slide-from-right}.sd-animate-grow100{animation:1s ease-out 0s 1 normal none running sd-grow100}.sd-animate-grow50{animation:1s ease-out 0s 1 normal none running sd-grow50}.sd-animate-grow50-rot20{animation:1s ease-out 0s 1 normal none running sd-grow50-rot20}.sd-badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.sd-badge:empty{display:none}a.sd-badge{text-decoration:none}.sd-btn .sd-badge{position:relative;top:-1px}.sd-btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;cursor:pointer;display:inline-block;font-weight:400;font-size:1rem;line-height:1.5;padding:.375rem .75rem;text-align:center;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:middle;user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none}.sd-btn:hover{text-decoration:none}@media(prefers-reduced-motion: reduce){.sd-btn{transition:none}}.sd-btn-primary,.sd-btn-outline-primary:hover,.sd-btn-outline-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-primary:hover,.sd-btn-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary-highlight) !important;border-color:var(--sd-color-primary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-primary{color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary,.sd-btn-outline-secondary:hover,.sd-btn-outline-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary:hover,.sd-btn-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary-highlight) !important;border-color:var(--sd-color-secondary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-secondary{color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success,.sd-btn-outline-success:hover,.sd-btn-outline-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success:hover,.sd-btn-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success-highlight) !important;border-color:var(--sd-color-success-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-success{color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info,.sd-btn-outline-info:hover,.sd-btn-outline-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info:hover,.sd-btn-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info-highlight) !important;border-color:var(--sd-color-info-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-info{color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning,.sd-btn-outline-warning:hover,.sd-btn-outline-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning:hover,.sd-btn-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning-highlight) !important;border-color:var(--sd-color-warning-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-warning{color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger,.sd-btn-outline-danger:hover,.sd-btn-outline-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger:hover,.sd-btn-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger-highlight) !important;border-color:var(--sd-color-danger-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-danger{color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light,.sd-btn-outline-light:hover,.sd-btn-outline-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light:hover,.sd-btn-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light-highlight) !important;border-color:var(--sd-color-light-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-light{color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted,.sd-btn-outline-muted:hover,.sd-btn-outline-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted:hover,.sd-btn-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted-highlight) !important;border-color:var(--sd-color-muted-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-muted{color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark,.sd-btn-outline-dark:hover,.sd-btn-outline-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark:hover,.sd-btn-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark-highlight) !important;border-color:var(--sd-color-dark-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-dark{color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black,.sd-btn-outline-black:hover,.sd-btn-outline-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black:hover,.sd-btn-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black-highlight) !important;border-color:var(--sd-color-black-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-black{color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white,.sd-btn-outline-white:hover,.sd-btn-outline-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white:hover,.sd-btn-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white-highlight) !important;border-color:var(--sd-color-white-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-white{color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.sd-hide-link-text{font-size:0}.sd-octicon,.sd-material-icon{display:inline-block;fill:currentColor;vertical-align:middle}.sd-avatar-xs{border-radius:50%;object-fit:cover;object-position:center;width:1rem;height:1rem}.sd-avatar-sm{border-radius:50%;object-fit:cover;object-position:center;width:3rem;height:3rem}.sd-avatar-md{border-radius:50%;object-fit:cover;object-position:center;width:5rem;height:5rem}.sd-avatar-lg{border-radius:50%;object-fit:cover;object-position:center;width:7rem;height:7rem}.sd-avatar-xl{border-radius:50%;object-fit:cover;object-position:center;width:10rem;height:10rem}.sd-avatar-inherit{border-radius:50%;object-fit:cover;object-position:center;width:inherit;height:inherit}.sd-avatar-initial{border-radius:50%;object-fit:cover;object-position:center;width:initial;height:initial}.sd-card{background-clip:border-box;background-color:var(--sd-color-card-background);border:1px solid var(--sd-color-card-border);border-radius:.25rem;color:var(--sd-color-card-text);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;position:relative;word-wrap:break-word}.sd-card>hr{margin-left:0;margin-right:0}.sd-card-hover:hover{border-color:var(--sd-color-card-border-hover);transform:scale(1.01)}.sd-card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem 1rem}.sd-card-title{margin-bottom:.5rem}.sd-card-subtitle{margin-top:-0.25rem;margin-bottom:0}.sd-card-text:last-child{margin-bottom:0}.sd-card-link:hover{text-decoration:none}.sd-card-link+.card-link{margin-left:1rem}.sd-card-header{padding:.5rem 1rem;margin-bottom:0;background-color:var(--sd-color-card-header);border-bottom:1px solid var(--sd-color-card-border)}.sd-card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.sd-card-footer{padding:.5rem 1rem;background-color:var(--sd-color-card-footer);border-top:1px solid var(--sd-color-card-border)}.sd-card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.sd-card-header-tabs{margin-right:-0.5rem;margin-bottom:-0.5rem;margin-left:-0.5rem;border-bottom:0}.sd-card-header-pills{margin-right:-0.5rem;margin-left:-0.5rem}.sd-card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom,.sd-card-img-top{width:100%}.sd-card-img,.sd-card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom{border-bottom-left-radius:calc(0.25rem - 1px);border-bottom-right-radius:calc(0.25rem - 1px)}.sd-cards-carousel{width:100%;display:flex;flex-wrap:nowrap;-ms-flex-direction:row;flex-direction:row;overflow-x:hidden;scroll-snap-type:x mandatory}.sd-cards-carousel.sd-show-scrollbar{overflow-x:auto}.sd-cards-carousel:hover,.sd-cards-carousel:focus{overflow-x:auto}.sd-cards-carousel>.sd-card{flex-shrink:0;scroll-snap-align:start}.sd-cards-carousel>.sd-card:not(:last-child){margin-right:3px}.sd-card-cols-1>.sd-card{width:90%}.sd-card-cols-2>.sd-card{width:45%}.sd-card-cols-3>.sd-card{width:30%}.sd-card-cols-4>.sd-card{width:22.5%}.sd-card-cols-5>.sd-card{width:18%}.sd-card-cols-6>.sd-card{width:15%}.sd-card-cols-7>.sd-card{width:12.8571428571%}.sd-card-cols-8>.sd-card{width:11.25%}.sd-card-cols-9>.sd-card{width:10%}.sd-card-cols-10>.sd-card{width:9%}.sd-card-cols-11>.sd-card{width:8.1818181818%}.sd-card-cols-12>.sd-card{width:7.5%}.sd-container,.sd-container-fluid,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container-xl{margin-left:auto;margin-right:auto;padding-left:var(--sd-gutter-x, 0.75rem);padding-right:var(--sd-gutter-x, 0.75rem);width:100%}@media(min-width: 576px){.sd-container-sm,.sd-container{max-width:540px}}@media(min-width: 768px){.sd-container-md,.sd-container-sm,.sd-container{max-width:720px}}@media(min-width: 992px){.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:960px}}@media(min-width: 1200px){.sd-container-xl,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:1140px}}.sd-row{--sd-gutter-x: 1.5rem;--sd-gutter-y: 0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:calc(var(--sd-gutter-y) * -1);margin-right:calc(var(--sd-gutter-x) * -0.5);margin-left:calc(var(--sd-gutter-x) * -0.5)}.sd-row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--sd-gutter-x) * 0.5);padding-left:calc(var(--sd-gutter-x) * 0.5);margin-top:var(--sd-gutter-y)}.sd-col{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-auto>*{flex:0 0 auto;width:auto}.sd-row-cols-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}@media(min-width: 576px){.sd-col-sm{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-sm-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-sm-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-sm-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-sm-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-sm-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-sm-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-sm-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-sm-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-sm-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-sm-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-sm-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-sm-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-sm-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 768px){.sd-col-md{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-md-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-md-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-md-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-md-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-md-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-md-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-md-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-md-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-md-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-md-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-md-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-md-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-md-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 992px){.sd-col-lg{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-lg-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-lg-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-lg-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-lg-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-lg-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-lg-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-lg-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-lg-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-lg-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-lg-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-lg-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-lg-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-lg-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 1200px){.sd-col-xl{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-xl-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-xl-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-xl-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-xl-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-xl-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-xl-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-xl-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-xl-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-xl-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-xl-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-xl-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-xl-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-xl-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}.sd-col-auto{flex:0 0 auto;-ms-flex:0 0 auto;width:auto}.sd-col-1{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}.sd-col-2{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-col-3{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-col-4{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-col-5{flex:0 0 auto;-ms-flex:0 0 auto;width:41.6666666667%}.sd-col-6{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-col-7{flex:0 0 auto;-ms-flex:0 0 auto;width:58.3333333333%}.sd-col-8{flex:0 0 auto;-ms-flex:0 0 auto;width:66.6666666667%}.sd-col-9{flex:0 0 auto;-ms-flex:0 0 auto;width:75%}.sd-col-10{flex:0 0 auto;-ms-flex:0 0 auto;width:83.3333333333%}.sd-col-11{flex:0 0 auto;-ms-flex:0 0 auto;width:91.6666666667%}.sd-col-12{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-g-0,.sd-gy-0{--sd-gutter-y: 0}.sd-g-0,.sd-gx-0{--sd-gutter-x: 0}.sd-g-1,.sd-gy-1{--sd-gutter-y: 0.25rem}.sd-g-1,.sd-gx-1{--sd-gutter-x: 0.25rem}.sd-g-2,.sd-gy-2{--sd-gutter-y: 0.5rem}.sd-g-2,.sd-gx-2{--sd-gutter-x: 0.5rem}.sd-g-3,.sd-gy-3{--sd-gutter-y: 1rem}.sd-g-3,.sd-gx-3{--sd-gutter-x: 1rem}.sd-g-4,.sd-gy-4{--sd-gutter-y: 1.5rem}.sd-g-4,.sd-gx-4{--sd-gutter-x: 1.5rem}.sd-g-5,.sd-gy-5{--sd-gutter-y: 3rem}.sd-g-5,.sd-gx-5{--sd-gutter-x: 3rem}@media(min-width: 576px){.sd-col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-sm-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-sm-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-sm-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-sm-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-sm-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-sm-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-sm-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-sm-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-sm-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-sm-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-sm-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-sm-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-sm-0,.sd-gy-sm-0{--sd-gutter-y: 0}.sd-g-sm-0,.sd-gx-sm-0{--sd-gutter-x: 0}.sd-g-sm-1,.sd-gy-sm-1{--sd-gutter-y: 0.25rem}.sd-g-sm-1,.sd-gx-sm-1{--sd-gutter-x: 0.25rem}.sd-g-sm-2,.sd-gy-sm-2{--sd-gutter-y: 0.5rem}.sd-g-sm-2,.sd-gx-sm-2{--sd-gutter-x: 0.5rem}.sd-g-sm-3,.sd-gy-sm-3{--sd-gutter-y: 1rem}.sd-g-sm-3,.sd-gx-sm-3{--sd-gutter-x: 1rem}.sd-g-sm-4,.sd-gy-sm-4{--sd-gutter-y: 1.5rem}.sd-g-sm-4,.sd-gx-sm-4{--sd-gutter-x: 1.5rem}.sd-g-sm-5,.sd-gy-sm-5{--sd-gutter-y: 3rem}.sd-g-sm-5,.sd-gx-sm-5{--sd-gutter-x: 3rem}}@media(min-width: 768px){.sd-col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-md-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-md-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-md-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-md-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-md-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-md-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-md-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-md-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-md-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-md-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-md-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-md-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-md-0,.sd-gy-md-0{--sd-gutter-y: 0}.sd-g-md-0,.sd-gx-md-0{--sd-gutter-x: 0}.sd-g-md-1,.sd-gy-md-1{--sd-gutter-y: 0.25rem}.sd-g-md-1,.sd-gx-md-1{--sd-gutter-x: 0.25rem}.sd-g-md-2,.sd-gy-md-2{--sd-gutter-y: 0.5rem}.sd-g-md-2,.sd-gx-md-2{--sd-gutter-x: 0.5rem}.sd-g-md-3,.sd-gy-md-3{--sd-gutter-y: 1rem}.sd-g-md-3,.sd-gx-md-3{--sd-gutter-x: 1rem}.sd-g-md-4,.sd-gy-md-4{--sd-gutter-y: 1.5rem}.sd-g-md-4,.sd-gx-md-4{--sd-gutter-x: 1.5rem}.sd-g-md-5,.sd-gy-md-5{--sd-gutter-y: 3rem}.sd-g-md-5,.sd-gx-md-5{--sd-gutter-x: 3rem}}@media(min-width: 992px){.sd-col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-lg-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-lg-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-lg-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-lg-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-lg-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-lg-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-lg-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-lg-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-lg-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-lg-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-lg-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-lg-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-lg-0,.sd-gy-lg-0{--sd-gutter-y: 0}.sd-g-lg-0,.sd-gx-lg-0{--sd-gutter-x: 0}.sd-g-lg-1,.sd-gy-lg-1{--sd-gutter-y: 0.25rem}.sd-g-lg-1,.sd-gx-lg-1{--sd-gutter-x: 0.25rem}.sd-g-lg-2,.sd-gy-lg-2{--sd-gutter-y: 0.5rem}.sd-g-lg-2,.sd-gx-lg-2{--sd-gutter-x: 0.5rem}.sd-g-lg-3,.sd-gy-lg-3{--sd-gutter-y: 1rem}.sd-g-lg-3,.sd-gx-lg-3{--sd-gutter-x: 1rem}.sd-g-lg-4,.sd-gy-lg-4{--sd-gutter-y: 1.5rem}.sd-g-lg-4,.sd-gx-lg-4{--sd-gutter-x: 1.5rem}.sd-g-lg-5,.sd-gy-lg-5{--sd-gutter-y: 3rem}.sd-g-lg-5,.sd-gx-lg-5{--sd-gutter-x: 3rem}}@media(min-width: 1200px){.sd-col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-xl-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-xl-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-xl-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-xl-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-xl-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-xl-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-xl-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-xl-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-xl-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-xl-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-xl-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-xl-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-xl-0,.sd-gy-xl-0{--sd-gutter-y: 0}.sd-g-xl-0,.sd-gx-xl-0{--sd-gutter-x: 0}.sd-g-xl-1,.sd-gy-xl-1{--sd-gutter-y: 0.25rem}.sd-g-xl-1,.sd-gx-xl-1{--sd-gutter-x: 0.25rem}.sd-g-xl-2,.sd-gy-xl-2{--sd-gutter-y: 0.5rem}.sd-g-xl-2,.sd-gx-xl-2{--sd-gutter-x: 0.5rem}.sd-g-xl-3,.sd-gy-xl-3{--sd-gutter-y: 1rem}.sd-g-xl-3,.sd-gx-xl-3{--sd-gutter-x: 1rem}.sd-g-xl-4,.sd-gy-xl-4{--sd-gutter-y: 1.5rem}.sd-g-xl-4,.sd-gx-xl-4{--sd-gutter-x: 1.5rem}.sd-g-xl-5,.sd-gy-xl-5{--sd-gutter-y: 3rem}.sd-g-xl-5,.sd-gx-xl-5{--sd-gutter-x: 3rem}}.sd-flex-row-reverse{flex-direction:row-reverse !important}details.sd-dropdown{position:relative;font-size:var(--sd-fontsize-dropdown)}details.sd-dropdown:hover{cursor:pointer}details.sd-dropdown .sd-summary-content{cursor:default}details.sd-dropdown summary.sd-summary-title{padding:.5em 1em;font-size:var(--sd-fontsize-dropdown-title);font-weight:var(--sd-fontweight-dropdown-title);user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;list-style:none;display:inline-flex;justify-content:space-between}details.sd-dropdown summary.sd-summary-title::-webkit-details-marker{display:none}details.sd-dropdown summary.sd-summary-title:focus{outline:none}details.sd-dropdown summary.sd-summary-title .sd-summary-icon{margin-right:.6em;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-icon svg{opacity:.8}details.sd-dropdown summary.sd-summary-title .sd-summary-text{flex-grow:1;line-height:1.5;padding-right:.5rem}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker{pointer-events:none;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker svg{opacity:.6}details.sd-dropdown summary.sd-summary-title:hover .sd-summary-state-marker svg{opacity:1;transform:scale(1.1)}details.sd-dropdown[open] summary .sd-octicon.no-title{visibility:hidden}details.sd-dropdown .sd-summary-chevron-right{transition:.25s}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-right{transform:rotate(90deg)}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-down{transform:rotate(180deg)}details.sd-dropdown:not([open]).sd-card{border:none}details.sd-dropdown:not([open])>.sd-card-header{border:1px solid var(--sd-color-card-border);border-radius:.25rem}details.sd-dropdown.sd-fade-in[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out;animation:sd-fade-in .5s ease-in-out}details.sd-dropdown.sd-fade-in-slide-down[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out}.sd-col>.sd-dropdown{width:100%}.sd-summary-content>.sd-tab-set:first-child{margin-top:0}@keyframes sd-fade-in{0%{opacity:0}100%{opacity:1}}@keyframes sd-slide-down{0%{transform:translate(0, -10px)}100%{transform:translate(0, 0)}}.sd-tab-set{border-radius:.125rem;display:flex;flex-wrap:wrap;margin:1em 0;position:relative}.sd-tab-set>input{opacity:0;position:absolute}.sd-tab-set>input:checked+label{border-color:var(--sd-color-tabs-underline-active);color:var(--sd-color-tabs-label-active)}.sd-tab-set>input:checked+label+.sd-tab-content{display:block}.sd-tab-set>input:not(:checked)+label:hover{color:var(--sd-color-tabs-label-hover);border-color:var(--sd-color-tabs-underline-hover)}.sd-tab-set>input:focus+label{outline-style:auto}.sd-tab-set>input:not(.focus-visible)+label{outline:none;-webkit-tap-highlight-color:transparent}.sd-tab-set>label{border-bottom:.125rem solid transparent;margin-bottom:0;color:var(--sd-color-tabs-label-inactive);border-color:var(--sd-color-tabs-underline-inactive);cursor:pointer;font-size:var(--sd-fontsize-tabs-label);font-weight:700;padding:1em 1.25em .5em;transition:color 250ms;width:auto;z-index:1}html .sd-tab-set>label:hover{color:var(--sd-color-tabs-label-active)}.sd-col>.sd-tab-set{width:100%}.sd-tab-content{box-shadow:0 -0.0625rem var(--sd-color-tabs-overline),0 .0625rem var(--sd-color-tabs-underline);display:none;order:99;padding-bottom:.75rem;padding-top:.75rem;width:100%}.sd-tab-content>:first-child{margin-top:0 !important}.sd-tab-content>:last-child{margin-bottom:0 !important}.sd-tab-content>.sd-tab-set{margin:0}.sd-sphinx-override,.sd-sphinx-override *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sd-sphinx-override p{margin-top:0}:root{--sd-color-primary: #0071bc;--sd-color-secondary: #6c757d;--sd-color-success: #28a745;--sd-color-info: #17a2b8;--sd-color-warning: #f0b37e;--sd-color-danger: #dc3545;--sd-color-light: #f8f9fa;--sd-color-muted: #6c757d;--sd-color-dark: #212529;--sd-color-black: black;--sd-color-white: white;--sd-color-primary-highlight: #0060a0;--sd-color-secondary-highlight: #5c636a;--sd-color-success-highlight: #228e3b;--sd-color-info-highlight: #148a9c;--sd-color-warning-highlight: #cc986b;--sd-color-danger-highlight: #bb2d3b;--sd-color-light-highlight: #d3d4d5;--sd-color-muted-highlight: #5c636a;--sd-color-dark-highlight: #1c1f23;--sd-color-black-highlight: black;--sd-color-white-highlight: #d9d9d9;--sd-color-primary-bg: rgba(0, 113, 188, 0.2);--sd-color-secondary-bg: rgba(108, 117, 125, 0.2);--sd-color-success-bg: rgba(40, 167, 69, 0.2);--sd-color-info-bg: rgba(23, 162, 184, 0.2);--sd-color-warning-bg: rgba(240, 179, 126, 0.2);--sd-color-danger-bg: rgba(220, 53, 69, 0.2);--sd-color-light-bg: rgba(248, 249, 250, 0.2);--sd-color-muted-bg: rgba(108, 117, 125, 0.2);--sd-color-dark-bg: rgba(33, 37, 41, 0.2);--sd-color-black-bg: rgba(0, 0, 0, 0.2);--sd-color-white-bg: rgba(255, 255, 255, 0.2);--sd-color-primary-text: #fff;--sd-color-secondary-text: #fff;--sd-color-success-text: #fff;--sd-color-info-text: #fff;--sd-color-warning-text: #212529;--sd-color-danger-text: #fff;--sd-color-light-text: #212529;--sd-color-muted-text: #fff;--sd-color-dark-text: #fff;--sd-color-black-text: #fff;--sd-color-white-text: #212529;--sd-color-shadow: rgba(0, 0, 0, 0.15);--sd-color-card-border: rgba(0, 0, 0, 0.125);--sd-color-card-border-hover: hsla(231, 99%, 66%, 1);--sd-color-card-background: transparent;--sd-color-card-text: inherit;--sd-color-card-header: transparent;--sd-color-card-footer: transparent;--sd-color-tabs-label-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-inactive: hsl(0, 0%, 66%);--sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62);--sd-color-tabs-underline-inactive: transparent;--sd-color-tabs-overline: rgb(222, 222, 222);--sd-color-tabs-underline: rgb(222, 222, 222);--sd-fontsize-tabs-label: 1rem;--sd-fontsize-dropdown: inherit;--sd-fontsize-dropdown-title: 1rem;--sd-fontweight-dropdown-title: 700} +.sd-bg-primary{background-color:var(--sd-color-primary) !important}.sd-bg-text-primary{color:var(--sd-color-primary-text) !important}button.sd-bg-primary:focus,button.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}a.sd-bg-primary:focus,a.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}.sd-bg-secondary{background-color:var(--sd-color-secondary) !important}.sd-bg-text-secondary{color:var(--sd-color-secondary-text) !important}button.sd-bg-secondary:focus,button.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}a.sd-bg-secondary:focus,a.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}.sd-bg-success{background-color:var(--sd-color-success) !important}.sd-bg-text-success{color:var(--sd-color-success-text) !important}button.sd-bg-success:focus,button.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}a.sd-bg-success:focus,a.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}.sd-bg-info{background-color:var(--sd-color-info) !important}.sd-bg-text-info{color:var(--sd-color-info-text) !important}button.sd-bg-info:focus,button.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}a.sd-bg-info:focus,a.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}.sd-bg-warning{background-color:var(--sd-color-warning) !important}.sd-bg-text-warning{color:var(--sd-color-warning-text) !important}button.sd-bg-warning:focus,button.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}a.sd-bg-warning:focus,a.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}.sd-bg-danger{background-color:var(--sd-color-danger) !important}.sd-bg-text-danger{color:var(--sd-color-danger-text) !important}button.sd-bg-danger:focus,button.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}a.sd-bg-danger:focus,a.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}.sd-bg-light{background-color:var(--sd-color-light) !important}.sd-bg-text-light{color:var(--sd-color-light-text) !important}button.sd-bg-light:focus,button.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}a.sd-bg-light:focus,a.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}.sd-bg-muted{background-color:var(--sd-color-muted) !important}.sd-bg-text-muted{color:var(--sd-color-muted-text) !important}button.sd-bg-muted:focus,button.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}a.sd-bg-muted:focus,a.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}.sd-bg-dark{background-color:var(--sd-color-dark) !important}.sd-bg-text-dark{color:var(--sd-color-dark-text) !important}button.sd-bg-dark:focus,button.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}a.sd-bg-dark:focus,a.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}.sd-bg-black{background-color:var(--sd-color-black) !important}.sd-bg-text-black{color:var(--sd-color-black-text) !important}button.sd-bg-black:focus,button.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}a.sd-bg-black:focus,a.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}.sd-bg-white{background-color:var(--sd-color-white) !important}.sd-bg-text-white{color:var(--sd-color-white-text) !important}button.sd-bg-white:focus,button.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}a.sd-bg-white:focus,a.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}.sd-text-primary,.sd-text-primary>p{color:var(--sd-color-primary) !important}a.sd-text-primary:focus,a.sd-text-primary:hover{color:var(--sd-color-primary-highlight) !important}.sd-text-secondary,.sd-text-secondary>p{color:var(--sd-color-secondary) !important}a.sd-text-secondary:focus,a.sd-text-secondary:hover{color:var(--sd-color-secondary-highlight) !important}.sd-text-success,.sd-text-success>p{color:var(--sd-color-success) !important}a.sd-text-success:focus,a.sd-text-success:hover{color:var(--sd-color-success-highlight) !important}.sd-text-info,.sd-text-info>p{color:var(--sd-color-info) !important}a.sd-text-info:focus,a.sd-text-info:hover{color:var(--sd-color-info-highlight) !important}.sd-text-warning,.sd-text-warning>p{color:var(--sd-color-warning) !important}a.sd-text-warning:focus,a.sd-text-warning:hover{color:var(--sd-color-warning-highlight) !important}.sd-text-danger,.sd-text-danger>p{color:var(--sd-color-danger) !important}a.sd-text-danger:focus,a.sd-text-danger:hover{color:var(--sd-color-danger-highlight) !important}.sd-text-light,.sd-text-light>p{color:var(--sd-color-light) !important}a.sd-text-light:focus,a.sd-text-light:hover{color:var(--sd-color-light-highlight) !important}.sd-text-muted,.sd-text-muted>p{color:var(--sd-color-muted) !important}a.sd-text-muted:focus,a.sd-text-muted:hover{color:var(--sd-color-muted-highlight) !important}.sd-text-dark,.sd-text-dark>p{color:var(--sd-color-dark) !important}a.sd-text-dark:focus,a.sd-text-dark:hover{color:var(--sd-color-dark-highlight) !important}.sd-text-black,.sd-text-black>p{color:var(--sd-color-black) !important}a.sd-text-black:focus,a.sd-text-black:hover{color:var(--sd-color-black-highlight) !important}.sd-text-white,.sd-text-white>p{color:var(--sd-color-white) !important}a.sd-text-white:focus,a.sd-text-white:hover{color:var(--sd-color-white-highlight) !important}.sd-outline-primary{border-color:var(--sd-color-primary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-primary:focus,a.sd-outline-primary:hover{border-color:var(--sd-color-primary-highlight) !important}.sd-outline-secondary{border-color:var(--sd-color-secondary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-secondary:focus,a.sd-outline-secondary:hover{border-color:var(--sd-color-secondary-highlight) !important}.sd-outline-success{border-color:var(--sd-color-success) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-success:focus,a.sd-outline-success:hover{border-color:var(--sd-color-success-highlight) !important}.sd-outline-info{border-color:var(--sd-color-info) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-info:focus,a.sd-outline-info:hover{border-color:var(--sd-color-info-highlight) !important}.sd-outline-warning{border-color:var(--sd-color-warning) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-warning:focus,a.sd-outline-warning:hover{border-color:var(--sd-color-warning-highlight) !important}.sd-outline-danger{border-color:var(--sd-color-danger) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-danger:focus,a.sd-outline-danger:hover{border-color:var(--sd-color-danger-highlight) !important}.sd-outline-light{border-color:var(--sd-color-light) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-light:focus,a.sd-outline-light:hover{border-color:var(--sd-color-light-highlight) !important}.sd-outline-muted{border-color:var(--sd-color-muted) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-muted:focus,a.sd-outline-muted:hover{border-color:var(--sd-color-muted-highlight) !important}.sd-outline-dark{border-color:var(--sd-color-dark) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-dark:focus,a.sd-outline-dark:hover{border-color:var(--sd-color-dark-highlight) !important}.sd-outline-black{border-color:var(--sd-color-black) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-black:focus,a.sd-outline-black:hover{border-color:var(--sd-color-black-highlight) !important}.sd-outline-white{border-color:var(--sd-color-white) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-white:focus,a.sd-outline-white:hover{border-color:var(--sd-color-white-highlight) !important}.sd-bg-transparent{background-color:transparent !important}.sd-outline-transparent{border-color:transparent !important}.sd-text-transparent{color:transparent !important}.sd-p-0{padding:0 !important}.sd-pt-0,.sd-py-0{padding-top:0 !important}.sd-pr-0,.sd-px-0{padding-right:0 !important}.sd-pb-0,.sd-py-0{padding-bottom:0 !important}.sd-pl-0,.sd-px-0{padding-left:0 !important}.sd-p-1{padding:.25rem !important}.sd-pt-1,.sd-py-1{padding-top:.25rem !important}.sd-pr-1,.sd-px-1{padding-right:.25rem !important}.sd-pb-1,.sd-py-1{padding-bottom:.25rem !important}.sd-pl-1,.sd-px-1{padding-left:.25rem !important}.sd-p-2{padding:.5rem !important}.sd-pt-2,.sd-py-2{padding-top:.5rem !important}.sd-pr-2,.sd-px-2{padding-right:.5rem !important}.sd-pb-2,.sd-py-2{padding-bottom:.5rem !important}.sd-pl-2,.sd-px-2{padding-left:.5rem !important}.sd-p-3{padding:1rem !important}.sd-pt-3,.sd-py-3{padding-top:1rem !important}.sd-pr-3,.sd-px-3{padding-right:1rem !important}.sd-pb-3,.sd-py-3{padding-bottom:1rem !important}.sd-pl-3,.sd-px-3{padding-left:1rem !important}.sd-p-4{padding:1.5rem !important}.sd-pt-4,.sd-py-4{padding-top:1.5rem !important}.sd-pr-4,.sd-px-4{padding-right:1.5rem !important}.sd-pb-4,.sd-py-4{padding-bottom:1.5rem !important}.sd-pl-4,.sd-px-4{padding-left:1.5rem !important}.sd-p-5{padding:3rem !important}.sd-pt-5,.sd-py-5{padding-top:3rem !important}.sd-pr-5,.sd-px-5{padding-right:3rem !important}.sd-pb-5,.sd-py-5{padding-bottom:3rem !important}.sd-pl-5,.sd-px-5{padding-left:3rem !important}.sd-m-auto{margin:auto !important}.sd-mt-auto,.sd-my-auto{margin-top:auto !important}.sd-mr-auto,.sd-mx-auto{margin-right:auto !important}.sd-mb-auto,.sd-my-auto{margin-bottom:auto !important}.sd-ml-auto,.sd-mx-auto{margin-left:auto !important}.sd-m-0{margin:0 !important}.sd-mt-0,.sd-my-0{margin-top:0 !important}.sd-mr-0,.sd-mx-0{margin-right:0 !important}.sd-mb-0,.sd-my-0{margin-bottom:0 !important}.sd-ml-0,.sd-mx-0{margin-left:0 !important}.sd-m-1{margin:.25rem !important}.sd-mt-1,.sd-my-1{margin-top:.25rem !important}.sd-mr-1,.sd-mx-1{margin-right:.25rem !important}.sd-mb-1,.sd-my-1{margin-bottom:.25rem !important}.sd-ml-1,.sd-mx-1{margin-left:.25rem !important}.sd-m-2{margin:.5rem !important}.sd-mt-2,.sd-my-2{margin-top:.5rem !important}.sd-mr-2,.sd-mx-2{margin-right:.5rem !important}.sd-mb-2,.sd-my-2{margin-bottom:.5rem !important}.sd-ml-2,.sd-mx-2{margin-left:.5rem !important}.sd-m-3{margin:1rem !important}.sd-mt-3,.sd-my-3{margin-top:1rem !important}.sd-mr-3,.sd-mx-3{margin-right:1rem !important}.sd-mb-3,.sd-my-3{margin-bottom:1rem !important}.sd-ml-3,.sd-mx-3{margin-left:1rem !important}.sd-m-4{margin:1.5rem !important}.sd-mt-4,.sd-my-4{margin-top:1.5rem !important}.sd-mr-4,.sd-mx-4{margin-right:1.5rem !important}.sd-mb-4,.sd-my-4{margin-bottom:1.5rem !important}.sd-ml-4,.sd-mx-4{margin-left:1.5rem !important}.sd-m-5{margin:3rem !important}.sd-mt-5,.sd-my-5{margin-top:3rem !important}.sd-mr-5,.sd-mx-5{margin-right:3rem !important}.sd-mb-5,.sd-my-5{margin-bottom:3rem !important}.sd-ml-5,.sd-mx-5{margin-left:3rem !important}.sd-w-25{width:25% !important}.sd-w-50{width:50% !important}.sd-w-75{width:75% !important}.sd-w-100{width:100% !important}.sd-w-auto{width:auto !important}.sd-h-25{height:25% !important}.sd-h-50{height:50% !important}.sd-h-75{height:75% !important}.sd-h-100{height:100% !important}.sd-h-auto{height:auto !important}.sd-d-none{display:none !important}.sd-d-inline{display:inline !important}.sd-d-inline-block{display:inline-block !important}.sd-d-block{display:block !important}.sd-d-grid{display:grid !important}.sd-d-flex-row{display:-ms-flexbox !important;display:flex !important;flex-direction:row !important}.sd-d-flex-column{display:-ms-flexbox !important;display:flex !important;flex-direction:column !important}.sd-d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media(min-width: 576px){.sd-d-sm-none{display:none !important}.sd-d-sm-inline{display:inline !important}.sd-d-sm-inline-block{display:inline-block !important}.sd-d-sm-block{display:block !important}.sd-d-sm-grid{display:grid !important}.sd-d-sm-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 768px){.sd-d-md-none{display:none !important}.sd-d-md-inline{display:inline !important}.sd-d-md-inline-block{display:inline-block !important}.sd-d-md-block{display:block !important}.sd-d-md-grid{display:grid !important}.sd-d-md-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 992px){.sd-d-lg-none{display:none !important}.sd-d-lg-inline{display:inline !important}.sd-d-lg-inline-block{display:inline-block !important}.sd-d-lg-block{display:block !important}.sd-d-lg-grid{display:grid !important}.sd-d-lg-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 1200px){.sd-d-xl-none{display:none !important}.sd-d-xl-inline{display:inline !important}.sd-d-xl-inline-block{display:inline-block !important}.sd-d-xl-block{display:block !important}.sd-d-xl-grid{display:grid !important}.sd-d-xl-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.sd-align-major-start{justify-content:flex-start !important}.sd-align-major-end{justify-content:flex-end !important}.sd-align-major-center{justify-content:center !important}.sd-align-major-justify{justify-content:space-between !important}.sd-align-major-spaced{justify-content:space-evenly !important}.sd-align-minor-start{align-items:flex-start !important}.sd-align-minor-end{align-items:flex-end !important}.sd-align-minor-center{align-items:center !important}.sd-align-minor-stretch{align-items:stretch !important}.sd-text-justify{text-align:justify !important}.sd-text-left{text-align:left !important}.sd-text-right{text-align:right !important}.sd-text-center{text-align:center !important}.sd-font-weight-light{font-weight:300 !important}.sd-font-weight-lighter{font-weight:lighter !important}.sd-font-weight-normal{font-weight:400 !important}.sd-font-weight-bold{font-weight:700 !important}.sd-font-weight-bolder{font-weight:bolder !important}.sd-font-italic{font-style:italic !important}.sd-text-decoration-none{text-decoration:none !important}.sd-text-lowercase{text-transform:lowercase !important}.sd-text-uppercase{text-transform:uppercase !important}.sd-text-capitalize{text-transform:capitalize !important}.sd-text-wrap{white-space:normal !important}.sd-text-nowrap{white-space:nowrap !important}.sd-text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sd-fs-1,.sd-fs-1>p{font-size:calc(1.375rem + 1.5vw) !important;line-height:unset !important}.sd-fs-2,.sd-fs-2>p{font-size:calc(1.325rem + 0.9vw) !important;line-height:unset !important}.sd-fs-3,.sd-fs-3>p{font-size:calc(1.3rem + 0.6vw) !important;line-height:unset !important}.sd-fs-4,.sd-fs-4>p{font-size:calc(1.275rem + 0.3vw) !important;line-height:unset !important}.sd-fs-5,.sd-fs-5>p{font-size:1.25rem !important;line-height:unset !important}.sd-fs-6,.sd-fs-6>p{font-size:1rem !important;line-height:unset !important}.sd-border-0{border:0 solid !important}.sd-border-top-0{border-top:0 solid !important}.sd-border-bottom-0{border-bottom:0 solid !important}.sd-border-right-0{border-right:0 solid !important}.sd-border-left-0{border-left:0 solid !important}.sd-border-1{border:1px solid !important}.sd-border-top-1{border-top:1px solid !important}.sd-border-bottom-1{border-bottom:1px solid !important}.sd-border-right-1{border-right:1px solid !important}.sd-border-left-1{border-left:1px solid !important}.sd-border-2{border:2px solid !important}.sd-border-top-2{border-top:2px solid !important}.sd-border-bottom-2{border-bottom:2px solid !important}.sd-border-right-2{border-right:2px solid !important}.sd-border-left-2{border-left:2px solid !important}.sd-border-3{border:3px solid !important}.sd-border-top-3{border-top:3px solid !important}.sd-border-bottom-3{border-bottom:3px solid !important}.sd-border-right-3{border-right:3px solid !important}.sd-border-left-3{border-left:3px solid !important}.sd-border-4{border:4px solid !important}.sd-border-top-4{border-top:4px solid !important}.sd-border-bottom-4{border-bottom:4px solid !important}.sd-border-right-4{border-right:4px solid !important}.sd-border-left-4{border-left:4px solid !important}.sd-border-5{border:5px solid !important}.sd-border-top-5{border-top:5px solid !important}.sd-border-bottom-5{border-bottom:5px solid !important}.sd-border-right-5{border-right:5px solid !important}.sd-border-left-5{border-left:5px solid !important}.sd-rounded-0{border-radius:0 !important}.sd-rounded-1{border-radius:.2rem !important}.sd-rounded-2{border-radius:.3rem !important}.sd-rounded-3{border-radius:.5rem !important}.sd-rounded-pill{border-radius:50rem !important}.sd-rounded-circle{border-radius:50% !important}.shadow-none{box-shadow:none !important}.sd-shadow-sm{box-shadow:0 .125rem .25rem var(--sd-color-shadow) !important}.sd-shadow-md{box-shadow:0 .5rem 1rem var(--sd-color-shadow) !important}.sd-shadow-lg{box-shadow:0 1rem 3rem var(--sd-color-shadow) !important}@keyframes sd-slide-from-left{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}@keyframes sd-slide-from-right{0%{transform:translateX(200%)}100%{transform:translateX(0)}}@keyframes sd-grow100{0%{transform:scale(0);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50{0%{transform:scale(0.5);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50-rot20{0%{transform:scale(0.5) rotateZ(-20deg);opacity:.5}75%{transform:scale(1) rotateZ(5deg);opacity:1}95%{transform:scale(1) rotateZ(-1deg);opacity:1}100%{transform:scale(1) rotateZ(0);opacity:1}}.sd-animate-slide-from-left{animation:1s ease-out 0s 1 normal none running sd-slide-from-left}.sd-animate-slide-from-right{animation:1s ease-out 0s 1 normal none running sd-slide-from-right}.sd-animate-grow100{animation:1s ease-out 0s 1 normal none running sd-grow100}.sd-animate-grow50{animation:1s ease-out 0s 1 normal none running sd-grow50}.sd-animate-grow50-rot20{animation:1s ease-out 0s 1 normal none running sd-grow50-rot20}.sd-badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.sd-badge:empty{display:none}a.sd-badge{text-decoration:none}.sd-btn .sd-badge{position:relative;top:-1px}.sd-btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;cursor:pointer;display:inline-block;font-weight:400;font-size:1rem;line-height:1.5;padding:.375rem .75rem;text-align:center;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:middle;user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none}.sd-btn:hover{text-decoration:none}@media(prefers-reduced-motion: reduce){.sd-btn{transition:none}}.sd-btn-primary,.sd-btn-outline-primary:hover,.sd-btn-outline-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-primary:hover,.sd-btn-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary-highlight) !important;border-color:var(--sd-color-primary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-primary{color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary,.sd-btn-outline-secondary:hover,.sd-btn-outline-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary:hover,.sd-btn-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary-highlight) !important;border-color:var(--sd-color-secondary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-secondary{color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success,.sd-btn-outline-success:hover,.sd-btn-outline-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success:hover,.sd-btn-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success-highlight) !important;border-color:var(--sd-color-success-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-success{color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info,.sd-btn-outline-info:hover,.sd-btn-outline-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info:hover,.sd-btn-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info-highlight) !important;border-color:var(--sd-color-info-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-info{color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning,.sd-btn-outline-warning:hover,.sd-btn-outline-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning:hover,.sd-btn-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning-highlight) !important;border-color:var(--sd-color-warning-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-warning{color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger,.sd-btn-outline-danger:hover,.sd-btn-outline-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger:hover,.sd-btn-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger-highlight) !important;border-color:var(--sd-color-danger-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-danger{color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light,.sd-btn-outline-light:hover,.sd-btn-outline-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light:hover,.sd-btn-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light-highlight) !important;border-color:var(--sd-color-light-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-light{color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted,.sd-btn-outline-muted:hover,.sd-btn-outline-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted:hover,.sd-btn-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted-highlight) !important;border-color:var(--sd-color-muted-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-muted{color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark,.sd-btn-outline-dark:hover,.sd-btn-outline-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark:hover,.sd-btn-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark-highlight) !important;border-color:var(--sd-color-dark-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-dark{color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black,.sd-btn-outline-black:hover,.sd-btn-outline-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black:hover,.sd-btn-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black-highlight) !important;border-color:var(--sd-color-black-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-black{color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white,.sd-btn-outline-white:hover,.sd-btn-outline-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white:hover,.sd-btn-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white-highlight) !important;border-color:var(--sd-color-white-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-white{color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.sd-hide-link-text{font-size:0}.sd-octicon,.sd-material-icon{display:inline-block;fill:currentColor;vertical-align:middle}.sd-avatar-xs{border-radius:50%;object-fit:cover;object-position:center;width:1rem;height:1rem}.sd-avatar-sm{border-radius:50%;object-fit:cover;object-position:center;width:3rem;height:3rem}.sd-avatar-md{border-radius:50%;object-fit:cover;object-position:center;width:5rem;height:5rem}.sd-avatar-lg{border-radius:50%;object-fit:cover;object-position:center;width:7rem;height:7rem}.sd-avatar-xl{border-radius:50%;object-fit:cover;object-position:center;width:10rem;height:10rem}.sd-avatar-inherit{border-radius:50%;object-fit:cover;object-position:center;width:inherit;height:inherit}.sd-avatar-initial{border-radius:50%;object-fit:cover;object-position:center;width:initial;height:initial}.sd-card{background-clip:border-box;background-color:var(--sd-color-card-background);border:1px solid var(--sd-color-card-border);border-radius:.25rem;color:var(--sd-color-card-text);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;position:relative;word-wrap:break-word}.sd-card>hr{margin-left:0;margin-right:0}.sd-card-hover:hover{border-color:var(--sd-color-card-border-hover);transform:scale(1.01)}.sd-card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem 1rem}.sd-card-title{margin-bottom:.5rem}.sd-card-subtitle{margin-top:-0.25rem;margin-bottom:0}.sd-card-text:last-child{margin-bottom:0}.sd-card-link:hover{text-decoration:none}.sd-card-link+.card-link{margin-left:1rem}.sd-card-header{padding:.5rem 1rem;margin-bottom:0;background-color:var(--sd-color-card-header);border-bottom:1px solid var(--sd-color-card-border)}.sd-card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.sd-card-footer{padding:.5rem 1rem;background-color:var(--sd-color-card-footer);border-top:1px solid var(--sd-color-card-border)}.sd-card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.sd-card-header-tabs{margin-right:-0.5rem;margin-bottom:-0.5rem;margin-left:-0.5rem;border-bottom:0}.sd-card-header-pills{margin-right:-0.5rem;margin-left:-0.5rem}.sd-card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom,.sd-card-img-top{width:100%}.sd-card-img,.sd-card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom{border-bottom-left-radius:calc(0.25rem - 1px);border-bottom-right-radius:calc(0.25rem - 1px)}.sd-cards-carousel{width:100%;display:flex;flex-wrap:nowrap;-ms-flex-direction:row;flex-direction:row;overflow-x:hidden;scroll-snap-type:x mandatory}.sd-cards-carousel.sd-show-scrollbar{overflow-x:auto}.sd-cards-carousel:hover,.sd-cards-carousel:focus{overflow-x:auto}.sd-cards-carousel>.sd-card{flex-shrink:0;scroll-snap-align:start}.sd-cards-carousel>.sd-card:not(:last-child){margin-right:3px}.sd-card-cols-1>.sd-card{width:90%}.sd-card-cols-2>.sd-card{width:45%}.sd-card-cols-3>.sd-card{width:30%}.sd-card-cols-4>.sd-card{width:22.5%}.sd-card-cols-5>.sd-card{width:18%}.sd-card-cols-6>.sd-card{width:15%}.sd-card-cols-7>.sd-card{width:12.8571428571%}.sd-card-cols-8>.sd-card{width:11.25%}.sd-card-cols-9>.sd-card{width:10%}.sd-card-cols-10>.sd-card{width:9%}.sd-card-cols-11>.sd-card{width:8.1818181818%}.sd-card-cols-12>.sd-card{width:7.5%}.sd-container,.sd-container-fluid,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container-xl{margin-left:auto;margin-right:auto;padding-left:var(--sd-gutter-x, 0.75rem);padding-right:var(--sd-gutter-x, 0.75rem);width:100%}@media(min-width: 576px){.sd-container-sm,.sd-container{max-width:540px}}@media(min-width: 768px){.sd-container-md,.sd-container-sm,.sd-container{max-width:720px}}@media(min-width: 992px){.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:960px}}@media(min-width: 1200px){.sd-container-xl,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:1140px}}.sd-row{--sd-gutter-x: 1.5rem;--sd-gutter-y: 0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:calc(var(--sd-gutter-y) * -1);margin-right:calc(var(--sd-gutter-x) * -0.5);margin-left:calc(var(--sd-gutter-x) * -0.5)}.sd-row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--sd-gutter-x) * 0.5);padding-left:calc(var(--sd-gutter-x) * 0.5);margin-top:var(--sd-gutter-y)}.sd-col{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-auto>*{flex:0 0 auto;width:auto}.sd-row-cols-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}@media(min-width: 576px){.sd-col-sm{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-sm-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-sm-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-sm-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-sm-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-sm-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-sm-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-sm-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-sm-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-sm-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-sm-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-sm-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-sm-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-sm-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 768px){.sd-col-md{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-md-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-md-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-md-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-md-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-md-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-md-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-md-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-md-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-md-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-md-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-md-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-md-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-md-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 992px){.sd-col-lg{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-lg-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-lg-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-lg-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-lg-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-lg-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-lg-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-lg-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-lg-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-lg-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-lg-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-lg-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-lg-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-lg-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 1200px){.sd-col-xl{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-xl-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-xl-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-xl-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-xl-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-xl-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-xl-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-xl-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-xl-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-xl-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-xl-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-xl-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-xl-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-xl-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}.sd-col-auto{flex:0 0 auto;-ms-flex:0 0 auto;width:auto}.sd-col-1{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}.sd-col-2{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-col-3{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-col-4{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-col-5{flex:0 0 auto;-ms-flex:0 0 auto;width:41.6666666667%}.sd-col-6{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-col-7{flex:0 0 auto;-ms-flex:0 0 auto;width:58.3333333333%}.sd-col-8{flex:0 0 auto;-ms-flex:0 0 auto;width:66.6666666667%}.sd-col-9{flex:0 0 auto;-ms-flex:0 0 auto;width:75%}.sd-col-10{flex:0 0 auto;-ms-flex:0 0 auto;width:83.3333333333%}.sd-col-11{flex:0 0 auto;-ms-flex:0 0 auto;width:91.6666666667%}.sd-col-12{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-g-0,.sd-gy-0{--sd-gutter-y: 0}.sd-g-0,.sd-gx-0{--sd-gutter-x: 0}.sd-g-1,.sd-gy-1{--sd-gutter-y: 0.25rem}.sd-g-1,.sd-gx-1{--sd-gutter-x: 0.25rem}.sd-g-2,.sd-gy-2{--sd-gutter-y: 0.5rem}.sd-g-2,.sd-gx-2{--sd-gutter-x: 0.5rem}.sd-g-3,.sd-gy-3{--sd-gutter-y: 1rem}.sd-g-3,.sd-gx-3{--sd-gutter-x: 1rem}.sd-g-4,.sd-gy-4{--sd-gutter-y: 1.5rem}.sd-g-4,.sd-gx-4{--sd-gutter-x: 1.5rem}.sd-g-5,.sd-gy-5{--sd-gutter-y: 3rem}.sd-g-5,.sd-gx-5{--sd-gutter-x: 3rem}@media(min-width: 576px){.sd-col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-sm-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-sm-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-sm-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-sm-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-sm-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-sm-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-sm-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-sm-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-sm-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-sm-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-sm-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-sm-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-sm-0,.sd-gy-sm-0{--sd-gutter-y: 0}.sd-g-sm-0,.sd-gx-sm-0{--sd-gutter-x: 0}.sd-g-sm-1,.sd-gy-sm-1{--sd-gutter-y: 0.25rem}.sd-g-sm-1,.sd-gx-sm-1{--sd-gutter-x: 0.25rem}.sd-g-sm-2,.sd-gy-sm-2{--sd-gutter-y: 0.5rem}.sd-g-sm-2,.sd-gx-sm-2{--sd-gutter-x: 0.5rem}.sd-g-sm-3,.sd-gy-sm-3{--sd-gutter-y: 1rem}.sd-g-sm-3,.sd-gx-sm-3{--sd-gutter-x: 1rem}.sd-g-sm-4,.sd-gy-sm-4{--sd-gutter-y: 1.5rem}.sd-g-sm-4,.sd-gx-sm-4{--sd-gutter-x: 1.5rem}.sd-g-sm-5,.sd-gy-sm-5{--sd-gutter-y: 3rem}.sd-g-sm-5,.sd-gx-sm-5{--sd-gutter-x: 3rem}}@media(min-width: 768px){.sd-col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-md-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-md-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-md-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-md-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-md-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-md-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-md-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-md-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-md-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-md-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-md-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-md-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-md-0,.sd-gy-md-0{--sd-gutter-y: 0}.sd-g-md-0,.sd-gx-md-0{--sd-gutter-x: 0}.sd-g-md-1,.sd-gy-md-1{--sd-gutter-y: 0.25rem}.sd-g-md-1,.sd-gx-md-1{--sd-gutter-x: 0.25rem}.sd-g-md-2,.sd-gy-md-2{--sd-gutter-y: 0.5rem}.sd-g-md-2,.sd-gx-md-2{--sd-gutter-x: 0.5rem}.sd-g-md-3,.sd-gy-md-3{--sd-gutter-y: 1rem}.sd-g-md-3,.sd-gx-md-3{--sd-gutter-x: 1rem}.sd-g-md-4,.sd-gy-md-4{--sd-gutter-y: 1.5rem}.sd-g-md-4,.sd-gx-md-4{--sd-gutter-x: 1.5rem}.sd-g-md-5,.sd-gy-md-5{--sd-gutter-y: 3rem}.sd-g-md-5,.sd-gx-md-5{--sd-gutter-x: 3rem}}@media(min-width: 992px){.sd-col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-lg-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-lg-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-lg-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-lg-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-lg-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-lg-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-lg-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-lg-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-lg-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-lg-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-lg-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-lg-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-lg-0,.sd-gy-lg-0{--sd-gutter-y: 0}.sd-g-lg-0,.sd-gx-lg-0{--sd-gutter-x: 0}.sd-g-lg-1,.sd-gy-lg-1{--sd-gutter-y: 0.25rem}.sd-g-lg-1,.sd-gx-lg-1{--sd-gutter-x: 0.25rem}.sd-g-lg-2,.sd-gy-lg-2{--sd-gutter-y: 0.5rem}.sd-g-lg-2,.sd-gx-lg-2{--sd-gutter-x: 0.5rem}.sd-g-lg-3,.sd-gy-lg-3{--sd-gutter-y: 1rem}.sd-g-lg-3,.sd-gx-lg-3{--sd-gutter-x: 1rem}.sd-g-lg-4,.sd-gy-lg-4{--sd-gutter-y: 1.5rem}.sd-g-lg-4,.sd-gx-lg-4{--sd-gutter-x: 1.5rem}.sd-g-lg-5,.sd-gy-lg-5{--sd-gutter-y: 3rem}.sd-g-lg-5,.sd-gx-lg-5{--sd-gutter-x: 3rem}}@media(min-width: 1200px){.sd-col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-xl-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-xl-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-xl-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-xl-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-xl-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-xl-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-xl-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-xl-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-xl-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-xl-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-xl-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-xl-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-xl-0,.sd-gy-xl-0{--sd-gutter-y: 0}.sd-g-xl-0,.sd-gx-xl-0{--sd-gutter-x: 0}.sd-g-xl-1,.sd-gy-xl-1{--sd-gutter-y: 0.25rem}.sd-g-xl-1,.sd-gx-xl-1{--sd-gutter-x: 0.25rem}.sd-g-xl-2,.sd-gy-xl-2{--sd-gutter-y: 0.5rem}.sd-g-xl-2,.sd-gx-xl-2{--sd-gutter-x: 0.5rem}.sd-g-xl-3,.sd-gy-xl-3{--sd-gutter-y: 1rem}.sd-g-xl-3,.sd-gx-xl-3{--sd-gutter-x: 1rem}.sd-g-xl-4,.sd-gy-xl-4{--sd-gutter-y: 1.5rem}.sd-g-xl-4,.sd-gx-xl-4{--sd-gutter-x: 1.5rem}.sd-g-xl-5,.sd-gy-xl-5{--sd-gutter-y: 3rem}.sd-g-xl-5,.sd-gx-xl-5{--sd-gutter-x: 3rem}}.sd-flex-row-reverse{flex-direction:row-reverse !important}details.sd-dropdown{position:relative;font-size:var(--sd-fontsize-dropdown)}details.sd-dropdown:hover{cursor:pointer}details.sd-dropdown .sd-summary-content{cursor:default}details.sd-dropdown summary.sd-summary-title{padding:.5em .6em .5em 1em;font-size:var(--sd-fontsize-dropdown-title);font-weight:var(--sd-fontweight-dropdown-title);user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;list-style:none;display:inline-flex;justify-content:space-between}details.sd-dropdown summary.sd-summary-title::-webkit-details-marker{display:none}details.sd-dropdown summary.sd-summary-title:focus{outline:none}details.sd-dropdown summary.sd-summary-title .sd-summary-icon{margin-right:.6em;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-icon svg{opacity:.8}details.sd-dropdown summary.sd-summary-title .sd-summary-text{flex-grow:1;line-height:1.5;padding-right:.5rem}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker{pointer-events:none;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker svg{opacity:.6}details.sd-dropdown summary.sd-summary-title:hover .sd-summary-state-marker svg{opacity:1;transform:scale(1.1)}details.sd-dropdown[open] summary .sd-octicon.no-title{visibility:hidden}details.sd-dropdown .sd-summary-chevron-right{transition:.25s}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-right{transform:rotate(90deg)}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-down{transform:rotate(180deg)}details.sd-dropdown:not([open]).sd-card{border:none}details.sd-dropdown:not([open])>.sd-card-header{border:1px solid var(--sd-color-card-border);border-radius:.25rem}details.sd-dropdown.sd-fade-in[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out;animation:sd-fade-in .5s ease-in-out}details.sd-dropdown.sd-fade-in-slide-down[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out}.sd-col>.sd-dropdown{width:100%}.sd-summary-content>.sd-tab-set:first-child{margin-top:0}@keyframes sd-fade-in{0%{opacity:0}100%{opacity:1}}@keyframes sd-slide-down{0%{transform:translate(0, -10px)}100%{transform:translate(0, 0)}}.sd-tab-set{border-radius:.125rem;display:flex;flex-wrap:wrap;margin:1em 0;position:relative}.sd-tab-set>input{opacity:0;position:absolute}.sd-tab-set>input:checked+label{border-color:var(--sd-color-tabs-underline-active);color:var(--sd-color-tabs-label-active)}.sd-tab-set>input:checked+label+.sd-tab-content{display:block}.sd-tab-set>input:not(:checked)+label:hover{color:var(--sd-color-tabs-label-hover);border-color:var(--sd-color-tabs-underline-hover)}.sd-tab-set>input:focus+label{outline-style:auto}.sd-tab-set>input:not(.focus-visible)+label{outline:none;-webkit-tap-highlight-color:transparent}.sd-tab-set>label{border-bottom:.125rem solid transparent;margin-bottom:0;color:var(--sd-color-tabs-label-inactive);border-color:var(--sd-color-tabs-underline-inactive);cursor:pointer;font-size:var(--sd-fontsize-tabs-label);font-weight:700;padding:1em 1.25em .5em;transition:color 250ms;width:auto;z-index:1}html .sd-tab-set>label:hover{color:var(--sd-color-tabs-label-active)}.sd-col>.sd-tab-set{width:100%}.sd-tab-content{box-shadow:0 -0.0625rem var(--sd-color-tabs-overline),0 .0625rem var(--sd-color-tabs-underline);display:none;order:99;padding-bottom:.75rem;padding-top:.75rem;width:100%}.sd-tab-content>:first-child{margin-top:0 !important}.sd-tab-content>:last-child{margin-bottom:0 !important}.sd-tab-content>.sd-tab-set{margin:0}.sd-sphinx-override,.sd-sphinx-override *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sd-sphinx-override p{margin-top:0}:root{--sd-color-primary: #0071bc;--sd-color-secondary: #6c757d;--sd-color-success: #28a745;--sd-color-info: #17a2b8;--sd-color-warning: #f0b37e;--sd-color-danger: #dc3545;--sd-color-light: #f8f9fa;--sd-color-muted: #6c757d;--sd-color-dark: #212529;--sd-color-black: black;--sd-color-white: white;--sd-color-primary-highlight: #0060a0;--sd-color-secondary-highlight: #5c636a;--sd-color-success-highlight: #228e3b;--sd-color-info-highlight: #148a9c;--sd-color-warning-highlight: #cc986b;--sd-color-danger-highlight: #bb2d3b;--sd-color-light-highlight: #d3d4d5;--sd-color-muted-highlight: #5c636a;--sd-color-dark-highlight: #1c1f23;--sd-color-black-highlight: black;--sd-color-white-highlight: #d9d9d9;--sd-color-primary-bg: rgba(0, 113, 188, 0.2);--sd-color-secondary-bg: rgba(108, 117, 125, 0.2);--sd-color-success-bg: rgba(40, 167, 69, 0.2);--sd-color-info-bg: rgba(23, 162, 184, 0.2);--sd-color-warning-bg: rgba(240, 179, 126, 0.2);--sd-color-danger-bg: rgba(220, 53, 69, 0.2);--sd-color-light-bg: rgba(248, 249, 250, 0.2);--sd-color-muted-bg: rgba(108, 117, 125, 0.2);--sd-color-dark-bg: rgba(33, 37, 41, 0.2);--sd-color-black-bg: rgba(0, 0, 0, 0.2);--sd-color-white-bg: rgba(255, 255, 255, 0.2);--sd-color-primary-text: #fff;--sd-color-secondary-text: #fff;--sd-color-success-text: #fff;--sd-color-info-text: #fff;--sd-color-warning-text: #212529;--sd-color-danger-text: #fff;--sd-color-light-text: #212529;--sd-color-muted-text: #fff;--sd-color-dark-text: #fff;--sd-color-black-text: #fff;--sd-color-white-text: #212529;--sd-color-shadow: rgba(0, 0, 0, 0.15);--sd-color-card-border: rgba(0, 0, 0, 0.125);--sd-color-card-border-hover: hsla(231, 99%, 66%, 1);--sd-color-card-background: transparent;--sd-color-card-text: inherit;--sd-color-card-header: transparent;--sd-color-card-footer: transparent;--sd-color-tabs-label-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-inactive: hsl(0, 0%, 66%);--sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62);--sd-color-tabs-underline-inactive: transparent;--sd-color-tabs-overline: rgb(222, 222, 222);--sd-color-tabs-underline: rgb(222, 222, 222);--sd-fontsize-tabs-label: 1rem;--sd-fontsize-dropdown: inherit;--sd-fontsize-dropdown-title: 1rem;--sd-fontweight-dropdown-title: 700} diff --git a/_static/sphinx-design.min.css b/_static/sphinx-design.min.css index a325746f..860c36da 100644 --- a/_static/sphinx-design.min.css +++ b/_static/sphinx-design.min.css @@ -1 +1 @@ -.sd-bg-primary{background-color:var(--sd-color-primary) !important}.sd-bg-text-primary{color:var(--sd-color-primary-text) !important}button.sd-bg-primary:focus,button.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}a.sd-bg-primary:focus,a.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}.sd-bg-secondary{background-color:var(--sd-color-secondary) !important}.sd-bg-text-secondary{color:var(--sd-color-secondary-text) !important}button.sd-bg-secondary:focus,button.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}a.sd-bg-secondary:focus,a.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}.sd-bg-success{background-color:var(--sd-color-success) !important}.sd-bg-text-success{color:var(--sd-color-success-text) !important}button.sd-bg-success:focus,button.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}a.sd-bg-success:focus,a.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}.sd-bg-info{background-color:var(--sd-color-info) !important}.sd-bg-text-info{color:var(--sd-color-info-text) !important}button.sd-bg-info:focus,button.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}a.sd-bg-info:focus,a.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}.sd-bg-warning{background-color:var(--sd-color-warning) !important}.sd-bg-text-warning{color:var(--sd-color-warning-text) !important}button.sd-bg-warning:focus,button.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}a.sd-bg-warning:focus,a.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}.sd-bg-danger{background-color:var(--sd-color-danger) !important}.sd-bg-text-danger{color:var(--sd-color-danger-text) !important}button.sd-bg-danger:focus,button.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}a.sd-bg-danger:focus,a.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}.sd-bg-light{background-color:var(--sd-color-light) !important}.sd-bg-text-light{color:var(--sd-color-light-text) !important}button.sd-bg-light:focus,button.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}a.sd-bg-light:focus,a.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}.sd-bg-muted{background-color:var(--sd-color-muted) !important}.sd-bg-text-muted{color:var(--sd-color-muted-text) !important}button.sd-bg-muted:focus,button.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}a.sd-bg-muted:focus,a.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}.sd-bg-dark{background-color:var(--sd-color-dark) !important}.sd-bg-text-dark{color:var(--sd-color-dark-text) !important}button.sd-bg-dark:focus,button.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}a.sd-bg-dark:focus,a.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}.sd-bg-black{background-color:var(--sd-color-black) !important}.sd-bg-text-black{color:var(--sd-color-black-text) !important}button.sd-bg-black:focus,button.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}a.sd-bg-black:focus,a.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}.sd-bg-white{background-color:var(--sd-color-white) !important}.sd-bg-text-white{color:var(--sd-color-white-text) !important}button.sd-bg-white:focus,button.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}a.sd-bg-white:focus,a.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}.sd-text-primary,.sd-text-primary>p{color:var(--sd-color-primary) !important}a.sd-text-primary:focus,a.sd-text-primary:hover{color:var(--sd-color-primary-highlight) !important}.sd-text-secondary,.sd-text-secondary>p{color:var(--sd-color-secondary) !important}a.sd-text-secondary:focus,a.sd-text-secondary:hover{color:var(--sd-color-secondary-highlight) !important}.sd-text-success,.sd-text-success>p{color:var(--sd-color-success) !important}a.sd-text-success:focus,a.sd-text-success:hover{color:var(--sd-color-success-highlight) !important}.sd-text-info,.sd-text-info>p{color:var(--sd-color-info) !important}a.sd-text-info:focus,a.sd-text-info:hover{color:var(--sd-color-info-highlight) !important}.sd-text-warning,.sd-text-warning>p{color:var(--sd-color-warning) !important}a.sd-text-warning:focus,a.sd-text-warning:hover{color:var(--sd-color-warning-highlight) !important}.sd-text-danger,.sd-text-danger>p{color:var(--sd-color-danger) !important}a.sd-text-danger:focus,a.sd-text-danger:hover{color:var(--sd-color-danger-highlight) !important}.sd-text-light,.sd-text-light>p{color:var(--sd-color-light) !important}a.sd-text-light:focus,a.sd-text-light:hover{color:var(--sd-color-light-highlight) !important}.sd-text-muted,.sd-text-muted>p{color:var(--sd-color-muted) !important}a.sd-text-muted:focus,a.sd-text-muted:hover{color:var(--sd-color-muted-highlight) !important}.sd-text-dark,.sd-text-dark>p{color:var(--sd-color-dark) !important}a.sd-text-dark:focus,a.sd-text-dark:hover{color:var(--sd-color-dark-highlight) !important}.sd-text-black,.sd-text-black>p{color:var(--sd-color-black) !important}a.sd-text-black:focus,a.sd-text-black:hover{color:var(--sd-color-black-highlight) !important}.sd-text-white,.sd-text-white>p{color:var(--sd-color-white) !important}a.sd-text-white:focus,a.sd-text-white:hover{color:var(--sd-color-white-highlight) !important}.sd-outline-primary{border-color:var(--sd-color-primary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-primary:focus,a.sd-outline-primary:hover{border-color:var(--sd-color-primary-highlight) !important}.sd-outline-secondary{border-color:var(--sd-color-secondary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-secondary:focus,a.sd-outline-secondary:hover{border-color:var(--sd-color-secondary-highlight) !important}.sd-outline-success{border-color:var(--sd-color-success) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-success:focus,a.sd-outline-success:hover{border-color:var(--sd-color-success-highlight) !important}.sd-outline-info{border-color:var(--sd-color-info) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-info:focus,a.sd-outline-info:hover{border-color:var(--sd-color-info-highlight) !important}.sd-outline-warning{border-color:var(--sd-color-warning) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-warning:focus,a.sd-outline-warning:hover{border-color:var(--sd-color-warning-highlight) !important}.sd-outline-danger{border-color:var(--sd-color-danger) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-danger:focus,a.sd-outline-danger:hover{border-color:var(--sd-color-danger-highlight) !important}.sd-outline-light{border-color:var(--sd-color-light) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-light:focus,a.sd-outline-light:hover{border-color:var(--sd-color-light-highlight) !important}.sd-outline-muted{border-color:var(--sd-color-muted) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-muted:focus,a.sd-outline-muted:hover{border-color:var(--sd-color-muted-highlight) !important}.sd-outline-dark{border-color:var(--sd-color-dark) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-dark:focus,a.sd-outline-dark:hover{border-color:var(--sd-color-dark-highlight) !important}.sd-outline-black{border-color:var(--sd-color-black) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-black:focus,a.sd-outline-black:hover{border-color:var(--sd-color-black-highlight) !important}.sd-outline-white{border-color:var(--sd-color-white) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-white:focus,a.sd-outline-white:hover{border-color:var(--sd-color-white-highlight) !important}.sd-bg-transparent{background-color:transparent !important}.sd-outline-transparent{border-color:transparent !important}.sd-text-transparent{color:transparent !important}.sd-p-0{padding:0 !important}.sd-pt-0,.sd-py-0{padding-top:0 !important}.sd-pr-0,.sd-px-0{padding-right:0 !important}.sd-pb-0,.sd-py-0{padding-bottom:0 !important}.sd-pl-0,.sd-px-0{padding-left:0 !important}.sd-p-1{padding:.25rem !important}.sd-pt-1,.sd-py-1{padding-top:.25rem !important}.sd-pr-1,.sd-px-1{padding-right:.25rem !important}.sd-pb-1,.sd-py-1{padding-bottom:.25rem !important}.sd-pl-1,.sd-px-1{padding-left:.25rem !important}.sd-p-2{padding:.5rem !important}.sd-pt-2,.sd-py-2{padding-top:.5rem !important}.sd-pr-2,.sd-px-2{padding-right:.5rem !important}.sd-pb-2,.sd-py-2{padding-bottom:.5rem !important}.sd-pl-2,.sd-px-2{padding-left:.5rem !important}.sd-p-3{padding:1rem !important}.sd-pt-3,.sd-py-3{padding-top:1rem !important}.sd-pr-3,.sd-px-3{padding-right:1rem !important}.sd-pb-3,.sd-py-3{padding-bottom:1rem !important}.sd-pl-3,.sd-px-3{padding-left:1rem !important}.sd-p-4{padding:1.5rem !important}.sd-pt-4,.sd-py-4{padding-top:1.5rem !important}.sd-pr-4,.sd-px-4{padding-right:1.5rem !important}.sd-pb-4,.sd-py-4{padding-bottom:1.5rem !important}.sd-pl-4,.sd-px-4{padding-left:1.5rem !important}.sd-p-5{padding:3rem !important}.sd-pt-5,.sd-py-5{padding-top:3rem !important}.sd-pr-5,.sd-px-5{padding-right:3rem !important}.sd-pb-5,.sd-py-5{padding-bottom:3rem !important}.sd-pl-5,.sd-px-5{padding-left:3rem !important}.sd-m-auto{margin:auto !important}.sd-mt-auto,.sd-my-auto{margin-top:auto !important}.sd-mr-auto,.sd-mx-auto{margin-right:auto !important}.sd-mb-auto,.sd-my-auto{margin-bottom:auto !important}.sd-ml-auto,.sd-mx-auto{margin-left:auto !important}.sd-m-0{margin:0 !important}.sd-mt-0,.sd-my-0{margin-top:0 !important}.sd-mr-0,.sd-mx-0{margin-right:0 !important}.sd-mb-0,.sd-my-0{margin-bottom:0 !important}.sd-ml-0,.sd-mx-0{margin-left:0 !important}.sd-m-1{margin:.25rem !important}.sd-mt-1,.sd-my-1{margin-top:.25rem !important}.sd-mr-1,.sd-mx-1{margin-right:.25rem !important}.sd-mb-1,.sd-my-1{margin-bottom:.25rem !important}.sd-ml-1,.sd-mx-1{margin-left:.25rem !important}.sd-m-2{margin:.5rem !important}.sd-mt-2,.sd-my-2{margin-top:.5rem !important}.sd-mr-2,.sd-mx-2{margin-right:.5rem !important}.sd-mb-2,.sd-my-2{margin-bottom:.5rem !important}.sd-ml-2,.sd-mx-2{margin-left:.5rem !important}.sd-m-3{margin:1rem !important}.sd-mt-3,.sd-my-3{margin-top:1rem !important}.sd-mr-3,.sd-mx-3{margin-right:1rem !important}.sd-mb-3,.sd-my-3{margin-bottom:1rem !important}.sd-ml-3,.sd-mx-3{margin-left:1rem !important}.sd-m-4{margin:1.5rem !important}.sd-mt-4,.sd-my-4{margin-top:1.5rem !important}.sd-mr-4,.sd-mx-4{margin-right:1.5rem !important}.sd-mb-4,.sd-my-4{margin-bottom:1.5rem !important}.sd-ml-4,.sd-mx-4{margin-left:1.5rem !important}.sd-m-5{margin:3rem !important}.sd-mt-5,.sd-my-5{margin-top:3rem !important}.sd-mr-5,.sd-mx-5{margin-right:3rem !important}.sd-mb-5,.sd-my-5{margin-bottom:3rem !important}.sd-ml-5,.sd-mx-5{margin-left:3rem !important}.sd-w-25{width:25% !important}.sd-w-50{width:50% !important}.sd-w-75{width:75% !important}.sd-w-100{width:100% !important}.sd-w-auto{width:auto !important}.sd-h-25{height:25% !important}.sd-h-50{height:50% !important}.sd-h-75{height:75% !important}.sd-h-100{height:100% !important}.sd-h-auto{height:auto !important}.sd-d-none{display:none !important}.sd-d-inline{display:inline !important}.sd-d-inline-block{display:inline-block !important}.sd-d-block{display:block !important}.sd-d-grid{display:grid !important}.sd-d-flex-row{display:-ms-flexbox !important;display:flex !important;flex-direction:row !important}.sd-d-flex-column{display:-ms-flexbox !important;display:flex !important;flex-direction:column !important}.sd-d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media(min-width: 576px){.sd-d-sm-none{display:none !important}.sd-d-sm-inline{display:inline !important}.sd-d-sm-inline-block{display:inline-block !important}.sd-d-sm-block{display:block !important}.sd-d-sm-grid{display:grid !important}.sd-d-sm-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 768px){.sd-d-md-none{display:none !important}.sd-d-md-inline{display:inline !important}.sd-d-md-inline-block{display:inline-block !important}.sd-d-md-block{display:block !important}.sd-d-md-grid{display:grid !important}.sd-d-md-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 992px){.sd-d-lg-none{display:none !important}.sd-d-lg-inline{display:inline !important}.sd-d-lg-inline-block{display:inline-block !important}.sd-d-lg-block{display:block !important}.sd-d-lg-grid{display:grid !important}.sd-d-lg-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 1200px){.sd-d-xl-none{display:none !important}.sd-d-xl-inline{display:inline !important}.sd-d-xl-inline-block{display:inline-block !important}.sd-d-xl-block{display:block !important}.sd-d-xl-grid{display:grid !important}.sd-d-xl-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.sd-align-major-start{justify-content:flex-start !important}.sd-align-major-end{justify-content:flex-end !important}.sd-align-major-center{justify-content:center !important}.sd-align-major-justify{justify-content:space-between !important}.sd-align-major-spaced{justify-content:space-evenly !important}.sd-align-minor-start{align-items:flex-start !important}.sd-align-minor-end{align-items:flex-end !important}.sd-align-minor-center{align-items:center !important}.sd-align-minor-stretch{align-items:stretch !important}.sd-text-justify{text-align:justify !important}.sd-text-left{text-align:left !important}.sd-text-right{text-align:right !important}.sd-text-center{text-align:center !important}.sd-font-weight-light{font-weight:300 !important}.sd-font-weight-lighter{font-weight:lighter !important}.sd-font-weight-normal{font-weight:400 !important}.sd-font-weight-bold{font-weight:700 !important}.sd-font-weight-bolder{font-weight:bolder !important}.sd-font-italic{font-style:italic !important}.sd-text-decoration-none{text-decoration:none !important}.sd-text-lowercase{text-transform:lowercase !important}.sd-text-uppercase{text-transform:uppercase !important}.sd-text-capitalize{text-transform:capitalize !important}.sd-text-wrap{white-space:normal !important}.sd-text-nowrap{white-space:nowrap !important}.sd-text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sd-fs-1,.sd-fs-1>p{font-size:calc(1.375rem + 1.5vw) !important;line-height:unset !important}.sd-fs-2,.sd-fs-2>p{font-size:calc(1.325rem + 0.9vw) !important;line-height:unset !important}.sd-fs-3,.sd-fs-3>p{font-size:calc(1.3rem + 0.6vw) !important;line-height:unset !important}.sd-fs-4,.sd-fs-4>p{font-size:calc(1.275rem + 0.3vw) !important;line-height:unset !important}.sd-fs-5,.sd-fs-5>p{font-size:1.25rem !important;line-height:unset !important}.sd-fs-6,.sd-fs-6>p{font-size:1rem !important;line-height:unset !important}.sd-border-0{border:0 solid !important}.sd-border-top-0{border-top:0 solid !important}.sd-border-bottom-0{border-bottom:0 solid !important}.sd-border-right-0{border-right:0 solid !important}.sd-border-left-0{border-left:0 solid !important}.sd-border-1{border:1px solid !important}.sd-border-top-1{border-top:1px solid !important}.sd-border-bottom-1{border-bottom:1px solid !important}.sd-border-right-1{border-right:1px solid !important}.sd-border-left-1{border-left:1px solid !important}.sd-border-2{border:2px solid !important}.sd-border-top-2{border-top:2px solid !important}.sd-border-bottom-2{border-bottom:2px solid !important}.sd-border-right-2{border-right:2px solid !important}.sd-border-left-2{border-left:2px solid !important}.sd-border-3{border:3px solid !important}.sd-border-top-3{border-top:3px solid !important}.sd-border-bottom-3{border-bottom:3px solid !important}.sd-border-right-3{border-right:3px solid !important}.sd-border-left-3{border-left:3px solid !important}.sd-border-4{border:4px solid !important}.sd-border-top-4{border-top:4px solid !important}.sd-border-bottom-4{border-bottom:4px solid !important}.sd-border-right-4{border-right:4px solid !important}.sd-border-left-4{border-left:4px solid !important}.sd-border-5{border:5px solid !important}.sd-border-top-5{border-top:5px solid !important}.sd-border-bottom-5{border-bottom:5px solid !important}.sd-border-right-5{border-right:5px solid !important}.sd-border-left-5{border-left:5px solid !important}.sd-rounded-0{border-radius:0 !important}.sd-rounded-1{border-radius:.2rem !important}.sd-rounded-2{border-radius:.3rem !important}.sd-rounded-3{border-radius:.5rem !important}.sd-rounded-pill{border-radius:50rem !important}.sd-rounded-circle{border-radius:50% !important}.shadow-none{box-shadow:none !important}.sd-shadow-sm{box-shadow:0 .125rem .25rem var(--sd-color-shadow) !important}.sd-shadow-md{box-shadow:0 .5rem 1rem var(--sd-color-shadow) !important}.sd-shadow-lg{box-shadow:0 1rem 3rem var(--sd-color-shadow) !important}@keyframes sd-slide-from-left{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}@keyframes sd-slide-from-right{0%{transform:translateX(200%)}100%{transform:translateX(0)}}@keyframes sd-grow100{0%{transform:scale(0);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50{0%{transform:scale(0.5);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50-rot20{0%{transform:scale(0.5) rotateZ(-20deg);opacity:.5}75%{transform:scale(1) rotateZ(5deg);opacity:1}95%{transform:scale(1) rotateZ(-1deg);opacity:1}100%{transform:scale(1) rotateZ(0);opacity:1}}.sd-animate-slide-from-left{animation:1s ease-out 0s 1 normal none running sd-slide-from-left}.sd-animate-slide-from-right{animation:1s ease-out 0s 1 normal none running sd-slide-from-right}.sd-animate-grow100{animation:1s ease-out 0s 1 normal none running sd-grow100}.sd-animate-grow50{animation:1s ease-out 0s 1 normal none running sd-grow50}.sd-animate-grow50-rot20{animation:1s ease-out 0s 1 normal none running sd-grow50-rot20}.sd-badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.sd-badge:empty{display:none}a.sd-badge{text-decoration:none}.sd-btn .sd-badge{position:relative;top:-1px}.sd-btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;cursor:pointer;display:inline-block;font-weight:400;font-size:1rem;line-height:1.5;padding:.375rem .75rem;text-align:center;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:middle;user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none}.sd-btn:hover{text-decoration:none}@media(prefers-reduced-motion: reduce){.sd-btn{transition:none}}.sd-btn-primary,.sd-btn-outline-primary:hover,.sd-btn-outline-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-primary:hover,.sd-btn-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary-highlight) !important;border-color:var(--sd-color-primary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-primary{color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary,.sd-btn-outline-secondary:hover,.sd-btn-outline-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary:hover,.sd-btn-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary-highlight) !important;border-color:var(--sd-color-secondary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-secondary{color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success,.sd-btn-outline-success:hover,.sd-btn-outline-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success:hover,.sd-btn-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success-highlight) !important;border-color:var(--sd-color-success-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-success{color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info,.sd-btn-outline-info:hover,.sd-btn-outline-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info:hover,.sd-btn-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info-highlight) !important;border-color:var(--sd-color-info-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-info{color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning,.sd-btn-outline-warning:hover,.sd-btn-outline-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning:hover,.sd-btn-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning-highlight) !important;border-color:var(--sd-color-warning-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-warning{color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger,.sd-btn-outline-danger:hover,.sd-btn-outline-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger:hover,.sd-btn-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger-highlight) !important;border-color:var(--sd-color-danger-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-danger{color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light,.sd-btn-outline-light:hover,.sd-btn-outline-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light:hover,.sd-btn-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light-highlight) !important;border-color:var(--sd-color-light-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-light{color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted,.sd-btn-outline-muted:hover,.sd-btn-outline-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted:hover,.sd-btn-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted-highlight) !important;border-color:var(--sd-color-muted-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-muted{color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark,.sd-btn-outline-dark:hover,.sd-btn-outline-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark:hover,.sd-btn-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark-highlight) !important;border-color:var(--sd-color-dark-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-dark{color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black,.sd-btn-outline-black:hover,.sd-btn-outline-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black:hover,.sd-btn-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black-highlight) !important;border-color:var(--sd-color-black-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-black{color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white,.sd-btn-outline-white:hover,.sd-btn-outline-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white:hover,.sd-btn-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white-highlight) !important;border-color:var(--sd-color-white-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-white{color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.sd-hide-link-text{font-size:0}.sd-octicon,.sd-material-icon{display:inline-block;fill:currentColor;vertical-align:middle}.sd-avatar-xs{border-radius:50%;object-fit:cover;object-position:center;width:1rem;height:1rem}.sd-avatar-sm{border-radius:50%;object-fit:cover;object-position:center;width:3rem;height:3rem}.sd-avatar-md{border-radius:50%;object-fit:cover;object-position:center;width:5rem;height:5rem}.sd-avatar-lg{border-radius:50%;object-fit:cover;object-position:center;width:7rem;height:7rem}.sd-avatar-xl{border-radius:50%;object-fit:cover;object-position:center;width:10rem;height:10rem}.sd-avatar-inherit{border-radius:50%;object-fit:cover;object-position:center;width:inherit;height:inherit}.sd-avatar-initial{border-radius:50%;object-fit:cover;object-position:center;width:initial;height:initial}.sd-card{background-clip:border-box;background-color:var(--sd-color-card-background);border:1px solid var(--sd-color-card-border);border-radius:.25rem;color:var(--sd-color-card-text);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;position:relative;word-wrap:break-word}.sd-card>hr{margin-left:0;margin-right:0}.sd-card-hover:hover{border-color:var(--sd-color-card-border-hover);transform:scale(1.01)}.sd-card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem 1rem}.sd-card-title{margin-bottom:.5rem}.sd-card-subtitle{margin-top:-0.25rem;margin-bottom:0}.sd-card-text:last-child{margin-bottom:0}.sd-card-link:hover{text-decoration:none}.sd-card-link+.card-link{margin-left:1rem}.sd-card-header{padding:.5rem 1rem;margin-bottom:0;background-color:var(--sd-color-card-header);border-bottom:1px solid var(--sd-color-card-border)}.sd-card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.sd-card-footer{padding:.5rem 1rem;background-color:var(--sd-color-card-footer);border-top:1px solid var(--sd-color-card-border)}.sd-card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.sd-card-header-tabs{margin-right:-0.5rem;margin-bottom:-0.5rem;margin-left:-0.5rem;border-bottom:0}.sd-card-header-pills{margin-right:-0.5rem;margin-left:-0.5rem}.sd-card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom,.sd-card-img-top{width:100%}.sd-card-img,.sd-card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom{border-bottom-left-radius:calc(0.25rem - 1px);border-bottom-right-radius:calc(0.25rem - 1px)}.sd-cards-carousel{width:100%;display:flex;flex-wrap:nowrap;-ms-flex-direction:row;flex-direction:row;overflow-x:hidden;scroll-snap-type:x mandatory}.sd-cards-carousel.sd-show-scrollbar{overflow-x:auto}.sd-cards-carousel:hover,.sd-cards-carousel:focus{overflow-x:auto}.sd-cards-carousel>.sd-card{flex-shrink:0;scroll-snap-align:start}.sd-cards-carousel>.sd-card:not(:last-child){margin-right:3px}.sd-card-cols-1>.sd-card{width:90%}.sd-card-cols-2>.sd-card{width:45%}.sd-card-cols-3>.sd-card{width:30%}.sd-card-cols-4>.sd-card{width:22.5%}.sd-card-cols-5>.sd-card{width:18%}.sd-card-cols-6>.sd-card{width:15%}.sd-card-cols-7>.sd-card{width:12.8571428571%}.sd-card-cols-8>.sd-card{width:11.25%}.sd-card-cols-9>.sd-card{width:10%}.sd-card-cols-10>.sd-card{width:9%}.sd-card-cols-11>.sd-card{width:8.1818181818%}.sd-card-cols-12>.sd-card{width:7.5%}.sd-container,.sd-container-fluid,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container-xl{margin-left:auto;margin-right:auto;padding-left:var(--sd-gutter-x, 0.75rem);padding-right:var(--sd-gutter-x, 0.75rem);width:100%}@media(min-width: 576px){.sd-container-sm,.sd-container{max-width:540px}}@media(min-width: 768px){.sd-container-md,.sd-container-sm,.sd-container{max-width:720px}}@media(min-width: 992px){.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:960px}}@media(min-width: 1200px){.sd-container-xl,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:1140px}}.sd-row{--sd-gutter-x: 1.5rem;--sd-gutter-y: 0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:calc(var(--sd-gutter-y) * -1);margin-right:calc(var(--sd-gutter-x) * -0.5);margin-left:calc(var(--sd-gutter-x) * -0.5)}.sd-row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--sd-gutter-x) * 0.5);padding-left:calc(var(--sd-gutter-x) * 0.5);margin-top:var(--sd-gutter-y)}.sd-col{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-auto>*{flex:0 0 auto;width:auto}.sd-row-cols-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}@media(min-width: 576px){.sd-col-sm{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-sm-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-sm-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-sm-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-sm-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-sm-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-sm-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-sm-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-sm-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-sm-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-sm-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-sm-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-sm-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-sm-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 768px){.sd-col-md{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-md-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-md-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-md-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-md-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-md-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-md-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-md-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-md-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-md-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-md-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-md-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-md-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-md-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 992px){.sd-col-lg{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-lg-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-lg-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-lg-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-lg-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-lg-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-lg-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-lg-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-lg-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-lg-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-lg-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-lg-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-lg-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-lg-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 1200px){.sd-col-xl{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-xl-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-xl-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-xl-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-xl-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-xl-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-xl-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-xl-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-xl-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-xl-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-xl-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-xl-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-xl-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-xl-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}.sd-col-auto{flex:0 0 auto;-ms-flex:0 0 auto;width:auto}.sd-col-1{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}.sd-col-2{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-col-3{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-col-4{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-col-5{flex:0 0 auto;-ms-flex:0 0 auto;width:41.6666666667%}.sd-col-6{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-col-7{flex:0 0 auto;-ms-flex:0 0 auto;width:58.3333333333%}.sd-col-8{flex:0 0 auto;-ms-flex:0 0 auto;width:66.6666666667%}.sd-col-9{flex:0 0 auto;-ms-flex:0 0 auto;width:75%}.sd-col-10{flex:0 0 auto;-ms-flex:0 0 auto;width:83.3333333333%}.sd-col-11{flex:0 0 auto;-ms-flex:0 0 auto;width:91.6666666667%}.sd-col-12{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-g-0,.sd-gy-0{--sd-gutter-y: 0}.sd-g-0,.sd-gx-0{--sd-gutter-x: 0}.sd-g-1,.sd-gy-1{--sd-gutter-y: 0.25rem}.sd-g-1,.sd-gx-1{--sd-gutter-x: 0.25rem}.sd-g-2,.sd-gy-2{--sd-gutter-y: 0.5rem}.sd-g-2,.sd-gx-2{--sd-gutter-x: 0.5rem}.sd-g-3,.sd-gy-3{--sd-gutter-y: 1rem}.sd-g-3,.sd-gx-3{--sd-gutter-x: 1rem}.sd-g-4,.sd-gy-4{--sd-gutter-y: 1.5rem}.sd-g-4,.sd-gx-4{--sd-gutter-x: 1.5rem}.sd-g-5,.sd-gy-5{--sd-gutter-y: 3rem}.sd-g-5,.sd-gx-5{--sd-gutter-x: 3rem}@media(min-width: 576px){.sd-col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-sm-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-sm-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-sm-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-sm-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-sm-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-sm-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-sm-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-sm-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-sm-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-sm-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-sm-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-sm-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-sm-0,.sd-gy-sm-0{--sd-gutter-y: 0}.sd-g-sm-0,.sd-gx-sm-0{--sd-gutter-x: 0}.sd-g-sm-1,.sd-gy-sm-1{--sd-gutter-y: 0.25rem}.sd-g-sm-1,.sd-gx-sm-1{--sd-gutter-x: 0.25rem}.sd-g-sm-2,.sd-gy-sm-2{--sd-gutter-y: 0.5rem}.sd-g-sm-2,.sd-gx-sm-2{--sd-gutter-x: 0.5rem}.sd-g-sm-3,.sd-gy-sm-3{--sd-gutter-y: 1rem}.sd-g-sm-3,.sd-gx-sm-3{--sd-gutter-x: 1rem}.sd-g-sm-4,.sd-gy-sm-4{--sd-gutter-y: 1.5rem}.sd-g-sm-4,.sd-gx-sm-4{--sd-gutter-x: 1.5rem}.sd-g-sm-5,.sd-gy-sm-5{--sd-gutter-y: 3rem}.sd-g-sm-5,.sd-gx-sm-5{--sd-gutter-x: 3rem}}@media(min-width: 768px){.sd-col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-md-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-md-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-md-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-md-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-md-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-md-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-md-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-md-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-md-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-md-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-md-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-md-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-md-0,.sd-gy-md-0{--sd-gutter-y: 0}.sd-g-md-0,.sd-gx-md-0{--sd-gutter-x: 0}.sd-g-md-1,.sd-gy-md-1{--sd-gutter-y: 0.25rem}.sd-g-md-1,.sd-gx-md-1{--sd-gutter-x: 0.25rem}.sd-g-md-2,.sd-gy-md-2{--sd-gutter-y: 0.5rem}.sd-g-md-2,.sd-gx-md-2{--sd-gutter-x: 0.5rem}.sd-g-md-3,.sd-gy-md-3{--sd-gutter-y: 1rem}.sd-g-md-3,.sd-gx-md-3{--sd-gutter-x: 1rem}.sd-g-md-4,.sd-gy-md-4{--sd-gutter-y: 1.5rem}.sd-g-md-4,.sd-gx-md-4{--sd-gutter-x: 1.5rem}.sd-g-md-5,.sd-gy-md-5{--sd-gutter-y: 3rem}.sd-g-md-5,.sd-gx-md-5{--sd-gutter-x: 3rem}}@media(min-width: 992px){.sd-col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-lg-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-lg-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-lg-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-lg-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-lg-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-lg-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-lg-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-lg-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-lg-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-lg-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-lg-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-lg-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-lg-0,.sd-gy-lg-0{--sd-gutter-y: 0}.sd-g-lg-0,.sd-gx-lg-0{--sd-gutter-x: 0}.sd-g-lg-1,.sd-gy-lg-1{--sd-gutter-y: 0.25rem}.sd-g-lg-1,.sd-gx-lg-1{--sd-gutter-x: 0.25rem}.sd-g-lg-2,.sd-gy-lg-2{--sd-gutter-y: 0.5rem}.sd-g-lg-2,.sd-gx-lg-2{--sd-gutter-x: 0.5rem}.sd-g-lg-3,.sd-gy-lg-3{--sd-gutter-y: 1rem}.sd-g-lg-3,.sd-gx-lg-3{--sd-gutter-x: 1rem}.sd-g-lg-4,.sd-gy-lg-4{--sd-gutter-y: 1.5rem}.sd-g-lg-4,.sd-gx-lg-4{--sd-gutter-x: 1.5rem}.sd-g-lg-5,.sd-gy-lg-5{--sd-gutter-y: 3rem}.sd-g-lg-5,.sd-gx-lg-5{--sd-gutter-x: 3rem}}@media(min-width: 1200px){.sd-col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-xl-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-xl-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-xl-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-xl-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-xl-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-xl-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-xl-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-xl-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-xl-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-xl-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-xl-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-xl-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-xl-0,.sd-gy-xl-0{--sd-gutter-y: 0}.sd-g-xl-0,.sd-gx-xl-0{--sd-gutter-x: 0}.sd-g-xl-1,.sd-gy-xl-1{--sd-gutter-y: 0.25rem}.sd-g-xl-1,.sd-gx-xl-1{--sd-gutter-x: 0.25rem}.sd-g-xl-2,.sd-gy-xl-2{--sd-gutter-y: 0.5rem}.sd-g-xl-2,.sd-gx-xl-2{--sd-gutter-x: 0.5rem}.sd-g-xl-3,.sd-gy-xl-3{--sd-gutter-y: 1rem}.sd-g-xl-3,.sd-gx-xl-3{--sd-gutter-x: 1rem}.sd-g-xl-4,.sd-gy-xl-4{--sd-gutter-y: 1.5rem}.sd-g-xl-4,.sd-gx-xl-4{--sd-gutter-x: 1.5rem}.sd-g-xl-5,.sd-gy-xl-5{--sd-gutter-y: 3rem}.sd-g-xl-5,.sd-gx-xl-5{--sd-gutter-x: 3rem}}.sd-flex-row-reverse{flex-direction:row-reverse !important}details.sd-dropdown{position:relative;font-size:var(--sd-fontsize-dropdown)}details.sd-dropdown:hover{cursor:pointer}details.sd-dropdown .sd-summary-content{cursor:default}details.sd-dropdown summary.sd-summary-title{padding:.5em 1em;font-size:var(--sd-fontsize-dropdown-title);font-weight:var(--sd-fontweight-dropdown-title);user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;list-style:none;display:inline-flex;justify-content:space-between}details.sd-dropdown summary.sd-summary-title::-webkit-details-marker{display:none}details.sd-dropdown summary.sd-summary-title:focus{outline:none}details.sd-dropdown summary.sd-summary-title .sd-summary-icon{margin-right:.6em;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-icon svg{opacity:.8}details.sd-dropdown summary.sd-summary-title .sd-summary-text{flex-grow:1;line-height:1.5;padding-right:.5rem}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker{pointer-events:none;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker svg{opacity:.6}details.sd-dropdown summary.sd-summary-title:hover .sd-summary-state-marker svg{opacity:1;transform:scale(1.1)}details.sd-dropdown[open] summary .sd-octicon.no-title{visibility:hidden}details.sd-dropdown .sd-summary-chevron-right{transition:.25s}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-right{transform:rotate(90deg)}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-down{transform:rotate(180deg)}details.sd-dropdown:not([open]).sd-card{border:none}details.sd-dropdown:not([open])>.sd-card-header{border:1px solid var(--sd-color-card-border);border-radius:.25rem}details.sd-dropdown.sd-fade-in[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out;animation:sd-fade-in .5s ease-in-out}details.sd-dropdown.sd-fade-in-slide-down[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out}.sd-col>.sd-dropdown{width:100%}.sd-summary-content>.sd-tab-set:first-child{margin-top:0}@keyframes sd-fade-in{0%{opacity:0}100%{opacity:1}}@keyframes sd-slide-down{0%{transform:translate(0, -10px)}100%{transform:translate(0, 0)}}.sd-tab-set{border-radius:.125rem;display:flex;flex-wrap:wrap;margin:1em 0;position:relative}.sd-tab-set>input{opacity:0;position:absolute}.sd-tab-set>input:checked+label{border-color:var(--sd-color-tabs-underline-active);color:var(--sd-color-tabs-label-active)}.sd-tab-set>input:checked+label+.sd-tab-content{display:block}.sd-tab-set>input:not(:checked)+label:hover{color:var(--sd-color-tabs-label-hover);border-color:var(--sd-color-tabs-underline-hover)}.sd-tab-set>input:focus+label{outline-style:auto}.sd-tab-set>input:not(.focus-visible)+label{outline:none;-webkit-tap-highlight-color:transparent}.sd-tab-set>label{border-bottom:.125rem solid transparent;margin-bottom:0;color:var(--sd-color-tabs-label-inactive);border-color:var(--sd-color-tabs-underline-inactive);cursor:pointer;font-size:var(--sd-fontsize-tabs-label);font-weight:700;padding:1em 1.25em .5em;transition:color 250ms;width:auto;z-index:1}html .sd-tab-set>label:hover{color:var(--sd-color-tabs-label-active)}.sd-col>.sd-tab-set{width:100%}.sd-tab-content{box-shadow:0 -0.0625rem var(--sd-color-tabs-overline),0 .0625rem var(--sd-color-tabs-underline);display:none;order:99;padding-bottom:.75rem;padding-top:.75rem;width:100%}.sd-tab-content>:first-child{margin-top:0 !important}.sd-tab-content>:last-child{margin-bottom:0 !important}.sd-tab-content>.sd-tab-set{margin:0}.sd-sphinx-override,.sd-sphinx-override *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sd-sphinx-override p{margin-top:0}:root{--sd-color-primary: #0071bc;--sd-color-secondary: #6c757d;--sd-color-success: #28a745;--sd-color-info: #17a2b8;--sd-color-warning: #f0b37e;--sd-color-danger: #dc3545;--sd-color-light: #f8f9fa;--sd-color-muted: #6c757d;--sd-color-dark: #212529;--sd-color-black: black;--sd-color-white: white;--sd-color-primary-highlight: #0060a0;--sd-color-secondary-highlight: #5c636a;--sd-color-success-highlight: #228e3b;--sd-color-info-highlight: #148a9c;--sd-color-warning-highlight: #cc986b;--sd-color-danger-highlight: #bb2d3b;--sd-color-light-highlight: #d3d4d5;--sd-color-muted-highlight: #5c636a;--sd-color-dark-highlight: #1c1f23;--sd-color-black-highlight: black;--sd-color-white-highlight: #d9d9d9;--sd-color-primary-bg: rgba(0, 113, 188, 0.2);--sd-color-secondary-bg: rgba(108, 117, 125, 0.2);--sd-color-success-bg: rgba(40, 167, 69, 0.2);--sd-color-info-bg: rgba(23, 162, 184, 0.2);--sd-color-warning-bg: rgba(240, 179, 126, 0.2);--sd-color-danger-bg: rgba(220, 53, 69, 0.2);--sd-color-light-bg: rgba(248, 249, 250, 0.2);--sd-color-muted-bg: rgba(108, 117, 125, 0.2);--sd-color-dark-bg: rgba(33, 37, 41, 0.2);--sd-color-black-bg: rgba(0, 0, 0, 0.2);--sd-color-white-bg: rgba(255, 255, 255, 0.2);--sd-color-primary-text: #fff;--sd-color-secondary-text: #fff;--sd-color-success-text: #fff;--sd-color-info-text: #fff;--sd-color-warning-text: #212529;--sd-color-danger-text: #fff;--sd-color-light-text: #212529;--sd-color-muted-text: #fff;--sd-color-dark-text: #fff;--sd-color-black-text: #fff;--sd-color-white-text: #212529;--sd-color-shadow: rgba(0, 0, 0, 0.15);--sd-color-card-border: rgba(0, 0, 0, 0.125);--sd-color-card-border-hover: hsla(231, 99%, 66%, 1);--sd-color-card-background: transparent;--sd-color-card-text: inherit;--sd-color-card-header: transparent;--sd-color-card-footer: transparent;--sd-color-tabs-label-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-inactive: hsl(0, 0%, 66%);--sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62);--sd-color-tabs-underline-inactive: transparent;--sd-color-tabs-overline: rgb(222, 222, 222);--sd-color-tabs-underline: rgb(222, 222, 222);--sd-fontsize-tabs-label: 1rem;--sd-fontsize-dropdown: inherit;--sd-fontsize-dropdown-title: 1rem;--sd-fontweight-dropdown-title: 700} +.sd-bg-primary{background-color:var(--sd-color-primary) !important}.sd-bg-text-primary{color:var(--sd-color-primary-text) !important}button.sd-bg-primary:focus,button.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}a.sd-bg-primary:focus,a.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}.sd-bg-secondary{background-color:var(--sd-color-secondary) !important}.sd-bg-text-secondary{color:var(--sd-color-secondary-text) !important}button.sd-bg-secondary:focus,button.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}a.sd-bg-secondary:focus,a.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}.sd-bg-success{background-color:var(--sd-color-success) !important}.sd-bg-text-success{color:var(--sd-color-success-text) !important}button.sd-bg-success:focus,button.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}a.sd-bg-success:focus,a.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}.sd-bg-info{background-color:var(--sd-color-info) !important}.sd-bg-text-info{color:var(--sd-color-info-text) !important}button.sd-bg-info:focus,button.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}a.sd-bg-info:focus,a.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}.sd-bg-warning{background-color:var(--sd-color-warning) !important}.sd-bg-text-warning{color:var(--sd-color-warning-text) !important}button.sd-bg-warning:focus,button.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}a.sd-bg-warning:focus,a.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}.sd-bg-danger{background-color:var(--sd-color-danger) !important}.sd-bg-text-danger{color:var(--sd-color-danger-text) !important}button.sd-bg-danger:focus,button.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}a.sd-bg-danger:focus,a.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}.sd-bg-light{background-color:var(--sd-color-light) !important}.sd-bg-text-light{color:var(--sd-color-light-text) !important}button.sd-bg-light:focus,button.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}a.sd-bg-light:focus,a.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}.sd-bg-muted{background-color:var(--sd-color-muted) !important}.sd-bg-text-muted{color:var(--sd-color-muted-text) !important}button.sd-bg-muted:focus,button.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}a.sd-bg-muted:focus,a.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}.sd-bg-dark{background-color:var(--sd-color-dark) !important}.sd-bg-text-dark{color:var(--sd-color-dark-text) !important}button.sd-bg-dark:focus,button.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}a.sd-bg-dark:focus,a.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}.sd-bg-black{background-color:var(--sd-color-black) !important}.sd-bg-text-black{color:var(--sd-color-black-text) !important}button.sd-bg-black:focus,button.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}a.sd-bg-black:focus,a.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}.sd-bg-white{background-color:var(--sd-color-white) !important}.sd-bg-text-white{color:var(--sd-color-white-text) !important}button.sd-bg-white:focus,button.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}a.sd-bg-white:focus,a.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}.sd-text-primary,.sd-text-primary>p{color:var(--sd-color-primary) !important}a.sd-text-primary:focus,a.sd-text-primary:hover{color:var(--sd-color-primary-highlight) !important}.sd-text-secondary,.sd-text-secondary>p{color:var(--sd-color-secondary) !important}a.sd-text-secondary:focus,a.sd-text-secondary:hover{color:var(--sd-color-secondary-highlight) !important}.sd-text-success,.sd-text-success>p{color:var(--sd-color-success) !important}a.sd-text-success:focus,a.sd-text-success:hover{color:var(--sd-color-success-highlight) !important}.sd-text-info,.sd-text-info>p{color:var(--sd-color-info) !important}a.sd-text-info:focus,a.sd-text-info:hover{color:var(--sd-color-info-highlight) !important}.sd-text-warning,.sd-text-warning>p{color:var(--sd-color-warning) !important}a.sd-text-warning:focus,a.sd-text-warning:hover{color:var(--sd-color-warning-highlight) !important}.sd-text-danger,.sd-text-danger>p{color:var(--sd-color-danger) !important}a.sd-text-danger:focus,a.sd-text-danger:hover{color:var(--sd-color-danger-highlight) !important}.sd-text-light,.sd-text-light>p{color:var(--sd-color-light) !important}a.sd-text-light:focus,a.sd-text-light:hover{color:var(--sd-color-light-highlight) !important}.sd-text-muted,.sd-text-muted>p{color:var(--sd-color-muted) !important}a.sd-text-muted:focus,a.sd-text-muted:hover{color:var(--sd-color-muted-highlight) !important}.sd-text-dark,.sd-text-dark>p{color:var(--sd-color-dark) !important}a.sd-text-dark:focus,a.sd-text-dark:hover{color:var(--sd-color-dark-highlight) !important}.sd-text-black,.sd-text-black>p{color:var(--sd-color-black) !important}a.sd-text-black:focus,a.sd-text-black:hover{color:var(--sd-color-black-highlight) !important}.sd-text-white,.sd-text-white>p{color:var(--sd-color-white) !important}a.sd-text-white:focus,a.sd-text-white:hover{color:var(--sd-color-white-highlight) !important}.sd-outline-primary{border-color:var(--sd-color-primary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-primary:focus,a.sd-outline-primary:hover{border-color:var(--sd-color-primary-highlight) !important}.sd-outline-secondary{border-color:var(--sd-color-secondary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-secondary:focus,a.sd-outline-secondary:hover{border-color:var(--sd-color-secondary-highlight) !important}.sd-outline-success{border-color:var(--sd-color-success) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-success:focus,a.sd-outline-success:hover{border-color:var(--sd-color-success-highlight) !important}.sd-outline-info{border-color:var(--sd-color-info) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-info:focus,a.sd-outline-info:hover{border-color:var(--sd-color-info-highlight) !important}.sd-outline-warning{border-color:var(--sd-color-warning) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-warning:focus,a.sd-outline-warning:hover{border-color:var(--sd-color-warning-highlight) !important}.sd-outline-danger{border-color:var(--sd-color-danger) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-danger:focus,a.sd-outline-danger:hover{border-color:var(--sd-color-danger-highlight) !important}.sd-outline-light{border-color:var(--sd-color-light) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-light:focus,a.sd-outline-light:hover{border-color:var(--sd-color-light-highlight) !important}.sd-outline-muted{border-color:var(--sd-color-muted) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-muted:focus,a.sd-outline-muted:hover{border-color:var(--sd-color-muted-highlight) !important}.sd-outline-dark{border-color:var(--sd-color-dark) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-dark:focus,a.sd-outline-dark:hover{border-color:var(--sd-color-dark-highlight) !important}.sd-outline-black{border-color:var(--sd-color-black) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-black:focus,a.sd-outline-black:hover{border-color:var(--sd-color-black-highlight) !important}.sd-outline-white{border-color:var(--sd-color-white) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-white:focus,a.sd-outline-white:hover{border-color:var(--sd-color-white-highlight) !important}.sd-bg-transparent{background-color:transparent !important}.sd-outline-transparent{border-color:transparent !important}.sd-text-transparent{color:transparent !important}.sd-p-0{padding:0 !important}.sd-pt-0,.sd-py-0{padding-top:0 !important}.sd-pr-0,.sd-px-0{padding-right:0 !important}.sd-pb-0,.sd-py-0{padding-bottom:0 !important}.sd-pl-0,.sd-px-0{padding-left:0 !important}.sd-p-1{padding:.25rem !important}.sd-pt-1,.sd-py-1{padding-top:.25rem !important}.sd-pr-1,.sd-px-1{padding-right:.25rem !important}.sd-pb-1,.sd-py-1{padding-bottom:.25rem !important}.sd-pl-1,.sd-px-1{padding-left:.25rem !important}.sd-p-2{padding:.5rem !important}.sd-pt-2,.sd-py-2{padding-top:.5rem !important}.sd-pr-2,.sd-px-2{padding-right:.5rem !important}.sd-pb-2,.sd-py-2{padding-bottom:.5rem !important}.sd-pl-2,.sd-px-2{padding-left:.5rem !important}.sd-p-3{padding:1rem !important}.sd-pt-3,.sd-py-3{padding-top:1rem !important}.sd-pr-3,.sd-px-3{padding-right:1rem !important}.sd-pb-3,.sd-py-3{padding-bottom:1rem !important}.sd-pl-3,.sd-px-3{padding-left:1rem !important}.sd-p-4{padding:1.5rem !important}.sd-pt-4,.sd-py-4{padding-top:1.5rem !important}.sd-pr-4,.sd-px-4{padding-right:1.5rem !important}.sd-pb-4,.sd-py-4{padding-bottom:1.5rem !important}.sd-pl-4,.sd-px-4{padding-left:1.5rem !important}.sd-p-5{padding:3rem !important}.sd-pt-5,.sd-py-5{padding-top:3rem !important}.sd-pr-5,.sd-px-5{padding-right:3rem !important}.sd-pb-5,.sd-py-5{padding-bottom:3rem !important}.sd-pl-5,.sd-px-5{padding-left:3rem !important}.sd-m-auto{margin:auto !important}.sd-mt-auto,.sd-my-auto{margin-top:auto !important}.sd-mr-auto,.sd-mx-auto{margin-right:auto !important}.sd-mb-auto,.sd-my-auto{margin-bottom:auto !important}.sd-ml-auto,.sd-mx-auto{margin-left:auto !important}.sd-m-0{margin:0 !important}.sd-mt-0,.sd-my-0{margin-top:0 !important}.sd-mr-0,.sd-mx-0{margin-right:0 !important}.sd-mb-0,.sd-my-0{margin-bottom:0 !important}.sd-ml-0,.sd-mx-0{margin-left:0 !important}.sd-m-1{margin:.25rem !important}.sd-mt-1,.sd-my-1{margin-top:.25rem !important}.sd-mr-1,.sd-mx-1{margin-right:.25rem !important}.sd-mb-1,.sd-my-1{margin-bottom:.25rem !important}.sd-ml-1,.sd-mx-1{margin-left:.25rem !important}.sd-m-2{margin:.5rem !important}.sd-mt-2,.sd-my-2{margin-top:.5rem !important}.sd-mr-2,.sd-mx-2{margin-right:.5rem !important}.sd-mb-2,.sd-my-2{margin-bottom:.5rem !important}.sd-ml-2,.sd-mx-2{margin-left:.5rem !important}.sd-m-3{margin:1rem !important}.sd-mt-3,.sd-my-3{margin-top:1rem !important}.sd-mr-3,.sd-mx-3{margin-right:1rem !important}.sd-mb-3,.sd-my-3{margin-bottom:1rem !important}.sd-ml-3,.sd-mx-3{margin-left:1rem !important}.sd-m-4{margin:1.5rem !important}.sd-mt-4,.sd-my-4{margin-top:1.5rem !important}.sd-mr-4,.sd-mx-4{margin-right:1.5rem !important}.sd-mb-4,.sd-my-4{margin-bottom:1.5rem !important}.sd-ml-4,.sd-mx-4{margin-left:1.5rem !important}.sd-m-5{margin:3rem !important}.sd-mt-5,.sd-my-5{margin-top:3rem !important}.sd-mr-5,.sd-mx-5{margin-right:3rem !important}.sd-mb-5,.sd-my-5{margin-bottom:3rem !important}.sd-ml-5,.sd-mx-5{margin-left:3rem !important}.sd-w-25{width:25% !important}.sd-w-50{width:50% !important}.sd-w-75{width:75% !important}.sd-w-100{width:100% !important}.sd-w-auto{width:auto !important}.sd-h-25{height:25% !important}.sd-h-50{height:50% !important}.sd-h-75{height:75% !important}.sd-h-100{height:100% !important}.sd-h-auto{height:auto !important}.sd-d-none{display:none !important}.sd-d-inline{display:inline !important}.sd-d-inline-block{display:inline-block !important}.sd-d-block{display:block !important}.sd-d-grid{display:grid !important}.sd-d-flex-row{display:-ms-flexbox !important;display:flex !important;flex-direction:row !important}.sd-d-flex-column{display:-ms-flexbox !important;display:flex !important;flex-direction:column !important}.sd-d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media(min-width: 576px){.sd-d-sm-none{display:none !important}.sd-d-sm-inline{display:inline !important}.sd-d-sm-inline-block{display:inline-block !important}.sd-d-sm-block{display:block !important}.sd-d-sm-grid{display:grid !important}.sd-d-sm-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 768px){.sd-d-md-none{display:none !important}.sd-d-md-inline{display:inline !important}.sd-d-md-inline-block{display:inline-block !important}.sd-d-md-block{display:block !important}.sd-d-md-grid{display:grid !important}.sd-d-md-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 992px){.sd-d-lg-none{display:none !important}.sd-d-lg-inline{display:inline !important}.sd-d-lg-inline-block{display:inline-block !important}.sd-d-lg-block{display:block !important}.sd-d-lg-grid{display:grid !important}.sd-d-lg-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 1200px){.sd-d-xl-none{display:none !important}.sd-d-xl-inline{display:inline !important}.sd-d-xl-inline-block{display:inline-block !important}.sd-d-xl-block{display:block !important}.sd-d-xl-grid{display:grid !important}.sd-d-xl-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.sd-align-major-start{justify-content:flex-start !important}.sd-align-major-end{justify-content:flex-end !important}.sd-align-major-center{justify-content:center !important}.sd-align-major-justify{justify-content:space-between !important}.sd-align-major-spaced{justify-content:space-evenly !important}.sd-align-minor-start{align-items:flex-start !important}.sd-align-minor-end{align-items:flex-end !important}.sd-align-minor-center{align-items:center !important}.sd-align-minor-stretch{align-items:stretch !important}.sd-text-justify{text-align:justify !important}.sd-text-left{text-align:left !important}.sd-text-right{text-align:right !important}.sd-text-center{text-align:center !important}.sd-font-weight-light{font-weight:300 !important}.sd-font-weight-lighter{font-weight:lighter !important}.sd-font-weight-normal{font-weight:400 !important}.sd-font-weight-bold{font-weight:700 !important}.sd-font-weight-bolder{font-weight:bolder !important}.sd-font-italic{font-style:italic !important}.sd-text-decoration-none{text-decoration:none !important}.sd-text-lowercase{text-transform:lowercase !important}.sd-text-uppercase{text-transform:uppercase !important}.sd-text-capitalize{text-transform:capitalize !important}.sd-text-wrap{white-space:normal !important}.sd-text-nowrap{white-space:nowrap !important}.sd-text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sd-fs-1,.sd-fs-1>p{font-size:calc(1.375rem + 1.5vw) !important;line-height:unset !important}.sd-fs-2,.sd-fs-2>p{font-size:calc(1.325rem + 0.9vw) !important;line-height:unset !important}.sd-fs-3,.sd-fs-3>p{font-size:calc(1.3rem + 0.6vw) !important;line-height:unset !important}.sd-fs-4,.sd-fs-4>p{font-size:calc(1.275rem + 0.3vw) !important;line-height:unset !important}.sd-fs-5,.sd-fs-5>p{font-size:1.25rem !important;line-height:unset !important}.sd-fs-6,.sd-fs-6>p{font-size:1rem !important;line-height:unset !important}.sd-border-0{border:0 solid !important}.sd-border-top-0{border-top:0 solid !important}.sd-border-bottom-0{border-bottom:0 solid !important}.sd-border-right-0{border-right:0 solid !important}.sd-border-left-0{border-left:0 solid !important}.sd-border-1{border:1px solid !important}.sd-border-top-1{border-top:1px solid !important}.sd-border-bottom-1{border-bottom:1px solid !important}.sd-border-right-1{border-right:1px solid !important}.sd-border-left-1{border-left:1px solid !important}.sd-border-2{border:2px solid !important}.sd-border-top-2{border-top:2px solid !important}.sd-border-bottom-2{border-bottom:2px solid !important}.sd-border-right-2{border-right:2px solid !important}.sd-border-left-2{border-left:2px solid !important}.sd-border-3{border:3px solid !important}.sd-border-top-3{border-top:3px solid !important}.sd-border-bottom-3{border-bottom:3px solid !important}.sd-border-right-3{border-right:3px solid !important}.sd-border-left-3{border-left:3px solid !important}.sd-border-4{border:4px solid !important}.sd-border-top-4{border-top:4px solid !important}.sd-border-bottom-4{border-bottom:4px solid !important}.sd-border-right-4{border-right:4px solid !important}.sd-border-left-4{border-left:4px solid !important}.sd-border-5{border:5px solid !important}.sd-border-top-5{border-top:5px solid !important}.sd-border-bottom-5{border-bottom:5px solid !important}.sd-border-right-5{border-right:5px solid !important}.sd-border-left-5{border-left:5px solid !important}.sd-rounded-0{border-radius:0 !important}.sd-rounded-1{border-radius:.2rem !important}.sd-rounded-2{border-radius:.3rem !important}.sd-rounded-3{border-radius:.5rem !important}.sd-rounded-pill{border-radius:50rem !important}.sd-rounded-circle{border-radius:50% !important}.shadow-none{box-shadow:none !important}.sd-shadow-sm{box-shadow:0 .125rem .25rem var(--sd-color-shadow) !important}.sd-shadow-md{box-shadow:0 .5rem 1rem var(--sd-color-shadow) !important}.sd-shadow-lg{box-shadow:0 1rem 3rem var(--sd-color-shadow) !important}@keyframes sd-slide-from-left{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}@keyframes sd-slide-from-right{0%{transform:translateX(200%)}100%{transform:translateX(0)}}@keyframes sd-grow100{0%{transform:scale(0);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50{0%{transform:scale(0.5);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50-rot20{0%{transform:scale(0.5) rotateZ(-20deg);opacity:.5}75%{transform:scale(1) rotateZ(5deg);opacity:1}95%{transform:scale(1) rotateZ(-1deg);opacity:1}100%{transform:scale(1) rotateZ(0);opacity:1}}.sd-animate-slide-from-left{animation:1s ease-out 0s 1 normal none running sd-slide-from-left}.sd-animate-slide-from-right{animation:1s ease-out 0s 1 normal none running sd-slide-from-right}.sd-animate-grow100{animation:1s ease-out 0s 1 normal none running sd-grow100}.sd-animate-grow50{animation:1s ease-out 0s 1 normal none running sd-grow50}.sd-animate-grow50-rot20{animation:1s ease-out 0s 1 normal none running sd-grow50-rot20}.sd-badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.sd-badge:empty{display:none}a.sd-badge{text-decoration:none}.sd-btn .sd-badge{position:relative;top:-1px}.sd-btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;cursor:pointer;display:inline-block;font-weight:400;font-size:1rem;line-height:1.5;padding:.375rem .75rem;text-align:center;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:middle;user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none}.sd-btn:hover{text-decoration:none}@media(prefers-reduced-motion: reduce){.sd-btn{transition:none}}.sd-btn-primary,.sd-btn-outline-primary:hover,.sd-btn-outline-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-primary:hover,.sd-btn-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary-highlight) !important;border-color:var(--sd-color-primary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-primary{color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary,.sd-btn-outline-secondary:hover,.sd-btn-outline-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary:hover,.sd-btn-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary-highlight) !important;border-color:var(--sd-color-secondary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-secondary{color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success,.sd-btn-outline-success:hover,.sd-btn-outline-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success:hover,.sd-btn-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success-highlight) !important;border-color:var(--sd-color-success-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-success{color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info,.sd-btn-outline-info:hover,.sd-btn-outline-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info:hover,.sd-btn-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info-highlight) !important;border-color:var(--sd-color-info-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-info{color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning,.sd-btn-outline-warning:hover,.sd-btn-outline-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning:hover,.sd-btn-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning-highlight) !important;border-color:var(--sd-color-warning-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-warning{color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger,.sd-btn-outline-danger:hover,.sd-btn-outline-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger:hover,.sd-btn-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger-highlight) !important;border-color:var(--sd-color-danger-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-danger{color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light,.sd-btn-outline-light:hover,.sd-btn-outline-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light:hover,.sd-btn-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light-highlight) !important;border-color:var(--sd-color-light-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-light{color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted,.sd-btn-outline-muted:hover,.sd-btn-outline-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted:hover,.sd-btn-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted-highlight) !important;border-color:var(--sd-color-muted-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-muted{color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark,.sd-btn-outline-dark:hover,.sd-btn-outline-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark:hover,.sd-btn-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark-highlight) !important;border-color:var(--sd-color-dark-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-dark{color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black,.sd-btn-outline-black:hover,.sd-btn-outline-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black:hover,.sd-btn-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black-highlight) !important;border-color:var(--sd-color-black-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-black{color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white,.sd-btn-outline-white:hover,.sd-btn-outline-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white:hover,.sd-btn-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white-highlight) !important;border-color:var(--sd-color-white-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-white{color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.sd-hide-link-text{font-size:0}.sd-octicon,.sd-material-icon{display:inline-block;fill:currentColor;vertical-align:middle}.sd-avatar-xs{border-radius:50%;object-fit:cover;object-position:center;width:1rem;height:1rem}.sd-avatar-sm{border-radius:50%;object-fit:cover;object-position:center;width:3rem;height:3rem}.sd-avatar-md{border-radius:50%;object-fit:cover;object-position:center;width:5rem;height:5rem}.sd-avatar-lg{border-radius:50%;object-fit:cover;object-position:center;width:7rem;height:7rem}.sd-avatar-xl{border-radius:50%;object-fit:cover;object-position:center;width:10rem;height:10rem}.sd-avatar-inherit{border-radius:50%;object-fit:cover;object-position:center;width:inherit;height:inherit}.sd-avatar-initial{border-radius:50%;object-fit:cover;object-position:center;width:initial;height:initial}.sd-card{background-clip:border-box;background-color:var(--sd-color-card-background);border:1px solid var(--sd-color-card-border);border-radius:.25rem;color:var(--sd-color-card-text);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;position:relative;word-wrap:break-word}.sd-card>hr{margin-left:0;margin-right:0}.sd-card-hover:hover{border-color:var(--sd-color-card-border-hover);transform:scale(1.01)}.sd-card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem 1rem}.sd-card-title{margin-bottom:.5rem}.sd-card-subtitle{margin-top:-0.25rem;margin-bottom:0}.sd-card-text:last-child{margin-bottom:0}.sd-card-link:hover{text-decoration:none}.sd-card-link+.card-link{margin-left:1rem}.sd-card-header{padding:.5rem 1rem;margin-bottom:0;background-color:var(--sd-color-card-header);border-bottom:1px solid var(--sd-color-card-border)}.sd-card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.sd-card-footer{padding:.5rem 1rem;background-color:var(--sd-color-card-footer);border-top:1px solid var(--sd-color-card-border)}.sd-card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.sd-card-header-tabs{margin-right:-0.5rem;margin-bottom:-0.5rem;margin-left:-0.5rem;border-bottom:0}.sd-card-header-pills{margin-right:-0.5rem;margin-left:-0.5rem}.sd-card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom,.sd-card-img-top{width:100%}.sd-card-img,.sd-card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom{border-bottom-left-radius:calc(0.25rem - 1px);border-bottom-right-radius:calc(0.25rem - 1px)}.sd-cards-carousel{width:100%;display:flex;flex-wrap:nowrap;-ms-flex-direction:row;flex-direction:row;overflow-x:hidden;scroll-snap-type:x mandatory}.sd-cards-carousel.sd-show-scrollbar{overflow-x:auto}.sd-cards-carousel:hover,.sd-cards-carousel:focus{overflow-x:auto}.sd-cards-carousel>.sd-card{flex-shrink:0;scroll-snap-align:start}.sd-cards-carousel>.sd-card:not(:last-child){margin-right:3px}.sd-card-cols-1>.sd-card{width:90%}.sd-card-cols-2>.sd-card{width:45%}.sd-card-cols-3>.sd-card{width:30%}.sd-card-cols-4>.sd-card{width:22.5%}.sd-card-cols-5>.sd-card{width:18%}.sd-card-cols-6>.sd-card{width:15%}.sd-card-cols-7>.sd-card{width:12.8571428571%}.sd-card-cols-8>.sd-card{width:11.25%}.sd-card-cols-9>.sd-card{width:10%}.sd-card-cols-10>.sd-card{width:9%}.sd-card-cols-11>.sd-card{width:8.1818181818%}.sd-card-cols-12>.sd-card{width:7.5%}.sd-container,.sd-container-fluid,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container-xl{margin-left:auto;margin-right:auto;padding-left:var(--sd-gutter-x, 0.75rem);padding-right:var(--sd-gutter-x, 0.75rem);width:100%}@media(min-width: 576px){.sd-container-sm,.sd-container{max-width:540px}}@media(min-width: 768px){.sd-container-md,.sd-container-sm,.sd-container{max-width:720px}}@media(min-width: 992px){.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:960px}}@media(min-width: 1200px){.sd-container-xl,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:1140px}}.sd-row{--sd-gutter-x: 1.5rem;--sd-gutter-y: 0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:calc(var(--sd-gutter-y) * -1);margin-right:calc(var(--sd-gutter-x) * -0.5);margin-left:calc(var(--sd-gutter-x) * -0.5)}.sd-row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--sd-gutter-x) * 0.5);padding-left:calc(var(--sd-gutter-x) * 0.5);margin-top:var(--sd-gutter-y)}.sd-col{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-auto>*{flex:0 0 auto;width:auto}.sd-row-cols-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}@media(min-width: 576px){.sd-col-sm{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-sm-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-sm-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-sm-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-sm-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-sm-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-sm-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-sm-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-sm-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-sm-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-sm-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-sm-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-sm-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-sm-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 768px){.sd-col-md{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-md-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-md-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-md-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-md-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-md-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-md-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-md-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-md-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-md-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-md-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-md-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-md-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-md-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 992px){.sd-col-lg{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-lg-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-lg-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-lg-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-lg-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-lg-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-lg-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-lg-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-lg-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-lg-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-lg-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-lg-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-lg-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-lg-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 1200px){.sd-col-xl{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-xl-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-xl-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-xl-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-xl-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-xl-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-xl-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-xl-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-xl-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-xl-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-xl-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-xl-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-xl-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-xl-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}.sd-col-auto{flex:0 0 auto;-ms-flex:0 0 auto;width:auto}.sd-col-1{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}.sd-col-2{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-col-3{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-col-4{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-col-5{flex:0 0 auto;-ms-flex:0 0 auto;width:41.6666666667%}.sd-col-6{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-col-7{flex:0 0 auto;-ms-flex:0 0 auto;width:58.3333333333%}.sd-col-8{flex:0 0 auto;-ms-flex:0 0 auto;width:66.6666666667%}.sd-col-9{flex:0 0 auto;-ms-flex:0 0 auto;width:75%}.sd-col-10{flex:0 0 auto;-ms-flex:0 0 auto;width:83.3333333333%}.sd-col-11{flex:0 0 auto;-ms-flex:0 0 auto;width:91.6666666667%}.sd-col-12{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-g-0,.sd-gy-0{--sd-gutter-y: 0}.sd-g-0,.sd-gx-0{--sd-gutter-x: 0}.sd-g-1,.sd-gy-1{--sd-gutter-y: 0.25rem}.sd-g-1,.sd-gx-1{--sd-gutter-x: 0.25rem}.sd-g-2,.sd-gy-2{--sd-gutter-y: 0.5rem}.sd-g-2,.sd-gx-2{--sd-gutter-x: 0.5rem}.sd-g-3,.sd-gy-3{--sd-gutter-y: 1rem}.sd-g-3,.sd-gx-3{--sd-gutter-x: 1rem}.sd-g-4,.sd-gy-4{--sd-gutter-y: 1.5rem}.sd-g-4,.sd-gx-4{--sd-gutter-x: 1.5rem}.sd-g-5,.sd-gy-5{--sd-gutter-y: 3rem}.sd-g-5,.sd-gx-5{--sd-gutter-x: 3rem}@media(min-width: 576px){.sd-col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-sm-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-sm-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-sm-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-sm-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-sm-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-sm-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-sm-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-sm-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-sm-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-sm-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-sm-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-sm-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-sm-0,.sd-gy-sm-0{--sd-gutter-y: 0}.sd-g-sm-0,.sd-gx-sm-0{--sd-gutter-x: 0}.sd-g-sm-1,.sd-gy-sm-1{--sd-gutter-y: 0.25rem}.sd-g-sm-1,.sd-gx-sm-1{--sd-gutter-x: 0.25rem}.sd-g-sm-2,.sd-gy-sm-2{--sd-gutter-y: 0.5rem}.sd-g-sm-2,.sd-gx-sm-2{--sd-gutter-x: 0.5rem}.sd-g-sm-3,.sd-gy-sm-3{--sd-gutter-y: 1rem}.sd-g-sm-3,.sd-gx-sm-3{--sd-gutter-x: 1rem}.sd-g-sm-4,.sd-gy-sm-4{--sd-gutter-y: 1.5rem}.sd-g-sm-4,.sd-gx-sm-4{--sd-gutter-x: 1.5rem}.sd-g-sm-5,.sd-gy-sm-5{--sd-gutter-y: 3rem}.sd-g-sm-5,.sd-gx-sm-5{--sd-gutter-x: 3rem}}@media(min-width: 768px){.sd-col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-md-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-md-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-md-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-md-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-md-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-md-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-md-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-md-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-md-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-md-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-md-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-md-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-md-0,.sd-gy-md-0{--sd-gutter-y: 0}.sd-g-md-0,.sd-gx-md-0{--sd-gutter-x: 0}.sd-g-md-1,.sd-gy-md-1{--sd-gutter-y: 0.25rem}.sd-g-md-1,.sd-gx-md-1{--sd-gutter-x: 0.25rem}.sd-g-md-2,.sd-gy-md-2{--sd-gutter-y: 0.5rem}.sd-g-md-2,.sd-gx-md-2{--sd-gutter-x: 0.5rem}.sd-g-md-3,.sd-gy-md-3{--sd-gutter-y: 1rem}.sd-g-md-3,.sd-gx-md-3{--sd-gutter-x: 1rem}.sd-g-md-4,.sd-gy-md-4{--sd-gutter-y: 1.5rem}.sd-g-md-4,.sd-gx-md-4{--sd-gutter-x: 1.5rem}.sd-g-md-5,.sd-gy-md-5{--sd-gutter-y: 3rem}.sd-g-md-5,.sd-gx-md-5{--sd-gutter-x: 3rem}}@media(min-width: 992px){.sd-col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-lg-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-lg-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-lg-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-lg-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-lg-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-lg-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-lg-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-lg-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-lg-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-lg-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-lg-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-lg-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-lg-0,.sd-gy-lg-0{--sd-gutter-y: 0}.sd-g-lg-0,.sd-gx-lg-0{--sd-gutter-x: 0}.sd-g-lg-1,.sd-gy-lg-1{--sd-gutter-y: 0.25rem}.sd-g-lg-1,.sd-gx-lg-1{--sd-gutter-x: 0.25rem}.sd-g-lg-2,.sd-gy-lg-2{--sd-gutter-y: 0.5rem}.sd-g-lg-2,.sd-gx-lg-2{--sd-gutter-x: 0.5rem}.sd-g-lg-3,.sd-gy-lg-3{--sd-gutter-y: 1rem}.sd-g-lg-3,.sd-gx-lg-3{--sd-gutter-x: 1rem}.sd-g-lg-4,.sd-gy-lg-4{--sd-gutter-y: 1.5rem}.sd-g-lg-4,.sd-gx-lg-4{--sd-gutter-x: 1.5rem}.sd-g-lg-5,.sd-gy-lg-5{--sd-gutter-y: 3rem}.sd-g-lg-5,.sd-gx-lg-5{--sd-gutter-x: 3rem}}@media(min-width: 1200px){.sd-col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-xl-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-xl-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-xl-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-xl-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-xl-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-xl-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-xl-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-xl-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-xl-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-xl-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-xl-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-xl-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-xl-0,.sd-gy-xl-0{--sd-gutter-y: 0}.sd-g-xl-0,.sd-gx-xl-0{--sd-gutter-x: 0}.sd-g-xl-1,.sd-gy-xl-1{--sd-gutter-y: 0.25rem}.sd-g-xl-1,.sd-gx-xl-1{--sd-gutter-x: 0.25rem}.sd-g-xl-2,.sd-gy-xl-2{--sd-gutter-y: 0.5rem}.sd-g-xl-2,.sd-gx-xl-2{--sd-gutter-x: 0.5rem}.sd-g-xl-3,.sd-gy-xl-3{--sd-gutter-y: 1rem}.sd-g-xl-3,.sd-gx-xl-3{--sd-gutter-x: 1rem}.sd-g-xl-4,.sd-gy-xl-4{--sd-gutter-y: 1.5rem}.sd-g-xl-4,.sd-gx-xl-4{--sd-gutter-x: 1.5rem}.sd-g-xl-5,.sd-gy-xl-5{--sd-gutter-y: 3rem}.sd-g-xl-5,.sd-gx-xl-5{--sd-gutter-x: 3rem}}.sd-flex-row-reverse{flex-direction:row-reverse !important}details.sd-dropdown{position:relative;font-size:var(--sd-fontsize-dropdown)}details.sd-dropdown:hover{cursor:pointer}details.sd-dropdown .sd-summary-content{cursor:default}details.sd-dropdown summary.sd-summary-title{padding:.5em .6em .5em 1em;font-size:var(--sd-fontsize-dropdown-title);font-weight:var(--sd-fontweight-dropdown-title);user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;list-style:none;display:inline-flex;justify-content:space-between}details.sd-dropdown summary.sd-summary-title::-webkit-details-marker{display:none}details.sd-dropdown summary.sd-summary-title:focus{outline:none}details.sd-dropdown summary.sd-summary-title .sd-summary-icon{margin-right:.6em;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-icon svg{opacity:.8}details.sd-dropdown summary.sd-summary-title .sd-summary-text{flex-grow:1;line-height:1.5;padding-right:.5rem}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker{pointer-events:none;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker svg{opacity:.6}details.sd-dropdown summary.sd-summary-title:hover .sd-summary-state-marker svg{opacity:1;transform:scale(1.1)}details.sd-dropdown[open] summary .sd-octicon.no-title{visibility:hidden}details.sd-dropdown .sd-summary-chevron-right{transition:.25s}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-right{transform:rotate(90deg)}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-down{transform:rotate(180deg)}details.sd-dropdown:not([open]).sd-card{border:none}details.sd-dropdown:not([open])>.sd-card-header{border:1px solid var(--sd-color-card-border);border-radius:.25rem}details.sd-dropdown.sd-fade-in[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out;animation:sd-fade-in .5s ease-in-out}details.sd-dropdown.sd-fade-in-slide-down[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out}.sd-col>.sd-dropdown{width:100%}.sd-summary-content>.sd-tab-set:first-child{margin-top:0}@keyframes sd-fade-in{0%{opacity:0}100%{opacity:1}}@keyframes sd-slide-down{0%{transform:translate(0, -10px)}100%{transform:translate(0, 0)}}.sd-tab-set{border-radius:.125rem;display:flex;flex-wrap:wrap;margin:1em 0;position:relative}.sd-tab-set>input{opacity:0;position:absolute}.sd-tab-set>input:checked+label{border-color:var(--sd-color-tabs-underline-active);color:var(--sd-color-tabs-label-active)}.sd-tab-set>input:checked+label+.sd-tab-content{display:block}.sd-tab-set>input:not(:checked)+label:hover{color:var(--sd-color-tabs-label-hover);border-color:var(--sd-color-tabs-underline-hover)}.sd-tab-set>input:focus+label{outline-style:auto}.sd-tab-set>input:not(.focus-visible)+label{outline:none;-webkit-tap-highlight-color:transparent}.sd-tab-set>label{border-bottom:.125rem solid transparent;margin-bottom:0;color:var(--sd-color-tabs-label-inactive);border-color:var(--sd-color-tabs-underline-inactive);cursor:pointer;font-size:var(--sd-fontsize-tabs-label);font-weight:700;padding:1em 1.25em .5em;transition:color 250ms;width:auto;z-index:1}html .sd-tab-set>label:hover{color:var(--sd-color-tabs-label-active)}.sd-col>.sd-tab-set{width:100%}.sd-tab-content{box-shadow:0 -0.0625rem var(--sd-color-tabs-overline),0 .0625rem var(--sd-color-tabs-underline);display:none;order:99;padding-bottom:.75rem;padding-top:.75rem;width:100%}.sd-tab-content>:first-child{margin-top:0 !important}.sd-tab-content>:last-child{margin-bottom:0 !important}.sd-tab-content>.sd-tab-set{margin:0}.sd-sphinx-override,.sd-sphinx-override *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sd-sphinx-override p{margin-top:0}:root{--sd-color-primary: #0071bc;--sd-color-secondary: #6c757d;--sd-color-success: #28a745;--sd-color-info: #17a2b8;--sd-color-warning: #f0b37e;--sd-color-danger: #dc3545;--sd-color-light: #f8f9fa;--sd-color-muted: #6c757d;--sd-color-dark: #212529;--sd-color-black: black;--sd-color-white: white;--sd-color-primary-highlight: #0060a0;--sd-color-secondary-highlight: #5c636a;--sd-color-success-highlight: #228e3b;--sd-color-info-highlight: #148a9c;--sd-color-warning-highlight: #cc986b;--sd-color-danger-highlight: #bb2d3b;--sd-color-light-highlight: #d3d4d5;--sd-color-muted-highlight: #5c636a;--sd-color-dark-highlight: #1c1f23;--sd-color-black-highlight: black;--sd-color-white-highlight: #d9d9d9;--sd-color-primary-bg: rgba(0, 113, 188, 0.2);--sd-color-secondary-bg: rgba(108, 117, 125, 0.2);--sd-color-success-bg: rgba(40, 167, 69, 0.2);--sd-color-info-bg: rgba(23, 162, 184, 0.2);--sd-color-warning-bg: rgba(240, 179, 126, 0.2);--sd-color-danger-bg: rgba(220, 53, 69, 0.2);--sd-color-light-bg: rgba(248, 249, 250, 0.2);--sd-color-muted-bg: rgba(108, 117, 125, 0.2);--sd-color-dark-bg: rgba(33, 37, 41, 0.2);--sd-color-black-bg: rgba(0, 0, 0, 0.2);--sd-color-white-bg: rgba(255, 255, 255, 0.2);--sd-color-primary-text: #fff;--sd-color-secondary-text: #fff;--sd-color-success-text: #fff;--sd-color-info-text: #fff;--sd-color-warning-text: #212529;--sd-color-danger-text: #fff;--sd-color-light-text: #212529;--sd-color-muted-text: #fff;--sd-color-dark-text: #fff;--sd-color-black-text: #fff;--sd-color-white-text: #212529;--sd-color-shadow: rgba(0, 0, 0, 0.15);--sd-color-card-border: rgba(0, 0, 0, 0.125);--sd-color-card-border-hover: hsla(231, 99%, 66%, 1);--sd-color-card-background: transparent;--sd-color-card-text: inherit;--sd-color-card-header: transparent;--sd-color-card-footer: transparent;--sd-color-tabs-label-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-inactive: hsl(0, 0%, 66%);--sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62);--sd-color-tabs-underline-inactive: transparent;--sd-color-tabs-overline: rgb(222, 222, 222);--sd-color-tabs-underline: rgb(222, 222, 222);--sd-fontsize-tabs-label: 1rem;--sd-fontsize-dropdown: inherit;--sd-fontsize-dropdown-title: 1rem;--sd-fontweight-dropdown-title: 700} diff --git a/bdg1-1.jsonld b/bdg1-1.jsonld index fa41ee96..75773e19 100644 --- a/bdg1-1.jsonld +++ b/bdg1-1.jsonld @@ -1,163 +1,158 @@ [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorInletConnectionPointK", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Occupancy" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Occupancy space2" + "@value": "Corridor inlet connection point k" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeDaylightLevel", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Floor1", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#contains": [ { - "@id": "http://qudt.org/vocab/quantitykind/Illuminance" - } - ], - "http://qudt.org/schema/qudt/hasUnit": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Bathroom" + }, { - "@id": "http://qudt.org/vocab/unit/LUX" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Corridor" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Kitchenette" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOffice" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOffice" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Open office daylight level" + "@value": "Floor1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1InternalPipe", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#GridConnection", "@type": [ - "http://data.ashrae.org/standard223#Pipe" + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1ReheatCoilSupplyFluidInlet" + "@id": "http://data.ashrae.org/standard223#AC-240VLL-120VLN-1Ph-60Hz" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Grid connection" } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InletReheatCoilCP", + "@type": [ + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "TU1Internal pipe" + "@value": "VAV1Inlet reheat coil CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1HeatingCoil", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace6TempSensor", "@type": [ - "http://data.ashrae.org/standard223#HeatingCoil" + "http://data.ashrae.org/standard223#TemperatureSensor" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InletReheatCoilCP" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1OuletReheatCoilCP" - }, + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1ReheatCoilSupplyFluidInlet" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace6" + } + ], + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1ReheatCoilSupplyFluidOutlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpaceTemp" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVBox1Heating coil" + "@value": "HVACSpace6Temp sensor" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1FunctionBlock", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00061", "@type": [ - "http://data.ashrae.org/standard223#FunctionBlock" + "http://data.ashrae.org/standard223#Damper" ], - "http://data.ashrae.org/standard223#hasInput": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00063" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeDaylightLevel" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00064" } ], - "http://data.ashrae.org/standard223#hasOutput": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1CCT" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Intensity" - }, + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00062" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire1function block" + "@value": "A-9.return_air_damper" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00011", "@type": [ - "http://data.ashrae.org/standard223#SingleDuctTerminal" + "http://data.ashrae.org/standard223#Equipment" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1BoxSupplyFluidInlet" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1BoxSupplyFluidOutlet" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1Inlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00013" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1Outlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00014" } ], - "http://data.ashrae.org/standard223#contains": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValve" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1HeatingCoil" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1InletFlowSensor" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1MotorizedDamper" - }, + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1OutletTemperatureSensor" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00012" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVBox1" + "@value": "A-9.outside_air_afms" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#FanInletConnectionPoint", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomExhaustDuct" + } ], "http://data.ashrae.org/standard223#hasMedium": [ { @@ -166,63 +161,66 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV2Damper outlet CP" + "@value": "Fan inlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00035", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HeatingCoilValvePosition", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00024" - }, + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "50" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00026" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Mixed air connection to filter" + "@value": "Heating coil valve position" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP2Phase", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2OnOff", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" ], "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223#Aspect-ElectricalPhaseIdentifier" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#ElectricalPhaseIdentifier-B" + "@id": "http://data.ashrae.org/standard223#OnOff-Off" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Breaker CP2Phase" + "@value": "Luminaire2OnOff" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVAC4-5Connection", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2Inlet", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#InletIntraCorridor4CP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVSupply" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -232,237 +230,216 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVAC4-5Connection" + "@value": "VAVBox2Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2OutletTemperatureProperty", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit5", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "70" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" + "@value": "Main breaker circuit5" } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorLightInletCP", + "@type": [ + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorLight1" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV2Outlet temperature property" + "@value": "Corridor light inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00028", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ChilledWaterInletTemp", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#ofMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025" + "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://qudt.org/vocab/quantitykind/Temperature" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUHotWaterInlet" + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.hot_water_coil.hotWaterInlet" + "@value": "Chilled water inlet temp" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TerminalUnit1FunctionBlock", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6", "@type": [ - "http://data.ashrae.org/standard223#FunctionBlock" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#hasInput": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1Temperature" - }, + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1TemperatureSetpoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6Inlet" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6Outlet" } ], - "http://data.ashrae.org/standard223#hasOutput": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1DamperPositionCommand" - }, + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValvePositionCommand" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6OnOffStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Terminal Unit1 Function Block" + "@value": "Luminaire6" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00008", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7Inlet", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Minimum outdoor air damper command" + "@value": "Luminaire7Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#RoomSupply1", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ELightPath1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeInletConnectionPoint" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire1Outlet" + "@value": "Room supply1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit3", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7OnOffStatus", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" - } + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@value": "Electric Circuit 3" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnFanSpeed", - "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], "http://data.ashrae.org/standard223#hasValue": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "70" - } - ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ - { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" - } - ], - "http://qudt.org/schema/qudt/hasUnit": [ - { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://data.ashrae.org/standard223#OnOff-Off" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Return fan speed" + "@value": "Luminaire7On off status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CoolingCoilOutletTemperature", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalChillerOutletCP", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "65" - } + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromChiller" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Cooling coil outlet temperature" + "@value": "External chiller outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5OnOffStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1Outlet", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#RoomSupply1" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-Off" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire5On off status" + "@value": "VAVBox1Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00038", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00055", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00053" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00050" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00058" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00063" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -472,12 +449,12 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.chilled_water_coil.airOutlet" + "@value": "A-9.return_air" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HeatingCoilValvePosition", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CoolingCoilValvePosition", "@type": [ "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], @@ -499,143 +476,161 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Heating coil valve position" + "@value": "Cooling coil valve position" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1DamperActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#RoomSupply2", "@type": [ - "http://data.ashrae.org/standard223#Actuator" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1DamperPosition" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteInletConnectionPoint" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A10" + "@value": "Room supply2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace3", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVSupply" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeInletConnectionPoint" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeOutletConnectionPoint" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVBox1Inlet" + "@value": "HVACSpace3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainGridConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccSensor2", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#OccupantMotionSensor" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#GridConnection" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace2" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://data.ashrae.org/standard223#Electricity-AC" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Bathroom" + } + ], + "http://data.ashrae.org/standard223#observes": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp2" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main grid connection point" + "@value": "O2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2OutletTemperature", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6Inlet" - }, + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "71.2" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6Outlet" + "@id": "http://qudt.org/vocab/quantitykind/Temperature" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6OnOffStatus" + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire6" + "@value": "VAV2 Outlet Temperature" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OfficeWindowDaylightCP", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#DLightPath1" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire7Inlet" + "@value": "Office window daylight CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutsideAirDamperActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00009", "@type": [ - "http://data.ashrae.org/standard223#Actuator" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutsideAirDamperPosition" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OA-to-MinDamper" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00007" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A3" + "@value": "A-9.min_oa_damper.airInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00055", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionOutletToEcon", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00053" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00058" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00063" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OA-to-EconDamper" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -645,39 +640,47 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.return_air" + "@value": "OAJunction outlet to econ" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00048", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00028", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00047" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00050" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" + } + ], + "http://data.ashrae.org/standard223#mapsTo": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUHotWaterInlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.supply_fan.airInlet" + "@value": "A-9.hot_water_coil.hotWaterInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpaceTemp", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CoolingCoilOutletTemperature", "@type": [ "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], + "http://data.ashrae.org/standard223#hasValue": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "65" + } + ], "http://qudt.org/schema/qudt/hasQuantityKind": [ { "@id": "http://qudt.org/vocab/quantitykind/Temperature" @@ -690,475 +693,468 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACSpace temp" + "@value": "Cooling coil outlet temperature" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1MotorizedDamper", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpeningKC", "@type": [ - "http://data.ashrae.org/standard223#Damper" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1DamperPositionCommand" - } - ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1DamperInletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorInletConnectionPointK" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1DamperOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteOutletConnectionPoint" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVBox1Motorized damper " + "@value": "Opening KC" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00010", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Outlet", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00007" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00015" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ELightPath1" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.min_oa_damper.airOutlet" + "@value": "Luminaire2Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1ReheatCoilSupplyFluidOutlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00022", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://qudt.org/vocab/quantitykind/Temperature" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1BoxSupplyFluidOutlet" + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV1Reheat coil supply fluid outlet" + "@value": "Mixed air temperature" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2OutletTemperatureSensor", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace1", "@type": [ - "http://data.ashrae.org/standard223#TemperatureSensor" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2OuletReheatCoilCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeInletConnectionPoint" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeOutletConnectionPoint" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2OutletTemperatureProperty" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S12" + "@value": "HVACSpace1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace3", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFromExteriorAir", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLightInletCP" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@value": "Supply from exterior air" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromBoiler", + "@type": [ + "http://data.ashrae.org/standard223#Connection" + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingSpace3" + "@value": "Pipe from boiler" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00056", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Bathroom", "@type": [ - "http://data.ashrae.org/standard223#Damper" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00058" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace2" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00059" - } - ], - "http://data.ashrae.org/standard223#hasProperty": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace3" + }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00057" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace2" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.exhaust_air_damper" + "@value": "Bathroom" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12", "@type": [ - "http://data.ashrae.org/standard223#Zone" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12Inlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12Outlet" } ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace5" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Kitchenette" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace6" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12OnOffStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACZone2" + "@value": "Luminaire12" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HeatingCoilValveActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit1", "@type": [ - "http://data.ashrae.org/standard223#Actuator" + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HeatingCoilValvePosition" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A4" + "@value": "Main breaker circuit1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1DamperPositionCommand", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#GridConnection" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#AC-240VLL-120VLN-1Ph-60Hz" + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main breaker inlet CP" + "@value": "TU1 Damper Position Command" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVAC4-5Connection", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Connection" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#InletIntraCorridor4CP" + } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Light engine1Inlet" + "@value": "HVAC4-5Connection" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccSensor5", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#OccupantPresenceSensor" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace5" + } + ], + "http://data.ashrae.org/standard223#observes": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp5" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Electric Circuit 2" + "@value": "O5" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp5", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp2", "@type": [ "http://data.ashrae.org/standard223#EnumeratedObservableProperty" ], "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223#Occupancy-Presence" + "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" } ], "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Presence-True" + "@id": "http://data.ashrae.org/standard223#Motion-True" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Occupancy prop5" + "@value": "Occupancy prop2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace4", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeLightInletCP" + } + ], + "http://data.ashrae.org/standard223#hasDomain": [ + { + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire11Outlet" + "@value": "LightingSpace4" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00061", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainGridPowerSource", "@type": [ - "http://data.ashrae.org/standard223#Damper" + "http://data.ashrae.org/standard223#Generator" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00063" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00064" - } - ], - "http://data.ashrae.org/standard223#hasProperty": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00062" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainGridConnectionPoint" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.return_air_damper" + "@value": "Main grid power source" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1OutletTemperatureSensor", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUElectricityInlet", "@type": [ - "http://data.ashrae.org/standard223#TemperatureSensor" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1OuletReheatCoilCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit3" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1OutletTemperature" + "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S10" + "@value": "AHUElectricity inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2CCT", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2InletFlowSensor", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" + "http://data.ashrae.org/standard223#FlowSensor" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://qudt.org/vocab/quantitykind/ThermodynamicTemperature" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperInletCP" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://qudt.org/vocab/unit/K" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2InletFlow" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire2CCT" + "@value": "S11" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4OnOffStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OA-to-MinDamper", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionOutletToMin" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-Off" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire4On off status" + "@value": "OA-to-Min damper" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp4", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00046", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" - ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ - { - "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" - } + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Motion-True" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00027" + }, { - "@value": "Occupancy prop4" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00037" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace3", - "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Occupancy" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Occupancy space3" + "@value": "Connection from heating coil" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00017", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit4", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" - ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ - { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" - } + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Economizer outside air damper command" + "@value": "Main breaker circuit4" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1CCT", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLight", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://qudt.org/vocab/quantitykind/ThermodynamicTemperature" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLightCP" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://qudt.org/vocab/unit/K" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire1CCT" + "@value": "Exterior ambient light" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalBoilerOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1OutletTemperature", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#connectsThrough": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromBoiler" - } + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "72.3" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@value": "External boiler outlet CP" + "@id": "http://qudt.org/vocab/quantitykind/Temperature" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionOutletToMin", - "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OAJunction outlet to min" + "@value": "VAV1 Outlet Temperature" } ] }, @@ -1184,157 +1180,145 @@ ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace2ELInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustToExteriorAir", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Lighting Space2 EL Inlet" + "@value": "Exhaust to exterior air" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUHotWaterOutlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00057", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToBoiler" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "AHUHot water outlet" + "@value": "Exhaust air damper command" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUChilledWaterOutlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpeningPOC", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToChiller" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorInletConnectionPointPO" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeOutletConnectionPoint" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "AHUChilled water outlet" + "@value": "Opening POC" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccSensor1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUChilledWaterInlet", "@type": [ - "http://data.ashrae.org/standard223#OccupantCounter" - ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace1" - } + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOffice" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromChiller" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp1" + "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "O1" + "@value": "AHUChilled water inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR3OutletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR5InletConnectionPoint", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit3" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit5" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "BR3Outlet connection point" + "@value": "BR5Inlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OfficeWindowDaylightCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker5", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#ElectricBreaker" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#DLightPath1" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR5InletConnectionPoint" + }, { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR5OutletConnectionPoint" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Office window daylight CP" + "@value": "Electric breaker5" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00063", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1Inlet", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00055" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00061" - } - ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.return_air_damper.airInlet" + "@value": "Light engine1Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit4", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit1", "@type": [ "http://data.ashrae.org/standard223#ElectricWire" ], @@ -1345,21 +1329,18 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main breaker circuit4" + "@value": "Electric Circuit 1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00019", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00018", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00016" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00020" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -1369,151 +1350,160 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.economizer_oa_damper.airOutlet" + "@value": "A-9.economizer_oa_damper.airInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanSpeed", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP3", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "80" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit3" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP3Phase" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Supply fan speed" + "@value": "Main breaker out CP3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2SupplyFluidInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace6", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromBoiler" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteLightInletCP" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV2Supply fluid inlet" + "@value": "LightingSpace6" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP2Phase", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" + "http://data.ashrae.org/standard223#EnumerableProperty" ], "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223#Aspect-ElectricalPhaseIdentifier" } ], "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-On" + "@id": "http://data.ashrae.org/standard223#ElectricalPhaseIdentifier-B" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Supply fan status" + "@value": "Breaker CP2Phase" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MixedAirDamperPosition", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2ReheatValveActuator", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "50" - } + "http://data.ashrae.org/standard223#Actuator" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2ReheatValvePosition" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@value": "A7" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeOutletConnectionPoint", + "@type": [ + "http://data.ashrae.org/standard223#OutletConnectionPoint" + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Mixed air damper position" + "@value": "Private office outlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustFanStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomExhaustToExteriorAir", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" - ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ - { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" - } + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-On" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Exhaust fan status" + "@value": "Bathroom exhaust to exterior air" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomInletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00052", "@type": [ - "http://data.ashrae.org/standard223#BidirectionalConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00051" + } ], "http://data.ashrae.org/standard223#hasMedium": [ { "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], + "http://data.ashrae.org/standard223#mapsTo": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUReturnInlet" + } + ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Bathroom inlet connection point" + "@value": "A-9.return_fan.airInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ELightPath2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8Outlet", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace2ELInlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeLight1" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -1523,142 +1513,144 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ELight Path2" + "@value": "Luminaire8Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#RoomSupply1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5Inlet", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeInletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Room supply1" + "@value": "Luminaire5Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionInlet", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" - ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10Inlet" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10Outlet" - } + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#mapsTo": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10OnOffStatus" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUOAInlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire10" + "@value": "OAJunction inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeOutletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00033", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00030" + } + ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" + } + ], + "http://data.ashrae.org/standard223#mapsTo": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUHotWaterOutlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Private office outlet connection point" + "@value": "A-9.hot_water_coil.hw_valve.hotWaterOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#sasen", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutletIntraCorridor5CP", "@type": [ - "http://data.ashrae.org/standard223#PressureSensor" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00049" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVAC4-5Connection" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#sap" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S8" + "@value": "Outlet intra corridor5CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00022", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUOAInlet", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00006" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Mixed air temperature" + "@value": "AHUOAInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#oatmp", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OA-to-EconDamper", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" + "http://data.ashrae.org/standard223#Connection" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00018" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Outside Air Temperature" + "@value": "OA-to-Econ damper" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP4", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP5", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit4" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit5" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -1668,26 +1660,26 @@ ], "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP4Phase" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP5Phase" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main breaker out CP4" + "@value": "Main breaker out CP5" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00024", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00063", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00021" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00055" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00035" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00061" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -1697,276 +1689,249 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.mixed_air_filter.airOutlet" + "@value": "A-9.return_air_damper.airInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainGridPowerSource", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace5", "@type": [ - "http://data.ashrae.org/standard223#Generator" + "http://data.ashrae.org/standard223#DomainSpace" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainGridConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorLightInletCP" + } + ], + "http://data.ashrae.org/standard223#hasDomain": [ + { + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main grid power source" + "@value": "LightingSpace5" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InletTemperature", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9Inlet", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "70.2" - } + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV1 Inlet Temperature" + "@value": "Luminaire9Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1OuletReheatCoilCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingZone1", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Zone" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1Outlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV1Oulet reheat coil CP" + "@value": "LightingZone1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1OutletTemperature", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone2Thermostat", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" + "http://data.ashrae.org/standard223#TemperatureSensor" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "72.3" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace5" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Corridor" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone2Temperature" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV1 Outlet Temperature" + "@value": "TH2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace5", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOffice", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Occupancy" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace3" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace4" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace3" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OccupancySpace5" + "@value": "Private office" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker3", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#ElectricBreaker" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR3InletConnectionPoint" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR3OutletConnectionPoint" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main breaker circuit1" + "@value": "Electric breaker3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR2InletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutsideAirDamperPosition", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit2" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "50" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@value": "BR2Inlet connection point" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Bathroom", - "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#encloses": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace2" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace3" - }, + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace2" + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Bathroom" + "@value": "Outside air damper position" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TempSensor_1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1BoxSupplyFluidInlet", "@type": [ - "http://data.ashrae.org/standard223#TemperatureSensor" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00050" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromBoiler" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CoolingCoilOutletTemperature" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S7" + "@value": "VAV1Box supply fluid inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00049", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalBoiler", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00047" - } + "http://data.ashrae.org/standard223#Boiler" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" - } - ], - "http://data.ashrae.org/standard223#mapsTo": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalBoilerInletCP" + }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUSupplyOutlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalBoilerOutletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.supply_fan.airOutlet" + "@value": "External boiler" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InletFlow", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace3", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "135" - } + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://qudt.org/vocab/quantitykind/VolumeFlowRate" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLightInletCP" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://qudt.org/vocab/unit/FT3-PER-MIN" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV1Inlet flow" + "@value": "LightingSpace3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9", "@type": [ "http://data.ashrae.org/standard223#Luminaire" ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11Inlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9Inlet" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11Outlet" - } - ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Kitchenette" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9Outlet" } ], "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11OnOffStatus" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9OnOffStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire11" + "@value": "Luminaire9" } ] }, @@ -1995,610 +1960,666 @@ ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6OnOffStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00040", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-Off" + "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire6On off status" + "@value": "A-9.chilled_water_coil.chilledWaterReturn" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00052", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00051" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7Inlet" + }, { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7Outlet" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUReturnInlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7OnOffStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.return_fan.airInlet" + "@value": "Luminaire7" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#DaylightSensor1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1BoxSupplyFluidOutlet", "@type": [ - "http://data.ashrae.org/standard223#IlluminanceSensor" - ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1" - } + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOffice" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToBoiler" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeDaylightLevel" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "D1" + "@value": "VAV1Box supply fluid outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorInletConnectionPointK", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR2InletConnectionPoint", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit2" + } + ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Corridor inlet connection point k" + "@value": "BR2Inlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker5", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingZone3", "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" + "http://data.ashrae.org/standard223#Zone" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR5InletConnectionPoint" - }, + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + } + ], + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR5OutletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace3" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Electric breaker5" + "@value": "LightingZone3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Kitchenette", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ELightPath2" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace6" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace6" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace5" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@value": "Kitchenette" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#masen", + "@type": [ + "http://data.ashrae.org/standard223#Sensor" + ], + "http://data.ashrae.org/standard223#observes": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#mxtmp" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire3Outlet" + "@value": "S4" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUOAInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp3", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00006" + "@id": "http://data.ashrae.org/standard223#Occupancy-Presence" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Presence-True" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "AHUOAInlet" + "@value": "Occupancy prop3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CoolingCoilValveActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2OnOffStatus", "@type": [ - "http://data.ashrae.org/standard223#Actuator" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CoolingCoilValvePosition" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + } + ], + "http://data.ashrae.org/standard223#hasValue": [ + { + "@id": "http://data.ashrae.org/standard223#OnOff-Off" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A5" + "@value": "Luminaire2On off status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Driver1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Intensity", "@type": [ - "http://data.ashrae.org/standard223#Actuator" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://data.ashrae.org/standard223#actuates": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "50.5" } ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Driver1Inlet" - }, + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Driver1Outlet" + "@id": "http://qudt.org/vocab/quantitykind/LuminousFluxRatio" } ], - "http://data.ashrae.org/standard223#commandedByProperty": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1CCT" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Intensity" - }, + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1OnOff" + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Driver1" + "@value": "Luminaire1Intensity" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpeningCB", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValveICP", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomInletConnectionPoint" - }, + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorOutletConnectionPointB" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#mapsTo": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1BoxSupplyFluidInlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Opening CB" + "@value": "TU1Reheat valve ICP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2InternalConnection", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeWindows", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#Window" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OfficeWindowDaylightCP" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2InletReheatCoilCP" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OfficeWindowExteriorLightInletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV2Internal connection" + "@value": "Open office windows" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#DLightPath1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Inlet", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#InletConnectionPoint" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit1" + } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "DLight Path1" + "@value": "Luminaire1Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorPhysicalSpace", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP3Phase", "@type": [ - "http://data.ashrae.org/standard223#OutsidePhysicalSpace" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#encloses": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAir" - }, + "@id": "http://data.ashrae.org/standard223#Aspect-ElectricalPhaseIdentifier" + } + ], + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLight" + "@id": "http://data.ashrae.org/standard223#ElectricalPhaseIdentifier-BC" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Exterior physical space" + "@value": "Breaker CP3Phase" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionOutletToMin", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" - } + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire11Inlet" + "@value": "OAJunction outlet to min" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#FanOutletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomFanExhaustDuct" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10Inlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10Outlet" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10OnOffStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Fan outlet connection point" + "@value": "Luminaire10" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00051", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1FunctionBlock", "@type": [ - "http://data.ashrae.org/standard223#Fan" + "http://data.ashrae.org/standard223#FunctionBlock" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasInput": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00052" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp1" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00053" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeDaylightLevel" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasOutput": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnFanStatus" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1CCT" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Intensity" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1OnOff" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.return_fan" + "@value": "Luminaire1function block" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2ReheatValveActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreaker", "@type": [ - "http://data.ashrae.org/standard223#Actuator" + "http://data.ashrae.org/standard223#ElectricBreaker" ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2ReheatValvePosition" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerInletCP" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP1" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP2" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP3" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP4" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP5" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A7" + "@value": "Main breaker" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccSensor2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit3", "@type": [ - "http://data.ashrae.org/standard223#OccupantMotionSensor" - ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace2" - } - ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Bathroom" - } + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp2" + "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "O2" + "@value": "Electric Circuit 3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone2Temperature", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp1", "@type": [ "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], "http://data.ashrae.org/standard223#hasValue": [ { "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "73.2" + "@value": "5" } ], "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" + "@id": "http://qudt.org/vocab/quantitykind/Population" } ], "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://qudt.org/vocab/unit/NUM" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACZone2Temperature" + "@value": "Occupancy prop1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteOutletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#SingleDuctTerminal" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1BoxSupplyFluidInlet" + }, { - "@value": "Kitchenette outlet connection point" - } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7OnOffStatus", - "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" - ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1BoxSupplyFluidOutlet" + }, { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1Inlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1Outlet" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#contains": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-Off" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValve" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1HeatingCoil" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1InletFlowSensor" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1MotorizedDamper" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1OutletTemperatureSensor" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire7On off status" + "@value": "VAVBox1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#FlowSensor1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4Inlet", "@type": [ - "http://data.ashrae.org/standard223#FlowSensor" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00053" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit1" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnAirFlowRate" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S1" + "@value": "Luminaire4Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00040", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValveOCP", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1InternalPipe" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.chilled_water_coil.chilledWaterReturn" + "@value": "TU1Reheat valve outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutsideAirDamperPosition", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalChiller", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" + "http://data.ashrae.org/standard223#Chiller" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "50" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalChillerInletCP" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalChillerOutletCP" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + "@value": "External chiller" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUHotWaterInlet", + "@type": [ + "http://data.ashrae.org/standard223#InletConnectionPoint" + ], + "http://data.ashrae.org/standard223#connectsThrough": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromBoiler" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Outside air damper position" + "@value": "AHUHot water inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2InletFlow", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace6", + "@type": [ + "http://data.ashrae.org/standard223#DomainSpace" + ], + "http://data.ashrae.org/standard223#hasConnectionPoint": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteInletConnectionPoint" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteOutletConnectionPoint" + } + ], + "http://data.ashrae.org/standard223#hasDomain": [ + { + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HVACSpace6" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1Temperature", "@type": [ "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], "http://data.ashrae.org/standard223#hasValue": [ { "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "250" + "@value": "69.7" } ], "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://qudt.org/vocab/quantitykind/VolumeFlowRate" + "@id": "http://qudt.org/vocab/quantitykind/Temperature" } ], "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://qudt.org/vocab/unit/FT3-PER-MIN" + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV2Inlet flow" + "@value": "HVACZone1Temperature" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00050", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLightPath", "@type": [ "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00038" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00048" - } - ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Connection from Cooling Coil" + "@value": "Exterior ambient light path" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2ReheatCoilSupplyFluidInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11OnOffStatus", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2SupplyFluidInlet" + "@id": "http://data.ashrae.org/standard223#OnOff-Off" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV2Reheat coil supply fluid inlet" + "@value": "Luminaire11On off status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LIghtingSpace1DLInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeLightInletCP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#DLightPath1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeLight1" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -2608,131 +2629,114 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Lighting Space1 DL Inlet" + "@value": "Private office light inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00060", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustToExteriorAir" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Outlet" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Light Engine 1 Outlet" + "@value": "Exhaust air connection" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#InletIntraCorridor4CP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2SupplyFluidInlet", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromBoiler" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace4" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Inlet intra corridor4CP" + "@value": "VAV2Supply fluid inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00039", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#oasen", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036" - } + "http://data.ashrae.org/standard223#TemperatureSensor" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00013" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUChilledWaterInlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#oatmp" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.chilled_water_coil.chilledWaterSupply" + "@value": "S3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpaceTemp", "@type": [ - "http://data.ashrae.org/standard223#HeatingCoil" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00026" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00027" - }, + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00028" - }, + "@id": "http://qudt.org/vocab/quantitykind/Temperature" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00029" + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.hot_water_coil" + "@value": "HVACSpace temp" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpeningKC", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanActuator", "@type": [ - "http://data.ashrae.org/standard223#Connection" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorInletConnectionPointK" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteOutletConnectionPoint" - } + "http://data.ashrae.org/standard223#Actuator" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanSpeed" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Opening KC" + "@value": "A9" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteInletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVSupply", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#hasMedium": [ { @@ -2741,210 +2745,210 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Kitchenette inlet connection point" + "@value": "VAVSupply" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2CCT", "@type": [ - "http://www.w3.org/2002/07/owl#Ontology" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://www.w3.org/2000/01/rdf-schema#comment": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@value": "This graph is a sample population of the so-called Pritoni Office Building (suggested by Marco Pritoni) and is used for testing and demonstration." + "@id": "http://qudt.org/vocab/quantitykind/ThermodynamicTemperature" } ], - "http://www.w3.org/2002/07/owl#imports": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/model/all" + "@id": "http://qudt.org/vocab/unit/K" } ], - "http://www.w3.org/2002/07/owl#versionInfo": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Created with TopBraid Composer" + "@value": "Luminaire2CCT" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#masen", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomInletConnectionPoint", "@type": [ - "http://data.ashrae.org/standard223#Sensor" + "http://data.ashrae.org/standard223#BidirectionalConnectionPoint" ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#mxtmp" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S4" + "@value": "Bathroom inlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00034", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVSupply" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00029" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00032" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVBox2Inlet" + "@value": "Hot water connection" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP4Phase", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OfficeWindowExteriorLightInletCP", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Aspect-ElectricalPhaseIdentifier" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLightPath" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#ElectricalPhaseIdentifier-C" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "BreakerCP1Phase" + "@value": "Office window exterior light inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToBoiler", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToChiller", "@type": [ "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Pipe to boiler" + "@value": "Pipe to chiller" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Floor1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1Inlet", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#contains": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Bathroom" - }, + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Corridor" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Kitchenette" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOffice" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVSupply" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOffice" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Floor1" + "@value": "VAVBox1Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2OutletTemperature", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2HeatingCoil", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" + "http://data.ashrae.org/standard223#HeatingCoil" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "71.2" - } - ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2InletReheatCoilCP" + }, { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" - } - ], - "http://qudt.org/schema/qudt/hasUnit": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2OuletReheatCoilCP" + }, { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2ReheatCoilSupplyFluidInlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2ReheatCoilSupplyFluidOutlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV2 Outlet Temperature" + "@value": "VAVBox2Heating coil" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLight1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00026", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLightInletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00035" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Bathroom light1" + "@value": "A-9.hot_water_coil.airInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ELightPath1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingZone4", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#Zone" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1ELInlet" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace4" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ELight Path1" + "@value": "LightingZone4" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OA-to-MinDamper", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00064", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionOutletToMin" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00020" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00061" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -2954,644 +2958,608 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OA-to-Min damper" + "@value": "A-9.return_air_damper.airOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9OnOffStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR3OutletConnectionPoint", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit3" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-Off" + "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire9On off status" + "@value": "BR3Outlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00018", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2OuletReheatCoilCP", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00016" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#mapsTo": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2Outlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.economizer_oa_damper.airInlet" + "@value": "VAV2Oulet reheat coil CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnSystem", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1", "@type": [ - "http://data.ashrae.org/standard223#System" + "http://data.ashrae.org/standard223#Equipment" ], - "http://data.ashrae.org/standard223#hasMember": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00051" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1Inlet" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00056" - } - ], - "http://data.ashrae.org/standard223#hasRole": [ - { - "@id": "http://data.ashrae.org/standard223#Role-Return" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1Outlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Return System" + "@value": "LightEngine1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00042", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1OnOff", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://data.ashrae.org/standard223#OnOff-Off" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Chilled water valve command" + "@value": "Luminaire1OnOff" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00027", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10OnOffStatus", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025" - }, + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00046" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#OnOff-Off" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.hot_water_coil.airOutlet" + "@value": "Luminaire10On off status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6Outlet", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLight1" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" - } - ], - "http://data.ashrae.org/standard223#hasProperty": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP1Phase" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main breaker out CP1" + "@value": "Luminaire6Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ELightPath2", "@type": [ - "http://data.ashrae.org/standard223#Equipment" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1Inlet" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace2ELInlet" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1Outlet" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightEngine1" + "@value": "ELight Path2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00016", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ratmp", "@type": [ - "http://data.ashrae.org/standard223#Damper" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00018" - }, + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00019" + "@id": "http://qudt.org/vocab/quantitykind/Temperature" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00017" + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.economizer_oa_damper" + "@value": "Return Air Temperature" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingZone3", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Inlet", "@type": [ - "http://data.ashrae.org/standard223#Zone" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit1" } ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace3" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingZone3" + "@value": "Luminaire2Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutletIntraCorridor5CP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP4", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVAC4-5Connection" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit4" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "Outlet intra corridor5CP" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker1", - "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR1InletConnectionPoint" - }, + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR1OutletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP4Phase" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Electric breaker1" + "@value": "Main breaker out CP4" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00044", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainGridConnectionPoint", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00041" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#GridConnection" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" - } - ], - "http://data.ashrae.org/standard223#mapsTo": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUChilledWaterOutlet" + "@id": "http://data.ashrae.org/standard223#Electricity-AC" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.chilled_water_coil.chilled_water_valve.chilledWaterOutlet" + "@value": "Main grid connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2InletReheatCoilCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2ReheatValvePosition", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#Medium-Air" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "VAV2Inlet reheat coil CP" - } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ChilledWaterInletTemp", - "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://data.ashrae.org/standard223#ofMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "50" } ], "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" } ], "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Chilled water inlet temp" + "@value": "VAVBox2Reheat valve position" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace4", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUSupplyOutlet", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Occupancy" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVSupply" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Occupancy space4" + "@value": "AHUSupply outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUElectricityInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteInletConnectionPoint", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit3" - } - ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "AHUElectricity inlet" + "@value": "Kitchenette inlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00049", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00047" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Medium-Air" + } + ], + "http://data.ashrae.org/standard223#mapsTo": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUSupplyOutlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire8Inlet" + "@value": "A-9.supply_fan.airOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValveOCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingZone6", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Zone" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1InternalPipe" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace6" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "TU1Reheat valve outlet CP" + "@value": "LightingZone6" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustAirDamperPosition", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteLight1" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "50" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire12Outlet" + "@value": "Exhaust air damper position" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OA-to-EconDamper", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00041", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#Valve" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00018" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00043" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00044" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00042" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OA-to-Econ damper" + "@value": "A-9.chilled_water_coil.chilled_water_valve" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUHotWaterInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00017", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromBoiler" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "AHUHot water inlet" + "@value": "Economizer outside air damper command" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace4", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" - } + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Domain-Occupancy" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire12Inlet" + "@value": "Occupancy space4" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplySystem", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1InletFlowSensor", "@type": [ - "http://data.ashrae.org/standard223#System" + "http://data.ashrae.org/standard223#FlowSensor" ], - "http://data.ashrae.org/standard223#hasMember": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00007" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00011" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00016" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00021" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036" - }, + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00047" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperInletCP" } ], - "http://data.ashrae.org/standard223#hasRole": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223#Role-Supply" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InletFlow" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Supply System" + "@value": "S9" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3OnOffStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CoolingCoilValveActuator", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" - ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ - { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" - } + "http://data.ashrae.org/standard223#Actuator" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-Off" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CoolingCoilValvePosition" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire3On off status" + "@value": "A5" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingZone2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeLight1", "@type": [ - "http://data.ashrae.org/standard223#Zone" - ], - "http://data.ashrae.org/standard223#hasDomain": [ - { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" - } + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace2" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingZone2" + "@value": "Private office light1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CoolingCoilValvePosition", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomOutletConnectionPoint", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "50" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + "@value": "Bathroom outlet connection point" } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace2ELInlet", + "@type": [ + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Cooling coil valve position" + "@value": "Lighting Space2 EL Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00032", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00030" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Motion-True" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Occupancy prop2" + "@value": "A-9.hot_water_coil.hw_valve.hotWaterInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteLightingSystem", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR3InletConnectionPoint", "@type": [ - "http://data.ashrae.org/standard223#System" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasMember": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11" - }, + "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12" + "@value": "BR3Inlet connection point" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Driver1", + "@type": [ + "http://data.ashrae.org/standard223#Actuator" + ], + "http://data.ashrae.org/standard223#actuates": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1" + } + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Driver1Inlet" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccSensor5" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Driver1Outlet" + } + ], + "http://data.ashrae.org/standard223#commandedByProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1CCT" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Intensity" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1OnOff" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Kitchenette lighting system" + "@value": "Driver1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpeningPOC", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00006", "@type": [ "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorInletConnectionPointPO" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeOutletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFromExteriorAir" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -3599,304 +3567,357 @@ "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#oatmp" + } + ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Opening POC" + "@value": "A-9.outside_air" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00031", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9Inlet" - }, + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9Outlet" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9OnOffStatus" + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire9" + "@value": "Hot water valve command" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00001", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#AirHandlingUnit" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#contains": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3Inlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutsideAirJunction" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3Outlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00007" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00011" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00016" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00021" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00030" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00041" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00047" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00051" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00056" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00061" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3OnOffStatus" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUChilledWaterInlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUChilledWaterOutlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUElectricityInlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUExhaustOutlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUHotWaterInlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUHotWaterOutlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUOAInlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUReturnInlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUSupplyOutlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire3" + "@value": "AHU" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InletReheatCoilCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3Inlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3Outlet" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3OnOffStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV1Inlet reheat coil CP" + "@value": "Luminaire3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeLight1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace3", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Domain-Occupancy" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Private office light1" + "@value": "Occupancy space3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteLightInletCP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit1" - } - ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire1Inlet" + "@value": "Kitchenette light inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustFanStatus", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LIghtingSpace1DLInlet" - }, + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1ELInlet" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223#OnOff-On" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingSpace1" + "@value": "Exhaust fan status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00047", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00044", "@type": [ - "http://data.ashrae.org/standard223#Fan" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00048" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00049" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00041" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanElectricInCP" + "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#mapsTo": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanStatus" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUChilledWaterOutlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.supply_fan" + "@value": "A-9.chilled_water_coil.chilled_water_valve.chilledWaterOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2InletFlowSensor", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9OnOffStatus", "@type": [ - "http://data.ashrae.org/standard223#FlowSensor" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperInletCP" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2InletFlow" + "@id": "http://data.ashrae.org/standard223#OnOff-Off" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S11" + "@value": "Luminaire9On off status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace6TempSensor", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp5", "@type": [ - "http://data.ashrae.org/standard223#TemperatureSensor" + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace6" + "@id": "http://data.ashrae.org/standard223#Occupancy-Presence" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpaceTemp" + "@id": "http://data.ashrae.org/standard223#Presence-True" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACSpace6Temp sensor" + "@value": "Occupancy prop5" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HeatingCoilValveActuator", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" - ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeInletConnectionPoint" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeOutletConnectionPoint" - } + "http://data.ashrae.org/standard223#Actuator" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HeatingCoilValvePosition" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACSpace1" + "@value": "A4" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2DamperPosition", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeDaylightLevel", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "50" - } + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + "@id": "http://qudt.org/vocab/quantitykind/Illuminance" } ], "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://qudt.org/vocab/unit/LUX" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVBox2Damper position" + "@value": "Open office daylight level" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#GridConnection", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00053", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#OutletConnectionPoint" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00051" + } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-240VLL-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Grid connection" + "@value": "A-9.return_fan.airOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8Inlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8Outlet" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8OnOffStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire10Inlet" + "@value": "Luminaire8" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomExhaustDuct", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00058", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomOutletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00055" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00056" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -3906,163 +3927,173 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Bathroom exhaust duct" + "@value": "A-9.exhaust_air_damper.airInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccSensor5", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone2", "@type": [ - "http://data.ashrae.org/standard223#OccupantPresenceSensor" + "http://data.ashrae.org/standard223#Zone" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace5" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp5" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace5" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace6" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "O5" + "@value": "HVACZone2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccSensor4", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InletFlow", "@type": [ - "http://data.ashrae.org/standard223#OccupantMotionSensor" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace4" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "135" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp4" + "@id": "http://qudt.org/vocab/quantitykind/VolumeFlowRate" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/FT3-PER-MIN" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "O4" + "@value": "VAV1Inlet flow" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeWindows", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace5", "@type": [ - "http://data.ashrae.org/standard223#Window" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OfficeWindowDaylightCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorInletConnectionPointK" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OfficeWindowExteriorLightInletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutletIntraCorridor5CP" + } + ], + "http://data.ashrae.org/standard223#hasDomain": [ + { + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Open office windows" + "@value": "HVACSpace5" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1Temperature", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10Inlet", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "69.7" - } + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACZone1Temperature" + "@value": "Luminaire10Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP5Phase", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11Outlet", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" - ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ - { - "@id": "http://data.ashrae.org/standard223#Aspect-ElectricalPhaseIdentifier" - } + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#ElectricalPhaseIdentifier-A" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "BreakerCP1Phase" + "@value": "Luminaire11Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2MotorizedDamper", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ELightPath1", "@type": [ - "http://data.ashrae.org/standard223#Damper" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperInletCP" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1ELInlet" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperOutletCP" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVBox2Motorized damper" + "@value": "ELight Path1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValveICP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanElectricInCP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" } ], "http://data.ashrae.org/standard223#mapsTo": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1BoxSupplyFluidInlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUElectricityInlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "TU1Reheat valve ICP" + "@value": "Supply fan electric in CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomExhaustToExteriorAir", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUExhaustOutlet", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" + ], + "http://data.ashrae.org/standard223#connectsThrough": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00060" + } ], "http://data.ashrae.org/standard223#hasMedium": [ { @@ -4071,75 +4102,57 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Bathroom exhaust to exterior air" + "@value": "AHUExhaust outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00023", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2ReheatCoilSupplyFluidInlet", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00020" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00021" - } - ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#mapsTo": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#mxtmp" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2SupplyFluidInlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.mixed_air_filter.airInlet" + "@value": "VAV2Reheat coil supply fluid inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2OutletTemperatureSensor", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit2" - } + "http://data.ashrae.org/standard223#TemperatureSensor" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2OuletReheatCoilCP" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP2Phase" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2OutletTemperatureProperty" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main breaker out CP2" + "@value": "S12" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionOutletToEcon", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1DamperOutletCP", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OA-to-EconDamper" - } - ], "http://data.ashrae.org/standard223#hasMedium": [ { "@id": "http://data.ashrae.org/standard223#Medium-Air" @@ -4147,66 +4160,55 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OAJunction outlet to econ" + "@value": "VAV1Damper outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00045", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2", "@type": [ - "http://data.ashrae.org/standard223#Connection" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00040" - } + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Chilled water connection" + "@value": "Electric Circuit 2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2ReheatValvePosition", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10Outlet", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "50" - } + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorLight1" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVBox2Reheat valve position" + "@value": "Luminaire10Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3Outlet", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLight1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ELightPath2" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -4216,514 +4218,496 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire5Outlet" + "@value": "Luminaire3Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToChiller", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP1Phase", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" + "@id": "http://data.ashrae.org/standard223#Aspect-ElectricalPhaseIdentifier" + } + ], + "http://data.ashrae.org/standard223#hasValue": [ + { + "@id": "http://data.ashrae.org/standard223#ElectricalPhaseIdentifier-A" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Pipe to chiller" + "@value": "BreakerCP1Phase" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutsideAirJunction", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#Junction" ], - "http://data.ashrae.org/standard223#commandedByProperty": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2CCT" - }, + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Intensity" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionInlet" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2OnOff" - } - ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Inlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionOutletToEcon" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Outlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionOutletToMin" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2OnOffStatus" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire2" + "@value": "Outside air junction" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP3Phase", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplySystem", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#System" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#hasMember": [ { - "@id": "http://data.ashrae.org/standard223#Aspect-ElectricalPhaseIdentifier" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00007" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00011" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00016" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00021" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00047" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasRole": [ { - "@id": "http://data.ashrae.org/standard223#ElectricalPhaseIdentifier-BC" + "@id": "http://data.ashrae.org/standard223#Role-Supply" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Breaker CP3Phase" + "@value": "Supply System" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAir", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomExhaustFan", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#Fan" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomExhaustToExteriorAir" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#FanOutletConnectionPoint" } ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustToExteriorAir" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#FanInletConnectionPoint" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFromExteriorAir" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustFanStatus" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasRole": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@id": "http://data.ashrae.org/standard223#Role-Exhaust" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Exterior air" + "@value": "Bathroom exhaust fan" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace5", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00038", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorInletConnectionPointK" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutletIntraCorridor5CP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00050" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACSpace5" + "@value": "A-9.chilled_water_coil.airOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustAirDamperActuator", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#Actuator" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustAirDamperPosition" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Electric Circuit 1" + "@value": "A1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1Thermostat", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLightCP", "@type": [ - "http://data.ashrae.org/standard223#Thermostat" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#contains": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1TemperatureSensor" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLightPath" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1TemperatureSetpoint" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACZone1Thermostat" + "@value": "Exterior ambient light CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00012", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8Inlet", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://qudt.org/vocab/quantitykind/VolumeFlowRate" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/FT3-PER-MIN" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Outdoor air flow" + "@value": "Luminaire8Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1ReheatValveActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1TemperatureSetpoint", "@type": [ - "http://data.ashrae.org/standard223#Actuator" - ], - "http://data.ashrae.org/standard223#commandedByProperty": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1ReheatValvePosition" - } + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#hasAspect": [ { - "@value": "A11" + "@id": "http://data.ashrae.org/standard223#Aspect-Setpoint" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Intensity", - "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], "http://data.ashrae.org/standard223#hasValue": [ { "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "50.5" + "@value": "73.0" } ], "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://qudt.org/vocab/quantitykind/LuminousFluxRatio" + "@id": "http://qudt.org/vocab/quantitykind/Temperature" } ], "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire2Intensity" + "@value": "HVACZone1Temperature setpoint" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanElectricInCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2ReheatCoilSupplyFluidOutlet", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://data.ashrae.org/standard223#mapsTo": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUElectricityInlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2SupplyFluidOutlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Supply fan electric in CP" + "@value": "VAV2Reheat coil supply fluid outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00026", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#InletIntraCorridor4CP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025" - }, + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00035" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace4" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.hot_water_coil.airInlet" + "@value": "Inlet intra corridor4CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVSupply", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteLightingSystem", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#System" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasMember": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccSensor5" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVSupply" + "@value": "Kitchenette lighting system" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValvePositionCommand", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1HeatingCoil", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" + "http://data.ashrae.org/standard223#HeatingCoil" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" - } - ], - "http://qudt.org/schema/qudt/hasUnit": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InletReheatCoilCP" + }, { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1OuletReheatCoilCP" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1ReheatCoilSupplyFluidInlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1ReheatCoilSupplyFluidOutlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "TU1Reheat valve position command" + "@value": "VAVBox1Heating coil" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorInletConnectionPointPO", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR4InletConnectionPoint", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#Medium-Air" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@value": "Corridor inlet connection point po" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit4" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00001", - "@type": [ - "http://data.ashrae.org/standard223#AirHandlingUnit" ], - "http://data.ashrae.org/standard223#contains": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutsideAirJunction" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00007" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00011" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00016" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00021" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00030" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00041" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00047" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00051" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00056" - }, + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00061" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUChilledWaterInlet" - }, + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUChilledWaterOutlet" - }, + "@value": "BR4Inlet connection point" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1InternalWire", + "@type": [ + "http://data.ashrae.org/standard223#ElectricWire" + ], + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUElectricityInlet" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1Inlet" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUExhaustOutlet" - }, + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUHotWaterInlet" - }, + "@value": "Luminaire1Internal wire" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036", + "@type": [ + "http://data.ashrae.org/standard223#CoolingCoil" + ], + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUHotWaterOutlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00037" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUOAInlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00038" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUReturnInlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00039" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUSupplyOutlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00040" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "AHU" + "@value": "A-9.chilled_water_coil" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00009", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingZone5", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Zone" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OA-to-MinDamper" - }, + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00007" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace5" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.min_oa_damper.airInlet" + "@value": "LightingZone5" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnDuct", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUOAInlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUReturnInlet" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Medium-Air" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ratmp" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OAJunction inlet" + "@value": "Return duct" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteLight1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker4", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#ElectricBreaker" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteLightInletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR4InletConnectionPoint" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11Outlet" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR4OutletConnectionPoint" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Kitchenette light1" + "@value": "Electric breaker4" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace3", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpeningCB", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeInletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomInletConnectionPoint" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeOutletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorOutletConnectionPointB" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACSpace3" + "@value": "Opening CB" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00064", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00059", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00020" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00061" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00056" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -4731,70 +4715,92 @@ "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], + "http://data.ashrae.org/standard223#mapsTo": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUExhaustOutlet" + } + ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.return_air_damper.airOutlet" + "@value": "A-9.exhaust_air_damper.airOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp3", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace2", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223#Occupancy-Presence" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomInletConnectionPoint" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomOutletConnectionPoint" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#Presence-True" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Occupancy prop3" + "@value": "HVACSpace2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Driver1Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2FunctionBlock", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#FunctionBlock" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasInput": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1InternalWire" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp1" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeDaylightLevel" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasOutput": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2CCT" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Intensity" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2OnOff" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Driver1Outlet" + "@value": "Luminaire2 function block" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker3", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4", "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" + "http://data.ashrae.org/standard223#Luminaire" ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR3InletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4Inlet" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR3OutletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4Outlet" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4OnOffStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Electric breaker3" + "@value": "Luminaire4" } ] }, @@ -4826,175 +4832,169 @@ ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR1OutletConnectionPoint", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" - ], - "http://data.ashrae.org/standard223#hasDomain": [ - { - "@id": "http://data.ashrae.org/standard223#Domain-Occupancy" - } + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@value": "Occupancy space1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit1" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLightPath", - "@type": [ - "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Exterior ambient light path" + "@value": "BR1Outlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00042", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit1" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire3Inlet" + "@value": "Chilled water valve command" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#mxtmp", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Inlet" - }, + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Outlet" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "78" } ], - "http://data.ashrae.org/standard223#contains": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Driver1" - }, + "@id": "http://qudt.org/vocab/quantitykind/Temperature" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1" + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire1" + "@value": "Mixed Air Temperature" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1Outlet", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7Inlet" - }, + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7Outlet" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#mapsTo": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7OnOffStatus" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Outlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire7" + "@value": "Light Engine 1 Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1DamperOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Driver1Outlet", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1InternalWire" + } + ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV1Damper outlet CP" + "@value": "Driver1Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00062", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#oatmp", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + "@id": "http://qudt.org/vocab/quantitykind/Temperature" } ], "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Return air damper command" + "@value": "Outside Air Temperature" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUSupplyOutlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnFanStatus", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVSupply" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#OnOff-On" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "AHUSupply outlet" + "@value": "Return fan status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnDuct", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpeningCOO", "@type": [ "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUReturnInlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorOutletConnectionPointOO" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeInletConnectionPoint" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -5002,52 +5002,53 @@ "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], - "http://data.ashrae.org/standard223#hasProperty": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ratmp" - } - ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Return duct" + "@value": "Opening COO" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone2Temperature", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorLight1" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "73.2" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://qudt.org/vocab/quantitykind/Temperature" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire10Outlet" + "@value": "HVACZone2Temperature" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Intensity", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2DamperPosition", "@type": [ "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], "http://data.ashrae.org/standard223#hasValue": [ { "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "50.5" + "@value": "50" } ], "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://qudt.org/vocab/quantitykind/LuminousFluxRatio" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" } ], "http://qudt.org/schema/qudt/hasUnit": [ @@ -5057,35 +5058,35 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire1Intensity" + "@value": "VAVBox2Damper position" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2ReheatCoilSupplyFluidOutlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LIghtingSpace1DLInlet", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#DLightPath1" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2SupplyFluidOutlet" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV2Reheat coil supply fluid outlet" + "@value": "Lighting Space1 DL Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalBoilerInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUHotWaterOutlet", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#connectsThrough": [ { @@ -5094,207 +5095,223 @@ ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Water" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "External boiler inlet CP" + "@value": "AHUHot water outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutsideAirJunction", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TempSensor_1", "@type": [ - "http://data.ashrae.org/standard223#Junction" + "http://data.ashrae.org/standard223#TemperatureSensor" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionInlet" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionOutletToEcon" - }, + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OAJunctionOutletToMin" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00050" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CoolingCoilOutletTemperature" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Outside air junction" + "@value": "S7" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR1InletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker1", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#ElectricBreaker" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR1InletConnectionPoint" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR1OutletConnectionPoint" } ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Electric breaker1" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperOutletCP", + "@type": [ + "http://data.ashrae.org/standard223#OutletConnectionPoint" + ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "BR1Inlet connection point" + "@value": "VAV2Damper outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpeningCOO", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InletTemperature", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorOutletConnectionPointOO" - }, + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "70.2" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeInletConnectionPoint" + "@id": "http://qudt.org/vocab/quantitykind/Temperature" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Opening COO" + "@value": "VAV1 Inlet Temperature" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00020", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TempSensor_2", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#TemperatureSensor" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00014" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00019" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00023" - }, + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00064" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00046" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HeatingCoilOutletTemperature" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.mixed_air" + "@value": "S6" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingZone1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1", "@type": [ - "http://data.ashrae.org/standard223#Zone" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LIghtingSpace1DLInlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1ELInlet" } ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingZone1" + "@value": "LightingSpace1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#oasen", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1OutletTemperatureSensor", "@type": [ "http://data.ashrae.org/standard223#TemperatureSensor" ], "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00013" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1OuletReheatCoilCP" } ], "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#oatmp" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1OutletTemperature" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S3" + "@value": "S10" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingZone5", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUChilledWaterOutlet", "@type": [ - "http://data.ashrae.org/standard223#Zone" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToChiller" } ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace5" + "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingZone5" + "@value": "AHUChilled water outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MixedAirDamperActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace4", "@type": [ - "http://data.ashrae.org/standard223#Actuator" + "http://data.ashrae.org/standard223#DomainSpace" + ], + "http://data.ashrae.org/standard223#hasConnectionPoint": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorInletConnectionPointPO" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorOutletConnectionPointB" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorOutletConnectionPointOO" + } ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MixedAirDamperPosition" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A2" + "@value": "HVACSpace4" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00058", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2InternalConnection", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00055" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperOutletCP" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00056" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2InletReheatCoilCP" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -5304,413 +5321,388 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.exhaust_air_damper.airInlet" + "@value": "VAV2Internal connection" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#mxtmp", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#sap", "@type": [ "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], "http://data.ashrae.org/standard223#hasValue": [ { "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "78" + "@value": "15.6" } ], "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" + "@id": "http://qudt.org/vocab/quantitykind/Pressure" } ], "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://qudt.org/vocab/unit/PSI" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Mixed Air Temperature" + "@value": "Supply Air Pressure" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00033", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ChilledWaterTemperatureSensor_13", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00030" - } + "http://data.ashrae.org/standard223#TemperatureSensor" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00039" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUHotWaterOutlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ChilledWaterInletTemp" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.hot_water_coil.hw_valve.hotWaterOutlet" + "@value": "S13" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingZone2", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Zone" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ELightPath2" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace2" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire4Outlet" + "@value": "LightingZone2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00011", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11", "@type": [ - "http://data.ashrae.org/standard223#Equipment" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00013" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11Inlet" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00014" - } - ], - "http://data.ashrae.org/standard223#hasProperty": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00012" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "A-9.outside_air_afms" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11Outlet" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeOutletConnectionPoint", - "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnDuct" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Kitchenette" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11OnOffStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Open office outlet connection point" + "@value": "Luminaire11" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomExhaustFan", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValve", "@type": [ - "http://data.ashrae.org/standard223#Fan" + "http://data.ashrae.org/standard223#Valve" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#FanOutletConnectionPoint" - } - ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#FanInletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValveOCP" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustFanStatus" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValvePositionCommand" } ], - "http://data.ashrae.org/standard223#hasRole": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223#Role-Exhaust" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValveICP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Bathroom exhaust fan" + "@value": "TU1Reheat valve" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccSensor3", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#FlowSensor1", "@type": [ - "http://data.ashrae.org/standard223#OccupantPresenceSensor" + "http://data.ashrae.org/standard223#FlowSensor" ], "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace3" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00053" } ], "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp3" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnAirFlowRate" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "O3" + "@value": "S1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeInletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1InternalPipe", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Pipe" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1ReheatCoilSupplyFluidInlet" + } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Private office inlet connection point" + "@value": "TU1Internal pipe" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1InternalWire", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TerminalUnit1FunctionBlock", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#FunctionBlock" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasInput": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1Inlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1Temperature" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1TemperatureSetpoint" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp1" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasOutput": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1DamperPositionCommand" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValvePositionCommand" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire1Internal wire" + "@value": "Terminal Unit1 Function Block" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00007", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace5", "@type": [ - "http://data.ashrae.org/standard223#Damper" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00009" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00010" - } + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00008" + "@id": "http://data.ashrae.org/standard223#Domain-Occupancy" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.min_oa_damper" + "@value": "OccupancySpace5" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnAirFlowRate", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00013", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "129.3" - } - ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00011" + }, { - "@id": "http://qudt.org/vocab/quantitykind/VolumeFlowRate" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00015" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/FT3-PER-MIN" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Return air flow rate" + "@value": "A-9.outside_air_afms.airInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP4Phase", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" + "@id": "http://data.ashrae.org/standard223#Aspect-ElectricalPhaseIdentifier" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#ElectricalPhaseIdentifier-C" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire5Inlet" + "@value": "BreakerCP1Phase" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Kitchenette", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerPanel1", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#System" ], - "http://data.ashrae.org/standard223#encloses": [ + "http://data.ashrae.org/standard223#hasMember": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace6" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker1" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace6" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker2" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace5" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker3" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker4" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker5" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Kitchenette" + "@value": "Breaker panel1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2DamperActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00051", "@type": [ - "http://data.ashrae.org/standard223#Actuator" + "http://data.ashrae.org/standard223#Fan" ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2DamperPosition" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00052" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00053" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnFanStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A6" + "@value": "A-9.return_fan" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00030", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00056", "@type": [ - "http://data.ashrae.org/standard223#Valve" + "http://data.ashrae.org/standard223#Damper" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00032" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00058" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00033" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00059" } ], "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00031" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00057" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.hot_water_coil.hw_valve" + "@value": "A-9.exhaust_air_damper" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR5OutletConnectionPoint", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" - ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12Inlet" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12Outlet" - } - ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Kitchenette" - } + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12OnOffStatus" + "@id": "http://data.ashrae.org/standard223#Electricity-AC" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire12" + "@value": "BR5Outlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1InletFlowSensor", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperInletCP", "@type": [ - "http://data.ashrae.org/standard223#FlowSensor" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperInletCP" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#mapsTo": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InletFlow" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2Inlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S9" + "@value": "VAV2Damper inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00043", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00039", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00041" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00045" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -5718,277 +5710,257 @@ "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" } ], + "http://data.ashrae.org/standard223#mapsTo": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUChilledWaterInlet" + } + ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.chilled_water_coil.chilled_water_valve.chilledWaterInlet" + "@value": "A-9.chilled_water_coil.chilledWaterSupply" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR4InletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00047", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Fan" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit4" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00048" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00049" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanElectricInCP" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "BR4Inlet connection point" + "@value": "A-9.supply_fan" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12OnOffStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1CCT", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://qudt.org/vocab/quantitykind/ThermodynamicTemperature" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-Off" + "@id": "http://qudt.org/vocab/unit/K" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire12On off status" + "@value": "Luminaire1CCT" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP3", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#FanOutletConnectionPoint", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit3" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomFanExhaustDuct" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" - } - ], - "http://data.ashrae.org/standard223#hasProperty": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP3Phase" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main breaker out CP3" + "@value": "Fan outlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit5", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Driver1Inlet", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#hasMedium": [ { "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], + "http://data.ashrae.org/standard223#mapsTo": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Inlet" + } + ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main breaker circuit5" + "@value": "Driver1Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1DamperPositionCommand", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit3", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR3InletConnectionPoint" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "TU1 Damper Position Command" + "@value": "Main breaker circuit3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#RoomSupply2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1ReheatCoilSupplyFluidOutlet", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteInletConnectionPoint" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#mapsTo": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1BoxSupplyFluidOutlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Room supply2" + "@value": "VAV1Reheat coil supply fluid outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToBoiler", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "5" - } - ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ - { - "@id": "http://qudt.org/vocab/quantitykind/Population" - } + "http://data.ashrae.org/standard223#Connection" ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/NUM" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Occupancy prop1" + "@value": "Pipe to boiler" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ratmp", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1OuletReheatCoilCP", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#mapsTo": [ { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1Outlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Return Air Temperature" + "@value": "VAV1Oulet reheat coil CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MixedAirPressure", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccSensor4", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "15.5" - } + "http://data.ashrae.org/standard223#OccupantMotionSensor" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://qudt.org/vocab/quantitykind/Pressure" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace4" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://qudt.org/vocab/unit/PSI" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp4" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Mixed air pressure" + "@value": "O4" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR3InletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit2", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "BR3Inlet connection point" + "@value": "Main breaker circuit2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUChilledWaterInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerInletCP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#connectsThrough": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromChiller" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@value": "AHUChilled water inlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#GridConnection" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorOutletConnectionPointOO", - "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#AC-240VLL-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Corridor outlet connection point OO" + "@value": "Main breaker inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00013", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00023", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00011" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00020" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00015" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00021" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -5996,16 +5968,29 @@ "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#mxtmp" + } + ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.outside_air_afms.airInlet" + "@value": "A-9.mixed_air_filter.airInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUReturnInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00010", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00007" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00015" + } ], "http://data.ashrae.org/standard223#hasMedium": [ { @@ -6014,200 +5999,178 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "AHUReturn inlet" + "@value": "A-9.min_oa_damper.airOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomOutletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR2OutletConnectionPoint", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" + } + ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Bathroom outlet connection point" + "@value": "BR2Outlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace6", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00045", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteInletConnectionPoint" - }, + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteOutletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00040" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACSpace6" + "@value": "Chilled water connection" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#sap", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MixedAirDamperActuator", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "15.6" - } - ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ - { - "@id": "http://qudt.org/vocab/quantitykind/Pressure" - } + "http://data.ashrae.org/standard223#Actuator" ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://qudt.org/vocab/unit/PSI" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MixedAirDamperPosition" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Supply Air Pressure" + "@value": "A2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnFanStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalBoilerInletCP", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToBoiler" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-On" + "@id": "http://data.ashrae.org/standard223#Medium-Water" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Return fan status" + "@value": "External boiler inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11OnOffStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorPhysicalSpace", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#OutsidePhysicalSpace" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" - } - ], - "http://data.ashrae.org/standard223#hasValue": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAir" + }, { - "@id": "http://data.ashrae.org/standard223#OnOff-Off" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLight" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire11On off status" + "@value": "Exterior physical space" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Corridor", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#RoomSupply2" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace4" + }, { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace5" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace5" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace4" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVBox2Outlet" + "@value": "Corridor" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2OnOff", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace2", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" - ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ - { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" - } + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-Off" + "@id": "http://data.ashrae.org/standard223#Domain-Occupancy" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire2OnOff" + "@value": "Occupancy space2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1BoxSupplyFluidInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2DamperActuator", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromBoiler" - } + "http://data.ashrae.org/standard223#Actuator" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2DamperPosition" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV1Box supply fluid inlet" + "@value": "A6" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00053", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorLight1", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00051" - } + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.return_fan.airOutlet" + "@value": "Corridor light1" } ] }, @@ -6239,771 +6202,870 @@ ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnFanActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValvePositionCommand", "@type": [ - "http://data.ashrae.org/standard223#Actuator" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnFanSpeed" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A8" + "@value": "TU1Reheat valve position command" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2FunctionBlock", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00008", "@type": [ - "http://data.ashrae.org/standard223#FunctionBlock" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#hasInput": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp1" - }, + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeDaylightLevel" + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], - "http://data.ashrae.org/standard223#hasOutput": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2CCT" - }, + "@value": "Minimum outdoor air damper command" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteLight1", + "@type": [ + "http://data.ashrae.org/standard223#Connection" + ], + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Intensity" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteLightInletCP" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11Outlet" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire2 function block" + "@value": "Kitchenette light1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1ReheatCoilSupplyFluidInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HeatingCoilOutletTemperature", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "80" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ + { + "@id": "http://qudt.org/vocab/quantitykind/Temperature" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV1Reheat coil supply fluid inlet" + "@value": "Heating coil outlet temperature" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2HeatingCoil", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00014", "@type": [ - "http://data.ashrae.org/standard223#HeatingCoil" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2InletReheatCoilCP" - }, + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2OuletReheatCoilCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00011" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2ReheatCoilSupplyFluidInlet" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00020" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2ReheatCoilSupplyFluidOutlet" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVBox2Heating coil" + "@value": "A-9.outside_air_afms.airOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MixedAirPressure", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" + ], + "http://data.ashrae.org/standard223#hasValue": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "15.5" + } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5Inlet" - }, + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5Outlet" + "@id": "http://qudt.org/vocab/quantitykind/Pressure" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5OnOffStatus" + "@id": "http://qudt.org/vocab/unit/PSI" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire5" + "@value": "Mixed air pressure" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomFanExhaustDuct", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Duct" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomExhaustToExteriorAir" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire2Inlet" + "@value": "Bathroom fan exhaust duct" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromChiller", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00030", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#Valve" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00032" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00033" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00031" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Pipe from chiller" + "@value": "A-9.hot_water_coil.hw_valve" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MixedAirDamperPosition", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "50" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire6Inlet" + "@value": "Mixed air damper position" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR4OutletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnAirFlowRate", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Electricity-AC" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "129.3" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ + { + "@id": "http://qudt.org/vocab/quantitykind/VolumeFlowRate" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/FT3-PER-MIN" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "BR4Outlet connection point" + "@value": "Return air flow rate" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingZone4", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5OnOffStatus", "@type": [ - "http://data.ashrae.org/standard223#Zone" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace4" + "@id": "http://data.ashrae.org/standard223#OnOff-Off" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingZone4" + "@value": "Luminaire5On off status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#HeatingCoil" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeLight1" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00026" + }, { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00027" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00028" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00029" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire7Outlet" + "@value": "A-9.hot_water_coil" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00012", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" + "@id": "http://qudt.org/vocab/quantitykind/VolumeFlowRate" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://qudt.org/vocab/unit/FT3-PER-MIN" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire9Inlet" + "@value": "Outdoor air flow" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#DLightPath1", "@type": [ - "http://data.ashrae.org/standard223#CoolingCoil" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00037" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00038" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00039" - }, + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00040" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.chilled_water_coil" + "@value": "DLight Path1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2MotorizedDamper", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#Damper" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperInletCP" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperOutletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main breaker circuit2" + "@value": "VAVBox2Motorized damper" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00029", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3Inlet", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit1" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.hot_water_coil.hotWaterOutlet" + "@value": "Luminaire3Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#rasen", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6Inlet", "@type": [ - "http://data.ashrae.org/standard223#TemperatureSensor" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00052" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ratmp" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S2" + "@value": "Luminaire6Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorLight1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5Inlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5Outlet" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5OnOffStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Corridor light1" + "@value": "Luminaire5" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomFanExhaustDuct", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1", "@type": [ - "http://data.ashrae.org/standard223#Duct" + "http://data.ashrae.org/standard223#Zone" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomExhaustToExteriorAir" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace1" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace2" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace3" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace4" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Bathroom fan exhaust duct" + "@value": "HVACZone1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00062", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace2ELInlet" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingSpace2" + "@value": "Return air damper command" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP1Phase", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00020", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00014" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00019" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00023" + }, { - "@id": "http://data.ashrae.org/standard223#Aspect-ElectricalPhaseIdentifier" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00064" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#ElectricalPhaseIdentifier-A" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "BreakerCP1Phase" + "@value": "A-9.mixed_air" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace6", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnSystem", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#System" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#hasMember": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteLightInletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00051" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00056" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasRole": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223#Role-Return" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingSpace6" + "@value": "Return System" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalChiller", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2", "@type": [ - "http://data.ashrae.org/standard223#Chiller" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalChillerInletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2CCT" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalChillerOutletCP" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Intensity" + }, { - "@value": "External chiller" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2OnOff" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace2", - "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomInletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Inlet" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomOutletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Outlet" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2OnOffStatus" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACSpace2" + "@value": "Luminaire2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustAirDamperActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutsideAirDamperActuator", "@type": [ "http://data.ashrae.org/standard223#Actuator" ], "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustAirDamperPosition" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OutsideAirDamperPosition" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A1" + "@value": "A3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2DamperInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire11Inlet", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2Inlet" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV2Damper inlet CP" + "@value": "Luminaire11Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1ELInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorOutletConnectionPointOO", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Lighting Space1 EL Inlet" + "@value": "Corridor outlet connection point OO" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00007", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Damper" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeLight1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00009" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00010" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00008" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire8Outlet" + "@value": "A-9.min_oa_damper" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00006", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#rasen", "@type": [ - "http://data.ashrae.org/standard223#Connection" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFromExteriorAir" - } + "http://data.ashrae.org/standard223#TemperatureSensor" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00052" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#oatmp" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ratmp" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.outside_air" + "@value": "S2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR5InletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#sasen", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#PressureSensor" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit5" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00049" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#sap" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "BR5Inlet connection point" + "@value": "S8" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00037", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace1", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#DomainSpace" + ], + "http://data.ashrae.org/standard223#hasDomain": [ + { + "@id": "http://data.ashrae.org/standard223#Domain-Occupancy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Occupancy space1" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00016", + "@type": [ + "http://data.ashrae.org/standard223#Damper" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00018" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00046" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00019" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00017" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.chilled_water_coil.airInlet" + "@value": "A-9.economizer_oa_damper" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1ELInlet", "@type": [ - "http://data.ashrae.org/standard223#Actuator" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanSpeed" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A9" + "@value": "Lighting Space1 EL Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccSensor1", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#OccupantCounter" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4Inlet" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace1" + } + ], + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4Outlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOffice" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4OnOffStatus" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire4" + "@value": "O1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00041", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire3OnOffStatus", "@type": [ - "http://data.ashrae.org/standard223#Valve" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00043" - }, + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00044" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00042" + "@id": "http://data.ashrae.org/standard223#OnOff-Off" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.chilled_water_coil.chilled_water_valve" + "@value": "Luminaire3On off status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ChilledWaterTemperatureSensor_13", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00019", "@type": [ - "http://data.ashrae.org/standard223#TemperatureSensor" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00039" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00016" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00020" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ChilledWaterInletTemp" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S13" + "@value": "A-9.economizer_oa_damper.airOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace4", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00021", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#Equipment", + "http://data.ashrae.org/standard223#Filter" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorInletConnectionPointPO" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00023" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorOutletConnectionPointB" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00024" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorOutletConnectionPointOO" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00022" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "A-9.mixed_air_filter" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1ReheatValveActuator", + "@type": [ + "http://data.ashrae.org/standard223#Actuator" + ], + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1ReheatValvePosition" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACSpace4" + "@value": "A11" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustAirDamperPosition", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker2", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "50" - } + "http://data.ashrae.org/standard223#ElectricBreaker" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" - } - ], - "http://qudt.org/schema/qudt/hasUnit": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR2InletConnectionPoint" + }, { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR2OutletConnectionPoint" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Exhaust air damper position" + "@value": "Electric breaker2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLightCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4Outlet", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLightPath" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ELightPath2" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -7013,550 +7075,516 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Exterior ambient light CP" + "@value": "Luminaire4Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00059", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2OutletTemperatureProperty", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00056" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "70" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://qudt.org/vocab/quantitykind/Temperature" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUExhaustOutlet" + "@id": "http://qudt.org/vocab/unit/DEG_F" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.exhaust_air_damper.airOutlet" + "@value": "VAV2Outlet temperature property" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR1OutletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1MotorizedDamper", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Damper" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1DamperPositionCommand" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1DamperInletCP" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1DamperOutletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "BR1Outlet connection point" + "@value": "VAVBox1Motorized damper " } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Corridor", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://www.w3.org/2002/07/owl#Ontology" ], - "http://data.ashrae.org/standard223#encloses": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace4" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace5" - }, + "http://www.w3.org/2000/01/rdf-schema#comment": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace5" - }, + "@value": "This graph is a sample population of the so-called Pritoni Office Building (suggested by Marco Pritoni) and is used for testing and demonstration." + } + ], + "http://www.w3.org/2002/07/owl#imports": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace4" + "@id": "http://data.ashrae.org/standard223/1.0/model/all" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://www.w3.org/2002/07/owl#versionInfo": [ { - "@value": "Corridor" + "@value": "Created with TopBraid Composer" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InternalConnection", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12OnOffStatus", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1DamperOutletCP" - }, + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InletReheatCoilCP" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#OnOff-Off" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV1Internal connection" + "@value": "Luminaire12On off status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00032", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00024", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00030" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00021" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00035" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.hot_water_coil.hw_valve.hotWaterInlet" + "@value": "A-9.mixed_air_filter.airOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#FanInletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1ReheatCoilSupplyFluidInlet", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomExhaustDuct" - } - ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Fan inlet connection point" + "@value": "VAV1Reheat coil supply fluid inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1TemperatureSensor", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR1InletConnectionPoint", "@type": [ - "http://data.ashrae.org/standard223#TemperatureSensor" - ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace1" - } + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOffice" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit1" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1Temperature" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "TH1" + "@value": "BR1Inlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFromExteriorAir", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalBoilerOutletCP", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], + "http://data.ashrae.org/standard223#connectsThrough": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromBoiler" + } + ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Supply from exterior air" + "@value": "External boiler outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MixedAirPressureSensor", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace2", "@type": [ - "http://data.ashrae.org/standard223#PressureSensor" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00024" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace2ELInlet" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MixedAirPressure" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S5" + "@value": "LightingSpace2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerPanel1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalChillerInletCP", "@type": [ - "http://data.ashrae.org/standard223#System" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasMember": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker1" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker2" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker3" - }, + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker4" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToChiller" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker5" + "@id": "http://data.ashrae.org/standard223#Medium-Water" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Breaker panel1" + "@value": "External chiller inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR2OutletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00035", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00024" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00026" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "BR2Outlet connection point" + "@value": "Mixed air connection to filter" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUReturnInlet", "@type": [ - "http://data.ashrae.org/standard223#Zone" - ], - "http://data.ashrae.org/standard223#hasDomain": [ - { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" - } + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace1" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace2" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace3" - }, + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace4" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACZone1" + "@value": "AHUReturn inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2OnOffStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00027", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00046" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-Off" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire2On off status" + "@value": "A-9.hot_water_coil.airOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit3", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire5Outlet", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR3InletConnectionPoint" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLight1" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-240VLL-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main breaker circuit3" + "@value": "Luminaire5Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1OnOff", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12Outlet", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteLight1" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-Off" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire1OnOff" + "@value": "Luminaire12Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeLightInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2SupplyFluidOutlet", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeLight1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToBoiler" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Private office light inlet CP" + "@value": "VAV2Supply fluid outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalChillerInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire12Inlet", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToChiller" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit2" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Water" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "External chiller inlet CP" + "@value": "Luminaire12Inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValve", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR4OutletConnectionPoint", "@type": [ - "http://data.ashrae.org/standard223#Valve" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValveOCP" + "@id": "http://data.ashrae.org/standard223#Electricity-AC" } ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValvePositionCommand" + "@value": "BR4Outlet connection point" } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeInletConnectionPoint", + "@type": [ + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TU1ReheatValveICP" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "TU1Reheat valve" + "@value": "Open office inlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreaker", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOffice", "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerInletCP" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP1" - }, + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP2" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace1" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP3" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP4" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace2" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP5" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main breaker" + "@value": "Open office" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1TemperatureSetpoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00043", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" - ], - "http://data.ashrae.org/standard223#hasAspect": [ - { - "@id": "http://data.ashrae.org/standard223#Aspect-Setpoint" - } + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "73.0" - } - ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00041" + }, { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00045" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACZone1Temperature setpoint" + "@value": "A-9.chilled_water_coil.chilled_water_valve.chilledWaterInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2OuletReheatCoilCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccSensor3", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#OccupantPresenceSensor" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace3" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2Outlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp3" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV2Oulet reheat coil CP" + "@value": "O3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#TempSensor_2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorOutletConnectionPointB", "@type": [ - "http://data.ashrae.org/standard223#TemperatureSensor" - ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00046" - } + "http://data.ashrae.org/standard223#BidirectionalConnectionPoint" ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HeatingCoilOutletTemperature" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "S6" + "@value": "Corridor outlet connection point b" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOffice", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomExhaustDuct", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#encloses": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace3" - }, + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace4" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomOutletConnectionPoint" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace3" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Private office" + "@value": "Bathroom exhaust duct" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8OnOffStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4OnOffStatus", "@type": [ "http://data.ashrae.org/standard223#EnumerableProperty" ], @@ -7572,18 +7600,21 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire8On off status" + "@value": "Luminaire4On off status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLightInletCP", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorLight1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLight1" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace3" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -7593,60 +7624,33 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire9Outlet" + "@value": "Bathroom light inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire4Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanStatus", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricCircuit1" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" - } + "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@value": "Luminaire4Inlet" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HeatingCoilOutletTemperature", - "@type": [ - "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], "http://data.ashrae.org/standard223#hasValue": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "80" - } - ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ - { - "@id": "http://qudt.org/vocab/quantitykind/Temperature" - } - ], - "http://qudt.org/schema/qudt/hasUnit": [ - { - "@id": "http://qudt.org/vocab/unit/DEG_F" + "@id": "http://data.ashrae.org/standard223#OnOff-On" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Heating coil outlet temperature" + "@value": "Supply fan status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Outlet", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], @@ -7662,116 +7666,106 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire2Outlet" + "@value": "Luminaire1Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker4", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2InletFlow", "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" - ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR4InletConnectionPoint" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR4OutletConnectionPoint" - } + "http://data.ashrae.org/standard223#QuantifiableObservableProperty" ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@value": "Electric breaker4" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "250" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace4", - "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeLightInletCP" + "@id": "http://qudt.org/vocab/quantitykind/VolumeFlowRate" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://qudt.org/vocab/unit/FT3-PER-MIN" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingSpace4" + "@value": "VAV2Inlet flow" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR5OutletConnectionPoint", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnFanActuator", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Actuator" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223#Electricity-AC" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnFanSpeed" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "BR5Outlet connection point" + "@value": "A8" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace5", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeOutletConnectionPoint", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorLightInletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnDuct" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingSpace5" + "@value": "Open office outlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteLightInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire2Intensity", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "50.5" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ + { + "@id": "http://qudt.org/vocab/quantitykind/LuminousFluxRatio" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Kitchenette light inlet CP" + "@value": "Luminaire2Intensity" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00014", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#KitchenetteOutletConnectionPoint", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00011" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00020" - } - ], "http://data.ashrae.org/standard223#hasMedium": [ { "@id": "http://data.ashrae.org/standard223#Medium-Air" @@ -7779,145 +7773,172 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.outside_air_afms.airOutlet" + "@value": "Kitchenette outlet connection point" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingZone6", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1Thermostat", "@type": [ - "http://data.ashrae.org/standard223#Zone" + "http://data.ashrae.org/standard223#Thermostat" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#contains": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1TemperatureSensor" } ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace6" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1TemperatureSetpoint" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingZone6" + "@value": "HVACZone1Thermostat" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00031", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#SingleDuctTerminal" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#contains": [ { - "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2HeatingCoil" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2InletFlowSensor" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2MotorizedDamper" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2OutletTemperatureSensor" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://qudt.org/vocab/unit/PERCENT" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2SupplyFluidInlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2SupplyFluidOutlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2Inlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2Outlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Hot water valve command" + "@value": "VAVBox2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorLightInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2Outlet", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorLight1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#RoomSupply2" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Corridor light inlet CP" + "@value": "VAVBox2Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#AHUExhaustOutlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP2", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00060" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit2" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP2Phase" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "AHUExhaust outlet" + "@value": "Main breaker out CP2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1TemperatureSensor", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#TemperatureSensor" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8Inlet" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace1" + } + ], + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8Outlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOffice" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8OnOffStatus" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone1Temperature" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire8" + "@value": "TH1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOffice", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#encloses": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Inlet" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Outlet" + } + ], + "http://data.ashrae.org/standard223#contains": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace2" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Driver1" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancySpace1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightEngine1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Open office" + "@value": "Luminaire1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustToExteriorAir", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2InletReheatCoilCP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], @@ -7928,346 +7949,331 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Exhaust to exterior air" + "@value": "VAV2Inlet reheat coil CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLight", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1DamperActuator", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" - ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLightCP" - } + "http://data.ashrae.org/standard223#Actuator" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1DamperPosition" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Exterior ambient light" + "@value": "A10" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox1Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLight1", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#RoomSupply1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLightInletCP" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVBox1Outlet" + "@value": "Bathroom light1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromBoiler", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP1", "@type": [ - "http://data.ashrae.org/standard223#Connection" - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" - } + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@value": "Pipe from boiler" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit1" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00021", - "@type": [ - "http://data.ashrae.org/standard223#Equipment", - "http://data.ashrae.org/standard223#Filter" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00023" - }, + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00024" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00022" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP1Phase" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "A-9.mixed_air_filter" + "@value": "Main breaker out CP1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone2Thermostat", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAir", "@type": [ - "http://data.ashrae.org/standard223#TemperatureSensor" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACSpace5" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomExhaustToExteriorAir" } ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Corridor" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustToExteriorAir" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFromExteriorAir" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#HVACZone2Temperature" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "TH2" + "@value": "Exterior air" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalBoiler", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OccupancyProp4", "@type": [ - "http://data.ashrae.org/standard223#Boiler" + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalBoilerInletCP" - }, + "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + } + ], + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalBoilerOutletCP" + "@id": "http://data.ashrae.org/standard223#Motion-True" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "External boiler" + "@value": "Occupancy prop4" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00046", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00029", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00027" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00037" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00025" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Water-HotWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Connection from heating coil" + "@value": "A-9.hot_water_coil.hotWaterOutlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ElectricBreaker2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorInletConnectionPointPO", "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR2InletConnectionPoint" - }, + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BR2OutletConnectionPoint" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Electric breaker2" + "@value": "Corridor inlet connection point po" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLightInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP5Phase", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLight1" - }, + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace3" + "@id": "http://data.ashrae.org/standard223#Aspect-ElectricalPhaseIdentifier" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#ElectricalPhaseIdentifier-A" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Bathroom light inlet CP" + "@value": "BreakerCP1Phase" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeInletConnectionPoint", "@type": [ - "http://data.ashrae.org/standard223#SingleDuctTerminal" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#contains": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2HeatingCoil" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2InletFlowSensor" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2MotorizedDamper" - }, + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2OutletTemperatureSensor" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2SupplyFluidInlet" - }, + "@value": "Private office inlet connection point" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00050", + "@type": [ + "http://data.ashrae.org/standard223#Connection" + ], + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2SupplyFluidOutlet" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00038" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2Inlet" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00048" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAVBox2Outlet" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAVBox2" + "@value": "Connection from Cooling Coil" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OfficeWindowExteriorLightInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00048", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExteriorAmbientLightPath" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00047" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00050" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Office window exterior light inlet CP" + "@value": "A-9.supply_fan.airInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1BoxSupplyFluidOutlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#DaylightSensor1", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#IlluminanceSensor" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToBoiler" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#LightingSpace1" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOffice" + } + ], + "http://data.ashrae.org/standard223#observes": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeDaylightLevel" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV1Box supply fluid outlet" + "@value": "D1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorOutletConnectionPointB", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromChiller", "@type": [ - "http://data.ashrae.org/standard223#BidirectionalConnectionPoint" + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Air" + "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Corridor outlet connection point b" + "@value": "Pipe from chiller" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExternalChillerOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire8OnOffStatus", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeFromChiller" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Water-ChilledWater" + "@id": "http://data.ashrae.org/standard223#OnOff-Off" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "External chiller outlet CP" + "@value": "Luminaire8On off status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV2SupplyFluidOutlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MixedAirPressureSensor", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#PressureSensor" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PipeToBoiler" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00024" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MixedAirPressure" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "VAV2Supply fluid outlet" + "@value": "S5" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire10OnOffStatus", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6OnOffStatus", "@type": [ "http://data.ashrae.org/standard223#EnumerableProperty" ], @@ -8283,84 +8289,63 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire10On off status" - } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#OpenOfficeInletConnectionPoint", - "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#Medium-Air" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "Open office inlet connection point" + "@value": "Luminaire6On off status" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00034", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire7Outlet", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00029" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00032" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#PrivateOfficeLight1" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Water-HotWater" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Hot water connection" + "@value": "Luminaire7Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerOutCP5", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire9Outlet", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#MainBreakerCircuit5" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#CorridorLight1" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" - } - ], - "http://data.ashrae.org/standard223#hasProperty": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BreakerCP5Phase" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Main breaker out CP5" + "@value": "Luminaire9Outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00060", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InternalConnection", "@type": [ "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ExhaustToExteriorAir" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1DamperOutletCP" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#VAV1InletReheatCoilCP" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -8370,35 +8355,44 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Exhaust air connection" + "@value": "VAV1Internal connection" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire6Outlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00037", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#BathroomLight1" + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00036" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00046" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Medium-Air" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire6Outlet" + "@value": "A-9.chilled_water_coil.airInlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#i00057", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#ReturnFanSpeed", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" + ], + "http://data.ashrae.org/standard223#hasValue": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "70" + } ], "http://qudt.org/schema/qudt/hasQuantityKind": [ { @@ -8412,28 +8406,34 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Exhaust air damper command" + "@value": "Return fan speed" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Driver1Inlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#SupplyFanSpeed", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableActuatableProperty" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "80" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/pd-sr-mp-pritoni#Luminaire1Inlet" + "@id": "http://qudt.org/vocab/quantitykind/Dimensionless" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/PERCENT" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Driver1Inlet" + "@value": "Supply fan speed" } ] } diff --git a/bdg1-2.jsonld b/bdg1-2.jsonld index 11e9c4f4..599030f4 100644 --- a/bdg1-2.jsonld +++ b/bdg1-2.jsonld @@ -1,433 +1,366 @@ [ { - "@id": "http://speckle.systems/a4d3df27db1cc0ca04e2d34b221b87d5", + "@id": "urn:anon:uuid:eab6f5b3-bd72-4cd4-b28c-e85792758498", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "141.777800000000016384" + "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" + }, + { + "@id": "urn:anon:uuid:c9850b89-d89f-4e0d-ade3-9d01530cea6e" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://qudt.org/vocab/quantitykind/Area" + "@id": "urn:anon:uuid:c9850b89-d89f-4e0d-ade3-9d01530cea6e" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/M2" + "@id": "http://data.ashrae.org/standard223#Light-Visible" + } + ], + "http://data.ashrae.org/standard223#isConnectionPointOf": [ + { + "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "QuantifiableProperty" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6", + "@id": "urn:anon:uuid:af46adec-c8fc-474f-b386-78c1ffda5447", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/9dd35c17e7f147c29adbfcf900c4b590" - }, - { - "@id": "urn:anon:uuid:0ce839e5-dfc6-4df3-acfc-caf7b5e2e9b1" - } - ], - "http://data.ashrae.org/standard223#connectsAt": [ - { - "@id": "http://speckle.systems/9dd35c17e7f147c29adbfcf900c4b590" + "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e" }, { - "@id": "urn:anon:uuid:0ce839e5-dfc6-4df3-acfc-caf7b5e2e9b1" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ElectricWire" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc", + "@id": "http://speckle.systems/7dd75f093c0714b7e12fd42700a05617", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:10debc0f-cb41-46df-b77d-d5098e0064c2" - }, - { - "@id": "urn:anon:uuid:4ccc8bf6-f274-47dd-9d93-1ec17000a9b5" - } - ], - "http://data.ashrae.org/standard223#connectsAt": [ - { - "@id": "urn:anon:uuid:10debc0f-cb41-46df-b77d-d5098e0064c2" + "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" }, { - "@id": "urn:anon:uuid:4ccc8bf6-f274-47dd-9d93-1ec17000a9b5" + "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c" } ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" + "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Connection" + "@value": "InletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/44531f11cb0626bac97aa43d6732fdf2", + "@id": "urn:anon:uuid:921cc707-511d-4495-b866-64b97d5fd653", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/e2684126ff114d569384c6d3a21f953b" + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" }, { - "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c" + "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c" + "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/e2684126ff114d569384c6d3a21f953b" + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "InletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5", + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#Junction" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/3a2dac267747a410f1146caf20e19624" + "@id": "urn:anon:uuid:0ce839e5-dfc6-4df3-acfc-caf7b5e2e9b1" }, { - "@id": "urn:anon:uuid:54b8a5c6-657c-401c-8be7-83d02784f9bf" - } - ], - "http://data.ashrae.org/standard223#connectsAt": [ + "@id": "urn:anon:uuid:3bd1d510-0e5d-4708-8d7e-6f285f169064" + }, { - "@id": "http://speckle.systems/3a2dac267747a410f1146caf20e19624" + "@id": "urn:anon:uuid:51c17882-0889-4a0c-a469-338b2b209674" }, { "@id": "urn:anon:uuid:54b8a5c6-657c-401c-8be7-83d02784f9bf" - } - ], - "http://data.ashrae.org/standard223#connectsFrom": [ - { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" - } - ], - "http://data.ashrae.org/standard223#connectsTo": [ + }, { - "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "@id": "urn:anon:uuid:61be919a-5837-4151-81cb-866625d93f6d" + }, { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "urn:anon:uuid:af46adec-c8fc-474f-b386-78c1ffda5447" + }, { - "@value": "ElectricWire" - } - ] - }, - { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6", - "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" - ], - "http://data.ashrae.org/standard223#cnx": [ + "@id": "urn:anon:uuid:b8a8780d-28f7-4600-a4db-5d940a48760a" + }, { - "@id": "urn:anon:uuid:1f9f708f-2761-4486-a68c-69651fd33594" + "@id": "urn:anon:uuid:ee9555ed-6e6f-4823-8b2c-34b57260dcff" }, { - "@id": "urn:anon:uuid:ad61a6a6-1c6b-42de-b13e-49e3ae88486e" + "@id": "urn:anon:uuid:f063ee43-dae3-43df-b700-29e912870a95" } ], "http://data.ashrae.org/standard223#connected": [ + { + "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" + }, + { + "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + }, { "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" }, + { + "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" + }, + { + "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" + }, { "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" + }, + { + "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" + }, + { + "@id": "http://speckle.systems/e2684126ff114d569384c6d3a21f953b" + }, + { + "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" } ], "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" - }, - { - "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" + "@id": "http://speckle.systems/e2684126ff114d569384c6d3a21f953b" } ], "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a" + "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c" }, { - "@id": "urn:anon:uuid:7a52a1a8-5e51-4eef-88be-2ae19ab7dcca" - } - ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e" + }, { - "@id": "urn:anon:uuid:1f9f708f-2761-4486-a68c-69651fd33594" + "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c" }, { - "@id": "urn:anon:uuid:ad61a6a6-1c6b-42de-b13e-49e3ae88486e" - } - ], - "http://data.ashrae.org/standard223#hasDomain": [ + "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba" + }, { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" - } - ], - "http://data.ashrae.org/standard223#hasProperty": [ + "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e" + }, { - "@id": "http://speckle.systems/ea132dc6f9ffb48fcaa86607ff4b65b3" + "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae" }, { - "@id": "urn:anon:uuid:2b1e0b83-5990-40f2-9cdd-76b295b90b23" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f" + }, { - "@value": "LightingSpace4 4" + "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5" + }, + { + "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6" } - ] - }, - { - "@id": "http://speckle.systems/cfde270f1c3574c36afefa90a75d3a74", - "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" + "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" }, { - "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab" - } - ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + }, { - "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" + }, { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" - } - ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" + }, { - "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" + "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" + }, + { + "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" + }, + { + "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" + }, + { + "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@value": "InletConnectionPoint" - } - ] - }, - { - "@id": "http://speckle.systems/1c5c543a6f7f2fe54028685db9cfc6bf", - "@type": [ - "http://data.ashrae.org/standard223#OccupantMotionSensor" - ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ - { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" - } - ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ - { - "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1" - } - ], - "http://data.ashrae.org/standard223#observes": [ - { - "@id": "urn:anon:uuid:4e3eb90b-de00-4ff5-abf5-aaad7e35b878" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "urn:anon:uuid:0ce839e5-dfc6-4df3-acfc-caf7b5e2e9b1" + }, { - "@value": "Ceiling Occupancy Sensor - Dual Relay - Regular Voltage" - } - ] - }, - { - "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d", - "@type": [ - "http://data.ashrae.org/standard223#Luminaire" - ], - "http://data.ashrae.org/standard223#cnx": [ + "@id": "urn:anon:uuid:3bd1d510-0e5d-4708-8d7e-6f285f169064" + }, { - "@id": "http://speckle.systems/7e89fafcc8db5a9bf685f49ee58196e0" + "@id": "urn:anon:uuid:51c17882-0889-4a0c-a469-338b2b209674" }, { - "@id": "urn:anon:uuid:1005667e-b35b-4fdd-bd93-5ad769b52b76" - } - ], - "http://data.ashrae.org/standard223#connected": [ + "@id": "urn:anon:uuid:54b8a5c6-657c-401c-8be7-83d02784f9bf" + }, { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + "@id": "urn:anon:uuid:61be919a-5837-4151-81cb-866625d93f6d" }, { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" - } - ], - "http://data.ashrae.org/standard223#connectedFrom": [ + "@id": "urn:anon:uuid:af46adec-c8fc-474f-b386-78c1ffda5447" + }, { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" - } - ], - "http://data.ashrae.org/standard223#connectedThrough": [ + "@id": "urn:anon:uuid:b8a8780d-28f7-4600-a4db-5d940a48760a" + }, { - "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277" + "@id": "urn:anon:uuid:ee9555ed-6e6f-4823-8b2c-34b57260dcff" }, { - "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963" + "@id": "urn:anon:uuid:f063ee43-dae3-43df-b700-29e912870a95" } ], - "http://data.ashrae.org/standard223#connectedTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://speckle.systems/7e89fafcc8db5a9bf685f49ee58196e0" - }, + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:1005667e-b35b-4fdd-bd93-5ad769b52b76" + "@value": "Junction" } + ] + }, + { + "@id": "http://speckle.systems/c99202312957ab2cda5c607438d19879", + "@type": [ + "http://data.ashrae.org/standard223#OccupantMotionSensor" ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" + "@id": "http://speckle.systems/57b9c0e1669bb1909e70616872f4e9a6" } ], - "http://speckle.systems/cf61289f76bfa19d7beac12ddb186eb7": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "urn:anon:uuid:811eabab-593e-4752-9373-7fa96e31f22c" + "@id": "urn:anon:uuid:9b600188-988b-4ff0-97af-3f1f0c7890c7" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire3" + "@value": "Ceiling Occupancy Sensor - Dual Relay - Regular Voltage" } ] }, { - "@id": "urn:anon:uuid:811eabab-593e-4752-9373-7fa96e31f22c", + "@id": "http://speckle.systems/9f3779e39d4c089f32113f64c1c217b7", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963" - }, - { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" - } - ], - "http://data.ashrae.org/standard223#connectsThrough": [ - { - "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963" - } + "http://data.ashrae.org/standard223#Zone" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "LightingZone5" } ] }, { - "@id": "urn:anon:uuid:54b8a5c6-657c-401c-8be7-83d02784f9bf", + "@id": "urn:anon:uuid:61be919a-5837-4151-81cb-866625d93f6d", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba" }, { - "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5" + "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -447,14 +380,14 @@ ] }, { - "@id": "http://speckle.systems/fd1eba64d7bac4ac23691283c56da903", + "@id": "http://speckle.systems/1b89da9c68b935d6375d5fe0e90febab", "@type": [ "http://data.ashrae.org/standard223#QuantifiableProperty" ], "http://data.ashrae.org/standard223#hasValue": [ { "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "27.10188" + "@value": "36.55556" } ], "http://qudt.org/schema/qudt/hasQuantityKind": [ @@ -474,132 +407,147 @@ ] }, { - "@id": "http://speckle.systems/eafe74d79e1ab2386bcd74cfe7380ef0", + "@id": "http://speckle.systems/9dd35c17e7f147c29adbfcf900c4b590", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "6.189342" + "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" + }, + { + "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://qudt.org/vocab/quantitykind/Area" + "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/M2" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + } + ], + "http://data.ashrae.org/standard223#isConnectionPointOf": [ + { + "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "QuantifiableProperty" + "@value": "InletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a", + "@id": "http://speckle.systems/44531f11cb0626bac97aa43d6732fdf2", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:1f9f708f-2761-4486-a68c-69651fd33594" + "@id": "http://speckle.systems/e2684126ff114d569384c6d3a21f953b" }, { - "@id": "urn:anon:uuid:e3aa97c1-1726-4551-b4f3-ef37ca81e8dc" + "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c" } ], - "http://data.ashrae.org/standard223#connectsAt": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:1f9f708f-2761-4486-a68c-69651fd33594" - }, + "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "urn:anon:uuid:e3aa97c1-1726-4551-b4f3-ef37ca81e8dc" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" + "@id": "http://speckle.systems/e2684126ff114d569384c6d3a21f953b" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + "@value": "OutletConnectionPoint" } + ] + }, + { + "@id": "http://srr/test", + "@type": [ + "http://www.w3.org/2002/07/owl#Ontology" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://www.w3.org/2002/07/owl#imports": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/model/all" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://www.w3.org/2002/07/owl#versionInfo": [ { - "@value": "Connection" + "@value": "Created with TopBraid Composer" } ] }, { - "@id": "urn:anon:uuid:7a52a1a8-5e51-4eef-88be-2ae19ab7dcca", + "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:3c8b46af-5157-4ab0-aa2f-f18654fca413" + "@id": "http://speckle.systems/cfde270f1c3574c36afefa90a75d3a74" }, { - "@id": "urn:anon:uuid:ad61a6a6-1c6b-42de-b13e-49e3ae88486e" + "@id": "urn:anon:uuid:59a98328-8ca4-46c7-9664-3656aa6760c8" } ], "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:3c8b46af-5157-4ab0-aa2f-f18654fca413" + "@id": "http://speckle.systems/cfde270f1c3574c36afefa90a75d3a74" }, { - "@id": "urn:anon:uuid:ad61a6a6-1c6b-42de-b13e-49e3ae88486e" + "@id": "urn:anon:uuid:59a98328-8ca4-46c7-9664-3656aa6760c8" } ], "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Connection" + "@value": "ElectricWire" } ] }, { - "@id": "http://speckle.systems/76fcb9d9e1b00b636de89b477b0b25e8", + "@id": "http://speckle.systems/2ec6c777b3ca86655677fc5ef4dd0242", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" + "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" }, { - "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba" + "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba" + "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -609,7 +557,7 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" + "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ @@ -619,200 +567,133 @@ ] }, { - "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff", + "@id": "http://speckle.systems/e2684126ff114d569384c6d3a21f953b", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#ElectricBreaker" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/76fcb9d9e1b00b636de89b477b0b25e8" - }, - { - "@id": "urn:anon:uuid:e3aa97c1-1726-4551-b4f3-ef37ca81e8dc" + "@id": "http://speckle.systems/44531f11cb0626bac97aa43d6732fdf2" } ], "http://data.ashrae.org/standard223#connected": [ - { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" - }, - { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" - } - ], - "http://data.ashrae.org/standard223#connectedFrom": [ { "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a" - }, - { - "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba" + "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c" } ], "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/76fcb9d9e1b00b636de89b477b0b25e8" - }, - { - "@id": "urn:anon:uuid:e3aa97c1-1726-4551-b4f3-ef37ca81e8dc" - } - ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ - { - "@id": "http://speckle.systems/6d17784757d33ab12665eb12c2010ba3" - } - ], - "http://data.ashrae.org/standard223#hasProperty": [ - { - "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" - } - ], - "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ - { - "@id": "urn:anon:uuid:61be919a-5837-4151-81cb-866625d93f6d" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "Luminaire7" - } - ] - }, - { - "@id": "http://speckle.systems/ad7fb21709463c2b8d619900e7323362", - "@type": [ - "http://data.ashrae.org/standard223#Zone" - ], - "http://data.ashrae.org/standard223#hasDomain": [ - { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" - } - ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ - { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + "@id": "http://speckle.systems/44531f11cb0626bac97aa43d6732fdf2" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingZone4" + "@value": "Panel 2" } ] }, { - "@id": "http://speckle.systems/ba96efc7e5394be487f7fa443496ad99", + "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0", "@type": [ - "http://data.ashrae.org/standard223#OccupantMotionSensor" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" - } - ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "@id": "urn:anon:uuid:1389344b-31be-4ef0-9d50-a6fc2a4b1607" + }, { - "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1" + "@id": "urn:anon:uuid:b766ec0c-b7f9-429a-8692-a86839752b25" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:1d52b196-f0fa-4c4f-a562-6dd3269a4aa8" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "urn:anon:uuid:1389344b-31be-4ef0-9d50-a6fc2a4b1607" + }, { - "@value": "Ceiling Occupancy Sensor - Dual Relay - Regular Voltage" + "@id": "urn:anon:uuid:b766ec0c-b7f9-429a-8692-a86839752b25" } - ] - }, - { - "@id": "http://speckle.systems/09b9d2616eec93c51fed15a337b8f676", - "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "112.4444" + "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://qudt.org/vocab/quantitykind/Area" + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/M2" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "QuantifiableProperty" + "@value": "Connection" } ] }, { - "@id": "http://speckle.systems/2c2a82563c8143440dd69b135ae21b40", + "@id": "http://speckle.systems/c6267519c296551e3d74704d80369cb9", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" + }, + { + "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://speckle.systems/e179351fa4b9a853d5c32e30f0a5b81b" + "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@value": "HVACSpace4 4" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } - ] - }, - { - "@id": "urn:anon:uuid:ac460e0f-1be9-4468-a049-d71b0f87826f", - "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Enumerated observable property" + "@value": "InletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba", + "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7", "@type": [ "http://data.ashrae.org/standard223#Luminaire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/94524186447a8326f0bdb024328582e5" + "@id": "http://speckle.systems/7dd75f093c0714b7e12fd42700a05617" }, { - "@id": "urn:anon:uuid:6cb70a9d-3a3a-467c-9ef8-d37a983ce65a" + "@id": "urn:anon:uuid:3c8b46af-5157-4ab0-aa2f-f18654fca413" } ], "http://data.ashrae.org/standard223#connected": [ { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" }, { "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" @@ -825,28 +706,28 @@ ], "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e" + "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c" }, { - "@id": "urn:anon:uuid:3df43ba7-e1b8-442d-bcbc-f88fb9f0976c" + "@id": "urn:anon:uuid:7a52a1a8-5e51-4eef-88be-2ae19ab7dcca" } ], "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" } ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/94524186447a8326f0bdb024328582e5" + "@id": "http://speckle.systems/7dd75f093c0714b7e12fd42700a05617" }, { - "@id": "urn:anon:uuid:6cb70a9d-3a3a-467c-9ef8-d37a983ce65a" + "@id": "urn:anon:uuid:3c8b46af-5157-4ab0-aa2f-f18654fca413" } ], "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://speckle.systems/57b9c0e1669bb1909e70616872f4e9a6" + "@id": "http://speckle.systems/6d17784757d33ab12665eb12c2010ba3" } ], "http://data.ashrae.org/standard223#hasProperty": [ @@ -856,252 +737,261 @@ ], "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ { - "@id": "urn:anon:uuid:3bd1d510-0e5d-4708-8d7e-6f285f169064" + "@id": "urn:anon:uuid:ee9555ed-6e6f-4823-8b2c-34b57260dcff" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire12" + "@value": "Luminaire8" } ] }, { - "@id": "http://speckle.systems/95f72a7878f64d58ca63eddfae7af25d", + "@id": "http://speckle.systems/cfde270f1c3574c36afefa90a75d3a74", "@type": [ - "http://data.ashrae.org/standard223#Zone" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" + }, + { + "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab" } ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://speckle.systems/125328da567f42d45b3db70fc114453c" - }, + "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/19901540a18560afe307f03df5f1b47a" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + } + ], + "http://data.ashrae.org/standard223#isConnectionPointOf": [ + { + "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACZone2" + "@value": "InletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0", + "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/2ec6c777b3ca86655677fc5ef4dd0242" + "@id": "urn:anon:uuid:8b2df890-df92-44af-9b2e-0cf1b63d3f19" }, { - "@id": "urn:anon:uuid:4f300be0-9e5e-4670-925d-4de724578d5d" + "@id": "urn:anon:uuid:921cc707-511d-4495-b866-64b97d5fd653" } ], "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "http://speckle.systems/2ec6c777b3ca86655677fc5ef4dd0242" + "@id": "urn:anon:uuid:8b2df890-df92-44af-9b2e-0cf1b63d3f19" }, { - "@id": "urn:anon:uuid:4f300be0-9e5e-4670-925d-4de724578d5d" + "@id": "urn:anon:uuid:921cc707-511d-4495-b866-64b97d5fd653" } ], "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" } ], "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ElectricWire" + "@value": "Connection" } ] }, { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1", + "@id": "http://speckle.systems/a4d3df27db1cc0ca04e2d34b221b87d5", "@type": [ - "http://data.ashrae.org/standard223#Junction" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "urn:anon:uuid:10951683-ddf8-4dfb-94dd-e9fbe2554bcc" - }, - { - "@id": "urn:anon:uuid:4f300be0-9e5e-4670-925d-4de724578d5d" - }, - { - "@id": "urn:anon:uuid:59a98328-8ca4-46c7-9664-3656aa6760c8" - }, - { - "@id": "urn:anon:uuid:811eabab-593e-4752-9373-7fa96e31f22c" - }, + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "urn:anon:uuid:c6bba9ad-d815-46df-bb37-7f2e9c619986" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "141.777800000000016384" } ], - "http://data.ashrae.org/standard223#connected": [ - { - "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" - }, + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" - }, + "@id": "http://qudt.org/vocab/quantitykind/Area" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" - }, + "@id": "http://qudt.org/vocab/unit/M2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" - }, + "@value": "QuantifiableProperty" + } + ] + }, + { + "@id": "http://speckle.systems/4a446fc2b9c8224a66df446fc40b2f54", + "@type": [ + "http://data.ashrae.org/standard223#QuantifiableProperty" + ], + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://speckle.systems/e9d83bcd0340d3b2c702a83acd90a597" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "583.4444" } ], - "http://data.ashrae.org/standard223#connectedFrom": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://speckle.systems/e9d83bcd0340d3b2c702a83acd90a597" + "@id": "http://qudt.org/vocab/quantitykind/Area" } ], - "http://data.ashrae.org/standard223#connectedThrough": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab" - }, + "@id": "http://qudt.org/vocab/unit/M2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963" - }, - { - "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec" - }, - { - "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0" - }, - { - "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13" + "@value": "QuantifiableProperty" } + ] + }, + { + "@id": "urn:anon:uuid:4e3eb90b-de00-4ff5-abf5-aaad7e35b878", + "@type": [ + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" ], - "http://data.ashrae.org/standard223#connectedTo": [ - { - "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" - }, - { - "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" - }, - { - "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" - }, + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" + "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "urn:anon:uuid:10951683-ddf8-4dfb-94dd-e9fbe2554bcc" - }, + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:4f300be0-9e5e-4670-925d-4de724578d5d" - }, + "@value": "Enumerated observable property" + } + ] + }, + { + "@id": "urn:anon:uuid:1f9f708f-2761-4486-a68c-69651fd33594", + "@type": [ + "http://data.ashrae.org/standard223#InletConnectionPoint" + ], + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:59a98328-8ca4-46c7-9664-3656aa6760c8" + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" }, { - "@id": "urn:anon:uuid:811eabab-593e-4752-9373-7fa96e31f22c" - }, + "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a" + } + ], + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:c6bba9ad-d815-46df-bb37-7f2e9c619986" + "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "http://data.ashrae.org/standard223#Light-Visible" + } + ], + "http://data.ashrae.org/standard223#isConnectionPointOf": [ + { + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Junction" + "@value": "InletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277", + "@id": "http://speckle.systems/bf45d7221dfb200823eae08710bcd8a5", "@type": [ - "http://data.ashrae.org/standard223#Connection" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "urn:anon:uuid:1005667e-b35b-4fdd-bd93-5ad769b52b76" - }, - { - "@id": "urn:anon:uuid:5d916fd6-70ed-44ce-8b50-35cccfcb3fd9" - } + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#connectsAt": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "urn:anon:uuid:1005667e-b35b-4fdd-bd93-5ad769b52b76" + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" }, { - "@id": "urn:anon:uuid:5d916fd6-70ed-44ce-8b50-35cccfcb3fd9" + "@id": "http://speckle.systems/e8da8729e64c6631dd75d8521b207b02" } ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" + "@id": "http://speckle.systems/dc7fc4c0daab77ddb84ca1a1f5c61e62" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + "@id": "https://w3id.org/rec#Bathroom" } + ] + }, + { + "@id": "urn:anon:uuid:2b1e0b83-5990-40f2-9cdd-76b295b90b23", + "@type": [ + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Connection" + "@value": "Enumerated observable property" } ] }, { - "@id": "urn:anon:uuid:4f300be0-9e5e-4670-925d-4de724578d5d", + "@id": "urn:anon:uuid:e3aa97c1-1726-4551-b4f3-ef37ca81e8dc", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" }, { - "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0" + "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0" + "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ @@ -1111,42 +1001,21 @@ ] }, { - "@id": "http://speckle.systems/492d19a52147a4cb446c1fa2f36c4d2c", - "@type": [ - "http://data.ashrae.org/standard223#Zone" - ], - "http://data.ashrae.org/standard223#hasDomain": [ - { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" - } - ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ - { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "LightingZone1" - } - ] - }, - { - "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7", + "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38", "@type": [ "http://data.ashrae.org/standard223#Luminaire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/7dd75f093c0714b7e12fd42700a05617" + "@id": "http://speckle.systems/c6267519c296551e3d74704d80369cb9" }, { - "@id": "urn:anon:uuid:3c8b46af-5157-4ab0-aa2f-f18654fca413" + "@id": "urn:anon:uuid:f9dd0ad1-5b5b-4bc6-8cc5-d7cadc3e8068" } ], "http://data.ashrae.org/standard223#connected": [ { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" }, { "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" @@ -1159,28 +1028,28 @@ ], "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c" + "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d" }, { - "@id": "urn:anon:uuid:7a52a1a8-5e51-4eef-88be-2ae19ab7dcca" + "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f" } ], "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" } ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/7dd75f093c0714b7e12fd42700a05617" + "@id": "http://speckle.systems/c6267519c296551e3d74704d80369cb9" }, { - "@id": "urn:anon:uuid:3c8b46af-5157-4ab0-aa2f-f18654fca413" + "@id": "urn:anon:uuid:f9dd0ad1-5b5b-4bc6-8cc5-d7cadc3e8068" } ], "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://speckle.systems/6d17784757d33ab12665eb12c2010ba3" + "@id": "http://speckle.systems/bf45d7221dfb200823eae08710bcd8a5" } ], "http://data.ashrae.org/standard223#hasProperty": [ @@ -1190,163 +1059,221 @@ ], "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ { - "@id": "urn:anon:uuid:ee9555ed-6e6f-4823-8b2c-34b57260dcff" + "@id": "urn:anon:uuid:b8a8780d-28f7-4600-a4db-5d940a48760a" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire8" + "@value": "Luminaire5" } ] }, { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0", + "@id": "urn:anon:uuid:612c70ce-3388-40ff-9ded-050181c4fc7c", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:0437f78d-48dc-48cb-9bf8-9da8873c95cc" + "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" }, { - "@id": "urn:anon:uuid:59c30214-6db2-4971-8d09-9b013543caf1" + "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467" } ], - "http://data.ashrae.org/standard223#connected": [ - { - "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" - }, + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467" } ], - "http://data.ashrae.org/standard223#connectedFrom": [ - { - "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" - }, + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], - "http://data.ashrae.org/standard223#connectedThrough": [ - { - "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d" - }, + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3" + "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "urn:anon:uuid:0437f78d-48dc-48cb-9bf8-9da8873c95cc" - }, + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:59c30214-6db2-4971-8d09-9b013543caf1" + "@value": "OutletConnectionPoint" } + ] + }, + { + "@id": "http://speckle.systems/72e691110ad3c29f15b67f759efe7f12", + "@type": [ + "http://data.ashrae.org/standard223#Zone" ], "http://data.ashrae.org/standard223#hasDomain": [ { "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], - "http://data.ashrae.org/standard223#hasProperty": [ - { - "@id": "http://speckle.systems/eafe74d79e1ab2386bcd74cfe7380ef0" - }, + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "urn:anon:uuid:ac460e0f-1be9-4468-a049-d71b0f87826f" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingSpace3 3" + "@value": "LightingZone6" } ] }, { - "@id": "http://speckle.systems/3a2dac267747a410f1146caf20e19624", + "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" + "@id": "http://speckle.systems/752235573d372d87cbd69a21539496fc" }, { - "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5" + "@id": "urn:anon:uuid:af46adec-c8fc-474f-b386-78c1ffda5447" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5" + "@id": "http://speckle.systems/752235573d372d87cbd69a21539496fc" + }, + { + "@id": "urn:anon:uuid:af46adec-c8fc-474f-b386-78c1ffda5447" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" + "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@value": "ElectricWire" } ] }, { - "@id": "http://speckle.systems/94524186447a8326f0bdb024328582e5", + "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" + "@id": "http://speckle.systems/7e89fafcc8db5a9bf685f49ee58196e0" }, { - "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e" + "@id": "urn:anon:uuid:811eabab-593e-4752-9373-7fa96e31f22c" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "@id": "http://speckle.systems/7e89fafcc8db5a9bf685f49ee58196e0" + }, { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "urn:anon:uuid:811eabab-593e-4752-9373-7fa96e31f22c" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + } + ], + "http://data.ashrae.org/standard223#connectsTo": [ + { + "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@value": "ElectricWire" } ] }, { - "@id": "urn:anon:uuid:51c17882-0889-4a0c-a469-338b2b209674", + "@id": "http://speckle.systems/ea132dc6f9ffb48fcaa86607ff4b65b3", + "@type": [ + "http://data.ashrae.org/standard223#QuantifiableProperty" + ], + "http://data.ashrae.org/standard223#hasValue": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "13.17159" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ + { + "@id": "http://qudt.org/vocab/quantitykind/Area" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/M2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "QuantifiableProperty" + } + ] + }, + { + "@id": "http://speckle.systems/6d17784757d33ab12665eb12c2010ba3", + "@type": [ + "http://data.ashrae.org/standard223#PhysicalSpace" + ], + "http://data.ashrae.org/standard223#encloses": [ + { + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + }, + { + "@id": "http://speckle.systems/51e8fb17f82da1e78889646f5a91e60d" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://speckle.systems/7427f4edf3217904298499200651e74d" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@id": "https://w3id.org/rec#OfficeRoom" + } + ] + }, + { + "@id": "http://speckle.systems/3a2dac267747a410f1146caf20e19624", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c" + "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" }, { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c" + "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -1356,7 +1283,7 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ @@ -1366,711 +1293,702 @@ ] }, { - "@id": "http://speckle.systems/e7889732040d3cbea26a18b9455b74ed", + "@id": "urn:anon:uuid:c6bba9ad-d815-46df-bb37-7f2e9c619986", "@type": [ - "http://data.ashrae.org/standard223#OccupantMotionSensor" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + }, + { + "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec" } ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://speckle.systems/6bea7df122ce7b9057ace53c8144bd91" + "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "urn:anon:uuid:acc4f4e0-a41d-461d-9a54-daa35a13a3a4" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + } + ], + "http://data.ashrae.org/standard223#isConnectionPointOf": [ + { + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Ceiling Occupancy Sensor - Dual Relay - Regular Voltage" + "@value": "InletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13", + "@id": "urn:anon:uuid:c9850b89-d89f-4e0d-ade3-9d01530cea6e", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/5f824b38a3005d7a877a46f3acfd8ce2" + "@id": "urn:anon:uuid:7f3d871f-66c0-4b24-8525-79a53922b9b5" }, { - "@id": "urn:anon:uuid:10951683-ddf8-4dfb-94dd-e9fbe2554bcc" + "@id": "urn:anon:uuid:eab6f5b3-bd72-4cd4-b28c-e85792758498" } ], "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "http://speckle.systems/5f824b38a3005d7a877a46f3acfd8ce2" + "@id": "urn:anon:uuid:7f3d871f-66c0-4b24-8525-79a53922b9b5" }, { - "@id": "urn:anon:uuid:10951683-ddf8-4dfb-94dd-e9fbe2554bcc" + "@id": "urn:anon:uuid:eab6f5b3-bd72-4cd4-b28c-e85792758498" } ], "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" } ], "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ElectricWire" + "@value": "Connection" } ] }, { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb", + "@id": "http://speckle.systems/09c967d9e3e0ed6b4350105a6ebd1246", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#OccupantMotionSensor" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "urn:anon:uuid:5d916fd6-70ed-44ce-8b50-35cccfcb3fd9" - }, + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "urn:anon:uuid:921cc707-511d-4495-b866-64b97d5fd653" + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" } ], - "http://data.ashrae.org/standard223#connected": [ - { - "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" - }, + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" + "@id": "http://speckle.systems/bf45d7221dfb200823eae08710bcd8a5" } ], - "http://data.ashrae.org/standard223#connectedFrom": [ - { - "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" - }, + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" + "@id": "urn:anon:uuid:ac460e0f-1be9-4468-a049-d71b0f87826f" } ], - "http://data.ashrae.org/standard223#connectedThrough": [ - { - "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277" - }, + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089" + "@value": "Ceiling Occupancy Sensor - Dual Relay - Regular Voltage" } + ] + }, + { + "@id": "urn:anon:uuid:811eabab-593e-4752-9373-7fa96e31f22c", + "@type": [ + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:5d916fd6-70ed-44ce-8b50-35cccfcb3fd9" + "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963" }, { - "@id": "urn:anon:uuid:921cc707-511d-4495-b866-64b97d5fd653" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/fd1eba64d7bac4ac23691283c56da903" - }, + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + } + ], + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "urn:anon:uuid:1d52b196-f0fa-4c4f-a562-6dd3269a4aa8" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingSpace2 2" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765", + "@id": "urn:anon:uuid:10debc0f-cb41-46df-b77d-d5098e0064c2", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/3a2dac267747a410f1146caf20e19624" + "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" }, { - "@id": "urn:anon:uuid:eab6f5b3-bd72-4cd4-b28c-e85792758498" + "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc" } ], - "http://data.ashrae.org/standard223#connected": [ - { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" - }, + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc" } ], - "http://data.ashrae.org/standard223#connectedFrom": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], - "http://data.ashrae.org/standard223#connectedThrough": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5" - }, + "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:c9850b89-d89f-4e0d-ade3-9d01530cea6e" + "@value": "OutletConnectionPoint" } + ] + }, + { + "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c", + "@type": [ + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#connectedTo": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" + "@id": "http://speckle.systems/7dd75f093c0714b7e12fd42700a05617" + }, + { + "@id": "urn:anon:uuid:ee9555ed-6e6f-4823-8b2c-34b57260dcff" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "http://speckle.systems/3a2dac267747a410f1146caf20e19624" + "@id": "http://speckle.systems/7dd75f093c0714b7e12fd42700a05617" }, { - "@id": "urn:anon:uuid:eab6f5b3-bd72-4cd4-b28c-e85792758498" + "@id": "urn:anon:uuid:ee9555ed-6e6f-4823-8b2c-34b57260dcff" } ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://speckle.systems/57b9c0e1669bb1909e70616872f4e9a6" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" + "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" } ], - "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "urn:anon:uuid:54b8a5c6-657c-401c-8be7-83d02784f9bf" + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire11" + "@value": "ElectricWire" } ] }, { - "@id": "http://speckle.systems/57b9c0e1669bb1909e70616872f4e9a6", + "@id": "urn:anon:uuid:51c17882-0889-4a0c-a469-338b2b209674", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#encloses": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" + "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c" }, { - "@id": "http://speckle.systems/125328da567f42d45b3db70fc114453c" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://speckle.systems/6cd35c4f0b85ce96efb182c7f19d4394" + "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + } + ], + "http://data.ashrae.org/standard223#isConnectionPointOf": [ + { + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "https://w3id.org/rec#CookingRoom" + "@value": "InletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af", + "@id": "http://speckle.systems/ff91a7215190baa32561f76355dc5679", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#Zone" + ], + "http://data.ashrae.org/standard223#hasDomain": [ + { + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + } + ], + "http://data.ashrae.org/standard223#hasDomainSpace": [ + { + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "LightingZone2" + } + ] + }, + { + "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099", + "@type": [ + "http://data.ashrae.org/standard223#Luminaire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:4ccc8bf6-f274-47dd-9d93-1ec17000a9b5" + "@id": "http://speckle.systems/5f824b38a3005d7a877a46f3acfd8ce2" }, { - "@id": "urn:anon:uuid:b286fc16-381e-44c8-b22b-8a22f8d8f884" + "@id": "urn:anon:uuid:b766ec0c-b7f9-429a-8692-a86839752b25" } ], "http://data.ashrae.org/standard223#connected": [ { - "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" }, { - "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" - }, - { - "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc" + "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0" }, { - "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24" + "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13" + } + ], + "http://data.ashrae.org/standard223#connectedTo": [ + { + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" } ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "urn:anon:uuid:4ccc8bf6-f274-47dd-9d93-1ec17000a9b5" + "@id": "http://speckle.systems/5f824b38a3005d7a877a46f3acfd8ce2" }, { - "@id": "urn:anon:uuid:b286fc16-381e-44c8-b22b-8a22f8d8f884" + "@id": "urn:anon:uuid:b766ec0c-b7f9-429a-8692-a86839752b25" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1" } ], "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://speckle.systems/e7cb45f8083fac1804a9f98b64d7c27c" - }, + "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" + } + ], + "http://speckle.systems/cf61289f76bfa19d7beac12ddb186eb7": [ { - "@id": "urn:anon:uuid:acc4f4e0-a41d-461d-9a54-daa35a13a3a4" + "@id": "urn:anon:uuid:10951683-ddf8-4dfb-94dd-e9fbe2554bcc" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingSpace5 5" + "@value": "Luminaire1" } ] }, { - "@id": "urn:anon:uuid:0ce839e5-dfc6-4df3-acfc-caf7b5e2e9b1", + "@id": "http://speckle.systems/e9d83bcd0340d3b2c702a83acd90a597", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#ElectricBreaker" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" - }, + "@id": "http://speckle.systems/11c04c42e073d0d0b9c2a00aadf4901b" + } + ], + "http://data.ashrae.org/standard223#connected": [ { - "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6" + "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://speckle.systems/11c04c42e073d0d0b9c2a00aadf4901b" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "Panel 1" } ] }, { - "@id": "http://speckle.systems/bf45d7221dfb200823eae08710bcd8a5", + "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#encloses": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" + "@id": "http://speckle.systems/0a8ed6d561b158c49d4145abf05044a7" }, { - "@id": "http://speckle.systems/e8da8729e64c6631dd75d8521b207b02" + "@id": "urn:anon:uuid:10debc0f-cb41-46df-b77d-d5098e0064c2" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#connected": [ { - "@id": "http://speckle.systems/dc7fc4c0daab77ddb84ca1a1f5c61e62" + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + }, + { + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "https://w3id.org/rec#Bathroom" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } - ] - }, - { - "@id": "urn:anon:uuid:1389344b-31be-4ef0-9d50-a6fc2a4b1607", - "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" + "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc" }, { - "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0" - } - ], - "http://data.ashrae.org/standard223#connectsThrough": [ - { - "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0" + "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "http://speckle.systems/0a8ed6d561b158c49d4145abf05044a7" + }, { - "@value": "InletConnectionPoint" + "@id": "urn:anon:uuid:10debc0f-cb41-46df-b77d-d5098e0064c2" } - ] - }, - { - "@id": "http://speckle.systems/370bcf049d82f09604c111bd8b6ed730", - "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "66.621530000000008192" + "@id": "http://speckle.systems/6bea7df122ce7b9057ace53c8144bd91" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://qudt.org/vocab/quantitykind/Area" + "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ { - "@id": "http://qudt.org/vocab/unit/M2" + "@id": "urn:anon:uuid:f063ee43-dae3-43df-b700-29e912870a95" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "QuantifiableProperty" + "@value": "Luminaire10" } ] }, { - "@id": "http://speckle.systems/51e8fb17f82da1e78889646f5a91e60d", + "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@id": "http://speckle.systems/9dd35c17e7f147c29adbfcf900c4b590" + }, + { + "@id": "urn:anon:uuid:3e6d2b17-232c-4998-97d5-246e3758a8bf" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#connected": [ { - "@id": "http://speckle.systems/a4d3df27db1cc0ca04e2d34b221b87d5" + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + }, + { + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#connectedFrom": [ { - "@value": "HVACSpace3 3" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } - ] - }, - { - "@id": "urn:anon:uuid:1005667e-b35b-4fdd-bd93-5ad769b52b76", - "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" + "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24" }, { - "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277" + "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277" + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" - } - ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "@id": "http://speckle.systems/9dd35c17e7f147c29adbfcf900c4b590" + }, { - "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" + "@id": "urn:anon:uuid:3e6d2b17-232c-4998-97d5-246e3758a8bf" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@value": "OutletConnectionPoint" + "@id": "http://speckle.systems/6bea7df122ce7b9057ace53c8144bd91" } - ] - }, - { - "@id": "http://speckle.systems/6d17784757d33ab12665eb12c2010ba3", - "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#encloses": [ - { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" - }, + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://speckle.systems/51e8fb17f82da1e78889646f5a91e60d" + "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ { - "@id": "http://speckle.systems/7427f4edf3217904298499200651e74d" + "@id": "urn:anon:uuid:0ce839e5-dfc6-4df3-acfc-caf7b5e2e9b1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "https://w3id.org/rec#OfficeRoom" + "@value": "Luminaire9" } ] }, { - "@id": "urn:anon:uuid:b8a8780d-28f7-4600-a4db-5d940a48760a", + "@id": "http://speckle.systems/eafe74d79e1ab2386bcd74cfe7380ef0", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" - }, - { - "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f" - } + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "6.189342" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://qudt.org/vocab/quantitykind/Area" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://qudt.org/vocab/unit/M2" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "QuantifiableProperty" } ] }, { - "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38", + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#DomainSpace" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/c6267519c296551e3d74704d80369cb9" + "@id": "urn:anon:uuid:1389344b-31be-4ef0-9d50-a6fc2a4b1607" }, { - "@id": "urn:anon:uuid:f9dd0ad1-5b5b-4bc6-8cc5-d7cadc3e8068" + "@id": "urn:anon:uuid:b24c6918-078b-4208-bd18-e03934c7e9ec" } ], "http://data.ashrae.org/standard223#connected": [ { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" + "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" }, { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" } ], "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" + }, + { + "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" } ], "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d" + "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467" }, { - "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f" - } - ], - "http://data.ashrae.org/standard223#connectedTo": [ - { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" + "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0" } ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/c6267519c296551e3d74704d80369cb9" + "@id": "urn:anon:uuid:1389344b-31be-4ef0-9d50-a6fc2a4b1607" }, { - "@id": "urn:anon:uuid:f9dd0ad1-5b5b-4bc6-8cc5-d7cadc3e8068" + "@id": "urn:anon:uuid:b24c6918-078b-4208-bd18-e03934c7e9ec" } ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://speckle.systems/bf45d7221dfb200823eae08710bcd8a5" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" - } - ], - "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ + "@id": "http://speckle.systems/f91a946c0b6ab24039e09bdc954504af" + }, { - "@id": "urn:anon:uuid:b8a8780d-28f7-4600-a4db-5d940a48760a" + "@id": "urn:anon:uuid:4e3eb90b-de00-4ff5-abf5-aaad7e35b878" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire5" + "@value": "LightingSpace1 1" } ] }, { - "@id": "http://speckle.systems/c6267519c296551e3d74704d80369cb9", + "@id": "http://speckle.systems/de373ec944cbda8f9e5e336106ac1bb8", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#contains": [ { - "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" + "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1" }, { - "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f" - } - ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "@id": "http://speckle.systems/57b9c0e1669bb1909e70616872f4e9a6" + }, { - "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "@id": "http://speckle.systems/6bea7df122ce7b9057ace53c8144bd91" + }, { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" - } - ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "@id": "http://speckle.systems/6d17784757d33ab12665eb12c2010ba3" + }, { - "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" + "@id": "http://speckle.systems/bf45d7221dfb200823eae08710bcd8a5" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@value": "Level 1" } ] }, { - "@id": "http://speckle.systems/0d693228e1e46738efa9a20a427e0324", + "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277", "@type": [ - "http://data.ashrae.org/standard223#Zone" - ], - "http://data.ashrae.org/standard223#hasDomain": [ - { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" - } + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "urn:anon:uuid:1005667e-b35b-4fdd-bd93-5ad769b52b76" + }, { - "@value": "LightingZone3" + "@id": "urn:anon:uuid:5d916fd6-70ed-44ce-8b50-35cccfcb3fd9" } - ] - }, - { - "@id": "urn:anon:uuid:c6bba9ad-d815-46df-bb37-7f2e9c619986", - "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "urn:anon:uuid:1005667e-b35b-4fdd-bd93-5ad769b52b76" }, { - "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec" + "@id": "urn:anon:uuid:5d916fd6-70ed-44ce-8b50-35cccfcb3fd9" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec" + "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@value": "Connection" } ] }, { - "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d", + "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a", "@type": [ "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:59c30214-6db2-4971-8d09-9b013543caf1" + "@id": "urn:anon:uuid:1f9f708f-2761-4486-a68c-69651fd33594" }, { - "@id": "urn:anon:uuid:f9dd0ad1-5b5b-4bc6-8cc5-d7cadc3e8068" + "@id": "urn:anon:uuid:e3aa97c1-1726-4551-b4f3-ef37ca81e8dc" } ], "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:59c30214-6db2-4971-8d09-9b013543caf1" + "@id": "urn:anon:uuid:1f9f708f-2761-4486-a68c-69651fd33594" }, { - "@id": "urn:anon:uuid:f9dd0ad1-5b5b-4bc6-8cc5-d7cadc3e8068" + "@id": "urn:anon:uuid:e3aa97c1-1726-4551-b4f3-ef37ca81e8dc" } ], "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" + "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" } ], "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -2085,112 +2003,146 @@ ] }, { - "@id": "urn:anon:uuid:4ccc8bf6-f274-47dd-9d93-1ec17000a9b5", + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#DomainSpace" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + "@id": "urn:anon:uuid:5d916fd6-70ed-44ce-8b50-35cccfcb3fd9" }, { - "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc" + "@id": "urn:anon:uuid:921cc707-511d-4495-b866-64b97d5fd653" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connected": [ { - "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" + }, { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" + }, { - "@value": "InletConnectionPoint" + "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" } - ] - }, - { - "@id": "urn:anon:uuid:b766ec0c-b7f9-429a-8692-a86839752b25", - "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" + "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277" }, { - "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0" + "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0" + "@id": "urn:anon:uuid:5d916fd6-70ed-44ce-8b50-35cccfcb3fd9" + }, + { + "@id": "urn:anon:uuid:921cc707-511d-4495-b866-64b97d5fd653" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" + "@id": "http://speckle.systems/fd1eba64d7bac4ac23691283c56da903" + }, + { + "@id": "urn:anon:uuid:1d52b196-f0fa-4c4f-a562-6dd3269a4aa8" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "LightingSpace2 2" } ] }, { - "@id": "http://speckle.systems/5a9c3d36b6a148f5cdd1b2536580513f", + "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9", "@type": [ - "http://data.ashrae.org/standard223#Zone" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@id": "http://speckle.systems/752235573d372d87cbd69a21539496fc" + }, + { + "@id": "urn:anon:uuid:acece836-1a1c-4d4d-a44f-0e4ac829bee2" } ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ + "http://data.ashrae.org/standard223#connected": [ { - "@id": "http://speckle.systems/2c2a82563c8143440dd69b135ae21b40" + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" }, { - "@id": "http://speckle.systems/51e8fb17f82da1e78889646f5a91e60d" - }, + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + } + ], + "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "http://speckle.systems/e2d2158f74816df285bd7cdca1361b1b" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + } + ], + "http://data.ashrae.org/standard223#connectedThrough": [ + { + "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e" }, { - "@id": "http://speckle.systems/e8da8729e64c6631dd75d8521b207b02" + "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#connectedTo": [ { - "@value": "HVACZone1" + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" } - ] - }, - { - "@id": "http://speckle.systems/ea132dc6f9ffb48fcaa86607ff4b65b3", + ], + "http://data.ashrae.org/standard223#hasConnectionPoint": [ + { + "@id": "http://speckle.systems/752235573d372d87cbd69a21539496fc" + }, + { + "@id": "urn:anon:uuid:acece836-1a1c-4d4d-a44f-0e4ac829bee2" + } + ], + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + { + "@id": "http://speckle.systems/bf45d7221dfb200823eae08710bcd8a5" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" + } + ], + "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ + { + "@id": "urn:anon:uuid:af46adec-c8fc-474f-b386-78c1ffda5447" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Luminaire6" + } + ] + }, + { + "@id": "http://speckle.systems/09b9d2616eec93c51fed15a337b8f676", "@type": [ "http://data.ashrae.org/standard223#QuantifiableProperty" ], "http://data.ashrae.org/standard223#hasValue": [ { "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "13.17159" + "@value": "112.4444" } ], "http://qudt.org/schema/qudt/hasQuantityKind": [ @@ -2210,89 +2162,124 @@ ] }, { - "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3", + "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:0437f78d-48dc-48cb-9bf8-9da8873c95cc" + "@id": "http://speckle.systems/44531f11cb0626bac97aa43d6732fdf2" }, { - "@id": "urn:anon:uuid:acece836-1a1c-4d4d-a44f-0e4ac829bee2" + "@id": "urn:anon:uuid:51c17882-0889-4a0c-a469-338b2b209674" } ], "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:0437f78d-48dc-48cb-9bf8-9da8873c95cc" + "@id": "http://speckle.systems/44531f11cb0626bac97aa43d6732fdf2" }, { - "@id": "urn:anon:uuid:acece836-1a1c-4d4d-a44f-0e4ac829bee2" + "@id": "urn:anon:uuid:51c17882-0889-4a0c-a469-338b2b209674" } ], "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + "@id": "http://speckle.systems/e2684126ff114d569384c6d3a21f953b" } ], "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Connection" + "@value": "Panel 2" } ] }, { - "@id": "http://speckle.systems/7dd75f093c0714b7e12fd42700a05617", + "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#QuantifiableProperty" + ], + "http://data.ashrae.org/standard223#hasValue": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "39.29" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ + { + "@id": "http://qudt.org/vocab/quantitykind/RadiantFlux" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/W" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "QuantifiableProperty" + } + ] + }, + { + "@id": "urn:anon:uuid:7a52a1a8-5e51-4eef-88be-2ae19ab7dcca", + "@type": [ + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" + "@id": "urn:anon:uuid:3c8b46af-5157-4ab0-aa2f-f18654fca413" }, { - "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c" + "@id": "urn:anon:uuid:ad61a6a6-1c6b-42de-b13e-49e3ae88486e" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c" + "@id": "urn:anon:uuid:3c8b46af-5157-4ab0-aa2f-f18654fca413" + }, + { + "@id": "urn:anon:uuid:ad61a6a6-1c6b-42de-b13e-49e3ae88486e" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@value": "Connection" } ] }, { - "@id": "urn:anon:uuid:6cb70a9d-3a3a-467c-9ef8-d37a983ce65a", + "@id": "urn:anon:uuid:5ac22b7f-6fef-4a66-aaab-70ac707b5334", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" }, { "@id": "urn:anon:uuid:3df43ba7-e1b8-442d-bcbc-f88fb9f0976c" @@ -2310,99 +2297,88 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "InletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/1b89da9c68b935d6375d5fe0e90febab", + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "36.55556" - } - ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "@id": "urn:anon:uuid:0437f78d-48dc-48cb-9bf8-9da8873c95cc" + }, { - "@id": "http://qudt.org/vocab/quantitykind/Area" + "@id": "urn:anon:uuid:59c30214-6db2-4971-8d09-9b013543caf1" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#connected": [ { - "@id": "http://qudt.org/vocab/unit/M2" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" + }, { - "@value": "QuantifiableProperty" + "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" } - ] - }, - { - "@id": "http://speckle.systems/6bea7df122ce7b9057ace53c8144bd91", - "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#encloses": [ - { - "@id": "http://speckle.systems/19901540a18560afe307f03df5f1b47a" - }, + "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "http://speckle.systems/2c2a82563c8143440dd69b135ae21b40" + "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" }, { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "http://speckle.systems/69962dede1bb7985d7d34dbb8e6cd3fb" + "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d" + }, + { + "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "https://w3id.org/rec#Hallway" + "@id": "urn:anon:uuid:0437f78d-48dc-48cb-9bf8-9da8873c95cc" + }, + { + "@id": "urn:anon:uuid:59c30214-6db2-4971-8d09-9b013543caf1" } - ] - }, - { - "@id": "http://speckle.systems/9f3779e39d4c089f32113f64c1c217b7", - "@type": [ - "http://data.ashrae.org/standard223#Zone" ], "http://data.ashrae.org/standard223#hasDomain": [ { "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + "@id": "http://speckle.systems/eafe74d79e1ab2386bcd74cfe7380ef0" + }, + { + "@id": "urn:anon:uuid:ac460e0f-1be9-4468-a049-d71b0f87826f" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingZone5" + "@value": "LightingSpace3 3" } ] }, { - "@id": "http://speckle.systems/f91a946c0b6ab24039e09bdc954504af", + "@id": "http://speckle.systems/e7583f67f85b0f6389e10c50c39b2ce5", "@type": [ "http://data.ashrae.org/standard223#QuantifiableProperty" ], "http://data.ashrae.org/standard223#hasValue": [ { "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "27.10188" + "@value": "55.6644" } ], "http://qudt.org/schema/qudt/hasQuantityKind": [ @@ -2422,103 +2398,78 @@ ] }, { - "@id": "http://speckle.systems/e8da8729e64c6631dd75d8521b207b02", + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af", "@type": [ "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasDomain": [ - { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" - } - ], - "http://data.ashrae.org/standard223#hasProperty": [ - { - "@id": "http://speckle.systems/370bcf049d82f09604c111bd8b6ed730" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "HVACSpace2 2" - } - ] - }, - { - "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363", - "@type": [ - "http://data.ashrae.org/standard223#Luminaire" - ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/cfde270f1c3574c36afefa90a75d3a74" + "@id": "urn:anon:uuid:4ccc8bf6-f274-47dd-9d93-1ec17000a9b5" }, { - "@id": "urn:anon:uuid:8b2df890-df92-44af-9b2e-0cf1b63d3f19" + "@id": "urn:anon:uuid:b286fc16-381e-44c8-b22b-8a22f8d8f884" } ], "http://data.ashrae.org/standard223#connected": [ { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" }, { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" } ], "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" + }, + { + "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" } ], "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab" + "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc" }, { - "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089" - } - ], - "http://data.ashrae.org/standard223#connectedTo": [ - { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24" } ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/cfde270f1c3574c36afefa90a75d3a74" + "@id": "urn:anon:uuid:4ccc8bf6-f274-47dd-9d93-1ec17000a9b5" }, { - "@id": "urn:anon:uuid:8b2df890-df92-44af-9b2e-0cf1b63d3f19" + "@id": "urn:anon:uuid:b286fc16-381e-44c8-b22b-8a22f8d8f884" } ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" - } - ], - "http://speckle.systems/cf61289f76bfa19d7beac12ddb186eb7": [ + "@id": "http://speckle.systems/e7cb45f8083fac1804a9f98b64d7c27c" + }, { - "@id": "urn:anon:uuid:59a98328-8ca4-46c7-9664-3656aa6760c8" + "@id": "urn:anon:uuid:acc4f4e0-a41d-461d-9a54-daa35a13a3a4" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire4" + "@value": "LightingSpace5 5" } ] }, { - "@id": "http://speckle.systems/6cd35c4f0b85ce96efb182c7f19d4394", + "@id": "http://speckle.systems/e7cb45f8083fac1804a9f98b64d7c27c", "@type": [ "http://data.ashrae.org/standard223#QuantifiableProperty" ], "http://data.ashrae.org/standard223#hasValue": [ { "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "11.14836" + "@value": "9.971593" } ], "http://qudt.org/schema/qudt/hasQuantityKind": [ @@ -2538,213 +2489,182 @@ ] }, { - "@id": "http://speckle.systems/0a8ed6d561b158c49d4145abf05044a7", + "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" + "@id": "http://speckle.systems/0a8ed6d561b158c49d4145abf05044a7" }, { - "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae" + "@id": "urn:anon:uuid:f063ee43-dae3-43df-b700-29e912870a95" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae" + "@id": "http://speckle.systems/0a8ed6d561b158c49d4145abf05044a7" + }, + { + "@id": "urn:anon:uuid:f063ee43-dae3-43df-b700-29e912870a95" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#connectsTo": [ { "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" } ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + } + ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@value": "ElectricWire" } ] }, { - "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1", + "@id": "http://speckle.systems/6cd35c4f0b85ce96efb182c7f19d4394", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#encloses": [ - { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" - }, + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" - }, + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "11.14836" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://speckle.systems/e2d2158f74816df285bd7cdca1361b1b" + "@id": "http://qudt.org/vocab/quantitykind/Area" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://speckle.systems/e7583f67f85b0f6389e10c50c39b2ce5" + "@id": "http://qudt.org/vocab/unit/M2" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "https://w3id.org/rec#OfficeRoom" + "@value": "QuantifiableProperty" } ] }, { - "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099", + "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/5f824b38a3005d7a877a46f3acfd8ce2" - }, - { - "@id": "urn:anon:uuid:b766ec0c-b7f9-429a-8692-a86839752b25" - } - ], - "http://data.ashrae.org/standard223#connected": [ - { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" - }, - { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" - } - ], - "http://data.ashrae.org/standard223#connectedFrom": [ - { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" - } - ], - "http://data.ashrae.org/standard223#connectedThrough": [ - { - "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0" + "@id": "http://speckle.systems/9dd35c17e7f147c29adbfcf900c4b590" }, { - "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13" - } - ], - "http://data.ashrae.org/standard223#connectedTo": [ - { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" + "@id": "urn:anon:uuid:0ce839e5-dfc6-4df3-acfc-caf7b5e2e9b1" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "http://speckle.systems/5f824b38a3005d7a877a46f3acfd8ce2" + "@id": "http://speckle.systems/9dd35c17e7f147c29adbfcf900c4b590" }, { - "@id": "urn:anon:uuid:b766ec0c-b7f9-429a-8692-a86839752b25" + "@id": "urn:anon:uuid:0ce839e5-dfc6-4df3-acfc-caf7b5e2e9b1" } ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" + "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" } ], - "http://speckle.systems/cf61289f76bfa19d7beac12ddb186eb7": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "urn:anon:uuid:10951683-ddf8-4dfb-94dd-e9fbe2554bcc" + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire1" + "@value": "ElectricWire" } ] }, { - "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089", + "@id": "http://speckle.systems/0a8ed6d561b158c49d4145abf05044a7", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:8b2df890-df92-44af-9b2e-0cf1b63d3f19" - }, - { - "@id": "urn:anon:uuid:921cc707-511d-4495-b866-64b97d5fd653" - } - ], - "http://data.ashrae.org/standard223#connectsAt": [ - { - "@id": "urn:anon:uuid:8b2df890-df92-44af-9b2e-0cf1b63d3f19" + "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" }, { - "@id": "urn:anon:uuid:921cc707-511d-4495-b866-64b97d5fd653" + "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae" } ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" + "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Connection" + "@value": "InletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/125328da567f42d45b3db70fc114453c", + "@id": "urn:anon:uuid:ac460e0f-1be9-4468-a049-d71b0f87826f", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" - ], - "http://data.ashrae.org/standard223#hasDomain": [ - { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" - } + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://speckle.systems/09b9d2616eec93c51fed15a337b8f676" + "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACSpace6 6" + "@value": "Enumerated observable property" } ] }, { - "@id": "http://speckle.systems/2ec6c777b3ca86655677fc5ef4dd0242", + "@id": "urn:anon:uuid:59a98328-8ca4-46c7-9664-3656aa6760c8", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" + "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab" }, { - "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0" + "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -2754,110 +2674,92 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "InletConnectionPoint" - } - ] - }, - { - "@id": "http://speckle.systems/19901540a18560afe307f03df5f1b47a", - "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" - ], - "http://data.ashrae.org/standard223#hasDomain": [ - { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" - } - ], - "http://data.ashrae.org/standard223#hasProperty": [ - { - "@id": "http://speckle.systems/1b89da9c68b935d6375d5fe0e90febab" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACSpace5 5" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c", + "@id": "urn:anon:uuid:0ce839e5-dfc6-4df3-acfc-caf7b5e2e9b1", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/44531f11cb0626bac97aa43d6732fdf2" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" }, { - "@id": "urn:anon:uuid:51c17882-0889-4a0c-a469-338b2b209674" + "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6" } ], - "http://data.ashrae.org/standard223#connectsAt": [ - { - "@id": "http://speckle.systems/44531f11cb0626bac97aa43d6732fdf2" - }, + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:51c17882-0889-4a0c-a469-338b2b209674" + "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6" } ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/e2684126ff114d569384c6d3a21f953b" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" - } - ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Panel 2" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:9b600188-988b-4ff0-97af-3f1f0c7890c7", + "@id": "http://speckle.systems/f91a946c0b6ab24039e09bdc954504af", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "27.10188" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ + { + "@id": "http://qudt.org/vocab/quantitykind/Area" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/M2" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Enumerated observable property" + "@value": "QuantifiableProperty" } ] }, { - "@id": "urn:anon:uuid:f063ee43-dae3-43df-b700-29e912870a95", + "@id": "urn:anon:uuid:ee9555ed-6e6f-4823-8b2c-34b57260dcff", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c" }, { - "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae" + "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -2877,21 +2779,21 @@ ] }, { - "@id": "urn:anon:uuid:10951683-ddf8-4dfb-94dd-e9fbe2554bcc", + "@id": "http://speckle.systems/76fcb9d9e1b00b636de89b477b0b25e8", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" }, { - "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13" + "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13" + "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -2901,163 +2803,224 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "InletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c", + "@id": "http://speckle.systems/a2c2a5feadf56d138ece34afc7fa34dd", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "urn:anon:uuid:1389344b-31be-4ef0-9d50-a6fc2a4b1607" - }, + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "10.44643" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "urn:anon:uuid:b24c6918-078b-4208-bd18-e03934c7e9ec" + "@id": "http://qudt.org/vocab/quantitykind/Area" } ], - "http://data.ashrae.org/standard223#connected": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" - }, + "@id": "http://qudt.org/vocab/unit/M2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" + "@value": "QuantifiableProperty" } + ] + }, + { + "@id": "urn:anon:uuid:6cb70a9d-3a3a-467c-9ef8-d37a983ce65a", + "@type": [ + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#connectedFrom": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" + "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" }, { - "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" + "@id": "urn:anon:uuid:3df43ba7-e1b8-442d-bcbc-f88fb9f0976c" } ], - "http://data.ashrae.org/standard223#connectedThrough": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467" - }, + "@id": "urn:anon:uuid:3df43ba7-e1b8-442d-bcbc-f88fb9f0976c" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "urn:anon:uuid:1389344b-31be-4ef0-9d50-a6fc2a4b1607" - }, + "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:b24c6918-078b-4208-bd18-e03934c7e9ec" + "@value": "OutletConnectionPoint" } + ] + }, + { + "@id": "http://speckle.systems/e2d2158f74816df285bd7cdca1361b1b", + "@type": [ + "http://data.ashrae.org/standard223#DomainSpace" ], "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://speckle.systems/f91a946c0b6ab24039e09bdc954504af" - }, - { - "@id": "urn:anon:uuid:4e3eb90b-de00-4ff5-abf5-aaad7e35b878" + "@id": "http://speckle.systems/4a446fc2b9c8224a66df446fc40b2f54" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingSpace1 1" + "@value": "HVACSpace1 1" } ] }, { - "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c", + "@id": "http://speckle.systems/370bcf049d82f09604c111bd8b6ed730", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://speckle.systems/0a8ed6d561b158c49d4145abf05044a7" - }, + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "66.621530000000008192" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "urn:anon:uuid:10debc0f-cb41-46df-b77d-d5098e0064c2" + "@id": "http://qudt.org/vocab/quantitykind/Area" } ], - "http://data.ashrae.org/standard223#connected": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" - }, + "@id": "http://qudt.org/vocab/unit/M2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@value": "QuantifiableProperty" } + ] + }, + { + "@id": "http://speckle.systems/19901540a18560afe307f03df5f1b47a", + "@type": [ + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#connectedFrom": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], - "http://data.ashrae.org/standard223#connectedThrough": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc" - }, + "@id": "http://speckle.systems/1b89da9c68b935d6375d5fe0e90febab" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae" + "@value": "HVACSpace5 5" } + ] + }, + { + "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5", + "@type": [ + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#connectedTo": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + "@id": "http://speckle.systems/3a2dac267747a410f1146caf20e19624" + }, + { + "@id": "urn:anon:uuid:54b8a5c6-657c-401c-8be7-83d02784f9bf" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "http://speckle.systems/0a8ed6d561b158c49d4145abf05044a7" + "@id": "http://speckle.systems/3a2dac267747a410f1146caf20e19624" }, { - "@id": "urn:anon:uuid:10debc0f-cb41-46df-b77d-d5098e0064c2" + "@id": "urn:anon:uuid:54b8a5c6-657c-401c-8be7-83d02784f9bf" } ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://speckle.systems/6bea7df122ce7b9057ace53c8144bd91" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" + "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" } ], - "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "urn:anon:uuid:f063ee43-dae3-43df-b700-29e912870a95" + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire10" + "@value": "ElectricWire" } ] }, { - "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4", + "@id": "http://speckle.systems/125328da567f42d45b3db70fc114453c", + "@type": [ + "http://data.ashrae.org/standard223#DomainSpace" + ], + "http://data.ashrae.org/standard223#hasDomain": [ + { + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://speckle.systems/09b9d2616eec93c51fed15a337b8f676" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HVACSpace6 6" + } + ] + }, + { + "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363", "@type": [ "http://data.ashrae.org/standard223#Luminaire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/2ec6c777b3ca86655677fc5ef4dd0242" + "@id": "http://speckle.systems/cfde270f1c3574c36afefa90a75d3a74" }, { - "@id": "urn:anon:uuid:612c70ce-3388-40ff-9ded-050181c4fc7c" + "@id": "urn:anon:uuid:8b2df890-df92-44af-9b2e-0cf1b63d3f19" } ], "http://data.ashrae.org/standard223#connected": [ { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" }, { "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" @@ -3070,23 +3033,23 @@ ], "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467" + "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab" }, { - "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0" + "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089" } ], "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" } ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/2ec6c777b3ca86655677fc5ef4dd0242" + "@id": "http://speckle.systems/cfde270f1c3574c36afefa90a75d3a74" }, { - "@id": "urn:anon:uuid:612c70ce-3388-40ff-9ded-050181c4fc7c" + "@id": "urn:anon:uuid:8b2df890-df92-44af-9b2e-0cf1b63d3f19" } ], "http://data.ashrae.org/standard223#hasPhysicalLocation": [ @@ -3101,44 +3064,44 @@ ], "http://speckle.systems/cf61289f76bfa19d7beac12ddb186eb7": [ { - "@id": "urn:anon:uuid:4f300be0-9e5e-4670-925d-4de724578d5d" + "@id": "urn:anon:uuid:59a98328-8ca4-46c7-9664-3656aa6760c8" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire2" + "@value": "Luminaire4" } ] }, { - "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24", + "@id": "urn:anon:uuid:3df43ba7-e1b8-442d-bcbc-f88fb9f0976c", "@type": [ "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:3e6d2b17-232c-4998-97d5-246e3758a8bf" + "@id": "urn:anon:uuid:5ac22b7f-6fef-4a66-aaab-70ac707b5334" }, { - "@id": "urn:anon:uuid:b286fc16-381e-44c8-b22b-8a22f8d8f884" + "@id": "urn:anon:uuid:6cb70a9d-3a3a-467c-9ef8-d37a983ce65a" } ], "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:3e6d2b17-232c-4998-97d5-246e3758a8bf" + "@id": "urn:anon:uuid:5ac22b7f-6fef-4a66-aaab-70ac707b5334" }, { - "@id": "urn:anon:uuid:b286fc16-381e-44c8-b22b-8a22f8d8f884" + "@id": "urn:anon:uuid:6cb70a9d-3a3a-467c-9ef8-d37a983ce65a" } ], "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" + "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" } ], "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -3153,370 +3116,471 @@ ] }, { - "@id": "urn:anon:uuid:4e3eb90b-de00-4ff5-abf5-aaad7e35b878", + "@id": "urn:anon:uuid:acece836-1a1c-4d4d-a44f-0e4ac829bee2", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + }, { - "@value": "Enumerated observable property" + "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3" } - ] - }, - { - "@id": "http://speckle.systems/e7cb45f8083fac1804a9f98b64d7c27c", - "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "9.971593" + "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/quantitykind/Area" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://qudt.org/vocab/unit/M2" + "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "QuantifiableProperty" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:3df43ba7-e1b8-442d-bcbc-f88fb9f0976c", + "@id": "http://speckle.systems/492d19a52147a4cb446c1fa2f36c4d2c", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#Zone" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "urn:anon:uuid:5ac22b7f-6fef-4a66-aaab-70ac707b5334" - }, - { - "@id": "urn:anon:uuid:6cb70a9d-3a3a-467c-9ef8-d37a983ce65a" - } - ], - "http://data.ashrae.org/standard223#connectsAt": [ - { - "@id": "urn:anon:uuid:5ac22b7f-6fef-4a66-aaab-70ac707b5334" - }, - { - "@id": "urn:anon:uuid:6cb70a9d-3a3a-467c-9ef8-d37a983ce65a" - } - ], - "http://data.ashrae.org/standard223#connectsFrom": [ - { - "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" - } - ], - "http://data.ashrae.org/standard223#connectsTo": [ - { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Connection" + "@value": "LightingZone1" } ] }, { - "@id": "urn:anon:uuid:b286fc16-381e-44c8-b22b-8a22f8d8f884", + "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Luminaire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + "@id": "http://speckle.systems/94524186447a8326f0bdb024328582e5" }, { - "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24" + "@id": "urn:anon:uuid:6cb70a9d-3a3a-467c-9ef8-d37a983ce65a" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connected": [ { - "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" + }, + { + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e" + }, + { + "@id": "urn:anon:uuid:3df43ba7-e1b8-442d-bcbc-f88fb9f0976c" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#connectedTo": [ { - "@value": "InletConnectionPoint" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" } - ] - }, - { - "@id": "urn:anon:uuid:5ac22b7f-6fef-4a66-aaab-70ac707b5334", - "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" + "@id": "http://speckle.systems/94524186447a8326f0bdb024328582e5" }, { - "@id": "urn:anon:uuid:3df43ba7-e1b8-442d-bcbc-f88fb9f0976c" + "@id": "urn:anon:uuid:6cb70a9d-3a3a-467c-9ef8-d37a983ce65a" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "urn:anon:uuid:3df43ba7-e1b8-442d-bcbc-f88fb9f0976c" + "@id": "http://speckle.systems/57b9c0e1669bb1909e70616872f4e9a6" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" + "@id": "urn:anon:uuid:3bd1d510-0e5d-4708-8d7e-6f285f169064" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@value": "Luminaire12" } ] }, { - "@id": "http://speckle.systems/7e89fafcc8db5a9bf685f49ee58196e0", + "@id": "http://speckle.systems/57b9c0e1669bb1909e70616872f4e9a6", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" }, { - "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963" - } - ], - "http://data.ashrae.org/standard223#connectsThrough": [ - { - "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://speckle.systems/125328da567f42d45b3db70fc114453c" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" + "@id": "http://speckle.systems/6cd35c4f0b85ce96efb182c7f19d4394" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@id": "https://w3id.org/rec#CookingRoom" } ] }, { - "@id": "http://speckle.systems/de373ec944cbda8f9e5e336106ac1bb8", + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#Junction" ], - "http://data.ashrae.org/standard223#contains": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1" + "@id": "urn:anon:uuid:10951683-ddf8-4dfb-94dd-e9fbe2554bcc" }, { - "@id": "http://speckle.systems/57b9c0e1669bb1909e70616872f4e9a6" + "@id": "urn:anon:uuid:4f300be0-9e5e-4670-925d-4de724578d5d" }, { - "@id": "http://speckle.systems/6bea7df122ce7b9057ace53c8144bd91" + "@id": "urn:anon:uuid:59a98328-8ca4-46c7-9664-3656aa6760c8" }, { - "@id": "http://speckle.systems/6d17784757d33ab12665eb12c2010ba3" + "@id": "urn:anon:uuid:811eabab-593e-4752-9373-7fa96e31f22c" }, { - "@id": "http://speckle.systems/bf45d7221dfb200823eae08710bcd8a5" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "Level 1" + "@id": "urn:anon:uuid:c6bba9ad-d815-46df-bb37-7f2e9c619986" } - ] - }, - { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904", - "@type": [ - "http://data.ashrae.org/standard223#Junction" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#connected": [ { - "@id": "urn:anon:uuid:0ce839e5-dfc6-4df3-acfc-caf7b5e2e9b1" + "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" }, { - "@id": "urn:anon:uuid:3bd1d510-0e5d-4708-8d7e-6f285f169064" + "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" }, { - "@id": "urn:anon:uuid:51c17882-0889-4a0c-a469-338b2b209674" + "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" }, { - "@id": "urn:anon:uuid:54b8a5c6-657c-401c-8be7-83d02784f9bf" + "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" }, { - "@id": "urn:anon:uuid:61be919a-5837-4151-81cb-866625d93f6d" + "@id": "http://speckle.systems/e9d83bcd0340d3b2c702a83acd90a597" + } + ], + "http://data.ashrae.org/standard223#connectedFrom": [ + { + "@id": "http://speckle.systems/e9d83bcd0340d3b2c702a83acd90a597" + } + ], + "http://data.ashrae.org/standard223#connectedThrough": [ + { + "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab" }, { - "@id": "urn:anon:uuid:af46adec-c8fc-474f-b386-78c1ffda5447" + "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963" }, { - "@id": "urn:anon:uuid:b8a8780d-28f7-4600-a4db-5d940a48760a" + "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec" }, { - "@id": "urn:anon:uuid:ee9555ed-6e6f-4823-8b2c-34b57260dcff" + "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0" }, { - "@id": "urn:anon:uuid:f063ee43-dae3-43df-b700-29e912870a95" + "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13" } ], - "http://data.ashrae.org/standard223#connected": [ + "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" + "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" }, { - "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" }, { - "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" + "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" }, { - "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" - }, + "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" + } + ], + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" + "@id": "urn:anon:uuid:10951683-ddf8-4dfb-94dd-e9fbe2554bcc" }, { - "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" + "@id": "urn:anon:uuid:4f300be0-9e5e-4670-925d-4de724578d5d" }, { - "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" + "@id": "urn:anon:uuid:59a98328-8ca4-46c7-9664-3656aa6760c8" }, { - "@id": "http://speckle.systems/e2684126ff114d569384c6d3a21f953b" + "@id": "urn:anon:uuid:811eabab-593e-4752-9373-7fa96e31f22c" }, { - "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" + "@id": "urn:anon:uuid:c6bba9ad-d815-46df-bb37-7f2e9c619986" } ], - "http://data.ashrae.org/standard223#connectedFrom": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/e2684126ff114d569384c6d3a21f953b" + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], - "http://data.ashrae.org/standard223#connectedThrough": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c" - }, + "@value": "Junction" + } + ] + }, + { + "@id": "http://speckle.systems/ad7fb21709463c2b8d619900e7323362", + "@type": [ + "http://data.ashrae.org/standard223#Zone" + ], + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e" - }, + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + } + ], + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c" - }, + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba" - }, + "@value": "LightingZone4" + } + ] + }, + { + "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f", + "@type": [ + "http://data.ashrae.org/standard223#ElectricWire" + ], + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e" + "@id": "http://speckle.systems/c6267519c296551e3d74704d80369cb9" }, { - "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae" - }, + "@id": "urn:anon:uuid:b8a8780d-28f7-4600-a4db-5d940a48760a" + } + ], + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f" + "@id": "http://speckle.systems/c6267519c296551e3d74704d80369cb9" }, { - "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5" - }, + "@id": "urn:anon:uuid:b8a8780d-28f7-4600-a4db-5d940a48760a" + } + ], + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#connectedTo": [ + "http://data.ashrae.org/standard223#connectsTo": [ { "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" - }, + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" - }, + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" - }, + "@value": "ElectricWire" + } + ] + }, + { + "@id": "http://speckle.systems/fd1eba64d7bac4ac23691283c56da903", + "@type": [ + "http://data.ashrae.org/standard223#QuantifiableProperty" + ], + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" - }, + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "27.10188" + } + ], + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" + "@id": "http://qudt.org/vocab/quantitykind/Area" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/M2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "QuantifiableProperty" + } + ] + }, + { + "@id": "http://speckle.systems/51e8fb17f82da1e78889646f5a91e60d", + "@type": [ + "http://data.ashrae.org/standard223#DomainSpace" + ], + "http://data.ashrae.org/standard223#hasDomain": [ + { + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://speckle.systems/a4d3df27db1cc0ca04e2d34b221b87d5" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HVACSpace3 3" + } + ] + }, + { + "@id": "urn:anon:uuid:f063ee43-dae3-43df-b700-29e912870a95", + "@type": [ + "http://data.ashrae.org/standard223#OutletConnectionPoint" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" }, { - "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" + "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae" + } + ], + "http://data.ashrae.org/standard223#connectsThrough": [ + { + "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + } + ], + "http://data.ashrae.org/standard223#isConnectionPointOf": [ + { + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OutletConnectionPoint" + } + ] + }, + { + "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d", + "@type": [ + "http://data.ashrae.org/standard223#Connection" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "urn:anon:uuid:59c30214-6db2-4971-8d09-9b013543caf1" }, { - "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" + "@id": "urn:anon:uuid:f9dd0ad1-5b5b-4bc6-8cc5-d7cadc3e8068" + } + ], + "http://data.ashrae.org/standard223#connectsAt": [ + { + "@id": "urn:anon:uuid:59c30214-6db2-4971-8d09-9b013543caf1" }, { - "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" + "@id": "urn:anon:uuid:f9dd0ad1-5b5b-4bc6-8cc5-d7cadc3e8068" + } + ], + "http://data.ashrae.org/standard223#connectsFrom": [ + { + "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" + } + ], + "http://data.ashrae.org/standard223#connectsTo": [ + { + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "urn:anon:uuid:0ce839e5-dfc6-4df3-acfc-caf7b5e2e9b1" - }, - { - "@id": "urn:anon:uuid:3bd1d510-0e5d-4708-8d7e-6f285f169064" - }, + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:51c17882-0889-4a0c-a469-338b2b209674" - }, + "@value": "Connection" + } + ] + }, + { + "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e", + "@type": [ + "http://data.ashrae.org/standard223#ElectricWire" + ], + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:54b8a5c6-657c-401c-8be7-83d02784f9bf" + "@id": "http://speckle.systems/94524186447a8326f0bdb024328582e5" }, { - "@id": "urn:anon:uuid:61be919a-5837-4151-81cb-866625d93f6d" - }, + "@id": "urn:anon:uuid:3bd1d510-0e5d-4708-8d7e-6f285f169064" + } + ], + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:af46adec-c8fc-474f-b386-78c1ffda5447" + "@id": "http://speckle.systems/94524186447a8326f0bdb024328582e5" }, { - "@id": "urn:anon:uuid:b8a8780d-28f7-4600-a4db-5d940a48760a" - }, + "@id": "urn:anon:uuid:3bd1d510-0e5d-4708-8d7e-6f285f169064" + } + ], + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "urn:anon:uuid:ee9555ed-6e6f-4823-8b2c-34b57260dcff" - }, + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + } + ], + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "urn:anon:uuid:f063ee43-dae3-43df-b700-29e912870a95" + "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -3526,39 +3590,39 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Junction" + "@value": "ElectricWire" } ] }, { - "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467", + "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24", "@type": [ "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:612c70ce-3388-40ff-9ded-050181c4fc7c" + "@id": "urn:anon:uuid:3e6d2b17-232c-4998-97d5-246e3758a8bf" }, { - "@id": "urn:anon:uuid:b24c6918-078b-4208-bd18-e03934c7e9ec" + "@id": "urn:anon:uuid:b286fc16-381e-44c8-b22b-8a22f8d8f884" } ], "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:612c70ce-3388-40ff-9ded-050181c4fc7c" + "@id": "urn:anon:uuid:3e6d2b17-232c-4998-97d5-246e3758a8bf" }, { - "@id": "urn:anon:uuid:b24c6918-078b-4208-bd18-e03934c7e9ec" + "@id": "urn:anon:uuid:b286fc16-381e-44c8-b22b-8a22f8d8f884" } ], "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" + "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" } ], "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -3573,174 +3637,251 @@ ] }, { - "@id": "urn:anon:uuid:2b1e0b83-5990-40f2-9cdd-76b295b90b23", + "@id": "urn:anon:uuid:0437f78d-48dc-48cb-9bf8-9da8873c95cc", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" + }, + { + "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3" + } + ], + "http://data.ashrae.org/standard223#connectsThrough": [ + { + "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Light-Visible" + } + ], + "http://data.ashrae.org/standard223#isConnectionPointOf": [ + { + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Enumerated observable property" + "@value": "InletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e", + "@id": "http://speckle.systems/1ea0fcdfbd27598801ae88e7054e3375", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#OccupantMotionSensor" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://speckle.systems/94524186447a8326f0bdb024328582e5" - }, + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + } + ], + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "urn:anon:uuid:3bd1d510-0e5d-4708-8d7e-6f285f169064" + "@id": "http://speckle.systems/6d17784757d33ab12665eb12c2010ba3" } ], - "http://data.ashrae.org/standard223#connectsAt": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://speckle.systems/94524186447a8326f0bdb024328582e5" - }, + "@id": "urn:anon:uuid:2b1e0b83-5990-40f2-9cdd-76b295b90b23" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:3bd1d510-0e5d-4708-8d7e-6f285f169064" + "@value": "Ceiling Occupancy Sensor - Dual Relay - Regular Voltage" } + ] + }, + { + "@id": "http://speckle.systems/dc7fc4c0daab77ddb84ca1a1f5c61e62", + "@type": [ + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "6.967728" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" + "@id": "http://qudt.org/vocab/quantitykind/Area" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "http://qudt.org/vocab/unit/M2" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ElectricWire" + "@value": "QuantifiableProperty" } ] }, { - "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d", + "@id": "urn:anon:uuid:9b600188-988b-4ff0-97af-3f1f0c7890c7", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + ], + "http://data.ashrae.org/standard223#hasEnumerationKind": [ + { + "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enumerated observable property" + } + ] + }, + { + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902", + "@type": [ + "http://data.ashrae.org/standard223#DomainSpace" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/9dd35c17e7f147c29adbfcf900c4b590" + "@id": "urn:anon:uuid:5ac22b7f-6fef-4a66-aaab-70ac707b5334" }, { - "@id": "urn:anon:uuid:3e6d2b17-232c-4998-97d5-246e3758a8bf" + "@id": "urn:anon:uuid:7f3d871f-66c0-4b24-8525-79a53922b9b5" } ], "http://data.ashrae.org/standard223#connected": [ { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" }, { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" } ], "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" + }, + { + "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" } ], "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24" + "@id": "urn:anon:uuid:3df43ba7-e1b8-442d-bcbc-f88fb9f0976c" }, { - "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6" - } - ], - "http://data.ashrae.org/standard223#connectedTo": [ - { - "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + "@id": "urn:anon:uuid:c9850b89-d89f-4e0d-ade3-9d01530cea6e" } ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/9dd35c17e7f147c29adbfcf900c4b590" + "@id": "urn:anon:uuid:5ac22b7f-6fef-4a66-aaab-70ac707b5334" }, { - "@id": "urn:anon:uuid:3e6d2b17-232c-4998-97d5-246e3758a8bf" + "@id": "urn:anon:uuid:7f3d871f-66c0-4b24-8525-79a53922b9b5" } ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://speckle.systems/6bea7df122ce7b9057ace53c8144bd91" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" - } - ], - "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ + "@id": "http://speckle.systems/a2c2a5feadf56d138ece34afc7fa34dd" + }, { - "@id": "urn:anon:uuid:0ce839e5-dfc6-4df3-acfc-caf7b5e2e9b1" + "@id": "urn:anon:uuid:9b600188-988b-4ff0-97af-3f1f0c7890c7" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire9" + "@value": "LightingSpace6 6" } ] }, { - "@id": "http://speckle.systems/e179351fa4b9a853d5c32e30f0a5b81b", + "@id": "urn:anon:uuid:f9dd0ad1-5b5b-4bc6-8cc5-d7cadc3e8068", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "70.777780000000008192" + "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" + }, + { + "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://qudt.org/vocab/quantitykind/Area" + "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/M2" + "@id": "http://data.ashrae.org/standard223#Light-Visible" + } + ], + "http://data.ashrae.org/standard223#isConnectionPointOf": [ + { + "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "QuantifiableProperty" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:3e6d2b17-232c-4998-97d5-246e3758a8bf", + "@id": "urn:anon:uuid:1d52b196-f0fa-4c4f-a562-6dd3269a4aa8", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + ], + "http://data.ashrae.org/standard223#hasEnumerationKind": [ + { + "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enumerated observable property" + } + ] + }, + { + "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3", + "@type": [ + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" + "@id": "urn:anon:uuid:0437f78d-48dc-48cb-9bf8-9da8873c95cc" + }, + { + "@id": "urn:anon:uuid:acece836-1a1c-4d4d-a44f-0e4ac829bee2" + } + ], + "http://data.ashrae.org/standard223#connectsAt": [ + { + "@id": "urn:anon:uuid:0437f78d-48dc-48cb-9bf8-9da8873c95cc" }, { - "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24" + "@id": "urn:anon:uuid:acece836-1a1c-4d4d-a44f-0e4ac829bee2" + } + ], + "http://data.ashrae.org/standard223#connectsFrom": [ + { + "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24" + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -3748,320 +3889,303 @@ "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" + "@value": "Connection" + } + ] + }, + { + "@id": "urn:anon:uuid:acc4f4e0-a41d-461d-9a54-daa35a13a3a4", + "@type": [ + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + ], + "http://data.ashrae.org/standard223#hasEnumerationKind": [ + { + "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "Enumerated observable property" } ] }, { - "@id": "http://speckle.systems/9dd35c17e7f147c29adbfcf900c4b590", + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#DomainSpace" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" + "@id": "urn:anon:uuid:1f9f708f-2761-4486-a68c-69651fd33594" }, { - "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6" + "@id": "urn:anon:uuid:ad61a6a6-1c6b-42de-b13e-49e3ae88486e" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connected": [ { - "@id": "urn:anon:uuid:f215cc32-796a-4f51-9ef9-9db344cbb0c6" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" + }, { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" + }, { - "@value": "InletConnectionPoint" + "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" } - ] - }, - { - "@id": "urn:anon:uuid:6ca5838d-23f6-49d0-bff7-bea099bef2ae", - "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "http://speckle.systems/0a8ed6d561b158c49d4145abf05044a7" + "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a" }, { - "@id": "urn:anon:uuid:f063ee43-dae3-43df-b700-29e912870a95" + "@id": "urn:anon:uuid:7a52a1a8-5e51-4eef-88be-2ae19ab7dcca" } ], - "http://data.ashrae.org/standard223#connectsAt": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/0a8ed6d561b158c49d4145abf05044a7" + "@id": "urn:anon:uuid:1f9f708f-2761-4486-a68c-69651fd33594" }, { - "@id": "urn:anon:uuid:f063ee43-dae3-43df-b700-29e912870a95" + "@id": "urn:anon:uuid:ad61a6a6-1c6b-42de-b13e-49e3ae88486e" } ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "@id": "http://speckle.systems/ea132dc6f9ffb48fcaa86607ff4b65b3" + }, { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "urn:anon:uuid:2b1e0b83-5990-40f2-9cdd-76b295b90b23" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ElectricWire" + "@value": "LightingSpace4 4" } ] }, { - "@id": "urn:anon:uuid:8b2df890-df92-44af-9b2e-0cf1b63d3f19", + "@id": "http://speckle.systems/ba96efc7e5394be487f7fa443496ad99", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" - }, - { - "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089" - } + "http://data.ashrae.org/standard223#OccupantMotionSensor" ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089" + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" + "@id": "urn:anon:uuid:1d52b196-f0fa-4c4f-a562-6dd3269a4aa8" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "Ceiling Occupancy Sensor - Dual Relay - Regular Voltage" } ] }, { - "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f", + "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#Luminaire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/c6267519c296551e3d74704d80369cb9" + "@id": "http://speckle.systems/76fcb9d9e1b00b636de89b477b0b25e8" }, { - "@id": "urn:anon:uuid:b8a8780d-28f7-4600-a4db-5d940a48760a" + "@id": "urn:anon:uuid:e3aa97c1-1726-4551-b4f3-ef37ca81e8dc" } ], - "http://data.ashrae.org/standard223#connectsAt": [ + "http://data.ashrae.org/standard223#connected": [ { - "@id": "http://speckle.systems/c6267519c296551e3d74704d80369cb9" + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" }, - { - "@id": "urn:anon:uuid:b8a8780d-28f7-4600-a4db-5d940a48760a" - } - ], - "http://data.ashrae.org/standard223#connectsFrom": [ { "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a" + }, { - "@value": "ElectricWire" + "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba" } - ] - }, - { - "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e", - "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://speckle.systems/752235573d372d87cbd69a21539496fc" - }, + "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "urn:anon:uuid:af46adec-c8fc-474f-b386-78c1ffda5447" + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" } ], - "http://data.ashrae.org/standard223#connectsAt": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/752235573d372d87cbd69a21539496fc" + "@id": "http://speckle.systems/76fcb9d9e1b00b636de89b477b0b25e8" }, { - "@id": "urn:anon:uuid:af46adec-c8fc-474f-b386-78c1ffda5447" + "@id": "urn:anon:uuid:e3aa97c1-1726-4551-b4f3-ef37ca81e8dc" } ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://speckle.systems/6d17784757d33ab12665eb12c2010ba3" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "urn:anon:uuid:61be919a-5837-4151-81cb-866625d93f6d" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ElectricWire" + "@value": "Luminaire7" } ] }, { - "@id": "http://speckle.systems/e9d83bcd0340d3b2c702a83acd90a597", + "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13", "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/11c04c42e073d0d0b9c2a00aadf4901b" + "@id": "http://speckle.systems/5f824b38a3005d7a877a46f3acfd8ce2" + }, + { + "@id": "urn:anon:uuid:10951683-ddf8-4dfb-94dd-e9fbe2554bcc" } ], - "http://data.ashrae.org/standard223#connected": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/5f824b38a3005d7a877a46f3acfd8ce2" + }, + { + "@id": "urn:anon:uuid:10951683-ddf8-4dfb-94dd-e9fbe2554bcc" } ], - "http://data.ashrae.org/standard223#connectedThrough": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], - "http://data.ashrae.org/standard223#connectedTo": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/11c04c42e073d0d0b9c2a00aadf4901b" + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Panel 1" + "@value": "ElectricWire" } ] }, { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902", + "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:5ac22b7f-6fef-4a66-aaab-70ac707b5334" + "@id": "http://speckle.systems/2ec6c777b3ca86655677fc5ef4dd0242" }, { - "@id": "urn:anon:uuid:7f3d871f-66c0-4b24-8525-79a53922b9b5" + "@id": "urn:anon:uuid:4f300be0-9e5e-4670-925d-4de724578d5d" } ], - "http://data.ashrae.org/standard223#connected": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" + "@id": "http://speckle.systems/2ec6c777b3ca86655677fc5ef4dd0242" }, { - "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" + "@id": "urn:anon:uuid:4f300be0-9e5e-4670-925d-4de724578d5d" } ], - "http://data.ashrae.org/standard223#connectedFrom": [ - { - "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" - }, + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], - "http://data.ashrae.org/standard223#connectedThrough": [ - { - "@id": "urn:anon:uuid:3df43ba7-e1b8-442d-bcbc-f88fb9f0976c" - }, + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "urn:anon:uuid:c9850b89-d89f-4e0d-ade3-9d01530cea6e" + "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "urn:anon:uuid:5ac22b7f-6fef-4a66-aaab-70ac707b5334" - }, + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:7f3d871f-66c0-4b24-8525-79a53922b9b5" + "@value": "ElectricWire" } + ] + }, + { + "@id": "http://speckle.systems/95f72a7878f64d58ca63eddfae7af25d", + "@type": [ + "http://data.ashrae.org/standard223#Zone" ], "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "http://speckle.systems/a2c2a5feadf56d138ece34afc7fa34dd" + "@id": "http://speckle.systems/125328da567f42d45b3db70fc114453c" }, { - "@id": "urn:anon:uuid:9b600188-988b-4ff0-97af-3f1f0c7890c7" + "@id": "http://speckle.systems/19901540a18560afe307f03df5f1b47a" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingSpace6 6" + "@value": "HVACZone2" } ] }, { - "@id": "http://speckle.systems/a2c2a5feadf56d138ece34afc7fa34dd", + "@id": "http://speckle.systems/7427f4edf3217904298499200651e74d", "@type": [ "http://data.ashrae.org/standard223#QuantifiableProperty" ], "http://data.ashrae.org/standard223#hasValue": [ { "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "10.44643" + "@value": "13.93546" } ], "http://qudt.org/schema/qudt/hasQuantityKind": [ @@ -4081,57 +4205,31 @@ ] }, { - "@id": "http://speckle.systems/1ea0fcdfbd27598801ae88e7054e3375", - "@type": [ - "http://data.ashrae.org/standard223#OccupantMotionSensor" - ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ - { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" - } - ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ - { - "@id": "http://speckle.systems/6d17784757d33ab12665eb12c2010ba3" - } - ], - "http://data.ashrae.org/standard223#observes": [ - { - "@id": "urn:anon:uuid:2b1e0b83-5990-40f2-9cdd-76b295b90b23" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "Ceiling Occupancy Sensor - Dual Relay - Regular Voltage" - } - ] - }, - { - "@id": "urn:anon:uuid:921cc707-511d-4495-b866-64b97d5fd653", + "@id": "http://speckle.systems/752235573d372d87cbd69a21539496fc", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" }, { - "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089" + "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089" + "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ @@ -4141,90 +4239,69 @@ ] }, { - "@id": "http://speckle.systems/dc7fc4c0daab77ddb84ca1a1f5c61e62", + "@id": "http://speckle.systems/e8da8729e64c6631dd75d8521b207b02", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "6.967728" - } + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://qudt.org/vocab/quantitykind/Area" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://qudt.org/vocab/unit/M2" + "@id": "http://speckle.systems/370bcf049d82f09604c111bd8b6ed730" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "QuantifiableProperty" + "@value": "HVACSpace2 2" } ] }, { - "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c", + "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://speckle.systems/7dd75f093c0714b7e12fd42700a05617" + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" }, { - "@id": "urn:anon:uuid:ee9555ed-6e6f-4823-8b2c-34b57260dcff" - } - ], - "http://data.ashrae.org/standard223#connectsAt": [ - { - "@id": "http://speckle.systems/7dd75f093c0714b7e12fd42700a05617" + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" }, { - "@id": "urn:anon:uuid:ee9555ed-6e6f-4823-8b2c-34b57260dcff" - } - ], - "http://data.ashrae.org/standard223#connectsFrom": [ - { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" - } - ], - "http://data.ashrae.org/standard223#connectsTo": [ - { - "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" + "@id": "http://speckle.systems/e2d2158f74816df285bd7cdca1361b1b" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "http://speckle.systems/e7583f67f85b0f6389e10c50c39b2ce5" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ElectricWire" + "@id": "https://w3id.org/rec#OfficeRoom" } ] }, { - "@id": "urn:anon:uuid:612c70ce-3388-40ff-9ded-050181c4fc7c", + "@id": "urn:anon:uuid:ad61a6a6-1c6b-42de-b13e-49e3ae88486e", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" }, { - "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467" + "@id": "urn:anon:uuid:7a52a1a8-5e51-4eef-88be-2ae19ab7dcca" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467" + "@id": "urn:anon:uuid:7a52a1a8-5e51-4eef-88be-2ae19ab7dcca" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -4234,41 +4311,41 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" + "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "InletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:59c30214-6db2-4971-8d09-9b013543caf1", + "@id": "http://speckle.systems/5f824b38a3005d7a877a46f3acfd8ce2", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" + "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" }, { - "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d" + "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d" + "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" + "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ @@ -4278,13 +4355,13 @@ ] }, { - "@id": "urn:anon:uuid:ad61a6a6-1c6b-42de-b13e-49e3ae88486e", + "@id": "urn:anon:uuid:3c8b46af-5157-4ab0-aa2f-f18654fca413", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" }, { "@id": "urn:anon:uuid:7a52a1a8-5e51-4eef-88be-2ae19ab7dcca" @@ -4302,31 +4379,31 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:e3aa97c1-1726-4551-b4f3-ef37ca81e8dc", + "@id": "urn:anon:uuid:4ccc8bf6-f274-47dd-9d93-1ec17000a9b5", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" }, { - "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a" + "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a" + "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -4336,186 +4413,122 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "InletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f", + "@id": "http://speckle.systems/0d693228e1e46738efa9a20a427e0324", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" - ], - "http://data.ashrae.org/standard223#hasValue": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "39.29" - } + "http://data.ashrae.org/standard223#Zone" ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://qudt.org/vocab/quantitykind/RadiantFlux" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "http://qudt.org/vocab/unit/W" + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "QuantifiableProperty" + "@value": "LightingZone3" } ] }, { - "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba", + "@id": "urn:anon:uuid:5d916fd6-70ed-44ce-8b50-35cccfcb3fd9", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/76fcb9d9e1b00b636de89b477b0b25e8" - }, - { - "@id": "urn:anon:uuid:61be919a-5837-4151-81cb-866625d93f6d" - } - ], - "http://data.ashrae.org/standard223#connectsAt": [ - { - "@id": "http://speckle.systems/76fcb9d9e1b00b636de89b477b0b25e8" + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" }, { - "@id": "urn:anon:uuid:61be919a-5837-4151-81cb-866625d93f6d" + "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277" } ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ElectricWire" + "@value": "InletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/09c967d9e3e0ed6b4350105a6ebd1246", + "@id": "http://speckle.systems/e7889732040d3cbea26a18b9455b74ed", "@type": [ "http://data.ashrae.org/standard223#OccupantMotionSensor" ], "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" } ], "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "http://speckle.systems/bf45d7221dfb200823eae08710bcd8a5" + "@id": "http://speckle.systems/6bea7df122ce7b9057ace53c8144bd91" } ], "http://data.ashrae.org/standard223#observes": [ { - "@id": "urn:anon:uuid:ac460e0f-1be9-4468-a049-d71b0f87826f" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "Ceiling Occupancy Sensor - Dual Relay - Regular Voltage" - } - ] - }, - { - "@id": "http://speckle.systems/11c04c42e073d0d0b9c2a00aadf4901b", - "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://speckle.systems/e9d83bcd0340d3b2c702a83acd90a597" - }, - { - "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec" - } - ], - "http://data.ashrae.org/standard223#connectsThrough": [ - { - "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" - } - ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ - { - "@id": "http://speckle.systems/e9d83bcd0340d3b2c702a83acd90a597" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "OutletConnectionPoint" - } - ] - }, - { - "@id": "urn:anon:uuid:1d52b196-f0fa-4c4f-a562-6dd3269a4aa8", - "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" - ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ - { - "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + "@id": "urn:anon:uuid:acc4f4e0-a41d-461d-9a54-daa35a13a3a4" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Enumerated observable property" + "@value": "Ceiling Occupancy Sensor - Dual Relay - Regular Voltage" } ] }, { - "@id": "urn:anon:uuid:acece836-1a1c-4d4d-a44f-0e4ac829bee2", + "@id": "urn:anon:uuid:b8a8780d-28f7-4600-a4db-5d940a48760a", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" }, { - "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3" + "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3" + "@id": "urn:anon:uuid:7fb62c19-b090-480e-96db-459952c6b32f" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ @@ -4525,148 +4538,151 @@ ] }, { - "@id": "http://srr/test", + "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765", "@type": [ - "http://www.w3.org/2002/07/owl#Ontology" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://www.w3.org/2002/07/owl#imports": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/model/all" - } - ], - "http://www.w3.org/2002/07/owl#versionInfo": [ + "@id": "http://speckle.systems/3a2dac267747a410f1146caf20e19624" + }, { - "@value": "Created with TopBraid Composer" + "@id": "urn:anon:uuid:eab6f5b3-bd72-4cd4-b28c-e85792758498" } - ] - }, - { - "@id": "urn:anon:uuid:ee9555ed-6e6f-4823-8b2c-34b57260dcff", - "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#connected": [ { - "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" }, { "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "urn:anon:uuid:175c95b7-d680-4c20-8247-ba3acfe47f7c" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5" + }, + { + "@id": "urn:anon:uuid:c9850b89-d89f-4e0d-ade3-9d01530cea6e" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@value": "OutletConnectionPoint" + "@id": "http://speckle.systems/3a2dac267747a410f1146caf20e19624" + }, + { + "@id": "urn:anon:uuid:eab6f5b3-bd72-4cd4-b28c-e85792758498" } - ] - }, - { - "@id": "http://speckle.systems/e7583f67f85b0f6389e10c50c39b2ce5", - "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "55.6644" + "@id": "http://speckle.systems/57b9c0e1669bb1909e70616872f4e9a6" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://qudt.org/vocab/quantitykind/Area" + "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ { - "@id": "http://qudt.org/vocab/unit/M2" + "@id": "urn:anon:uuid:54b8a5c6-657c-401c-8be7-83d02784f9bf" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "QuantifiableProperty" + "@value": "Luminaire11" } ] }, { - "@id": "urn:anon:uuid:c9850b89-d89f-4e0d-ade3-9d01530cea6e", + "@id": "http://speckle.systems/6bea7df122ce7b9057ace53c8144bd91", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "urn:anon:uuid:7f3d871f-66c0-4b24-8525-79a53922b9b5" + "@id": "http://speckle.systems/19901540a18560afe307f03df5f1b47a" }, { - "@id": "urn:anon:uuid:eab6f5b3-bd72-4cd4-b28c-e85792758498" + "@id": "http://speckle.systems/2c2a82563c8143440dd69b135ae21b40" + }, + { + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" } ], - "http://data.ashrae.org/standard223#connectsAt": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "urn:anon:uuid:7f3d871f-66c0-4b24-8525-79a53922b9b5" - }, + "@id": "http://speckle.systems/69962dede1bb7985d7d34dbb8e6cd3fb" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "urn:anon:uuid:eab6f5b3-bd72-4cd4-b28c-e85792758498" + "@id": "https://w3id.org/rec#Hallway" } + ] + }, + { + "@id": "http://speckle.systems/69962dede1bb7985d7d34dbb8e6cd3fb", + "@type": [ + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "10.76127" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" + "@id": "http://qudt.org/vocab/quantitykind/Area" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://qudt.org/schema/qudt/hasUnit": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://qudt.org/vocab/unit/M2" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Connection" + "@value": "QuantifiableProperty" } ] }, { - "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0", + "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467", "@type": [ "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:1389344b-31be-4ef0-9d50-a6fc2a4b1607" + "@id": "urn:anon:uuid:612c70ce-3388-40ff-9ded-050181c4fc7c" }, { - "@id": "urn:anon:uuid:b766ec0c-b7f9-429a-8692-a86839752b25" + "@id": "urn:anon:uuid:b24c6918-078b-4208-bd18-e03934c7e9ec" } ], "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:1389344b-31be-4ef0-9d50-a6fc2a4b1607" + "@id": "urn:anon:uuid:612c70ce-3388-40ff-9ded-050181c4fc7c" }, { - "@id": "urn:anon:uuid:b766ec0c-b7f9-429a-8692-a86839752b25" + "@id": "urn:anon:uuid:b24c6918-078b-4208-bd18-e03934c7e9ec" } ], "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" + "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4" } ], "http://data.ashrae.org/standard223#connectsTo": [ @@ -4686,115 +4702,89 @@ ] }, { - "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9", + "@id": "urn:anon:uuid:3e6d2b17-232c-4998-97d5-246e3758a8bf", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/752235573d372d87cbd69a21539496fc" - }, - { - "@id": "urn:anon:uuid:acece836-1a1c-4d4d-a44f-0e4ac829bee2" - } - ], - "http://data.ashrae.org/standard223#connected": [ - { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" - }, - { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" - } - ], - "http://data.ashrae.org/standard223#connectedFrom": [ - { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" - } - ], - "http://data.ashrae.org/standard223#connectedThrough": [ - { - "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e" - }, - { - "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3" - } - ], - "http://data.ashrae.org/standard223#connectedTo": [ - { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" - } - ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://speckle.systems/752235573d372d87cbd69a21539496fc" + "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" }, { - "@id": "urn:anon:uuid:acece836-1a1c-4d4d-a44f-0e4ac829bee2" + "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24" } ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://speckle.systems/bf45d7221dfb200823eae08710bcd8a5" + "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], - "http://speckle.systems/557801e2f2af7a958f8695cea79d0ccf": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "urn:anon:uuid:af46adec-c8fc-474f-b386-78c1ffda5447" + "@id": "http://speckle.systems/51ea7fcbe7115215d07d377c50ea741d" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire6" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/5f824b38a3005d7a877a46f3acfd8ce2", + "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" + "@id": "urn:anon:uuid:10debc0f-cb41-46df-b77d-d5098e0064c2" }, { - "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13" + "@id": "urn:anon:uuid:4ccc8bf6-f274-47dd-9d93-1ec17000a9b5" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13" + "@id": "urn:anon:uuid:10debc0f-cb41-46df-b77d-d5098e0064c2" + }, + { + "@id": "urn:anon:uuid:4ccc8bf6-f274-47dd-9d93-1ec17000a9b5" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@value": "Connection" } ] }, { - "@id": "urn:anon:uuid:eab6f5b3-bd72-4cd4-b28c-e85792758498", + "@id": "urn:anon:uuid:7f3d871f-66c0-4b24-8525-79a53922b9b5", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" }, { "@id": "urn:anon:uuid:c9850b89-d89f-4e0d-ade3-9d01530cea6e" @@ -4812,57 +4802,31 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/a6289d648cce40322bcc57cd2d0ce765" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "OutletConnectionPoint" - } - ] - }, - { - "@id": "http://speckle.systems/c99202312957ab2cda5c607438d19879", - "@type": [ - "http://data.ashrae.org/standard223#OccupantMotionSensor" - ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ - { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" - } - ], - "http://data.ashrae.org/standard223#hasPhysicalLocation": [ - { - "@id": "http://speckle.systems/57b9c0e1669bb1909e70616872f4e9a6" - } - ], - "http://data.ashrae.org/standard223#observes": [ - { - "@id": "urn:anon:uuid:9b600188-988b-4ff0-97af-3f1f0c7890c7" + "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Ceiling Occupancy Sensor - Dual Relay - Regular Voltage" + "@value": "InletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:af46adec-c8fc-474f-b386-78c1ffda5447", + "@id": "http://speckle.systems/11c04c42e073d0d0b9c2a00aadf4901b", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e" + "@id": "http://speckle.systems/e9d83bcd0340d3b2c702a83acd90a597" }, { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e" + "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -4872,7 +4836,7 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://speckle.systems/e9d83bcd0340d3b2c702a83acd90a597" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ @@ -4882,237 +4846,217 @@ ] }, { - "@id": "http://speckle.systems/4a446fc2b9c8224a66df446fc40b2f54", + "@id": "urn:anon:uuid:1005667e-b35b-4fdd-bd93-5ad769b52b76", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "583.4444" + "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" + }, + { + "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://qudt.org/vocab/quantitykind/Area" + "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/M2" + "@id": "http://data.ashrae.org/standard223#Light-Visible" + } + ], + "http://data.ashrae.org/standard223#isConnectionPointOf": [ + { + "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "QuantifiableProperty" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/e2684126ff114d569384c6d3a21f953b", + "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d", "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" + "http://data.ashrae.org/standard223#Luminaire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/44531f11cb0626bac97aa43d6732fdf2" + "@id": "http://speckle.systems/7e89fafcc8db5a9bf685f49ee58196e0" + }, + { + "@id": "urn:anon:uuid:1005667e-b35b-4fdd-bd93-5ad769b52b76" } ], "http://data.ashrae.org/standard223#connected": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + }, + { + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + } + ], + "http://data.ashrae.org/standard223#connectedFrom": [ + { + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "urn:anon:uuid:387e2a78-1798-4d67-81e2-338d09097a2c" + "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277" + }, + { + "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963" } ], "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" } ], "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://speckle.systems/44531f11cb0626bac97aa43d6732fdf2" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "@id": "http://speckle.systems/7e89fafcc8db5a9bf685f49ee58196e0" + }, { - "@value": "Panel 2" + "@id": "urn:anon:uuid:1005667e-b35b-4fdd-bd93-5ad769b52b76" } - ] - }, - { - "@id": "http://speckle.systems/7427f4edf3217904298499200651e74d", - "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "13.93546" + "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://qudt.org/vocab/quantitykind/Area" + "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://speckle.systems/cf61289f76bfa19d7beac12ddb186eb7": [ { - "@id": "http://qudt.org/vocab/unit/M2" + "@id": "urn:anon:uuid:811eabab-593e-4752-9373-7fa96e31f22c" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "QuantifiableProperty" + "@value": "Luminaire3" } ] }, { - "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab", + "@id": "urn:anon:uuid:10951683-ddf8-4dfb-94dd-e9fbe2554bcc", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/cfde270f1c3574c36afefa90a75d3a74" - }, - { - "@id": "urn:anon:uuid:59a98328-8ca4-46c7-9664-3656aa6760c8" - } - ], - "http://data.ashrae.org/standard223#connectsAt": [ - { - "@id": "http://speckle.systems/cfde270f1c3574c36afefa90a75d3a74" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" }, { - "@id": "urn:anon:uuid:59a98328-8ca4-46c7-9664-3656aa6760c8" + "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13" } ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "urn:anon:uuid:e6ba7afb-2017-483f-842f-4659d9d9cd13" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ElectricWire" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec", + "@id": "http://speckle.systems/1c5c543a6f7f2fe54028685db9cfc6bf", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://speckle.systems/11c04c42e073d0d0b9c2a00aadf4901b" - }, - { - "@id": "urn:anon:uuid:c6bba9ad-d815-46df-bb37-7f2e9c619986" - } - ], - "http://data.ashrae.org/standard223#connectsAt": [ - { - "@id": "http://speckle.systems/11c04c42e073d0d0b9c2a00aadf4901b" - }, - { - "@id": "urn:anon:uuid:c6bba9ad-d815-46df-bb37-7f2e9c619986" - } + "http://data.ashrae.org/standard223#OccupantMotionSensor" ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://speckle.systems/e9d83bcd0340d3b2c702a83acd90a597" + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "urn:anon:uuid:4e3eb90b-de00-4ff5-abf5-aaad7e35b878" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Panel 1" + "@value": "Ceiling Occupancy Sensor - Dual Relay - Regular Voltage" } ] }, { - "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963", + "@id": "urn:anon:uuid:1389344b-31be-4ef0-9d50-a6fc2a4b1607", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/7e89fafcc8db5a9bf685f49ee58196e0" - }, - { - "@id": "urn:anon:uuid:811eabab-593e-4752-9373-7fa96e31f22c" - } - ], - "http://data.ashrae.org/standard223#connectsAt": [ - { - "@id": "http://speckle.systems/7e89fafcc8db5a9bf685f49ee58196e0" + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" }, { - "@id": "urn:anon:uuid:811eabab-593e-4752-9373-7fa96e31f22c" + "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0" } ], - "http://data.ashrae.org/standard223#connectsFrom": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0" } ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://data.ashrae.org/standard223#Medium-Electricity" + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ElectricWire" + "@value": "InletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:7f3d871f-66c0-4b24-8525-79a53922b9b5", + "@id": "urn:anon:uuid:b766ec0c-b7f9-429a-8692-a86839752b25", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" + "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" }, { - "@id": "urn:anon:uuid:c9850b89-d89f-4e0d-ade3-9d01530cea6e" + "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:c9850b89-d89f-4e0d-ade3-9d01530cea6e" + "@id": "urn:anon:uuid:94cc6ff7-3988-482a-8ed1-014ed22410c0" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -5122,31 +5066,31 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" + "@id": "http://speckle.systems/d6e912ed2be0ff94dc43dac184751099" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:0437f78d-48dc-48cb-9bf8-9da8873c95cc", + "@id": "urn:anon:uuid:8b2df890-df92-44af-9b2e-0cf1b63d3f19", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" + "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" }, { - "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3" + "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:cb1a3251-d580-4e22-92e7-09f7fb5f28a3" + "@id": "urn:anon:uuid:e308506d-6975-41a4-8fc4-3b424acc4089" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -5156,65 +5100,73 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" + "@id": "http://speckle.systems/b66563b7bfe4102bce3ef8e985bd0363" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:5d916fd6-70ed-44ce-8b50-35cccfcb3fd9", + "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + "@id": "http://speckle.systems/76fcb9d9e1b00b636de89b477b0b25e8" }, { - "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277" + "@id": "urn:anon:uuid:61be919a-5837-4151-81cb-866625d93f6d" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:04387b1b-2ebb-4f4d-85f8-e09dff75e277" + "@id": "http://speckle.systems/76fcb9d9e1b00b636de89b477b0b25e8" + }, + { + "@id": "urn:anon:uuid:61be919a-5837-4151-81cb-866625d93f6d" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + "@id": "http://speckle.systems/374038c273236b43838a8c20018321ff" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "InletConnectionPoint" + "@value": "ElectricWire" } ] }, { - "@id": "urn:anon:uuid:3c8b46af-5157-4ab0-aa2f-f18654fca413", + "@id": "urn:anon:uuid:59c30214-6db2-4971-8d09-9b013543caf1", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" }, { - "@id": "urn:anon:uuid:7a52a1a8-5e51-4eef-88be-2ae19ab7dcca" + "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:7a52a1a8-5e51-4eef-88be-2ae19ab7dcca" + "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -5224,44 +5176,50 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/d298411089a72ef2a4bc13240ba28ab7" + "@id": "http://speckle.systems/d4726c9d3e54772908eaf557b6ca57b0" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "InletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/e2d2158f74816df285bd7cdca1361b1b", + "@id": "http://speckle.systems/e179351fa4b9a853d5c32e30f0a5b81b", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#QuantifiableProperty" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "70.777780000000008192" } ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://qudt.org/schema/qudt/hasQuantityKind": [ { - "@id": "http://speckle.systems/4a446fc2b9c8224a66df446fc40b2f54" + "@id": "http://qudt.org/vocab/quantitykind/Area" + } + ], + "http://qudt.org/schema/qudt/hasUnit": [ + { + "@id": "http://qudt.org/vocab/unit/M2" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "HVACSpace1 1" + "@value": "QuantifiableProperty" } ] }, { - "@id": "urn:anon:uuid:61be919a-5837-4151-81cb-866625d93f6d", + "@id": "urn:anon:uuid:3bd1d510-0e5d-4708-8d7e-6f285f169064", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba" + "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e" }, { "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" @@ -5269,7 +5227,7 @@ ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:4c251bac-c1a3-4cb1-a117-449921cfacba" + "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -5289,55 +5247,63 @@ ] }, { - "@id": "urn:anon:uuid:10debc0f-cb41-46df-b77d-d5098e0064c2", + "@id": "urn:anon:uuid:d72b7939-889c-48bf-a1d1-26d940b390ec", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" + "@id": "http://speckle.systems/11c04c42e073d0d0b9c2a00aadf4901b" }, { - "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc" + "@id": "urn:anon:uuid:c6bba9ad-d815-46df-bb37-7f2e9c619986" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectsAt": [ { - "@id": "urn:anon:uuid:4cf2febf-95eb-4ca6-9a68-7cd4b6d935cc" + "@id": "http://speckle.systems/11c04c42e073d0d0b9c2a00aadf4901b" + }, + { + "@id": "urn:anon:uuid:c6bba9ad-d815-46df-bb37-7f2e9c619986" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectsFrom": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://speckle.systems/e9d83bcd0340d3b2c702a83acd90a597" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://speckle.systems/fb5be382923ff6b15149c342d2af601c" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#Medium-Electricity" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "Panel 1" } ] }, { - "@id": "urn:anon:uuid:3bd1d510-0e5d-4708-8d7e-6f285f169064", + "@id": "urn:anon:uuid:4f300be0-9e5e-4670-925d-4de724578d5d", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" }, { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e" + "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -5347,7 +5313,7 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ @@ -5357,31 +5323,31 @@ ] }, { - "@id": "http://speckle.systems/752235573d372d87cbd69a21539496fc", + "@id": "urn:anon:uuid:b286fc16-381e-44c8-b22b-8a22f8d8f884", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" }, { - "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e" + "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:54ed52b1-7dd3-4caf-82df-19cff3f45e6e" + "@id": "urn:anon:uuid:baad889c-3682-4005-bb02-49583bc4fc24" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/13805a3e92df5e0a5341842c8f015cc9" + "@id": "http://speckle.systems/562255d59fd4f64f254dbafb117ee7af" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ @@ -5391,52 +5357,31 @@ ] }, { - "@id": "http://speckle.systems/72e691110ad3c29f15b67f759efe7f12", - "@type": [ - "http://data.ashrae.org/standard223#Zone" - ], - "http://data.ashrae.org/standard223#hasDomain": [ - { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" - } - ], - "http://data.ashrae.org/standard223#hasDomainSpace": [ - { - "@id": "http://speckle.systems/007b5bfe549fd68a27e2bddee6a22902" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "LightingZone6" - } - ] - }, - { - "@id": "urn:anon:uuid:1f9f708f-2761-4486-a68c-69651fd33594", + "@id": "http://speckle.systems/7e89fafcc8db5a9bf685f49ee58196e0", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" }, { - "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a" + "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:41e5e388-ad94-499f-985a-4d82b5d9bd4a" + "@id": "urn:anon:uuid:7d8ae7be-cb25-499b-9931-f030a23d9963" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/1ab8739f934598804951e7e9a87d6bc6" + "@id": "http://speckle.systems/c67a5d0f55aefafca601a742e8dd601d" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ @@ -5446,21 +5391,21 @@ ] }, { - "@id": "urn:anon:uuid:f9dd0ad1-5b5b-4bc6-8cc5-d7cadc3e8068", + "@id": "urn:anon:uuid:b24c6918-078b-4208-bd18-e03934c7e9ec", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" }, { - "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d" + "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:050ae45d-ce38-44e1-9d34-1f683969ae0d" + "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -5470,123 +5415,173 @@ ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/05749166d93671bedf16efb52636ce38" + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "InletConnectionPoint" } ] }, { - "@id": "http://speckle.systems/ff91a7215190baa32561f76355dc5679", + "@id": "http://speckle.systems/5a9c3d36b6a148f5cdd1b2536580513f", "@type": [ "http://data.ashrae.org/standard223#Zone" ], "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" } ], "http://data.ashrae.org/standard223#hasDomainSpace": [ { - "@id": "http://speckle.systems/95309677f7c98fddeafbe2a3e3166bcb" + "@id": "http://speckle.systems/2c2a82563c8143440dd69b135ae21b40" + }, + { + "@id": "http://speckle.systems/51e8fb17f82da1e78889646f5a91e60d" + }, + { + "@id": "http://speckle.systems/e2d2158f74816df285bd7cdca1361b1b" + }, + { + "@id": "http://speckle.systems/e8da8729e64c6631dd75d8521b207b02" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightingZone2" + "@value": "HVACZone1" } ] }, { - "@id": "http://speckle.systems/69962dede1bb7985d7d34dbb8e6cd3fb", + "@id": "urn:anon:uuid:54b8a5c6-657c-401c-8be7-83d02784f9bf", "@type": [ - "http://data.ashrae.org/standard223#QuantifiableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@type": "http://www.w3.org/2001/XMLSchema#decimal", - "@value": "10.76127" + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" + }, + { + "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5" } ], - "http://qudt.org/schema/qudt/hasQuantityKind": [ + "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "http://qudt.org/vocab/quantitykind/Area" + "@id": "urn:anon:uuid:990f90c6-44a2-40eb-bcd3-1e0015a7e6a5" } ], - "http://qudt.org/schema/qudt/hasUnit": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://qudt.org/vocab/unit/M2" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + } + ], + "http://data.ashrae.org/standard223#isConnectionPointOf": [ + { + "@id": "urn:anon:uuid:56bd4b6d-6653-4482-9eeb-6c7e06d91904" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "QuantifiableProperty" + "@value": "OutletConnectionPoint" } ] }, { - "@id": "urn:anon:uuid:59a98328-8ca4-46c7-9664-3656aa6760c8", + "@id": "http://speckle.systems/b93ca42c908da93fdbb7c0c85280caa4", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Luminaire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab" + "@id": "http://speckle.systems/2ec6c777b3ca86655677fc5ef4dd0242" + }, + { + "@id": "urn:anon:uuid:612c70ce-3388-40ff-9ded-050181c4fc7c" + } + ], + "http://data.ashrae.org/standard223#connected": [ + { + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" }, { "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], - "http://data.ashrae.org/standard223#connectsThrough": [ + "http://data.ashrae.org/standard223#connectedFrom": [ { - "@id": "urn:anon:uuid:0644c6bf-f126-47c8-927b-cb017a1044ab" + "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467" + }, + { + "@id": "urn:anon:uuid:e4ba2421-39ed-4aed-b1e9-e2384a7b30a0" } ], - "http://data.ashrae.org/standard223#isConnectionPointOf": [ + "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "urn:anon:uuid:bb63ef48-2005-46f6-aeb9-13129539a8e1" + "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" + } + ], + "http://data.ashrae.org/standard223#hasConnectionPoint": [ + { + "@id": "http://speckle.systems/2ec6c777b3ca86655677fc5ef4dd0242" + }, + { + "@id": "urn:anon:uuid:612c70ce-3388-40ff-9ded-050181c4fc7c" + } + ], + "http://data.ashrae.org/standard223#hasPhysicalLocation": [ + { + "@id": "http://speckle.systems/349399722cf147403127919a17f05ed1" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://speckle.systems/73abeca540415fb5cc14ce1b47d9591f" + } + ], + "http://speckle.systems/cf61289f76bfa19d7beac12ddb186eb7": [ + { + "@id": "urn:anon:uuid:4f300be0-9e5e-4670-925d-4de724578d5d" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "OutletConnectionPoint" + "@value": "Luminaire2" } ] }, { - "@id": "urn:anon:uuid:b24c6918-078b-4208-bd18-e03934c7e9ec", + "@id": "http://speckle.systems/94524186447a8326f0bdb024328582e5", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" + "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" }, { - "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467" + "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e" } ], "http://data.ashrae.org/standard223#connectsThrough": [ { - "@id": "urn:anon:uuid:7c9441e0-b9f7-469d-aee9-5f25423af467" + "@id": "urn:anon:uuid:385f4da7-af2d-4e4c-9457-e12939ce685e" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://data.ashrae.org/standard223#isConnectionPointOf": [ { - "@id": "http://speckle.systems/9c55540bd83fb1a20d7e954dddd03c7c" + "@id": "http://speckle.systems/dbb04c32b57dc0fbb22bf408cbe423ba" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ @@ -5596,18 +5591,23 @@ ] }, { - "@id": "urn:anon:uuid:acc4f4e0-a41d-461d-9a54-daa35a13a3a4", + "@id": "http://speckle.systems/2c2a82563c8143440dd69b135ae21b40", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + "@id": "http://data.ashrae.org/standard223#Domain-HVAC" + } + ], + "http://data.ashrae.org/standard223#hasProperty": [ + { + "@id": "http://speckle.systems/e179351fa4b9a853d5c32e30f0a5b81b" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Enumerated observable property" + "@value": "HVACSpace4 4" } ] } diff --git a/compiled/lbnl-example-2.ttl b/compiled/lbnl-example-2.ttl index 8b2556ad..24143951 100644 --- a/compiled/lbnl-example-2.ttl +++ b/compiled/lbnl-example-2.ttl @@ -1,32480 +1,32480 @@ -@prefix ns1: . -@prefix ns2: . -@prefix ns3: . -@prefix ns4: . +@prefix ns1: . +@prefix ns2: . +@prefix ns3: . +@prefix ns4: . @prefix owl: . @prefix rdfs: . -ns2:01178 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor ; +ns4:01178 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor ; rdfs:label "cwc.r_in_temp" ; - ns1:hasObservationLocation ns2:53361 ; - ns1:observes ns2:78652 ; + ns2:hasObservationLocation ns4:53361 ; + ns2:observes ns4:78652 ; rdfs:comment "refrigerant temperature after coil" . -ns2:05078 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:05078 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "Floor_4.RTU_9.Plenum.press_sens" ; - ns1:hasObservationLocation ns2:05101 ; - ns1:observes ns2:52674 . + ns2:hasObservationLocation ns4:05101 ; + ns2:observes ns4:52674 . -ns2:06885 a ns1:PhysicalSpace ; +ns4:06885 a ns2:PhysicalSpace ; rdfs:label "8647D" . -ns2:07176 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor ; +ns4:07176 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor ; rdfs:label "cwc.r_in_temp" ; - ns1:hasObservationLocation ns2:78346 ; - ns1:observes ns2:95660 ; + ns2:hasObservationLocation ns4:78346 ; + ns2:observes ns4:95660 ; rdfs:comment "refrigerant temperature after coil" . -ns2:08514 a ns1:PhysicalSpace ; +ns4:08514 a ns2:PhysicalSpace ; rdfs:label "6429" . -ns2:14979 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:14979 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "Floor_5.RTU_8.Plenum.press_sens" ; - ns1:hasObservationLocation ns2:77070 ; - ns1:observes ns2:20292 . + ns2:hasObservationLocation ns4:77070 ; + ns2:observes ns4:20292 . -ns2:16186 a ns1:PhysicalSpace ; +ns4:16186 a ns2:PhysicalSpace ; rdfs:label "8999A" . -ns2:27682 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor ; +ns4:27682 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor ; rdfs:label "cwc.r_in_temp" ; - ns1:hasObservationLocation ns2:17608 ; - ns1:observes ns2:73369 ; + ns2:hasObservationLocation ns4:17608 ; + ns2:observes ns4:73369 ; rdfs:comment "refrigerant temperature after coil" . -ns2:34180 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:34180 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "Floor_3.RTU_7.Plenum.press_sens" ; - ns1:hasObservationLocation ns2:42308 ; - ns1:observes ns2:00687 . + ns2:hasObservationLocation ns4:42308 ; + ns2:observes ns4:00687 . -ns2:34578 a ns1:Zone, - ns2:CoreZone, - ns4:HVACZone ; +ns4:34578 a ns2:Zone, + ns4:CoreZone, + ns3:HVACZone ; rdfs:label "Floor_7.CoreZone" ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasDomainSpace ns2:37324, - ns2:44036 ; - ns4:airInlet ns2:32889 ; - ns4:airOutlet ns2:35667 ; - ns4:hasZoneConnectionPoint ns2:32889, - ns2:35667 . - -ns2:36891 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasDomainSpace ns4:37324, + ns4:44036 ; + ns3:airInlet ns4:32889 ; + ns3:airOutlet ns4:35667 ; + ns3:hasZoneConnectionPoint ns4:32889, + ns4:35667 . + +ns4:36891 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor ; rdfs:label "cwc.r_in_temp" ; - ns1:hasObservationLocation ns2:52516 ; - ns1:observes ns2:30453 ; + ns2:hasObservationLocation ns4:52516 ; + ns2:observes ns4:30453 ; rdfs:comment "refrigerant temperature after coil" . -ns2:47262 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:47262 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "Floor_3.RTU_5.Plenum.press_sens" ; - ns1:hasObservationLocation ns2:88028 ; - ns1:observes ns2:65911 . + ns2:hasObservationLocation ns4:88028 ; + ns2:observes ns4:65911 . -ns2:47573 a ns1:Zone, - ns2:CoreZone, - ns4:HVACZone ; +ns4:47573 a ns2:Zone, + ns4:CoreZone, + ns3:HVACZone ; rdfs:label "Floor_0.CoreZone" ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasDomainSpace ns2:03605, - ns2:18693 ; - ns4:airInlet ns2:18193 ; - ns4:airOutlet ns2:91933 ; - ns4:hasZoneConnectionPoint ns2:18193, - ns2:91933 . - -ns2:54279 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasDomainSpace ns4:03605, + ns4:18693 ; + ns3:airInlet ns4:18193 ; + ns3:airOutlet ns4:91933 ; + ns3:hasZoneConnectionPoint ns4:18193, + ns4:91933 . + +ns4:54279 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "Floor_2.RTU_5.Plenum.press_sens" ; - ns1:hasObservationLocation ns2:50126 ; - ns1:observes ns2:81756 . + ns2:hasObservationLocation ns4:50126 ; + ns2:observes ns4:81756 . -ns2:55124 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor ; +ns4:55124 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor ; rdfs:label "cwc.r_in_temp" ; - ns1:hasObservationLocation ns2:49899 ; - ns1:observes ns2:80928 ; + ns2:hasObservationLocation ns4:49899 ; + ns2:observes ns4:80928 ; rdfs:comment "refrigerant temperature after coil" . -ns2:56115 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:56115 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "Floor_3.RTU_9.Plenum.press_sens" ; - ns1:hasObservationLocation ns2:10117 ; - ns1:observes ns2:05144 . + ns2:hasObservationLocation ns4:10117 ; + ns2:observes ns4:05144 . -ns2:56277 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:56277 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "Floor_2.RTU_7.Plenum.press_sens" ; - ns1:hasObservationLocation ns2:05353 ; - ns1:observes ns2:38133 . + ns2:hasObservationLocation ns4:05353 ; + ns2:observes ns4:38133 . -ns2:57447 a ns1:PhysicalSpace ; +ns4:57447 a ns2:PhysicalSpace ; rdfs:label "9257" . -ns2:60747 a ns1:PhysicalSpace ; +ns4:60747 a ns2:PhysicalSpace ; rdfs:label "0738" . -ns2:61932 a ns1:PhysicalSpace ; +ns4:61932 a ns2:PhysicalSpace ; rdfs:label "Floor_5" ; - ns1:contains ns2:00700, - ns2:01187, - ns2:01646, - ns2:02246, - ns2:02277, - ns2:03420, - ns2:03937, - ns2:04780, - ns2:04787, - ns2:04868, - ns2:05243, - ns2:05323, - ns2:05382, - ns2:06044, - ns2:06081, - ns2:06116, - ns2:06702, - ns2:06724, - ns2:06806, - ns2:07010, - ns2:07121, - ns2:07624, - ns2:07953, - ns2:08522, - ns2:08731, - ns2:08961, - ns2:09372, - ns2:09798, - ns2:10304, - ns2:11759, - ns2:11960, - ns2:12391, - ns2:12678, - ns2:13258, - ns2:13400, - ns2:13774, - ns2:13790, - ns2:14922, - ns2:15014, - ns2:15315, - ns2:15343, - ns2:16005, - ns2:16108, - ns2:16446, - ns2:17621, - ns2:17670, - ns2:17753, - ns2:17921, - ns2:18495, - ns2:18528, - ns2:18662, - ns2:19371, - ns2:19571, - ns2:19838, - ns2:20662, - ns2:20880, - ns2:21018, - ns2:21551, - ns2:21689, - ns2:22030, - ns2:22115, - ns2:22204, - ns2:22286, - ns2:22904, - ns2:23122, - ns2:23884, - ns2:24849, - ns2:26578, - ns2:26713, - ns2:27511, - ns2:29710, - ns2:30001, - ns2:30067, - ns2:30508, - ns2:30587, - ns2:30993, - ns2:31961, - ns2:32491, - ns2:34070, - ns2:34214, - ns2:34586, - ns2:34646, - ns2:34667, - ns2:35170, - ns2:35173, - ns2:35265, - ns2:35366, - ns2:35624, - ns2:36041, - ns2:36095, - ns2:36499, - ns2:36632, - ns2:36677, - ns2:37032, - ns2:37475, - ns2:37945, - ns2:38040, - ns2:38468, - ns2:39011, - ns2:39130, - ns2:39558, - ns2:39778, - ns2:41515, - ns2:41538, - ns2:41627, - ns2:41810, - ns2:43535, - ns2:44107, - ns2:44207, - ns2:44589, - ns2:44718, - ns2:45213, - ns2:45589, - ns2:45679, - ns2:45770, - ns2:45985, - ns2:46251, - ns2:46276, - ns2:46317, - ns2:48314, - ns2:48813, - ns2:48956, - ns2:49869, - ns2:50009, - ns2:50296, - ns2:50418, - ns2:50438, - ns2:50612, - ns2:52644, - ns2:53035, - ns2:53211, - ns2:53405, - ns2:55769, - ns2:55776, - ns2:56161, - ns2:56382, - ns2:56903, - ns2:57010, - ns2:59147, - ns2:59232, - ns2:59264, - ns2:60866, - ns2:60928, - ns2:61068, - ns2:61555, - ns2:62045, - ns2:62141, - ns2:62254, - ns2:62783, - ns2:63019, - ns2:63389, - ns2:63488, - ns2:63489, - ns2:63769, - ns2:63957, - ns2:64212, - ns2:64731, - ns2:64769, - ns2:65562, - ns2:66235, - ns2:66810, - ns2:66884, - ns2:67151, - ns2:69082, - ns2:69839, - ns2:70215, - ns2:70455, - ns2:71398, - ns2:71485, - ns2:71826, - ns2:72490, - ns2:73763, - ns2:74622, - ns2:75022, - ns2:75385, - ns2:75463, - ns2:76108, - ns2:77598, - ns2:79569, - ns2:81636, - ns2:81671, - ns2:82418, - ns2:82747, - ns2:83072, - ns2:83387, - ns2:83407, - ns2:83412, - ns2:83578, - ns2:83874, - ns2:83903, - ns2:84427, - ns2:85182, - ns2:85187, - ns2:85625, - ns2:85937, - ns2:86307, - ns2:86972, - ns2:87206, - ns2:87806, - ns2:88328, - ns2:89053, - ns2:89383, - ns2:89693, - ns2:90387, - ns2:91479, - ns2:91827, - ns2:92225, - ns2:92543, - ns2:92769, - ns2:92785, - ns2:93142, - ns2:93682, - ns2:94427, - ns2:94648, - ns2:95437, - ns2:95514, - ns2:96074, - ns2:96546, - ns2:96550, - ns2:96724, - ns2:96875, - ns2:96967, - ns2:97516, - ns2:98582, - ns2:99435 . - -ns2:67271 a ns1:PhysicalSpace ; + ns2:contains ns4:00700, + ns4:01187, + ns4:01646, + ns4:02246, + ns4:02277, + ns4:03420, + ns4:03937, + ns4:04780, + ns4:04787, + ns4:04868, + ns4:05243, + ns4:05323, + ns4:05382, + ns4:06044, + ns4:06081, + ns4:06116, + ns4:06702, + ns4:06724, + ns4:06806, + ns4:07010, + ns4:07121, + ns4:07624, + ns4:07953, + ns4:08522, + ns4:08731, + ns4:08961, + ns4:09372, + ns4:09798, + ns4:10304, + ns4:11759, + ns4:11960, + ns4:12391, + ns4:12678, + ns4:13258, + ns4:13400, + ns4:13774, + ns4:13790, + ns4:14922, + ns4:15014, + ns4:15315, + ns4:15343, + ns4:16005, + ns4:16108, + ns4:16446, + ns4:17621, + ns4:17670, + ns4:17753, + ns4:17921, + ns4:18495, + ns4:18528, + ns4:18662, + ns4:19371, + ns4:19571, + ns4:19838, + ns4:20662, + ns4:20880, + ns4:21018, + ns4:21551, + ns4:21689, + ns4:22030, + ns4:22115, + ns4:22204, + ns4:22286, + ns4:22904, + ns4:23122, + ns4:23884, + ns4:24849, + ns4:26578, + ns4:26713, + ns4:27511, + ns4:29710, + ns4:30001, + ns4:30067, + ns4:30508, + ns4:30587, + ns4:30993, + ns4:31961, + ns4:32491, + ns4:34070, + ns4:34214, + ns4:34586, + ns4:34646, + ns4:34667, + ns4:35170, + ns4:35173, + ns4:35265, + ns4:35366, + ns4:35624, + ns4:36041, + ns4:36095, + ns4:36499, + ns4:36632, + ns4:36677, + ns4:37032, + ns4:37475, + ns4:37945, + ns4:38040, + ns4:38468, + ns4:39011, + ns4:39130, + ns4:39558, + ns4:39778, + ns4:41515, + ns4:41538, + ns4:41627, + ns4:41810, + ns4:43535, + ns4:44107, + ns4:44207, + ns4:44589, + ns4:44718, + ns4:45213, + ns4:45589, + ns4:45679, + ns4:45770, + ns4:45985, + ns4:46251, + ns4:46276, + ns4:46317, + ns4:48314, + ns4:48813, + ns4:48956, + ns4:49869, + ns4:50009, + ns4:50296, + ns4:50418, + ns4:50438, + ns4:50612, + ns4:52644, + ns4:53035, + ns4:53211, + ns4:53405, + ns4:55769, + ns4:55776, + ns4:56161, + ns4:56382, + ns4:56903, + ns4:57010, + ns4:59147, + ns4:59232, + ns4:59264, + ns4:60866, + ns4:60928, + ns4:61068, + ns4:61555, + ns4:62045, + ns4:62141, + ns4:62254, + ns4:62783, + ns4:63019, + ns4:63389, + ns4:63488, + ns4:63489, + ns4:63769, + ns4:63957, + ns4:64212, + ns4:64731, + ns4:64769, + ns4:65562, + ns4:66235, + ns4:66810, + ns4:66884, + ns4:67151, + ns4:69082, + ns4:69839, + ns4:70215, + ns4:70455, + ns4:71398, + ns4:71485, + ns4:71826, + ns4:72490, + ns4:73763, + ns4:74622, + ns4:75022, + ns4:75385, + ns4:75463, + ns4:76108, + ns4:77598, + ns4:79569, + ns4:81636, + ns4:81671, + ns4:82418, + ns4:82747, + ns4:83072, + ns4:83387, + ns4:83407, + ns4:83412, + ns4:83578, + ns4:83874, + ns4:83903, + ns4:84427, + ns4:85182, + ns4:85187, + ns4:85625, + ns4:85937, + ns4:86307, + ns4:86972, + ns4:87206, + ns4:87806, + ns4:88328, + ns4:89053, + ns4:89383, + ns4:89693, + ns4:90387, + ns4:91479, + ns4:91827, + ns4:92225, + ns4:92543, + ns4:92769, + ns4:92785, + ns4:93142, + ns4:93682, + ns4:94427, + ns4:94648, + ns4:95437, + ns4:95514, + ns4:96074, + ns4:96546, + ns4:96550, + ns4:96724, + ns4:96875, + ns4:96967, + ns4:97516, + ns4:98582, + ns4:99435 . + +ns4:67271 a ns2:PhysicalSpace ; rdfs:label "Floor_8" ; - ns1:contains ns2:00798, - ns2:01630, - ns2:01794, - ns2:02149, - ns2:02736, - ns2:02897, - ns2:02942, - ns2:03545, - ns2:04152, - ns2:04158, - ns2:04343, - ns2:04690, - ns2:05316, - ns2:05662, - ns2:05917, - ns2:06305, - ns2:06325, - ns2:06740, - ns2:06773, - ns2:07044, - ns2:07416, - ns2:07463, - ns2:07657, - ns2:08293, - ns2:08521, - ns2:08606, - ns2:09270, - ns2:09332, - ns2:09371, - ns2:09526, - ns2:09701, - ns2:09784, - ns2:10133, - ns2:10599, - ns2:12136, - ns2:12625, - ns2:14387, - ns2:15468, - ns2:15964, - ns2:16110, - ns2:16192, - ns2:16980, - ns2:17753, - ns2:18189, - ns2:18755, - ns2:19555, - ns2:19704, - ns2:20203, - ns2:20563, - ns2:21203, - ns2:22374, - ns2:22550, - ns2:23259, - ns2:24531, - ns2:24545, - ns2:24836, - ns2:24972, - ns2:25306, - ns2:25514, - ns2:25905, - ns2:26412, - ns2:27210, - ns2:27239, - ns2:27819, - ns2:27870, - ns2:27874, - ns2:29869, - ns2:31131, - ns2:32335, - ns2:32350, - ns2:33723, - ns2:34035, - ns2:35199, - ns2:35763, - ns2:35902, - ns2:36756, - ns2:38128, - ns2:38135, - ns2:38232, - ns2:38499, - ns2:38591, - ns2:38609, - ns2:38773, - ns2:38894, - ns2:39454, - ns2:40023, - ns2:40046, - ns2:40192, - ns2:40910, - ns2:41023, - ns2:41733, - ns2:41947, - ns2:41983, - ns2:42355, - ns2:43689, - ns2:43797, - ns2:43907, - ns2:43934, - ns2:44085, - ns2:44653, - ns2:44727, - ns2:44907, - ns2:45852, - ns2:46553, - ns2:47484, - ns2:47899, - ns2:48589, - ns2:48820, - ns2:48935, - ns2:49032, - ns2:49603, - ns2:50388, - ns2:50980, - ns2:51271, - ns2:52183, - ns2:53031, - ns2:54301, - ns2:54724, - ns2:55153, - ns2:56015, - ns2:56223, - ns2:56542, - ns2:56993, - ns2:57274, - ns2:58115, - ns2:59609, - ns2:59765, - ns2:59887, - ns2:60321, - ns2:60868, - ns2:60876, - ns2:60970, - ns2:61102, - ns2:61247, - ns2:61643, - ns2:61790, - ns2:61888, - ns2:62700, - ns2:63323, - ns2:64191, - ns2:64652, - ns2:65705, - ns2:65983, - ns2:67243, - ns2:67438, - ns2:67513, - ns2:68806, - ns2:68885, - ns2:68922, - ns2:69341, - ns2:69551, - ns2:70293, - ns2:70544, - ns2:70923, - ns2:71799, - ns2:72384, - ns2:72668, - ns2:72795, - ns2:72995, - ns2:73181, - ns2:73715, - ns2:74136, - ns2:74269, - ns2:74471, - ns2:75043, - ns2:75528, - ns2:76006, - ns2:76277, - ns2:77089, - ns2:77288, - ns2:78620, - ns2:78697, - ns2:78886, - ns2:79483, - ns2:79772, - ns2:80198, - ns2:80357, - ns2:80517, - ns2:81213, - ns2:81234, - ns2:81522, - ns2:81704, - ns2:81728, - ns2:82092, - ns2:82837, - ns2:83022, - ns2:83083, - ns2:83119, - ns2:83156, - ns2:83325, - ns2:83859, - ns2:83976, - ns2:84311, - ns2:84775, - ns2:85693, - ns2:86195, - ns2:86254, - ns2:86392, - ns2:86745, - ns2:86860, - ns2:86863, - ns2:87095, - ns2:87468, - ns2:87499, - ns2:87527, - ns2:87576, - ns2:87629, - ns2:87632, - ns2:88310, - ns2:88426, - ns2:88866, - ns2:88897, - ns2:88965, - ns2:89695, - ns2:89739, - ns2:90849, - ns2:91041, - ns2:91989, - ns2:92084, - ns2:92564, - ns2:92787, - ns2:92865, - ns2:93667, - ns2:94446, - ns2:94526, - ns2:94888, - ns2:97335, - ns2:97357, - ns2:98379, - ns2:98447, - ns2:98488, - ns2:99272, - ns2:99669, - ns2:99984 . - -ns2:69348 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor ; + ns2:contains ns4:00798, + ns4:01630, + ns4:01794, + ns4:02149, + ns4:02736, + ns4:02897, + ns4:02942, + ns4:03545, + ns4:04152, + ns4:04158, + ns4:04343, + ns4:04690, + ns4:05316, + ns4:05662, + ns4:05917, + ns4:06305, + ns4:06325, + ns4:06740, + ns4:06773, + ns4:07044, + ns4:07416, + ns4:07463, + ns4:07657, + ns4:08293, + ns4:08521, + ns4:08606, + ns4:09270, + ns4:09332, + ns4:09371, + ns4:09526, + ns4:09701, + ns4:09784, + ns4:10133, + ns4:10599, + ns4:12136, + ns4:12625, + ns4:14387, + ns4:15468, + ns4:15964, + ns4:16110, + ns4:16192, + ns4:16980, + ns4:17753, + ns4:18189, + ns4:18755, + ns4:19555, + ns4:19704, + ns4:20203, + ns4:20563, + ns4:21203, + ns4:22374, + ns4:22550, + ns4:23259, + ns4:24531, + ns4:24545, + ns4:24836, + ns4:24972, + ns4:25306, + ns4:25514, + ns4:25905, + ns4:26412, + ns4:27210, + ns4:27239, + ns4:27819, + ns4:27870, + ns4:27874, + ns4:29869, + ns4:31131, + ns4:32335, + ns4:32350, + ns4:33723, + ns4:34035, + ns4:35199, + ns4:35763, + ns4:35902, + ns4:36756, + ns4:38128, + ns4:38135, + ns4:38232, + ns4:38499, + ns4:38591, + ns4:38609, + ns4:38773, + ns4:38894, + ns4:39454, + ns4:40023, + ns4:40046, + ns4:40192, + ns4:40910, + ns4:41023, + ns4:41733, + ns4:41947, + ns4:41983, + ns4:42355, + ns4:43689, + ns4:43797, + ns4:43907, + ns4:43934, + ns4:44085, + ns4:44653, + ns4:44727, + ns4:44907, + ns4:45852, + ns4:46553, + ns4:47484, + ns4:47899, + ns4:48589, + ns4:48820, + ns4:48935, + ns4:49032, + ns4:49603, + ns4:50388, + ns4:50980, + ns4:51271, + ns4:52183, + ns4:53031, + ns4:54301, + ns4:54724, + ns4:55153, + ns4:56015, + ns4:56223, + ns4:56542, + ns4:56993, + ns4:57274, + ns4:58115, + ns4:59609, + ns4:59765, + ns4:59887, + ns4:60321, + ns4:60868, + ns4:60876, + ns4:60970, + ns4:61102, + ns4:61247, + ns4:61643, + ns4:61790, + ns4:61888, + ns4:62700, + ns4:63323, + ns4:64191, + ns4:64652, + ns4:65705, + ns4:65983, + ns4:67243, + ns4:67438, + ns4:67513, + ns4:68806, + ns4:68885, + ns4:68922, + ns4:69341, + ns4:69551, + ns4:70293, + ns4:70544, + ns4:70923, + ns4:71799, + ns4:72384, + ns4:72668, + ns4:72795, + ns4:72995, + ns4:73181, + ns4:73715, + ns4:74136, + ns4:74269, + ns4:74471, + ns4:75043, + ns4:75528, + ns4:76006, + ns4:76277, + ns4:77089, + ns4:77288, + ns4:78620, + ns4:78697, + ns4:78886, + ns4:79483, + ns4:79772, + ns4:80198, + ns4:80357, + ns4:80517, + ns4:81213, + ns4:81234, + ns4:81522, + ns4:81704, + ns4:81728, + ns4:82092, + ns4:82837, + ns4:83022, + ns4:83083, + ns4:83119, + ns4:83156, + ns4:83325, + ns4:83859, + ns4:83976, + ns4:84311, + ns4:84775, + ns4:85693, + ns4:86195, + ns4:86254, + ns4:86392, + ns4:86745, + ns4:86860, + ns4:86863, + ns4:87095, + ns4:87468, + ns4:87499, + ns4:87527, + ns4:87576, + ns4:87629, + ns4:87632, + ns4:88310, + ns4:88426, + ns4:88866, + ns4:88897, + ns4:88965, + ns4:89695, + ns4:89739, + ns4:90849, + ns4:91041, + ns4:91989, + ns4:92084, + ns4:92564, + ns4:92787, + ns4:92865, + ns4:93667, + ns4:94446, + ns4:94526, + ns4:94888, + ns4:97335, + ns4:97357, + ns4:98379, + ns4:98447, + ns4:98488, + ns4:99272, + ns4:99669, + ns4:99984 . + +ns4:69348 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor ; rdfs:label "cwc.r_in_temp" ; - ns1:hasObservationLocation ns2:57979 ; - ns1:observes ns2:43932 ; + ns2:hasObservationLocation ns4:57979 ; + ns2:observes ns4:43932 ; rdfs:comment "refrigerant temperature after coil" . -ns2:86229 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor ; +ns4:86229 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor ; rdfs:label "cwc.r_in_temp" ; - ns1:hasObservationLocation ns2:86369 ; - ns1:observes ns2:67933 ; + ns2:hasObservationLocation ns4:86369 ; + ns2:observes ns4:67933 ; rdfs:comment "refrigerant temperature after coil" . -ns2:00798 a ns1:PhysicalSpace ; +ns4:00798 a ns2:PhysicalSpace ; rdfs:label "5080B" . -ns2:00813 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:00813 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:01630 a ns1:PhysicalSpace ; +ns4:01630 a ns2:PhysicalSpace ; rdfs:label "9733L" . -ns2:01864 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:01864 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:01892 a ns1:PhysicalSpace ; +ns4:01892 a ns2:PhysicalSpace ; rdfs:label "1-26D.enclosure" ; - ns1:contains ns2:93667 ; - ns1:encloses ns2:91944 . + ns2:contains ns4:93667 ; + ns2:encloses ns4:91944 . -ns2:02246 a ns1:PhysicalSpace ; +ns4:02246 a ns2:PhysicalSpace ; rdfs:label "4186E" . -ns2:02861 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:02861 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:03003 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:03003 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:03218 a ns1:PhysicalSpace ; +ns4:03218 a ns2:PhysicalSpace ; rdfs:label "5646" . -ns2:03631 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:03631 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:03867 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:03867 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:03902 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:03902 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:04343 a ns1:PhysicalSpace ; +ns4:04343 a ns2:PhysicalSpace ; rdfs:label "7480G" . -ns2:04780 a ns1:PhysicalSpace ; +ns4:04780 a ns2:PhysicalSpace ; rdfs:label "9320" . -ns2:04787 a ns1:PhysicalSpace ; +ns4:04787 a ns2:PhysicalSpace ; rdfs:label "5560" . -ns2:04802 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:04802 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:04811 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:04811 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:04912 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:04912 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:05172 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:05172 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:05323 a ns1:PhysicalSpace ; +ns4:05323 a ns2:PhysicalSpace ; rdfs:label "4019K" . -ns2:05432 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:05432 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "ra_pres" ; - ns1:contains ns2:25706, - ns2:73016 ; - ns1:hasObservationLocation ns2:90476 ; - ns1:hasProperty ns2:51842 ; - ns1:observes ns2:51842 ; - ns4:contains ns2:29329 ; - ns4:differential_static_pressure ns2:51842 ; + ns2:contains ns4:25706, + ns4:73016 ; + ns2:hasObservationLocation ns4:90476 ; + ns2:hasProperty ns4:51842 ; + ns2:observes ns4:51842 ; + ns3:contains ns4:29329 ; + ns3:differential_static_pressure ns4:51842 ; rdfs:comment "RA_static_pressure" . -ns2:05917 a ns1:PhysicalSpace ; +ns4:05917 a ns2:PhysicalSpace ; rdfs:label "0566" . -ns2:06055 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:06055 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:06116 a ns1:PhysicalSpace ; +ns4:06116 a ns2:PhysicalSpace ; rdfs:label "5884" . -ns2:06702 a ns1:PhysicalSpace ; +ns4:06702 a ns2:PhysicalSpace ; rdfs:label "8896A" . -ns2:06724 a ns1:PhysicalSpace ; +ns4:06724 a ns2:PhysicalSpace ; rdfs:label "9364A" . -ns2:06806 a ns1:PhysicalSpace ; +ns4:06806 a ns2:PhysicalSpace ; rdfs:label "7195C" . -ns2:06899 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:06899 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:06935 a , - ns4:Differential ; +ns4:06935 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:11443, - ns2:53738 ; - ns1:hasOutput ns2:92523 ; - ns4:differential_output ns2:92523 ; - ns4:high_input ns2:11443 ; - ns4:low_input ns2:53738 ; + ns2:hasInput ns4:11443, + ns4:53738 ; + ns2:hasOutput ns4:92523 ; + ns3:differential_output ns4:92523 ; + ns3:high_input ns4:11443 ; + ns3:low_input ns4:53738 ; rdfs:comment "Will output High minus Low" . -ns2:07044 a ns1:PhysicalSpace ; +ns4:07044 a ns2:PhysicalSpace ; rdfs:label "1662H" . -ns2:07056 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:07056 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:07190 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:07190 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:07452 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:07452 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:07463 a ns1:PhysicalSpace ; +ns4:07463 a ns2:PhysicalSpace ; rdfs:label "6718G" . -ns2:07624 a ns1:PhysicalSpace ; +ns4:07624 a ns2:PhysicalSpace ; rdfs:label "7261B" . -ns2:07953 a ns1:PhysicalSpace ; +ns4:07953 a ns2:PhysicalSpace ; rdfs:label "4756A" . -ns2:08521 a ns1:PhysicalSpace ; +ns4:08521 a ns2:PhysicalSpace ; rdfs:label "2765A" . -ns2:08522 a ns1:PhysicalSpace ; +ns4:08522 a ns2:PhysicalSpace ; rdfs:label "5599G" . -ns2:08528 a ns1:PhysicalSpace ; +ns4:08528 a ns2:PhysicalSpace ; rdfs:label "6-11.enclosure" ; - ns1:contains ns2:01794, - ns2:88897 ; - ns1:encloses ns2:60471 . - -ns2:08607 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:contains ns4:01794, + ns4:88897 ; + ns2:encloses ns4:60471 . + +ns4:08607 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:08731 a ns1:PhysicalSpace ; +ns4:08731 a ns2:PhysicalSpace ; rdfs:label "4398D" . -ns2:08745 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:08745 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "ff_press" ; - ns1:contains ns2:33269, - ns2:38616 ; - ns1:hasObservationLocation ns2:17912 ; - ns1:hasProperty ns2:92693 ; - ns1:observes ns2:92693 ; - ns4:contains ns2:15772 ; - ns4:differential_static_pressure ns2:92693 ; + ns2:contains ns4:33269, + ns4:38616 ; + ns2:hasObservationLocation ns4:17912 ; + ns2:hasProperty ns4:92693 ; + ns2:observes ns4:92693 ; + ns3:contains ns4:15772 ; + ns3:differential_static_pressure ns4:92693 ; rdfs:comment "FF_differential_pressure" . -ns2:08870 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:08870 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:09070 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:09070 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:09273 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirTemperatureSensor ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:09273 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirTemperatureSensor ; rdfs:label "sa_temp" ; - ns1:hasObservationLocation ns2:60124 ; - ns1:observes ns2:14807 ; + ns2:hasObservationLocation ns4:60124 ; + ns2:observes ns4:14807 ; rdfs:comment "SA_temperature" . -ns2:09309 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:09309 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:09701 a ns1:PhysicalSpace ; +ns4:09701 a ns2:PhysicalSpace ; rdfs:label "8390" . -ns2:10304 a ns1:PhysicalSpace ; +ns4:10304 a ns2:PhysicalSpace ; rdfs:label "4348B" . -ns2:10405 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:10405 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:21752 . + ns2:observes ns4:21752 . -ns2:10518 a ns1:PhysicalSpace ; +ns4:10518 a ns2:PhysicalSpace ; rdfs:label "G-1.enclosure" ; - ns1:contains ns2:01187, - ns2:05382, - ns2:16446, - ns2:50438, - ns2:64212, - ns2:83903 ; - ns1:encloses ns2:47830 . - -ns2:11783 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; + ns2:contains ns4:01187, + ns4:05382, + ns4:16446, + ns4:50438, + ns4:64212, + ns4:83903 ; + ns2:encloses ns4:47830 . + +ns4:11783 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:68980 . + ns2:observes ns4:68980 . -ns2:11899 a ns1:PhysicalSpace ; +ns4:11899 a ns2:PhysicalSpace ; rdfs:label "8-34B.enclosure" ; - ns1:contains ns2:83083 ; - ns1:encloses ns2:69136 . + ns2:contains ns4:83083 ; + ns2:encloses ns4:69136 . -ns2:11960 a ns1:PhysicalSpace ; +ns4:11960 a ns2:PhysicalSpace ; rdfs:label "1152C" . -ns2:12186 a ns1:PhysicalSpace ; +ns4:12186 a ns2:PhysicalSpace ; rdfs:label "1-43.enclosure" ; - ns1:contains ns2:60876 ; - ns1:encloses ns2:13344 . + ns2:contains ns4:60876 ; + ns2:encloses ns4:13344 . -ns2:12493 a ns1:PhysicalSpace ; +ns4:12493 a ns2:PhysicalSpace ; rdfs:label "9-76.enclosure" ; - ns1:contains ns2:20203, - ns2:38128, - ns2:54301 ; - ns1:encloses ns2:50418 . + ns2:contains ns4:20203, + ns4:38128, + ns4:54301 ; + ns2:encloses ns4:50418 . -ns2:12625 a ns1:PhysicalSpace ; +ns4:12625 a ns2:PhysicalSpace ; rdfs:label "5940N" . -ns2:12678 a ns1:PhysicalSpace ; +ns4:12678 a ns2:PhysicalSpace ; rdfs:label "Floor_7.SouthPerimeterZoneEnclosure" ; - ns1:contains ns2:02277, - ns2:05243, - ns2:10678, - ns2:19302, - ns2:19374, - ns2:20880, - ns2:22394, - ns2:27511, - ns2:32318, - ns2:36041, - ns2:45985, - ns2:50612, - ns2:58313, - ns2:59232, - ns2:62141, - ns2:63092, - ns2:65562, - ns2:67477, - ns2:68998, - ns2:71398, - ns2:72682, - ns2:83072, - ns2:89347, - ns2:90387, - ns2:92225, - ns2:92769, - ns2:96669, - ns2:96967, - ns2:99083 . - -ns2:12857 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:contains ns4:02277, + ns4:05243, + ns4:10678, + ns4:19302, + ns4:19374, + ns4:20880, + ns4:22394, + ns4:27511, + ns4:32318, + ns4:36041, + ns4:45985, + ns4:50612, + ns4:58313, + ns4:59232, + ns4:62141, + ns4:63092, + ns4:65562, + ns4:67477, + ns4:68998, + ns4:71398, + ns4:72682, + ns4:83072, + ns4:89347, + ns4:90387, + ns4:92225, + ns4:92769, + ns4:96669, + ns4:96967, + ns4:99083 . + +ns4:12857 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:13258 a ns1:PhysicalSpace ; +ns4:13258 a ns2:PhysicalSpace ; rdfs:label "9351" . -ns2:13581 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:13581 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:13702 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:13702 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:13774 a ns1:PhysicalSpace ; +ns4:13774 a ns2:PhysicalSpace ; rdfs:label "6300D" . -ns2:13790 a ns1:PhysicalSpace ; +ns4:13790 a ns2:PhysicalSpace ; rdfs:label "4659A" . -ns2:14150 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:14150 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:14387 a ns1:PhysicalSpace ; +ns4:14387 a ns2:PhysicalSpace ; rdfs:label "9030R" . -ns2:15022 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirTemperatureSensor ; +ns4:15022 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirTemperatureSensor ; rdfs:label "ra_temp" ; - ns1:hasObservationLocation ns2:51136 ; - ns1:observes ns2:55720 ; + ns2:hasObservationLocation ns4:51136 ; + ns2:observes ns4:55720 ; rdfs:comment "RA_temp_sensor" . -ns2:15275 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:CO7Concentration ; +ns4:15275 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:CO7Concentration ; rdfs:label "15275" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:15362 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:15362 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:60047 . + ns2:observes ns4:60047 . -ns2:15468 a ns1:PhysicalSpace ; +ns4:15468 a ns2:PhysicalSpace ; rdfs:label "2986Q" . -ns2:15772 a , - ns4:Differential ; +ns4:15772 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:43255, - ns2:83058 ; - ns1:hasOutput ns2:85272 ; - ns4:differential_output ns2:85272 ; - ns4:high_input ns2:43255 ; - ns4:low_input ns2:83058 ; + ns2:hasInput ns4:43255, + ns4:83058 ; + ns2:hasOutput ns4:85272 ; + ns3:differential_output ns4:85272 ; + ns3:high_input ns4:43255 ; + ns3:low_input ns4:83058 ; rdfs:comment "Will output High minus Low" . -ns2:15860 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:15860 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:15964 a ns1:PhysicalSpace ; +ns4:15964 a ns2:PhysicalSpace ; rdfs:label "7995" . -ns2:15997 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:15997 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:16108 a ns1:PhysicalSpace ; +ns4:16108 a ns2:PhysicalSpace ; rdfs:label "6155" . -ns2:16192 a ns1:PhysicalSpace ; +ns4:16192 a ns2:PhysicalSpace ; rdfs:label "6871B" . -ns2:16980 a ns1:PhysicalSpace ; +ns4:16980 a ns2:PhysicalSpace ; rdfs:label "8579" . -ns2:17117 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:17117 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:17295 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:17295 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:35320 . + ns2:observes ns4:35320 . -ns2:17390 a , - ns4:Differential ; +ns4:17390 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:35915, - ns2:98278 ; - ns1:hasOutput ns2:88578 ; - ns4:differential_output ns2:88578 ; - ns4:high_input ns2:98278 ; - ns4:low_input ns2:35915 ; + ns2:hasInput ns4:35915, + ns4:98278 ; + ns2:hasOutput ns4:88578 ; + ns3:differential_output ns4:88578 ; + ns3:high_input ns4:98278 ; + ns3:low_input ns4:35915 ; rdfs:comment "Will output High minus Low" . -ns2:17415 a ns1:PhysicalSpace ; +ns4:17415 a ns2:PhysicalSpace ; rdfs:label "G-23.enclosure" ; - ns1:contains ns2:67151 ; - ns1:encloses ns2:78065 . - -ns2:17463 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirTemperatureSensor ; + ns2:contains ns4:67151 ; + ns2:encloses ns4:78065 . + +ns4:17463 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirTemperatureSensor ; rdfs:label "sa_temp" ; - ns1:hasObservationLocation ns2:11879 ; - ns1:observes ns2:12279 ; + ns2:hasObservationLocation ns4:11879 ; + ns2:observes ns4:12279 ; rdfs:comment "SA_temperature" . -ns2:17621 a ns1:PhysicalSpace ; +ns4:17621 a ns2:PhysicalSpace ; rdfs:label "9733N" . -ns2:17742 a ns1:PhysicalSpace ; +ns4:17742 a ns2:PhysicalSpace ; rdfs:label "0798" . -ns2:17784 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:17784 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:18152 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:18152 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:30191 . + ns2:observes ns4:30191 . -ns2:18189 a ns1:PhysicalSpace ; +ns4:18189 a ns2:PhysicalSpace ; rdfs:label "5566N" . -ns2:18204 a ns1:PhysicalSpace ; +ns4:18204 a ns2:PhysicalSpace ; rdfs:label "9-35.enclosure" ; - ns1:contains ns2:40192 ; - ns1:encloses ns2:65580 . - -ns2:18220 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns2:contains ns4:40192 ; + ns2:encloses ns4:65580 . + +ns4:18220 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:18240 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:18240 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:18495 a ns1:PhysicalSpace ; +ns4:18495 a ns2:PhysicalSpace ; rdfs:label "1836E" . -ns2:18528 a ns1:PhysicalSpace ; +ns4:18528 a ns2:PhysicalSpace ; rdfs:label "4450" . -ns2:18662 a ns1:PhysicalSpace ; +ns4:18662 a ns2:PhysicalSpace ; rdfs:label "3228" . -ns2:18755 a ns1:PhysicalSpace ; +ns4:18755 a ns2:PhysicalSpace ; rdfs:label "2498J" . -ns2:18908 a , - ns4:Differential ; +ns4:18908 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:52202, - ns2:78200 ; - ns1:hasOutput ns2:54149 ; - ns4:differential_output ns2:54149 ; - ns4:high_input ns2:78200 ; - ns4:low_input ns2:52202 ; + ns2:hasInput ns4:52202, + ns4:78200 ; + ns2:hasOutput ns4:54149 ; + ns3:differential_output ns4:54149 ; + ns3:high_input ns4:78200 ; + ns3:low_input ns4:52202 ; rdfs:comment "Will output High minus Low" . -ns2:18968 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:18968 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:19302 a ns1:PhysicalSpace ; +ns4:19302 a ns2:PhysicalSpace ; rdfs:label "G-23.enclosure" ; - ns1:contains ns2:29710, - ns2:75463 ; - ns1:encloses ns2:24053 . + ns2:contains ns4:29710, + ns4:75463 ; + ns2:encloses ns4:24053 . -ns2:19374 a ns1:PhysicalSpace ; +ns4:19374 a ns2:PhysicalSpace ; rdfs:label "G-52.enclosure" ; - ns1:contains ns2:02277, - ns2:36041, - ns2:50612, - ns2:62141, - ns2:90387, - ns2:92769 ; - ns1:encloses ns2:23626 . - -ns2:19555 a ns1:PhysicalSpace ; + ns2:contains ns4:02277, + ns4:36041, + ns4:50612, + ns4:62141, + ns4:90387, + ns4:92769 ; + ns2:encloses ns4:23626 . + +ns4:19555 a ns2:PhysicalSpace ; rdfs:label "8514H" . -ns2:19571 a ns1:PhysicalSpace ; +ns4:19571 a ns2:PhysicalSpace ; rdfs:label "6560" . -ns2:19838 a ns1:PhysicalSpace ; +ns4:19838 a ns2:PhysicalSpace ; rdfs:label "8147D" . -ns2:20184 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:20184 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:21195 a ns1:PhysicalSpace ; +ns4:21195 a ns2:PhysicalSpace ; rdfs:label "4-06A.enclosure" ; - ns1:contains ns2:83083 ; - ns1:encloses ns2:05971 . + ns2:contains ns4:83083 ; + ns2:encloses ns4:05971 . -ns2:21203 a ns1:PhysicalSpace ; +ns4:21203 a ns2:PhysicalSpace ; rdfs:label "7776M" . -ns2:21295 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:21295 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:21538 a ns1:PhysicalSpace ; +ns4:21538 a ns2:PhysicalSpace ; rdfs:label "0-3.enclosure" ; - ns1:contains ns2:25905 ; - ns1:encloses ns2:43841 . + ns2:contains ns4:25905 ; + ns2:encloses ns4:43841 . -ns2:22030 a ns1:PhysicalSpace ; +ns4:22030 a ns2:PhysicalSpace ; rdfs:label "8065E" . -ns2:22058 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:22058 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:85673 . + ns2:observes ns4:85673 . -ns2:22267 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:22267 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:22394 a ns1:PhysicalSpace ; +ns4:22394 a ns2:PhysicalSpace ; rdfs:label "G-15.enclosure" ; - ns1:contains ns2:09372, - ns2:74622 ; - ns1:encloses ns2:92645 . + ns2:contains ns4:09372, + ns4:74622 ; + ns2:encloses ns4:92645 . -ns2:22446 a ns1:PhysicalSpace ; +ns4:22446 a ns2:PhysicalSpace ; rdfs:label "1-08.enclosure" ; - ns1:contains ns2:40192, - ns2:98488 ; - ns1:encloses ns2:94119 . - -ns2:22610 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; + ns2:contains ns4:40192, + ns4:98488 ; + ns2:encloses ns4:94119 . + +ns4:22610 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "ff_press" ; - ns1:contains ns2:18152, - ns2:62945 ; - ns1:hasObservationLocation ns2:61372 ; - ns1:hasProperty ns2:79219 ; - ns1:observes ns2:79219 ; - ns4:contains ns2:61464 ; - ns4:differential_static_pressure ns2:79219 ; + ns2:contains ns4:18152, + ns4:62945 ; + ns2:hasObservationLocation ns4:61372 ; + ns2:hasProperty ns4:79219 ; + ns2:observes ns4:79219 ; + ns3:contains ns4:61464 ; + ns3:differential_static_pressure ns4:79219 ; rdfs:comment "FF_differential_pressure" . -ns2:22670 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:22670 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "ff_press" ; - ns1:contains ns2:73412, - ns2:80572 ; - ns1:hasObservationLocation ns2:79897 ; - ns1:hasProperty ns2:52424 ; - ns1:observes ns2:52424 ; - ns4:contains ns2:17390 ; - ns4:differential_static_pressure ns2:52424 ; + ns2:contains ns4:73412, + ns4:80572 ; + ns2:hasObservationLocation ns4:79897 ; + ns2:hasProperty ns4:52424 ; + ns2:observes ns4:52424 ; + ns3:contains ns4:17390 ; + ns3:differential_static_pressure ns4:52424 ; rdfs:comment "FF_differential_pressure" . -ns2:22928 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:22928 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:24501 a ns1:PhysicalSpace ; +ns4:24501 a ns2:PhysicalSpace ; rdfs:label "3894C" . -ns2:24531 a ns1:PhysicalSpace ; +ns4:24531 a ns2:PhysicalSpace ; rdfs:label "3280A" . -ns2:24545 a ns1:PhysicalSpace ; +ns4:24545 a ns2:PhysicalSpace ; rdfs:label "7985F" . -ns2:24605 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:24605 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:24636 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:24636 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:24836 a ns1:PhysicalSpace ; +ns4:24836 a ns2:PhysicalSpace ; rdfs:label "8967" . -ns2:24849 a ns1:PhysicalSpace ; +ns4:24849 a ns2:PhysicalSpace ; rdfs:label "2144L" . -ns2:25306 a ns1:PhysicalSpace ; +ns4:25306 a ns2:PhysicalSpace ; rdfs:label "0532D" . -ns2:25621 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirTemperatureSensor ; +ns4:25621 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirTemperatureSensor ; rdfs:label "sensor" ; - ns1:hasObservationLocation ns2:36633 ; - ns1:observes ns2:79229 ; + ns2:hasObservationLocation ns4:36633 ; + ns2:observes ns4:79229 ; rdfs:comment "MA_temp_sensor" . -ns2:25706 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:25706 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:37705 . + ns2:observes ns4:37705 . -ns2:25825 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:25825 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:57979 . + ns2:observes ns4:57979 . -ns2:26077 a ns1:PhysicalSpace ; +ns4:26077 a ns2:PhysicalSpace ; rdfs:label "G-47.enclosure" ; - ns1:contains ns2:17670, - ns2:39130 ; - ns1:encloses ns2:67586 . - -ns2:26086 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirTemperatureSensor ; + ns2:contains ns4:17670, + ns4:39130 ; + ns2:encloses ns4:67586 . + +ns4:26086 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirTemperatureSensor ; rdfs:label "sa_temp" ; - ns1:hasObservationLocation ns2:63848 ; - ns1:observes ns2:85492 ; + ns2:hasObservationLocation ns4:63848 ; + ns2:observes ns4:85492 ; rdfs:comment "SA_temperature" . -ns2:27239 a ns1:PhysicalSpace ; +ns4:27239 a ns2:PhysicalSpace ; rdfs:label "8769E" . -ns2:27819 a ns1:PhysicalSpace ; +ns4:27819 a ns2:PhysicalSpace ; rdfs:label "1017U" . -ns2:27870 a ns1:PhysicalSpace ; +ns4:27870 a ns2:PhysicalSpace ; rdfs:label "5658T" . -ns2:27874 a ns1:PhysicalSpace ; +ns4:27874 a ns2:PhysicalSpace ; rdfs:label "6537Q" . -ns2:27901 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:27901 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:28141 a ns1:PhysicalSpace ; +ns4:28141 a ns2:PhysicalSpace ; rdfs:label "6-5.enclosure" ; - ns1:contains ns2:03545, - ns2:04690, - ns2:10133, - ns2:40046, - ns2:80198 ; - ns1:encloses ns2:93162 . - -ns2:28775 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:CO7Concentration ; + ns2:contains ns4:03545, + ns4:04690, + ns4:10133, + ns4:40046, + ns4:80198 ; + ns2:encloses ns4:93162 . + +ns4:28775 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:CO7Concentration ; rdfs:label "28775" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:29008 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:29008 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:29329 a , - ns4:Differential ; +ns4:29329 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:20420, - ns2:80527 ; - ns1:hasOutput ns2:09473 ; - ns4:differential_output ns2:09473 ; - ns4:high_input ns2:80527 ; - ns4:low_input ns2:20420 ; + ns2:hasInput ns4:20420, + ns4:80527 ; + ns2:hasOutput ns4:09473 ; + ns3:differential_output ns4:09473 ; + ns3:high_input ns4:80527 ; + ns3:low_input ns4:20420 ; rdfs:comment "Will output High minus Low" . -ns2:29612 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:29612 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:29869 a ns1:PhysicalSpace ; +ns4:29869 a ns2:PhysicalSpace ; rdfs:label "Floor_8.NorthPerimeterZoneEnclosure" ; - ns1:contains ns2:08528, - ns2:21538, - ns2:28141, - ns2:33509, - ns2:39534, - ns2:44889, - ns2:68403, - ns2:74460, - ns2:77589, - ns2:85151, - ns2:86718, - ns2:95378 . - -ns2:29935 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns2:contains ns4:08528, + ns4:21538, + ns4:28141, + ns4:33509, + ns4:39534, + ns4:44889, + ns4:68403, + ns4:74460, + ns4:77589, + ns4:85151, + ns4:86718, + ns4:95378 . + +ns4:29935 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:30067 a ns1:PhysicalSpace ; +ns4:30067 a ns2:PhysicalSpace ; rdfs:label "1596F" . -ns2:30133 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:30133 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:30164 a ns1:PhysicalSpace ; +ns4:30164 a ns2:PhysicalSpace ; rdfs:label "8-51.enclosure" ; - ns1:contains ns2:64191 ; - ns1:encloses ns2:83378 . - -ns2:30216 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirTemperatureSensor ; + ns2:contains ns4:64191 ; + ns2:encloses ns4:83378 . + +ns4:30216 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirTemperatureSensor ; rdfs:label "ra_temp" ; - ns1:hasObservationLocation ns2:90476 ; - ns1:observes ns2:34100 ; + ns2:hasObservationLocation ns4:90476 ; + ns2:observes ns4:34100 ; rdfs:comment "RA_temp_sensor" . -ns2:30395 a ns1:PhysicalSpace ; +ns4:30395 a ns2:PhysicalSpace ; rdfs:label "G-7.enclosure" ; - ns1:contains ns2:23122, - ns2:24501, - ns2:47557, - ns2:81636, - ns2:96724 ; - ns1:encloses ns2:26040 . - -ns2:31095 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns2:contains ns4:23122, + ns4:24501, + ns4:47557, + ns4:81636, + ns4:96724 ; + ns2:encloses ns4:26040 . + +ns4:31095 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:31262 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:31262 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:31518 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirTemperatureSensor ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:31518 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirTemperatureSensor ; rdfs:label "sensor" ; - ns1:hasObservationLocation ns2:80380 ; - ns1:observes ns2:71498 ; + ns2:hasObservationLocation ns4:80380 ; + ns2:observes ns4:71498 ; rdfs:comment "MA_temp_sensor" . -ns2:31684 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:31684 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:32318 a ns1:PhysicalSpace ; +ns4:32318 a ns2:PhysicalSpace ; rdfs:label "G-44.enclosure" ; - ns1:contains ns2:29710 ; - ns1:encloses ns2:33721 . - -ns2:32890 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:CO7Concentration ; + ns2:contains ns4:29710 ; + ns2:encloses ns4:33721 . + +ns4:32890 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:CO7Concentration ; rdfs:label "32890" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:33088 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:33088 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:33269 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:33269 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:25846 . + ns2:observes ns4:25846 . -ns2:33509 a ns1:PhysicalSpace ; +ns4:33509 a ns2:PhysicalSpace ; rdfs:label "5-1.enclosure" ; - ns1:contains ns2:17753, - ns2:35763, - ns2:56993, - ns2:74269, - ns2:78886 ; - ns1:encloses ns2:29499 . - -ns2:33570 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:contains ns4:17753, + ns4:35763, + ns4:56993, + ns4:74269, + ns4:78886 ; + ns2:encloses ns4:29499 . + +ns4:33570 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:33723 a ns1:PhysicalSpace ; +ns4:33723 a ns2:PhysicalSpace ; rdfs:label "0716D" . -ns2:34354 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:34354 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:34559 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:34559 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:52427 . + ns2:observes ns4:52427 . -ns2:34672 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:34672 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:35170 a ns1:PhysicalSpace ; +ns4:35170 a ns2:PhysicalSpace ; rdfs:label "8033B" . -ns2:35265 a ns1:PhysicalSpace ; +ns4:35265 a ns2:PhysicalSpace ; rdfs:label "0588H" . -ns2:35353 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirTemperatureSensor ; +ns4:35353 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirTemperatureSensor ; rdfs:label "sensor" ; - ns1:hasObservationLocation ns2:42750 ; - ns1:observes ns2:45283 ; + ns2:hasObservationLocation ns4:42750 ; + ns2:observes ns4:45283 ; rdfs:comment "MA_temp_sensor" . -ns2:36677 a ns1:PhysicalSpace ; +ns4:36677 a ns2:PhysicalSpace ; rdfs:label "8330" . -ns2:37475 a ns1:PhysicalSpace ; +ns4:37475 a ns2:PhysicalSpace ; rdfs:label "3092" . -ns2:38040 a ns1:PhysicalSpace ; +ns4:38040 a ns2:PhysicalSpace ; rdfs:label "1387F" . -ns2:38056 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:38056 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "pf_press" ; - ns1:contains ns2:41941, - ns2:60969 ; - ns1:hasObservationLocation ns2:07660 ; - ns1:hasProperty ns2:48347 ; - ns1:observes ns2:48347 ; - ns4:contains ns2:06935 ; - ns4:differential_static_pressure ns2:48347 ; + ns2:contains ns4:41941, + ns4:60969 ; + ns2:hasObservationLocation ns4:07660 ; + ns2:hasProperty ns4:48347 ; + ns2:observes ns4:48347 ; + ns3:contains ns4:06935 ; + ns3:differential_static_pressure ns4:48347 ; rdfs:comment "PF_differential_pressure" . -ns2:38232 a ns1:PhysicalSpace ; +ns4:38232 a ns2:PhysicalSpace ; rdfs:label "5458E" . -ns2:38396 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:38396 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:38468 a ns1:PhysicalSpace ; +ns4:38468 a ns2:PhysicalSpace ; rdfs:label "9888" . -ns2:38591 a ns1:PhysicalSpace ; +ns4:38591 a ns2:PhysicalSpace ; rdfs:label "2258S" . -ns2:38609 a ns1:PhysicalSpace ; +ns4:38609 a ns2:PhysicalSpace ; rdfs:label "4275" . -ns2:38616 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:38616 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:75390 . + ns2:observes ns4:75390 . -ns2:38691 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:38691 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "ra_pres" ; - ns1:contains ns2:46202, - ns2:57007 ; - ns1:hasObservationLocation ns2:52572 ; - ns1:hasProperty ns2:59892 ; - ns1:observes ns2:59892 ; - ns4:contains ns2:18908 ; - ns4:differential_static_pressure ns2:59892 ; + ns2:contains ns4:46202, + ns4:57007 ; + ns2:hasObservationLocation ns4:52572 ; + ns2:hasProperty ns4:59892 ; + ns2:observes ns4:59892 ; + ns3:contains ns4:18908 ; + ns3:differential_static_pressure ns4:59892 ; rdfs:comment "RA_static_pressure" . -ns2:38901 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:38901 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:39454 a ns1:PhysicalSpace ; +ns4:39454 a ns2:PhysicalSpace ; rdfs:label "2037F" . -ns2:39534 a ns1:PhysicalSpace ; +ns4:39534 a ns2:PhysicalSpace ; rdfs:label "9-5.enclosure" ; - ns1:contains ns2:22374, - ns2:35902, - ns2:72384, - ns2:94526 ; - ns1:encloses ns2:58953 . + ns2:contains ns4:22374, + ns4:35902, + ns4:72384, + ns4:94526 ; + ns2:encloses ns4:58953 . -ns2:39558 a ns1:PhysicalSpace ; +ns4:39558 a ns2:PhysicalSpace ; rdfs:label "1729R" . -ns2:39934 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirTemperatureSensor ; +ns4:39934 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirTemperatureSensor ; rdfs:label "sensor" ; - ns1:hasObservationLocation ns2:55046 ; - ns1:observes ns2:48697 ; + ns2:hasObservationLocation ns4:55046 ; + ns2:observes ns4:48697 ; rdfs:comment "MA_temp_sensor" . -ns2:40023 a ns1:PhysicalSpace ; +ns4:40023 a ns2:PhysicalSpace ; rdfs:label "8024G" . -ns2:40641 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:40641 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:40721 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:40721 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:40793 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:40793 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:41023 a ns1:PhysicalSpace ; +ns4:41023 a ns2:PhysicalSpace ; rdfs:label "3611" . -ns2:41141 a ns1:PhysicalSpace ; +ns4:41141 a ns2:PhysicalSpace ; rdfs:label "G-7.enclosure" ; - ns1:contains ns2:01646, - ns2:19371, - ns2:34646, - ns2:35173, - ns2:96875 ; - ns1:encloses ns2:69415 . - -ns2:41388 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns2:contains ns4:01646, + ns4:19371, + ns4:34646, + ns4:35173, + ns4:96875 ; + ns2:encloses ns4:69415 . + +ns4:41388 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:41415 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:41415 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:41515 a ns1:PhysicalSpace ; +ns4:41515 a ns2:PhysicalSpace ; rdfs:label "6644U" . -ns2:41733 a ns1:PhysicalSpace ; +ns4:41733 a ns2:PhysicalSpace ; rdfs:label "4164" . -ns2:41810 a ns1:PhysicalSpace ; +ns4:41810 a ns2:PhysicalSpace ; rdfs:label "5979M" . -ns2:41941 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:41941 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:79655 . + ns2:observes ns4:79655 . -ns2:41947 a ns1:PhysicalSpace ; +ns4:41947 a ns2:PhysicalSpace ; rdfs:label "1621E" . -ns2:42182 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:42182 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:42574 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:42574 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:42763 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:42763 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:42800 a ns1:PhysicalSpace ; +ns4:42800 a ns2:PhysicalSpace ; rdfs:label "7-51.enclosure" ; - ns1:contains ns2:04158, - ns2:06773, - ns2:44653, - ns2:70544, - ns2:86863, - ns2:87576 ; - ns1:encloses ns2:43967 . - -ns2:43192 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:contains ns4:04158, + ns4:06773, + ns4:44653, + ns4:70544, + ns4:86863, + ns4:87576 ; + ns2:encloses ns4:43967 . + +ns4:43192 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:43530 a ns1:PhysicalSpace ; +ns4:43530 a ns2:PhysicalSpace ; rdfs:label "1035" . -ns2:43689 a ns1:PhysicalSpace ; +ns4:43689 a ns2:PhysicalSpace ; rdfs:label "8992A" . -ns2:43797 a ns1:PhysicalSpace ; +ns4:43797 a ns2:PhysicalSpace ; rdfs:label "9450P" . -ns2:43907 a ns1:PhysicalSpace ; +ns4:43907 a ns2:PhysicalSpace ; rdfs:label "5862" . -ns2:44085 a ns1:PhysicalSpace ; +ns4:44085 a ns2:PhysicalSpace ; rdfs:label "5104M" . -ns2:44107 a ns1:PhysicalSpace ; +ns4:44107 a ns2:PhysicalSpace ; rdfs:label "2854C" . -ns2:44207 a ns1:PhysicalSpace ; +ns4:44207 a ns2:PhysicalSpace ; rdfs:label "9336" . -ns2:44224 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:44224 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:44589 a ns1:PhysicalSpace ; +ns4:44589 a ns2:PhysicalSpace ; rdfs:label "8814B" . -ns2:44718 a ns1:PhysicalSpace ; +ns4:44718 a ns2:PhysicalSpace ; rdfs:label "9547D" . -ns2:44727 a ns1:PhysicalSpace ; +ns4:44727 a ns2:PhysicalSpace ; rdfs:label "Floor_0.CoreZoneEnclosure" ; - ns1:contains ns2:01794, - ns2:02149, - ns2:02736, - ns2:02897, - ns2:02942, - ns2:04152, - ns2:05316, - ns2:05662, - ns2:06305, - ns2:06773, - ns2:07416, - ns2:07657, - ns2:08293, - ns2:08606, - ns2:09270, - ns2:09332, - ns2:09371, - ns2:09526, - ns2:09784, - ns2:10599, - ns2:16110, - ns2:17753, - ns2:19704, - ns2:20203, - ns2:20563, - ns2:22550, - ns2:24972, - ns2:25514, - ns2:27210, - ns2:32350, - ns2:34035, - ns2:35763, - ns2:36756, - ns2:38128, - ns2:38135, - ns2:38773, - ns2:38894, - ns2:40192, - ns2:40910, - ns2:41983, - ns2:42355, - ns2:43530, - ns2:46553, - ns2:47899, - ns2:49032, - ns2:49603, - ns2:50388, - ns2:53031, - ns2:56015, - ns2:56700, - ns2:56993, - ns2:57274, - ns2:59765, - ns2:60321, - ns2:60868, - ns2:60876, - ns2:61102, - ns2:61643, - ns2:61790, - ns2:64191, - ns2:64652, - ns2:67243, - ns2:67438, - ns2:67513, - ns2:68806, - ns2:70293, - ns2:70544, - ns2:71799, - ns2:73715, - ns2:74136, - ns2:74269, - ns2:75043, - ns2:76006, - ns2:76277, - ns2:77288, - ns2:78886, - ns2:79772, - ns2:80357, - ns2:83022, - ns2:83083, - ns2:83156, - ns2:83859, - ns2:83976, - ns2:84775, - ns2:85693, - ns2:86195, - ns2:86254, - ns2:86745, - ns2:86860, - ns2:87527, - ns2:87632, - ns2:88265, - ns2:88310, - ns2:88426, - ns2:88897, - ns2:91041, - ns2:91989, - ns2:92787, - ns2:92865, - ns2:93667, - ns2:94446, - ns2:94888, - ns2:97335, - ns2:99272, - ns2:99669 . - -ns2:44889 a ns1:PhysicalSpace ; + ns2:contains ns4:01794, + ns4:02149, + ns4:02736, + ns4:02897, + ns4:02942, + ns4:04152, + ns4:05316, + ns4:05662, + ns4:06305, + ns4:06773, + ns4:07416, + ns4:07657, + ns4:08293, + ns4:08606, + ns4:09270, + ns4:09332, + ns4:09371, + ns4:09526, + ns4:09784, + ns4:10599, + ns4:16110, + ns4:17753, + ns4:19704, + ns4:20203, + ns4:20563, + ns4:22550, + ns4:24972, + ns4:25514, + ns4:27210, + ns4:32350, + ns4:34035, + ns4:35763, + ns4:36756, + ns4:38128, + ns4:38135, + ns4:38773, + ns4:38894, + ns4:40192, + ns4:40910, + ns4:41983, + ns4:42355, + ns4:43530, + ns4:46553, + ns4:47899, + ns4:49032, + ns4:49603, + ns4:50388, + ns4:53031, + ns4:56015, + ns4:56700, + ns4:56993, + ns4:57274, + ns4:59765, + ns4:60321, + ns4:60868, + ns4:60876, + ns4:61102, + ns4:61643, + ns4:61790, + ns4:64191, + ns4:64652, + ns4:67243, + ns4:67438, + ns4:67513, + ns4:68806, + ns4:70293, + ns4:70544, + ns4:71799, + ns4:73715, + ns4:74136, + ns4:74269, + ns4:75043, + ns4:76006, + ns4:76277, + ns4:77288, + ns4:78886, + ns4:79772, + ns4:80357, + ns4:83022, + ns4:83083, + ns4:83156, + ns4:83859, + ns4:83976, + ns4:84775, + ns4:85693, + ns4:86195, + ns4:86254, + ns4:86745, + ns4:86860, + ns4:87527, + ns4:87632, + ns4:88265, + ns4:88310, + ns4:88426, + ns4:88897, + ns4:91041, + ns4:91989, + ns4:92787, + ns4:92865, + ns4:93667, + ns4:94446, + ns4:94888, + ns4:97335, + ns4:99272, + ns4:99669 . + +ns4:44889 a ns2:PhysicalSpace ; rdfs:label "1-5.enclosure" ; - ns1:contains ns2:24972, - ns2:61790, - ns2:86195, - ns2:86254, - ns2:97335 ; - ns1:encloses ns2:58975 . - -ns2:44907 a ns1:PhysicalSpace ; + ns2:contains ns4:24972, + ns4:61790, + ns4:86195, + ns4:86254, + ns4:97335 ; + ns2:encloses ns4:58975 . + +ns4:44907 a ns2:PhysicalSpace ; rdfs:label "8626E" . -ns2:45341 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:CO7Concentration ; +ns4:45341 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:CO7Concentration ; rdfs:label "45341" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:45557 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:45557 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:28727 . + ns2:observes ns4:28727 . -ns2:45589 a ns1:PhysicalSpace ; +ns4:45589 a ns2:PhysicalSpace ; rdfs:label "1230" . -ns2:45679 a ns1:PhysicalSpace ; +ns4:45679 a ns2:PhysicalSpace ; rdfs:label "6848B" . -ns2:45824 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:45824 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:45852 a ns1:PhysicalSpace ; +ns4:45852 a ns2:PhysicalSpace ; rdfs:label "0803C" . -ns2:45963 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:45963 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:46033 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:46033 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:46202 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:46202 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:83500 . + ns2:observes ns4:83500 . -ns2:46224 a ns1:PhysicalSpace ; +ns4:46224 a ns2:PhysicalSpace ; rdfs:label "G-46A.enclosure" ; - ns1:contains ns2:64731 ; - ns1:encloses ns2:70253 . + ns2:contains ns4:64731 ; + ns2:encloses ns4:70253 . -ns2:46251 a ns1:PhysicalSpace ; +ns4:46251 a ns2:PhysicalSpace ; rdfs:label "0529" . -ns2:46276 a ns1:PhysicalSpace ; +ns4:46276 a ns2:PhysicalSpace ; rdfs:label "7908E" . -ns2:46317 a ns1:PhysicalSpace ; +ns4:46317 a ns2:PhysicalSpace ; rdfs:label "5849" . -ns2:46438 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:46438 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:46561 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:46561 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:46809 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:46809 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:47111 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:47111 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:47226 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:47226 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:47278 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:47278 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:47461 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:47461 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:47472 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:47472 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:47484 a ns1:PhysicalSpace ; +ns4:47484 a ns2:PhysicalSpace ; rdfs:label "6600B" . -ns2:47557 a ns1:PhysicalSpace ; +ns4:47557 a ns2:PhysicalSpace ; rdfs:label "0298B" . -ns2:47769 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:47769 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:47881 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:47881 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:48314 a ns1:PhysicalSpace ; +ns4:48314 a ns2:PhysicalSpace ; rdfs:label "0230Q" . -ns2:48589 a ns1:PhysicalSpace ; +ns4:48589 a ns2:PhysicalSpace ; rdfs:label "1692C" . -ns2:48607 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:48607 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:48820 a ns1:PhysicalSpace ; +ns4:48820 a ns2:PhysicalSpace ; rdfs:label "Floor_6.SouthPerimeterZoneEnclosure" ; - ns1:contains ns2:01892, - ns2:11899, - ns2:12186, - ns2:12493, - ns2:18204, - ns2:21195, - ns2:22446, - ns2:30164, - ns2:42800, - ns2:50215, - ns2:55813, - ns2:58949, - ns2:64004, - ns2:68567, - ns2:72281, - ns2:81900 . - -ns2:48935 a ns1:PhysicalSpace ; + ns2:contains ns4:01892, + ns4:11899, + ns4:12186, + ns4:12493, + ns4:18204, + ns4:21195, + ns4:22446, + ns4:30164, + ns4:42800, + ns4:50215, + ns4:55813, + ns4:58949, + ns4:64004, + ns4:68567, + ns4:72281, + ns4:81900 . + +ns4:48935 a ns2:PhysicalSpace ; rdfs:label "7933R" . -ns2:48946 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:48946 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:48956 a ns1:PhysicalSpace ; +ns4:48956 a ns2:PhysicalSpace ; rdfs:label "2950" . -ns2:48990 a , - ns4:Differential ; +ns4:48990 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:38338, - ns2:45221 ; - ns1:hasOutput ns2:08551 ; - ns4:differential_output ns2:08551 ; - ns4:high_input ns2:38338 ; - ns4:low_input ns2:45221 ; + ns2:hasInput ns4:38338, + ns4:45221 ; + ns2:hasOutput ns4:08551 ; + ns3:differential_output ns4:08551 ; + ns3:high_input ns4:38338 ; + ns3:low_input ns4:45221 ; rdfs:comment "Will output High minus Low" . -ns2:49103 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:49103 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:49132 a ns1:PhysicalSpace ; +ns4:49132 a ns2:PhysicalSpace ; rdfs:label "G-4.enclosure" ; - ns1:contains ns2:04868 ; - ns1:encloses ns2:63334 . - -ns2:49221 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:contains ns4:04868 ; + ns2:encloses ns4:63334 . + +ns4:49221 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:49486 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:49486 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:50009 a ns1:PhysicalSpace ; +ns4:50009 a ns2:PhysicalSpace ; rdfs:label "8924" . -ns2:50178 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:50178 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:50215 a ns1:PhysicalSpace ; +ns4:50215 a ns2:PhysicalSpace ; rdfs:label "4-22.enclosure" ; - ns1:contains ns2:35199, - ns2:38499, - ns2:51271, - ns2:58115, - ns2:62700, - ns2:63323, - ns2:77089, - ns2:87095 ; - ns1:encloses ns2:77887 . - -ns2:50397 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns2:contains ns4:35199, + ns4:38499, + ns4:51271, + ns4:58115, + ns4:62700, + ns4:63323, + ns4:77089, + ns4:87095 ; + ns2:encloses ns4:77887 . + +ns4:50397 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:50714 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:50714 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:50824 a ns1:PhysicalSpace ; +ns4:50824 a ns2:PhysicalSpace ; rdfs:label "9984" . -ns2:50994 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:50994 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:50996 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:50996 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:51312 a , - ns4:Differential ; +ns4:51312 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:28982, - ns2:81875 ; - ns1:hasOutput ns2:55121 ; - ns4:differential_output ns2:55121 ; - ns4:high_input ns2:28982 ; - ns4:low_input ns2:81875 ; + ns2:hasInput ns4:28982, + ns4:81875 ; + ns2:hasOutput ns4:55121 ; + ns3:differential_output ns4:55121 ; + ns3:high_input ns4:28982 ; + ns3:low_input ns4:81875 ; rdfs:comment "Will output High minus Low" . -ns2:51451 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:51451 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:51997 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:51997 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "ff_press" ; - ns1:contains ns2:17295, - ns2:88826 ; - ns1:hasObservationLocation ns2:85645 ; - ns1:hasProperty ns2:02218 ; - ns1:observes ns2:02218 ; - ns4:contains ns2:95774 ; - ns4:differential_static_pressure ns2:02218 ; + ns2:contains ns4:17295, + ns4:88826 ; + ns2:hasObservationLocation ns4:85645 ; + ns2:hasProperty ns4:02218 ; + ns2:observes ns4:02218 ; + ns3:contains ns4:95774 ; + ns3:differential_static_pressure ns4:02218 ; rdfs:comment "FF_differential_pressure" . -ns2:52183 a ns1:PhysicalSpace ; +ns4:52183 a ns2:PhysicalSpace ; rdfs:label "6765" . -ns2:52402 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:52402 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:53035 a ns1:PhysicalSpace ; +ns4:53035 a ns2:PhysicalSpace ; rdfs:label "4301" . -ns2:53405 a ns1:PhysicalSpace ; +ns4:53405 a ns2:PhysicalSpace ; rdfs:label "1762" . -ns2:53531 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:53531 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:54033 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:54033 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:54181 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:54181 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:54661 a ns1:PhysicalSpace ; +ns4:54661 a ns2:PhysicalSpace ; rdfs:label "G-3.enclosure" ; - ns1:contains ns2:35366 ; - ns1:encloses ns2:26799 . - -ns2:54675 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:contains ns4:35366 ; + ns2:encloses ns4:26799 . + +ns4:54675 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:54724 a ns1:PhysicalSpace ; +ns4:54724 a ns2:PhysicalSpace ; rdfs:label "0132" . -ns2:55153 a ns1:PhysicalSpace ; +ns4:55153 a ns2:PhysicalSpace ; rdfs:label "8662S" . -ns2:55411 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:55411 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:55772 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:55772 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:55813 a ns1:PhysicalSpace ; +ns4:55813 a ns2:PhysicalSpace ; rdfs:label "9-49.enclosure" ; - ns1:contains ns2:60876, - ns2:94888 ; - ns1:encloses ns2:87782 . + ns2:contains ns4:60876, + ns4:94888 ; + ns2:encloses ns4:87782 . -ns2:56223 a ns1:PhysicalSpace ; +ns4:56223 a ns2:PhysicalSpace ; rdfs:label "1411D" . -ns2:56382 a ns1:PhysicalSpace ; +ns4:56382 a ns2:PhysicalSpace ; rdfs:label "4991" . -ns2:56565 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:56565 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:56700 a ns1:PhysicalSpace ; +ns4:56700 a ns2:PhysicalSpace ; rdfs:label "8002" . -ns2:56710 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:56710 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "pf_press" ; - ns1:contains ns2:85218, - ns2:89594 ; - ns1:hasObservationLocation ns2:84053 ; - ns1:hasProperty ns2:77887 ; - ns1:observes ns2:77887 ; - ns4:contains ns2:62028 ; - ns4:differential_static_pressure ns2:77887 ; + ns2:contains ns4:85218, + ns4:89594 ; + ns2:hasObservationLocation ns4:84053 ; + ns2:hasProperty ns4:77887 ; + ns2:observes ns4:77887 ; + ns3:contains ns4:62028 ; + ns3:differential_static_pressure ns4:77887 ; rdfs:comment "PF_differential_pressure" . -ns2:56940 a , - ns4:Differential ; +ns4:56940 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:34399, - ns2:91806 ; - ns1:hasOutput ns2:63348 ; - ns4:differential_output ns2:63348 ; - ns4:high_input ns2:34399 ; - ns4:low_input ns2:91806 ; + ns2:hasInput ns4:34399, + ns4:91806 ; + ns2:hasOutput ns4:63348 ; + ns3:differential_output ns4:63348 ; + ns3:high_input ns4:34399 ; + ns3:low_input ns4:91806 ; rdfs:comment "Will output High minus Low" . -ns2:57007 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:57007 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:51302 . + ns2:observes ns4:51302 . -ns2:57010 a ns1:PhysicalSpace ; +ns4:57010 a ns2:PhysicalSpace ; rdfs:label "7484" . -ns2:57110 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:57110 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:57341 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:CO7Concentration ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:57341 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:CO7Concentration ; rdfs:label "57341" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:57529 a ns1:PhysicalSpace ; +ns4:57529 a ns2:PhysicalSpace ; rdfs:label "G-13.enclosure" ; - ns1:contains ns2:45770 ; - ns1:encloses ns2:98609 . - -ns2:57607 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:contains ns4:45770 ; + ns2:encloses ns4:98609 . + +ns4:57607 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:58313 a ns1:PhysicalSpace ; +ns4:58313 a ns2:PhysicalSpace ; rdfs:label "G-73.enclosure" ; - ns1:contains ns2:45985, - ns2:50612, - ns2:59232, - ns2:65562, - ns2:92225, - ns2:96967 ; - ns1:encloses ns2:45421 . - -ns2:58448 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:contains ns4:45985, + ns4:50612, + ns4:59232, + ns4:65562, + ns4:92225, + ns4:96967 ; + ns2:encloses ns4:45421 . + +ns4:58448 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:58761 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:58761 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:58949 a ns1:PhysicalSpace ; +ns4:58949 a ns2:PhysicalSpace ; rdfs:label "7-85.enclosure" ; - ns1:contains ns2:02897, - ns2:09784, - ns2:67243 ; - ns1:encloses ns2:46213 . + ns2:contains ns4:02897, + ns4:09784, + ns4:67243 ; + ns2:encloses ns4:46213 . -ns2:59264 a ns1:PhysicalSpace ; +ns4:59264 a ns2:PhysicalSpace ; rdfs:label "7812A" . -ns2:59609 a ns1:PhysicalSpace ; +ns4:59609 a ns2:PhysicalSpace ; rdfs:label "1479" . -ns2:59768 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:59768 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:59887 a ns1:PhysicalSpace ; +ns4:59887 a ns2:PhysicalSpace ; rdfs:label "1701G" . -ns2:60625 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:60625 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:60928 a ns1:PhysicalSpace ; +ns4:60928 a ns2:PhysicalSpace ; rdfs:label "6824D" . -ns2:60969 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:60969 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:75560 . + ns2:observes ns4:75560 . -ns2:60970 a ns1:PhysicalSpace ; +ns4:60970 a ns2:PhysicalSpace ; rdfs:label "7602F" . -ns2:60982 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:60982 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:61068 a ns1:PhysicalSpace ; +ns4:61068 a ns2:PhysicalSpace ; rdfs:label "0174C" . -ns2:61247 a ns1:PhysicalSpace ; +ns4:61247 a ns2:PhysicalSpace ; rdfs:label "8672F" . -ns2:61464 a , - ns4:Differential ; +ns4:61464 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:71802, - ns2:99553 ; - ns1:hasOutput ns2:96539 ; - ns4:differential_output ns2:96539 ; - ns4:high_input ns2:99553 ; - ns4:low_input ns2:71802 ; + ns2:hasInput ns4:71802, + ns4:99553 ; + ns2:hasOutput ns4:96539 ; + ns3:differential_output ns4:96539 ; + ns3:high_input ns4:99553 ; + ns3:low_input ns4:71802 ; rdfs:comment "Will output High minus Low" . -ns2:61786 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:61786 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:61888 a ns1:PhysicalSpace ; +ns4:61888 a ns2:PhysicalSpace ; rdfs:label "7100A" . -ns2:62028 a , - ns4:Differential ; +ns4:62028 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:46904, - ns2:67397 ; - ns1:hasOutput ns2:30916 ; - ns4:differential_output ns2:30916 ; - ns4:high_input ns2:67397 ; - ns4:low_input ns2:46904 ; + ns2:hasInput ns4:46904, + ns4:67397 ; + ns2:hasOutput ns4:30916 ; + ns3:differential_output ns4:30916 ; + ns3:high_input ns4:67397 ; + ns3:low_input ns4:46904 ; rdfs:comment "Will output High minus Low" . -ns2:62045 a ns1:PhysicalSpace ; +ns4:62045 a ns2:PhysicalSpace ; rdfs:label "4625" . -ns2:62945 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:62945 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:16091 . + ns2:observes ns4:16091 . -ns2:63437 a , - ns4:Differential ; +ns4:63437 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:41736, - ns2:62403 ; - ns1:hasOutput ns2:24042 ; - ns4:differential_output ns2:24042 ; - ns4:high_input ns2:41736 ; - ns4:low_input ns2:62403 ; + ns2:hasInput ns4:41736, + ns4:62403 ; + ns2:hasOutput ns4:24042 ; + ns3:differential_output ns4:24042 ; + ns3:high_input ns4:41736 ; + ns3:low_input ns4:62403 ; rdfs:comment "Will output High minus Low" . -ns2:63488 a ns1:PhysicalSpace ; +ns4:63488 a ns2:PhysicalSpace ; rdfs:label "2127D" . -ns2:63489 a ns1:PhysicalSpace ; +ns4:63489 a ns2:PhysicalSpace ; rdfs:label "5964" . -ns2:63600 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:63600 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:44857 . + ns2:observes ns4:44857 . -ns2:63747 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:63747 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:63904 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:63904 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:64004 a ns1:PhysicalSpace ; +ns4:64004 a ns2:PhysicalSpace ; rdfs:label "9-24.enclosure" ; - ns1:contains ns2:32335, - ns2:65983, - ns2:92564 ; - ns1:encloses ns2:96232 . - -ns2:64398 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; + ns2:contains ns4:32335, + ns4:65983, + ns4:92564 ; + ns2:encloses ns4:96232 . + +ns4:64398 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "sa_press" ; - ns1:contains ns2:34559, - ns2:84397 ; - ns1:hasObservationLocation ns2:60124 ; - ns1:hasProperty ns2:84974 ; - ns1:observes ns2:84974 ; - ns4:contains ns2:84459 ; - ns4:differential_static_pressure ns2:84974 ; + ns2:contains ns4:34559, + ns4:84397 ; + ns2:hasObservationLocation ns4:60124 ; + ns2:hasProperty ns4:84974 ; + ns2:observes ns4:84974 ; + ns3:contains ns4:84459 ; + ns3:differential_static_pressure ns4:84974 ; rdfs:comment "SA_static_pressure" . -ns2:64552 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:64552 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:65159 a , - ns4:Differential ; +ns4:65159 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:31470, - ns2:46562 ; - ns1:hasOutput ns2:25824 ; - ns4:differential_output ns2:25824 ; - ns4:high_input ns2:46562 ; - ns4:low_input ns2:31470 ; + ns2:hasInput ns4:31470, + ns4:46562 ; + ns2:hasOutput ns4:25824 ; + ns3:differential_output ns4:25824 ; + ns3:high_input ns4:46562 ; + ns3:low_input ns4:31470 ; rdfs:comment "Will output High minus Low" . -ns2:65334 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:65334 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:65705 a ns1:PhysicalSpace ; +ns4:65705 a ns2:PhysicalSpace ; rdfs:label "7839P" . -ns2:66135 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirTemperatureSensor ; +ns4:66135 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirTemperatureSensor ; rdfs:label "ra_temp" ; - ns1:hasObservationLocation ns2:36823 ; - ns1:observes ns2:49932 ; + ns2:hasObservationLocation ns4:36823 ; + ns2:observes ns4:49932 ; rdfs:comment "RA_temp_sensor" . -ns2:66736 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:66736 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:66810 a ns1:PhysicalSpace ; +ns4:66810 a ns2:PhysicalSpace ; rdfs:label "7835A" . -ns2:66844 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:66844 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:67299 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:67299 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:67316 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:67316 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:67477 a ns1:PhysicalSpace ; +ns4:67477 a ns2:PhysicalSpace ; rdfs:label "G-17.enclosure" ; - ns1:contains ns2:00700, - ns2:06044, - ns2:11759, - ns2:15315, - ns2:22286, - ns2:26713, - ns2:62254, - ns2:82418, - ns2:86307 ; - ns1:encloses ns2:73947 . - -ns2:68389 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; + ns2:contains ns4:00700, + ns4:06044, + ns4:11759, + ns4:15315, + ns4:22286, + ns4:26713, + ns4:62254, + ns4:82418, + ns4:86307 ; + ns2:encloses ns4:73947 . + +ns4:68389 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:94727 . + ns2:observes ns4:94727 . -ns2:68403 a ns1:PhysicalSpace ; +ns4:68403 a ns2:PhysicalSpace ; rdfs:label "2-1.enclosure" ; - ns1:contains ns2:12136 ; - ns1:encloses ns2:16454 . + ns2:contains ns4:12136 ; + ns2:encloses ns4:16454 . -ns2:68567 a ns1:PhysicalSpace ; +ns4:68567 a ns2:PhysicalSpace ; rdfs:label "5-0A.enclosure" ; - ns1:contains ns2:91041 ; - ns1:encloses ns2:79420 . + ns2:contains ns4:91041 ; + ns2:encloses ns4:79420 . -ns2:68885 a ns1:PhysicalSpace ; +ns4:68885 a ns2:PhysicalSpace ; rdfs:label "9955H" . -ns2:68922 a ns1:PhysicalSpace ; +ns4:68922 a ns2:PhysicalSpace ; rdfs:label "0415" . -ns2:68998 a ns1:PhysicalSpace ; +ns4:68998 a ns2:PhysicalSpace ; rdfs:label "G-4A.enclosure" ; - ns1:contains ns2:15343 ; - ns1:encloses ns2:90402 . + ns2:contains ns4:15343 ; + ns2:encloses ns4:90402 . -ns2:69082 a ns1:PhysicalSpace ; +ns4:69082 a ns2:PhysicalSpace ; rdfs:label "0904" . -ns2:69109 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:69109 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:69497 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:69497 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:24830 . + ns2:observes ns4:24830 . -ns2:69502 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:69502 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:69551 a ns1:PhysicalSpace ; +ns4:69551 a ns2:PhysicalSpace ; rdfs:label "4543B" . -ns2:70215 a ns1:PhysicalSpace ; +ns4:70215 a ns2:PhysicalSpace ; rdfs:label "4505A" . -ns2:70455 a ns1:PhysicalSpace ; +ns4:70455 a ns2:PhysicalSpace ; rdfs:label "2825" . -ns2:70923 a ns1:PhysicalSpace ; +ns4:70923 a ns2:PhysicalSpace ; rdfs:label "4064C" . -ns2:71060 a ns1:PhysicalSpace ; +ns4:71060 a ns2:PhysicalSpace ; rdfs:label "G-2.enclosure" ; - ns1:contains ns2:34667, - ns2:35366, - ns2:35624, - ns2:56161, - ns2:89383, - ns2:91479 ; - ns1:encloses ns2:12692 . - -ns2:71501 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:contains ns4:34667, + ns4:35366, + ns4:35624, + ns4:56161, + ns4:89383, + ns4:91479 ; + ns2:encloses ns4:12692 . + +ns4:71501 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:71826 a ns1:PhysicalSpace ; +ns4:71826 a ns2:PhysicalSpace ; rdfs:label "6572" . -ns2:72127 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:CO7Concentration ; +ns4:72127 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:CO7Concentration ; rdfs:label "72127" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:72226 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:CO7Concentration ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:72226 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:CO7Concentration ; rdfs:label "72226" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:72281 a ns1:PhysicalSpace ; +ns4:72281 a ns2:PhysicalSpace ; rdfs:label "3-80.enclosure" ; - ns1:contains ns2:23259, - ns2:56542, - ns2:81234, - ns2:82092, - ns2:90849 ; - ns1:encloses ns2:55654 . - -ns2:72490 a ns1:PhysicalSpace ; + ns2:contains ns4:23259, + ns4:56542, + ns4:81234, + ns4:82092, + ns4:90849 ; + ns2:encloses ns4:55654 . + +ns4:72490 a ns2:PhysicalSpace ; rdfs:label "1546" . -ns2:72668 a ns1:PhysicalSpace ; +ns4:72668 a ns2:PhysicalSpace ; rdfs:label "7994D" . -ns2:72682 a ns1:PhysicalSpace ; +ns4:72682 a ns2:PhysicalSpace ; rdfs:label "G-64.enclosure" ; - ns1:contains ns2:52644, - ns2:96550 ; - ns1:encloses ns2:10814 . + ns2:contains ns4:52644, + ns4:96550 ; + ns2:encloses ns4:10814 . -ns2:72795 a ns1:PhysicalSpace ; +ns4:72795 a ns2:PhysicalSpace ; rdfs:label "8479Q" . -ns2:72814 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:72814 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "sa_press" ; - ns1:contains ns2:11783, - ns2:63600 ; - ns1:hasObservationLocation ns2:82635 ; - ns1:hasProperty ns2:75833 ; - ns1:observes ns2:75833 ; - ns4:contains ns2:51312 ; - ns4:differential_static_pressure ns2:75833 ; + ns2:contains ns4:11783, + ns4:63600 ; + ns2:hasObservationLocation ns4:82635 ; + ns2:hasProperty ns4:75833 ; + ns2:observes ns4:75833 ; + ns3:contains ns4:51312 ; + ns3:differential_static_pressure ns4:75833 ; rdfs:comment "SA_static_pressure" . -ns2:72995 a ns1:PhysicalSpace ; +ns4:72995 a ns2:PhysicalSpace ; rdfs:label "3035L" . -ns2:73016 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:73016 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:14653 . + ns2:observes ns4:14653 . -ns2:73096 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:73096 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:73181 a ns1:PhysicalSpace ; +ns4:73181 a ns2:PhysicalSpace ; rdfs:label "5476" . -ns2:73412 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:73412 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:16851 . + ns2:observes ns4:16851 . -ns2:73763 a ns1:PhysicalSpace ; +ns4:73763 a ns2:PhysicalSpace ; rdfs:label "9169H" . -ns2:73810 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:73810 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:73917 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:73917 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:73928 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:73928 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:79613 . + ns2:observes ns4:79613 . -ns2:74322 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:74322 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:74460 a ns1:PhysicalSpace ; +ns4:74460 a ns2:PhysicalSpace ; rdfs:label "5-77A.enclosure" ; - ns1:contains ns2:56015 ; - ns1:encloses ns2:54090 . + ns2:contains ns4:56015 ; + ns2:encloses ns4:54090 . -ns2:74471 a ns1:PhysicalSpace ; +ns4:74471 a ns2:PhysicalSpace ; rdfs:label "1836M" . -ns2:75363 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:75363 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:75385 a ns1:PhysicalSpace ; +ns4:75385 a ns2:PhysicalSpace ; rdfs:label "2275A" . -ns2:75613 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:75613 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:75984 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:75984 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:76105 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:76105 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:76108 a ns1:PhysicalSpace ; +ns4:76108 a ns2:PhysicalSpace ; rdfs:label "7612S" . -ns2:76434 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:76434 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:76697 a ns1:PhysicalSpace ; +ns4:76697 a ns2:PhysicalSpace ; rdfs:label "G-3.enclosure" ; - ns1:contains ns2:27190, - ns2:34667, - ns2:45209, - ns2:53211, - ns2:75857, - ns2:92168 ; - ns1:encloses ns2:96506 . - -ns2:76771 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:contains ns4:27190, + ns4:34667, + ns4:45209, + ns4:53211, + ns4:75857, + ns4:92168 ; + ns2:encloses ns4:96506 . + +ns4:76771 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:77589 a ns1:PhysicalSpace ; +ns4:77589 a ns2:PhysicalSpace ; rdfs:label "2-3.enclosure" ; - ns1:contains ns2:06740, - ns2:12136, - ns2:31131, - ns2:49603, - ns2:50980, - ns2:69341, - ns2:81522, - ns2:87499 ; - ns1:encloses ns2:97668 . - -ns2:78122 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns2:contains ns4:06740, + ns4:12136, + ns4:31131, + ns4:49603, + ns4:50980, + ns4:69341, + ns4:81522, + ns4:87499 ; + ns2:encloses ns4:97668 . + +ns4:78122 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:78354 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:78354 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "pf_press" ; - ns1:contains ns2:26412, - ns2:99143 ; - ns1:hasObservationLocation ns2:64314 ; - ns1:hasProperty ns2:15217 ; - ns1:observes ns2:15217 ; - ns4:contains ns2:65159 ; - ns4:differential_static_pressure ns2:15217 ; + ns2:contains ns4:26412, + ns4:99143 ; + ns2:hasObservationLocation ns4:64314 ; + ns2:hasProperty ns4:15217 ; + ns2:observes ns4:15217 ; + ns3:contains ns4:65159 ; + ns3:differential_static_pressure ns4:15217 ; rdfs:comment "PF_differential_pressure" . -ns2:78620 a ns1:PhysicalSpace ; +ns4:78620 a ns2:PhysicalSpace ; rdfs:label "3378N" . -ns2:78697 a ns1:PhysicalSpace ; +ns4:78697 a ns2:PhysicalSpace ; rdfs:label "4201J" . -ns2:78973 a ns1:PhysicalSpace ; +ns4:78973 a ns2:PhysicalSpace ; rdfs:label "G-40B.enclosure" ; - ns1:contains ns2:64731 ; - ns1:encloses ns2:68534 . + ns2:contains ns4:64731 ; + ns2:encloses ns4:68534 . -ns2:79483 a ns1:PhysicalSpace ; +ns4:79483 a ns2:PhysicalSpace ; rdfs:label "6083" . -ns2:79837 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:79837 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:80517 a ns1:PhysicalSpace ; +ns4:80517 a ns2:PhysicalSpace ; rdfs:label "6172T" . -ns2:80572 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:80572 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:91041 . + ns2:observes ns4:91041 . -ns2:80723 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:80723 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:80925 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:CO7Concentration ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:80925 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:CO7Concentration ; rdfs:label "80925" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:81213 a ns1:PhysicalSpace ; +ns4:81213 a ns2:PhysicalSpace ; rdfs:label "3189A" . -ns2:81613 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:81613 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:81671 a ns1:PhysicalSpace ; +ns4:81671 a ns2:PhysicalSpace ; rdfs:label "3707" . -ns2:81704 a ns1:PhysicalSpace ; +ns4:81704 a ns2:PhysicalSpace ; rdfs:label "9931A" . -ns2:81728 a ns1:PhysicalSpace ; +ns4:81728 a ns2:PhysicalSpace ; rdfs:label "9467V" . -ns2:81900 a ns1:PhysicalSpace ; +ns4:81900 a ns2:PhysicalSpace ; rdfs:label "4-01.enclosure" ; - ns1:contains ns2:64652 ; - ns1:encloses ns2:70764 . - -ns2:81911 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:contains ns4:64652 ; + ns2:encloses ns4:70764 . + +ns4:81911 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:82063 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:82063 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:82184 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:82184 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:82662 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:82662 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:82747 a ns1:PhysicalSpace ; +ns4:82747 a ns2:PhysicalSpace ; rdfs:label "4261" . -ns2:82837 a ns1:PhysicalSpace ; +ns4:82837 a ns2:PhysicalSpace ; rdfs:label "2047A" . -ns2:83119 a ns1:PhysicalSpace ; +ns4:83119 a ns2:PhysicalSpace ; rdfs:label "7337H" . -ns2:83325 a ns1:PhysicalSpace ; +ns4:83325 a ns2:PhysicalSpace ; rdfs:label "8182P" . -ns2:83387 a ns1:PhysicalSpace ; +ns4:83387 a ns2:PhysicalSpace ; rdfs:label "2045C" . -ns2:83476 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:83476 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:83578 a ns1:PhysicalSpace ; +ns4:83578 a ns2:PhysicalSpace ; rdfs:label "0280B" . -ns2:83770 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:CO7Concentration ; +ns4:83770 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:CO7Concentration ; rdfs:label "83770" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:84311 a ns1:PhysicalSpace ; +ns4:84311 a ns2:PhysicalSpace ; rdfs:label "3765K" . -ns2:84397 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:84397 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:31647 . + ns2:observes ns4:31647 . -ns2:84459 a , - ns4:Differential ; +ns4:84459 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:04970, - ns2:85543 ; - ns1:hasOutput ns2:98024 ; - ns4:differential_output ns2:98024 ; - ns4:high_input ns2:85543 ; - ns4:low_input ns2:04970 ; + ns2:hasInput ns4:04970, + ns4:85543 ; + ns2:hasOutput ns4:98024 ; + ns3:differential_output ns4:98024 ; + ns3:high_input ns4:85543 ; + ns3:low_input ns4:04970 ; rdfs:comment "Will output High minus Low" . -ns2:84716 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:84716 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:85151 a ns1:PhysicalSpace ; +ns4:85151 a ns2:PhysicalSpace ; rdfs:label "2-87.enclosure" ; - ns1:contains ns2:02149, - ns2:88310 ; - ns1:encloses ns2:13461 . + ns2:contains ns4:02149, + ns4:88310 ; + ns2:encloses ns4:13461 . -ns2:85182 a ns1:PhysicalSpace ; +ns4:85182 a ns2:PhysicalSpace ; rdfs:label "Floor_4.NorthPerimeterZoneEnclosure" ; - ns1:contains ns2:01187, - ns2:05382, - ns2:10518, - ns2:16446, - ns2:17415, - ns2:26077, - ns2:27190, - ns2:30395, - ns2:34667, - ns2:35366, - ns2:35624, - ns2:41141, - ns2:45209, - ns2:46224, - ns2:49132, - ns2:50438, - ns2:53211, - ns2:54661, - ns2:56161, - ns2:57529, - ns2:64212, - ns2:71060, - ns2:75857, - ns2:76697, - ns2:78973, - ns2:83903, - ns2:89383, - ns2:91479, - ns2:92168, - ns2:94647 . - -ns2:85218 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; + ns2:contains ns4:01187, + ns4:05382, + ns4:10518, + ns4:16446, + ns4:17415, + ns4:26077, + ns4:27190, + ns4:30395, + ns4:34667, + ns4:35366, + ns4:35624, + ns4:41141, + ns4:45209, + ns4:46224, + ns4:49132, + ns4:50438, + ns4:53211, + ns4:54661, + ns4:56161, + ns4:57529, + ns4:64212, + ns4:71060, + ns4:75857, + ns4:76697, + ns4:78973, + ns4:83903, + ns4:89383, + ns4:91479, + ns4:92168, + ns4:94647 . + +ns4:85218 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:49467 . + ns2:observes ns4:49467 . -ns2:85625 a ns1:PhysicalSpace ; +ns4:85625 a ns2:PhysicalSpace ; rdfs:label "0320T" . -ns2:85710 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:85710 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:86392 a ns1:PhysicalSpace ; +ns4:86392 a ns2:PhysicalSpace ; rdfs:label "4299A" . -ns2:86718 a ns1:PhysicalSpace ; +ns4:86718 a ns2:PhysicalSpace ; rdfs:label "4-2.enclosure" ; - ns1:contains ns2:06325 ; - ns1:encloses ns2:04698 . - -ns2:86734 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:contains ns4:06325 ; + ns2:encloses ns4:04698 . + +ns4:86734 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:86848 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:86848 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:86907 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:86907 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "pf_press" ; - ns1:contains ns2:22058, - ns2:73928 ; - ns1:hasObservationLocation ns2:15718 ; - ns1:hasProperty ns2:06683 ; - ns1:observes ns2:06683 ; - ns4:contains ns2:56940 ; - ns4:differential_static_pressure ns2:06683 ; + ns2:contains ns4:22058, + ns4:73928 ; + ns2:hasObservationLocation ns4:15718 ; + ns2:hasProperty ns4:06683 ; + ns2:observes ns4:06683 ; + ns3:contains ns4:56940 ; + ns3:differential_static_pressure ns4:06683 ; rdfs:comment "PF_differential_pressure" . -ns2:87468 a ns1:PhysicalSpace ; +ns4:87468 a ns2:PhysicalSpace ; rdfs:label "4367J" . -ns2:87629 a ns1:PhysicalSpace ; +ns4:87629 a ns2:PhysicalSpace ; rdfs:label "6841K" . -ns2:87948 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirTemperatureSensor ; +ns4:87948 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirTemperatureSensor ; rdfs:label "sa_temp" ; - ns1:hasObservationLocation ns2:82635 ; - ns1:observes ns2:08570 ; + ns2:hasObservationLocation ns4:82635 ; + ns2:observes ns4:08570 ; rdfs:comment "SA_temperature" . -ns2:88057 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:88057 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:88265 a ns1:PhysicalSpace ; +ns4:88265 a ns2:PhysicalSpace ; rdfs:label "2060" . -ns2:88269 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:CO7Concentration ; +ns4:88269 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:CO7Concentration ; rdfs:label "88269" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:88395 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:88395 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:88541 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:88541 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:88641 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:88641 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "sa_press" ; - ns1:contains ns2:25825, - ns2:68389 ; - ns1:hasObservationLocation ns2:11879 ; - ns1:hasProperty ns2:43934 ; - ns1:observes ns2:43934 ; - ns4:contains ns2:48990 ; - ns4:differential_static_pressure ns2:43934 ; + ns2:contains ns4:25825, + ns4:68389 ; + ns2:hasObservationLocation ns4:11879 ; + ns2:hasProperty ns4:43934 ; + ns2:observes ns4:43934 ; + ns3:contains ns4:48990 ; + ns3:differential_static_pressure ns4:43934 ; rdfs:comment "SA_static_pressure" . -ns2:88826 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:88826 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:71745 . + ns2:observes ns4:71745 . -ns2:88866 a ns1:PhysicalSpace ; +ns4:88866 a ns2:PhysicalSpace ; rdfs:label "2387L" . -ns2:88965 a ns1:PhysicalSpace ; +ns4:88965 a ns2:PhysicalSpace ; rdfs:label "7494K" . -ns2:89000 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:89000 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:89347 a ns1:PhysicalSpace ; +ns4:89347 a ns2:PhysicalSpace ; rdfs:label "G-92.enclosure" ; - ns1:contains ns2:21689, - ns2:34214, - ns2:89053 ; - ns1:encloses ns2:15016 . - -ns2:89594 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; + ns2:contains ns4:21689, + ns4:34214, + ns4:89053 ; + ns2:encloses ns4:15016 . + +ns4:89594 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:68532 . + ns2:observes ns4:68532 . -ns2:89695 a ns1:PhysicalSpace ; +ns4:89695 a ns2:PhysicalSpace ; rdfs:label "7076R" . -ns2:89739 a ns1:PhysicalSpace ; +ns4:89739 a ns2:PhysicalSpace ; rdfs:label "9131E" . -ns2:90636 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:90636 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:27329 . + ns2:observes ns4:27329 . -ns2:91175 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:91175 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:91277 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirTemperatureSensor ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:91277 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirTemperatureSensor ; rdfs:label "ra_temp" ; - ns1:hasObservationLocation ns2:52572 ; - ns1:observes ns2:17710 ; + ns2:hasObservationLocation ns4:52572 ; + ns2:observes ns4:17710 ; rdfs:comment "RA_temp_sensor" . -ns2:91638 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:91638 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:91649 a , - ns4:Differential ; +ns4:91649 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:23419, - ns2:31642 ; - ns1:hasOutput ns2:36141 ; - ns4:differential_output ns2:36141 ; - ns4:high_input ns2:23419 ; - ns4:low_input ns2:31642 ; + ns2:hasInput ns4:23419, + ns4:31642 ; + ns2:hasOutput ns4:36141 ; + ns3:differential_output ns4:36141 ; + ns3:high_input ns4:23419 ; + ns3:low_input ns4:31642 ; rdfs:comment "Will output High minus Low" . -ns2:91664 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:91664 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:91822 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:91822 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:91827 a ns1:PhysicalSpace ; +ns4:91827 a ns2:PhysicalSpace ; rdfs:label "Floor_5.CoreZoneEnclosure" ; - ns1:contains ns2:01646, - ns2:03218, - ns2:03420, - ns2:03937, - ns2:07010, - ns2:07121, - ns2:08961, - ns2:09372, - ns2:09798, - ns2:12391, - ns2:13400, - ns2:14922, - ns2:15014, - ns2:15343, - ns2:17670, - ns2:17742, - ns2:17753, - ns2:17921, - ns2:19371, - ns2:20662, - ns2:21018, - ns2:21551, - ns2:22115, - ns2:22204, - ns2:22904, - ns2:23884, - ns2:26578, - ns2:29710, - ns2:30508, - ns2:30587, - ns2:30993, - ns2:31961, - ns2:32491, - ns2:34586, - ns2:34646, - ns2:35173, - ns2:36095, - ns2:36499, - ns2:36632, - ns2:39011, - ns2:39130, - ns2:39778, - ns2:41538, - ns2:43535, - ns2:45770, - ns2:48813, - ns2:50296, - ns2:50418, - ns2:50824, - ns2:55769, - ns2:55776, - ns2:56903, - ns2:59147, - ns2:60866, - ns2:61555, - ns2:62783, - ns2:63019, - ns2:63769, - ns2:63957, - ns2:64731, - ns2:64769, - ns2:66235, - ns2:66884, - ns2:67151, - ns2:69839, - ns2:71485, - ns2:74622, - ns2:75022, - ns2:75463, - ns2:77598, - ns2:79569, - ns2:83412, - ns2:83874, - ns2:84427, - ns2:85187, - ns2:85937, - ns2:86972, - ns2:87206, - ns2:87806, - ns2:88328, - ns2:89693, - ns2:93850, - ns2:94648, - ns2:96074, - ns2:96875, - ns2:97516, - ns2:99435 . - -ns2:92084 a ns1:PhysicalSpace ; + ns2:contains ns4:01646, + ns4:03218, + ns4:03420, + ns4:03937, + ns4:07010, + ns4:07121, + ns4:08961, + ns4:09372, + ns4:09798, + ns4:12391, + ns4:13400, + ns4:14922, + ns4:15014, + ns4:15343, + ns4:17670, + ns4:17742, + ns4:17753, + ns4:17921, + ns4:19371, + ns4:20662, + ns4:21018, + ns4:21551, + ns4:22115, + ns4:22204, + ns4:22904, + ns4:23884, + ns4:26578, + ns4:29710, + ns4:30508, + ns4:30587, + ns4:30993, + ns4:31961, + ns4:32491, + ns4:34586, + ns4:34646, + ns4:35173, + ns4:36095, + ns4:36499, + ns4:36632, + ns4:39011, + ns4:39130, + ns4:39778, + ns4:41538, + ns4:43535, + ns4:45770, + ns4:48813, + ns4:50296, + ns4:50418, + ns4:50824, + ns4:55769, + ns4:55776, + ns4:56903, + ns4:59147, + ns4:60866, + ns4:61555, + ns4:62783, + ns4:63019, + ns4:63769, + ns4:63957, + ns4:64731, + ns4:64769, + ns4:66235, + ns4:66884, + ns4:67151, + ns4:69839, + ns4:71485, + ns4:74622, + ns4:75022, + ns4:75463, + ns4:77598, + ns4:79569, + ns4:83412, + ns4:83874, + ns4:84427, + ns4:85187, + ns4:85937, + ns4:86972, + ns4:87206, + ns4:87806, + ns4:88328, + ns4:89693, + ns4:93850, + ns4:94648, + ns4:96074, + ns4:96875, + ns4:97516, + ns4:99435 . + +ns4:92084 a ns2:PhysicalSpace ; rdfs:label "4917" . -ns2:92543 a ns1:PhysicalSpace ; +ns4:92543 a ns2:PhysicalSpace ; rdfs:label "1661A" . -ns2:92661 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:92661 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:92718 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:92718 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "sa_press" ; - ns1:contains ns2:10405, - ns2:69497 ; - ns1:hasObservationLocation ns2:63848 ; - ns1:hasProperty ns2:05076 ; - ns1:observes ns2:05076 ; - ns4:contains ns2:91649 ; - ns4:differential_static_pressure ns2:05076 ; + ns2:contains ns4:10405, + ns4:69497 ; + ns2:hasObservationLocation ns4:63848 ; + ns2:hasProperty ns4:05076 ; + ns2:observes ns4:05076 ; + ns3:contains ns4:91649 ; + ns3:differential_static_pressure ns4:05076 ; rdfs:comment "SA_static_pressure" . -ns2:92785 a ns1:PhysicalSpace ; +ns4:92785 a ns2:PhysicalSpace ; rdfs:label "6559J" . -ns2:93142 a ns1:PhysicalSpace ; +ns4:93142 a ns2:PhysicalSpace ; rdfs:label "1131" . -ns2:93398 a , - ns4:Differential ; +ns4:93398 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:10336, - ns2:98181 ; - ns1:hasOutput ns2:61950 ; - ns4:differential_output ns2:61950 ; - ns4:high_input ns2:98181 ; - ns4:low_input ns2:10336 ; + ns2:hasInput ns4:10336, + ns4:98181 ; + ns2:hasOutput ns4:61950 ; + ns3:differential_output ns4:61950 ; + ns3:high_input ns4:98181 ; + ns3:low_input ns4:10336 ; rdfs:comment "Will output High minus Low" . -ns2:93455 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:93455 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:93682 a ns1:PhysicalSpace ; +ns4:93682 a ns2:PhysicalSpace ; rdfs:label "7096D" . -ns2:93767 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:93767 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:93812 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:93812 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "ra_pres" ; - ns1:contains ns2:45557, - ns2:94884 ; - ns1:hasObservationLocation ns2:36823 ; - ns1:hasProperty ns2:89893 ; - ns1:observes ns2:89893 ; - ns4:contains ns2:63437 ; - ns4:differential_static_pressure ns2:89893 ; + ns2:contains ns4:45557, + ns4:94884 ; + ns2:hasObservationLocation ns4:36823 ; + ns2:hasProperty ns4:89893 ; + ns2:observes ns4:89893 ; + ns3:contains ns4:63437 ; + ns3:differential_static_pressure ns4:89893 ; rdfs:comment "RA_static_pressure" . -ns2:93850 a ns1:PhysicalSpace ; +ns4:93850 a ns2:PhysicalSpace ; rdfs:label "2078" . -ns2:94002 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:94002 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:94145 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:94145 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:94180 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:94180 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:94202 a ns1:Connectable, - ns1:DifferentialSensor, - ns1:Equipment, - ns1:Sensor ; +ns4:94202 a ns2:Connectable, + ns2:DifferentialSensor, + ns2:Equipment, + ns2:Sensor ; rdfs:label "ra_pres" ; - ns1:contains ns2:15362, - ns2:90636 ; - ns1:hasObservationLocation ns2:51136 ; - ns1:hasProperty ns2:02892 ; - ns1:observes ns2:02892 ; - ns4:contains ns2:93398 ; - ns4:differential_static_pressure ns2:02892 ; + ns2:contains ns4:15362, + ns4:90636 ; + ns2:hasObservationLocation ns4:51136 ; + ns2:hasProperty ns4:02892 ; + ns2:observes ns4:02892 ; + ns3:contains ns4:93398 ; + ns3:differential_static_pressure ns4:02892 ; rdfs:comment "RA_static_pressure" . -ns2:94427 a ns1:PhysicalSpace ; +ns4:94427 a ns2:PhysicalSpace ; rdfs:label "2340" . -ns2:94647 a ns1:PhysicalSpace ; +ns4:94647 a ns2:PhysicalSpace ; rdfs:label "G-6.enclosure" ; - ns1:contains ns2:16005, - ns2:30001, - ns2:45213, - ns2:63389, - ns2:98582 ; - ns1:encloses ns2:80151 . - -ns2:94817 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:contains ns4:16005, + ns4:30001, + ns4:45213, + ns4:63389, + ns4:98582 ; + ns2:encloses ns4:80151 . + +ns4:94817 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:94884 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; +ns4:94884 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "lowPort" ; - ns1:observes ns2:16646 . + ns2:observes ns4:16646 . -ns2:95345 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:95345 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:95378 a ns1:PhysicalSpace ; +ns4:95378 a ns2:PhysicalSpace ; rdfs:label "3-91B.enclosure" ; - ns1:contains ns2:56015 ; - ns1:encloses ns2:01240 . + ns2:contains ns4:56015 ; + ns2:encloses ns4:01240 . -ns2:95437 a ns1:PhysicalSpace ; +ns4:95437 a ns2:PhysicalSpace ; rdfs:label "4647C" . -ns2:95514 a ns1:PhysicalSpace ; +ns4:95514 a ns2:PhysicalSpace ; rdfs:label "3479" . -ns2:95629 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:95629 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:95774 a , - ns4:Differential ; +ns4:95774 a , + ns3:Differential ; rdfs:label "diff_causality" ; - ns1:hasInput ns2:39859, - ns2:72408 ; - ns1:hasOutput ns2:09179 ; - ns4:differential_output ns2:09179 ; - ns4:high_input ns2:72408 ; - ns4:low_input ns2:39859 ; + ns2:hasInput ns4:39859, + ns4:72408 ; + ns2:hasOutput ns4:09179 ; + ns3:differential_output ns4:09179 ; + ns3:high_input ns4:72408 ; + ns3:low_input ns4:39859 ; rdfs:comment "Will output High minus Low" . -ns2:96089 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:96089 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:96135 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:96135 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:96669 a ns1:PhysicalSpace ; +ns4:96669 a ns2:PhysicalSpace ; rdfs:label "G-37.enclosure" ; - ns1:contains ns2:34070, - ns2:37945, - ns2:41627 ; - ns1:encloses ns2:03365 . - -ns2:97130 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:contains ns4:34070, + ns4:37945, + ns4:41627 ; + ns2:encloses ns4:03365 . + +ns4:97130 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:97357 a ns1:PhysicalSpace ; +ns4:97357 a ns2:PhysicalSpace ; rdfs:label "2431" . -ns2:97697 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:Pressure ; +ns4:97697 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:Pressure ; rdfs:label "staticPressure" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:97887 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:97887 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:98042 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:98042 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:98379 a ns1:PhysicalSpace ; +ns4:98379 a ns2:PhysicalSpace ; rdfs:label "8908K" . -ns2:98447 a ns1:PhysicalSpace ; +ns4:98447 a ns2:PhysicalSpace ; rdfs:label "9911B" . -ns2:98463 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:98463 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "position" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:99083 a ns1:PhysicalSpace ; +ns4:99083 a ns2:PhysicalSpace ; rdfs:label "G-20.enclosure" ; - ns1:contains ns2:21551, - ns2:39011, - ns2:79569, - ns2:85937 ; - ns1:encloses ns2:09362 . - -ns2:99143 a ns1:Connectable, - ns1:Equipment, - ns1:Sensor ; + ns2:contains ns4:21551, + ns4:39011, + ns4:79569, + ns4:85937 ; + ns2:encloses ns4:09362 . + +ns4:99143 a ns2:Connectable, + ns2:Equipment, + ns2:Sensor ; rdfs:label "highPort" ; - ns1:observes ns2:32852 . + ns2:observes ns4:32852 . -ns2:99336 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:99336 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:99412 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:99412 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "position_command" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:99984 a ns1:PhysicalSpace ; +ns4:99984 a ns2:PhysicalSpace ; rdfs:label "4591B" . a owl:Ontology ; rdfs:label "lbnl-example-6" ; rdfs:isDefinedBy . -ns2:00196 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:00196 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:66562 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:66562 . - -ns2:00482 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:66562 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:66562 . + +ns4:00482 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "00482" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:00687 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:00687 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "Floor_2.RTU_5.Plenum.press_sens.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:00700 a ns1:PhysicalSpace ; +ns4:00700 a ns2:PhysicalSpace ; rdfs:label "5486D" . -ns2:00778 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:00778 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:01601 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:01601 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:21910 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:21910 . - -ns2:01614 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:21910 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:21910 . + +ns4:01614 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "01614" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:01637 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:01637 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:25200 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:25200 . - -ns2:01690 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:25200 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:25200 . + +ns4:01690 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "01690" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:01782 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:01782 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "01782" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:02216 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:02216 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:02610 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:02610 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "02610" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:02628 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:02628 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "02628" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:02736 a ns1:PhysicalSpace ; +ns4:02736 a ns2:PhysicalSpace ; rdfs:label "4759F" . -ns2:02942 a ns1:PhysicalSpace ; +ns4:02942 a ns2:PhysicalSpace ; rdfs:label "3754H" . -ns2:03036 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:03036 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:03299 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:03299 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "03299" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:03307 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:03307 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:53089 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:53089 . + ns2:cnx ns4:53089 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:53089 . -ns2:03420 a ns1:PhysicalSpace ; +ns4:03420 a ns2:PhysicalSpace ; rdfs:label "2494G" . -ns2:03545 a ns1:PhysicalSpace ; +ns4:03545 a ns2:PhysicalSpace ; rdfs:label "1680" . -ns2:03772 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:03772 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:03937 a ns1:PhysicalSpace ; +ns4:03937 a ns2:PhysicalSpace ; rdfs:label "0590" . -ns2:04045 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:04045 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:79421 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:79421 . + ns2:cnx ns4:79421 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:79421 . -ns2:04152 a ns1:PhysicalSpace ; +ns4:04152 a ns2:PhysicalSpace ; rdfs:label "5312" . -ns2:04158 a ns1:PhysicalSpace ; +ns4:04158 a ns2:PhysicalSpace ; rdfs:label "0963" . -ns2:04230 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:04230 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "cwc.r_in_temp.Temperature" ; - ns1:ofMedium ns1:Fluid-Refrigerant ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:04501 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:ofMedium ns2:Fluid-Refrigerant ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:04501 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:04690 a ns1:PhysicalSpace ; +ns4:04690 a ns2:PhysicalSpace ; rdfs:label "9419" . -ns2:04712 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:04712 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "04712" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:04868 a ns1:PhysicalSpace ; +ns4:04868 a ns2:PhysicalSpace ; rdfs:label "8144A" . -ns2:04879 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:04879 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:24559 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:24559 . + ns2:cnx ns4:24559 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:24559 . -ns2:04970 a ; +ns4:04970 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:52427 . + ns2:uses ns4:52427 . -ns2:05144 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:05144 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "Floor_0.RTU_4.Plenum.press_sens.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:05316 a ns1:PhysicalSpace ; +ns4:05316 a ns2:PhysicalSpace ; rdfs:label "7484F" . -ns2:05662 a ns1:PhysicalSpace ; +ns4:05662 a ns2:PhysicalSpace ; rdfs:label "0091" . -ns2:05781 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:05781 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "05781" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:05895 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:05895 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:62855 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:62855 . - -ns2:05937 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:62855 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:62855 . + +ns4:05937 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "05937" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:06044 a ns1:PhysicalSpace ; +ns4:06044 a ns2:PhysicalSpace ; rdfs:label "4301B" . -ns2:06192 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:06192 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "06192" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:06305 a ns1:PhysicalSpace ; +ns4:06305 a ns2:PhysicalSpace ; rdfs:label "1710P" . -ns2:06325 a ns1:PhysicalSpace ; +ns4:06325 a ns2:PhysicalSpace ; rdfs:label "2755" . -ns2:06517 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:06517 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "06517" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:06718 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:06718 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:77457 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:77457 . + ns2:cnx ns4:77457 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:77457 . -ns2:06740 a ns1:PhysicalSpace ; +ns4:06740 a ns2:PhysicalSpace ; rdfs:label "6927H" . -ns2:06902 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:06902 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:36725 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:36725 . + ns2:cnx ns4:36725 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:36725 . -ns2:06938 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:06938 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:15477 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:15477 . + ns2:cnx ns4:15477 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:15477 . -ns2:07010 a ns1:PhysicalSpace ; +ns4:07010 a ns2:PhysicalSpace ; rdfs:label "4131F" . -ns2:07121 a ns1:PhysicalSpace ; +ns4:07121 a ns2:PhysicalSpace ; rdfs:label "8914D" . -ns2:07416 a ns1:PhysicalSpace ; +ns4:07416 a ns2:PhysicalSpace ; rdfs:label "1879F" . -ns2:07438 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:07438 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "07438" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:07657 a ns1:PhysicalSpace ; +ns4:07657 a ns2:PhysicalSpace ; rdfs:label "6048G" . -ns2:08265 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:08265 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:62481 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:62481 . + ns2:cnx ns4:62481 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:62481 . -ns2:08293 a ns1:PhysicalSpace ; +ns4:08293 a ns2:PhysicalSpace ; rdfs:label "6195Q" . -ns2:08551 a ; +ns4:08551 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:43934 . + ns2:produces ns4:43934 . -ns2:08570 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:08570 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "sa_temp.Temperature" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:08606 a ns1:PhysicalSpace ; +ns4:08606 a ns2:PhysicalSpace ; rdfs:label "7271" . -ns2:08961 a ns1:PhysicalSpace ; +ns4:08961 a ns2:PhysicalSpace ; rdfs:label "3368" . -ns2:09179 a ; +ns4:09179 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:02218 . + ns2:produces ns4:02218 . -ns2:09214 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:09214 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:09270 a ns1:PhysicalSpace ; +ns4:09270 a ns2:PhysicalSpace ; rdfs:label "1609E" . -ns2:09332 a ns1:PhysicalSpace ; +ns4:09332 a ns2:PhysicalSpace ; rdfs:label "8909F" . -ns2:09384 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:09384 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:65015 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:65015 . + ns2:cnx ns4:65015 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:65015 . -ns2:09526 a ns1:PhysicalSpace ; +ns4:09526 a ns2:PhysicalSpace ; rdfs:label "8137T" . -ns2:09764 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:09764 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "09764" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:09793 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:09793 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:03860 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:03860 . + ns2:cnx ns4:03860 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:03860 . -ns2:09798 a ns1:PhysicalSpace ; +ns4:09798 a ns2:PhysicalSpace ; rdfs:label "8066" . -ns2:09921 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:09921 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "09921" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:10133 a ns1:PhysicalSpace ; +ns4:10133 a ns2:PhysicalSpace ; rdfs:label "0537C" . -ns2:10224 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:10224 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:10336 a ; +ns4:10336 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:27329 . + ns2:uses ns4:27329 . -ns2:10599 a ns1:PhysicalSpace ; +ns4:10599 a ns2:PhysicalSpace ; rdfs:label "5651E" . -ns2:10629 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:10629 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "10629" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:10659 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:10659 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:12553 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:12553 . - -ns2:10692 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:12553 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:12553 . + +ns4:10692 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:11398 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:11398 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "11398" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:11406 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:11406 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "11406" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:11443 a ; +ns4:11443 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:75560 . + ns2:uses ns4:75560 . -ns2:11759 a ns1:PhysicalSpace ; +ns4:11759 a ns2:PhysicalSpace ; rdfs:label "0602E" . -ns2:11945 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:11945 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "11945" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:12022 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:12022 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "12022" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:12129 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:12129 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "12129" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:12279 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:12279 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "sa_temp.Temperature" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:12391 a ns1:PhysicalSpace ; +ns4:12391 a ns2:PhysicalSpace ; rdfs:label "5771" . -ns2:12427 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:12427 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "12427" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:12520 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:12520 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "12520" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:12821 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:12821 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:73024 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:73024 . - -ns2:13051 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:73024 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:73024 . + +ns4:13051 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "13051" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:13224 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:13224 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "13224" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:13400 a ns1:PhysicalSpace ; +ns4:13400 a ns2:PhysicalSpace ; rdfs:label "2465" . -ns2:13819 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:13819 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "13819" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:13949 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:13949 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "13949" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:14000 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:14000 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:70230 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:70230 . - -ns2:14024 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:70230 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:70230 . + +ns4:14024 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "14024" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:14478 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:14478 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "14478" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:14620 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:14620 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:62383 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:62383 . - -ns2:14653 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:62383 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:62383 . + +ns4:14653 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:14807 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:14807 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "sa_temp.Temperature" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:14922 a ns1:PhysicalSpace ; +ns4:14922 a ns2:PhysicalSpace ; rdfs:label "9516" . -ns2:15014 a ns1:PhysicalSpace ; +ns4:15014 a ns2:PhysicalSpace ; rdfs:label "4737" . -ns2:15015 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:15015 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "15015" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:15049 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:15049 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:59158 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:59158 . - -ns2:15232 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:59158 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:59158 . + +ns4:15232 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "15232" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:15315 a ns1:PhysicalSpace ; +ns4:15315 a ns2:PhysicalSpace ; rdfs:label "8701" . -ns2:15973 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:15973 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "15973" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:16005 a ns1:PhysicalSpace ; +ns4:16005 a ns2:PhysicalSpace ; rdfs:label "2622F" . -ns2:16091 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:16091 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:16110 a ns1:PhysicalSpace ; +ns4:16110 a ns2:PhysicalSpace ; rdfs:label "7780H" . -ns2:16604 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:16604 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:73942 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:73942 . - -ns2:16646 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:73942 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:73942 . + +ns4:16646 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:16655 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:16655 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "16655" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:16663 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:16663 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "16663" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:16851 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:16851 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:16928 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:16928 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "16928" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:17307 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:17307 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "17307" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:17615 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:17615 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "17615" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:17710 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:17710 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "ra_temp.Temperature" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:17906 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:17906 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "17906" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:17921 a ns1:PhysicalSpace ; +ns4:17921 a ns2:PhysicalSpace ; rdfs:label "2553H" . -ns2:18000 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:18000 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "18000" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:18059 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:18059 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:18527 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:18527 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:18790 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:18790 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "18790" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:18809 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:18809 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "18809" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:19065 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:19065 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:46907 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:46907 . - -ns2:19137 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:cnx ns4:46907 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:46907 . + +ns4:19137 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:19198 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:19198 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "19198" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:19496 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:19496 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "19496" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:19702 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:19702 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:63543 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:63543 . + ns2:cnx ns4:63543 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:63543 . -ns2:19704 a ns1:PhysicalSpace ; +ns4:19704 a ns2:PhysicalSpace ; rdfs:label "9919" . -ns2:19930 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:19930 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:34355 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:34355 . + ns2:cnx ns4:34355 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:34355 . -ns2:19941 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:19941 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:54708 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:54708 . + ns2:cnx ns4:54708 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:54708 . -ns2:20005 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:20005 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:20289 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:20289 . - -ns2:20149 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:cnx ns4:20289 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:20289 . + +ns4:20149 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:20292 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:20292 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "Floor_6.RTU_5.Plenum.press_sens.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:20420 a ; +ns4:20420 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:14653 . + ns2:uses ns4:14653 . -ns2:20662 a ns1:PhysicalSpace ; +ns4:20662 a ns2:PhysicalSpace ; rdfs:label "8973" . -ns2:20812 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:20812 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "20812" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:21018 a ns1:PhysicalSpace ; +ns4:21018 a ns2:PhysicalSpace ; rdfs:label "3243D" . -ns2:21133 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:21133 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "21133" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:21241 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:21241 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:21380 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:21380 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "21380" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:21689 a ns1:PhysicalSpace ; +ns4:21689 a ns2:PhysicalSpace ; rdfs:label "0725" . -ns2:21752 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:21752 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:21833 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:21833 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "21833" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:22077 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:22077 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "22077" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:22115 a ns1:PhysicalSpace ; +ns4:22115 a ns2:PhysicalSpace ; rdfs:label "4265" . -ns2:22204 a ns1:PhysicalSpace ; +ns4:22204 a ns2:PhysicalSpace ; rdfs:label "4262E" . -ns2:22286 a ns1:PhysicalSpace ; +ns4:22286 a ns2:PhysicalSpace ; rdfs:label "5689D" . -ns2:22374 a ns1:PhysicalSpace ; +ns4:22374 a ns2:PhysicalSpace ; rdfs:label "7584B" . -ns2:22406 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:22406 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "22406" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:22465 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:22465 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:22550 a ns1:PhysicalSpace ; +ns4:22550 a ns2:PhysicalSpace ; rdfs:label "4457" . -ns2:22628 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:22628 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "22628" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:22904 a ns1:PhysicalSpace ; +ns4:22904 a ns2:PhysicalSpace ; rdfs:label "5076" . -ns2:22925 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:22925 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "22925" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:22936 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:22936 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:39604 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:39604 . + ns2:cnx ns4:39604 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:39604 . -ns2:23122 a ns1:PhysicalSpace ; +ns4:23122 a ns2:PhysicalSpace ; rdfs:label "2858" . -ns2:23259 a ns1:PhysicalSpace ; +ns4:23259 a ns2:PhysicalSpace ; rdfs:label "8523P" . -ns2:23419 a ; +ns4:23419 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:21752 . + ns2:uses ns4:21752 . -ns2:23464 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:23464 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:03990 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:03990 . - -ns2:23945 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:03990 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:03990 . + +ns4:23945 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "23945" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:23963 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:23963 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:23967 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:23967 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:11624 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:11624 . + ns2:cnx ns4:11624 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:11624 . -ns2:24042 a ; +ns4:24042 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:89893 . + ns2:produces ns4:89893 . -ns2:24789 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:24789 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "24789" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:24830 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:24830 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:25235 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:25235 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "25235" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:25514 a ns1:PhysicalSpace ; +ns4:25514 a ns2:PhysicalSpace ; rdfs:label "9034" . -ns2:25824 a ; +ns4:25824 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:15217 . + ns2:produces ns4:15217 . -ns2:25846 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:25846 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:25905 a ns1:PhysicalSpace ; +ns4:25905 a ns2:PhysicalSpace ; rdfs:label "2669" . -ns2:25953 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:ElectricPower, - ns4:ElectricPowerkW ; +ns4:25953 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:ElectricPower, + ns3:ElectricPowerkW ; rdfs:label "25953" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:26025 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:26025 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:13590 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:13590 . - -ns2:26069 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:cnx ns4:13590 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:13590 . + +ns4:26069 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:26157 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:26157 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "26157" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:26412 a ns1:Connectable, - ns1:Equipment, - ns1:PhysicalSpace, - ns1:Sensor ; +ns4:26412 a ns2:Connectable, + ns2:Equipment, + ns2:PhysicalSpace, + ns2:Sensor ; rdfs:label "4598D", "lowPort" ; - ns1:observes ns2:10692 . + ns2:observes ns4:10692 . -ns2:26451 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:26451 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "26451" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:26513 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:26513 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "26513" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:26555 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:26555 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:50935 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:50935 . + ns2:cnx ns4:50935 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:50935 . -ns2:26578 a ns1:PhysicalSpace ; +ns4:26578 a ns2:PhysicalSpace ; rdfs:label "9881A" . -ns2:26614 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:26614 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "26614" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:26713 a ns1:PhysicalSpace ; +ns4:26713 a ns2:PhysicalSpace ; rdfs:label "6314" . -ns2:26888 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:26888 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "26888" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:26969 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:26969 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:27001 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:27001 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "27001" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:27190 a ns1:PhysicalSpace ; +ns4:27190 a ns2:PhysicalSpace ; rdfs:label "9726B" . -ns2:27210 a ns1:PhysicalSpace ; +ns4:27210 a ns2:PhysicalSpace ; rdfs:label "8952E" . -ns2:27236 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:27236 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "27236" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:27323 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:27323 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "27323" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:27329 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:27329 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:27550 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:27550 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "27550" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:27647 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:27647 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:20861 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:20861 . - -ns2:27765 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:20861 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:20861 . + +ns4:27765 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "27765" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:27895 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:27895 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:32493 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:32493 . - -ns2:28017 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:cnx ns4:32493 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:32493 . + +ns4:28017 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:28727 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:28727 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:28855 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:28855 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "28855" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:28960 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:28960 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "28960" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:28982 a ; +ns4:28982 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:68980 . + ns2:uses ns4:68980 . -ns2:29173 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:29173 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:60254 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:60254 . - -ns2:29193 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:60254 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:60254 . + +ns4:29193 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "29193" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:29207 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:29207 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:12438 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:12438 . + ns2:cnx ns4:12438 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:12438 . -ns2:29250 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:29250 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:82262 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:82262 . - -ns2:29282 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:82262 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:82262 . + +ns4:29282 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "29282" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:29799 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:29799 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "29799" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:29855 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:29855 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:07024 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:07024 . + ns2:cnx ns4:07024 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:07024 . -ns2:30001 a ns1:PhysicalSpace ; +ns4:30001 a ns2:PhysicalSpace ; rdfs:label "5479C" . -ns2:30152 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:30152 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:30191 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:30191 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:30310 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:30310 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "30310" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:30387 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:30387 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:08495 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:08495 . + ns2:cnx ns4:08495 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:08495 . -ns2:30397 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:30397 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:30312 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:30312 . - -ns2:30453 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:30312 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:30312 . + +ns4:30453 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "cwc.r_in_temp.Temperature" ; - ns1:ofMedium ns1:Fluid-Refrigerant ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ns2:Fluid-Refrigerant ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:30508 a ns1:PhysicalSpace ; +ns4:30508 a ns2:PhysicalSpace ; rdfs:label "5990" . -ns2:30587 a ns1:PhysicalSpace ; +ns4:30587 a ns2:PhysicalSpace ; rdfs:label "9786" . -ns2:30916 a ; +ns4:30916 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:77887 . + ns2:produces ns4:77887 . -ns2:31131 a ns1:PhysicalSpace ; +ns4:31131 a ns2:PhysicalSpace ; rdfs:label "6489K" . -ns2:31470 a ; +ns4:31470 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:10692 . + ns2:uses ns4:10692 . -ns2:31642 a ; +ns4:31642 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:24830 . + ns2:uses ns4:24830 . -ns2:31647 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:31647 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:31961 a ns1:PhysicalSpace ; +ns4:31961 a ns2:PhysicalSpace ; rdfs:label "7396" . -ns2:32099 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:32099 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "32099" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:32144 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:32144 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:32335 a ns1:PhysicalSpace ; +ns4:32335 a ns2:PhysicalSpace ; rdfs:label "3879M" . -ns2:32350 a ns1:PhysicalSpace ; +ns4:32350 a ns2:PhysicalSpace ; rdfs:label "5075E" . -ns2:32491 a ns1:PhysicalSpace ; +ns4:32491 a ns2:PhysicalSpace ; rdfs:label "2003" . -ns2:32620 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:32620 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:62510 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:62510 . - -ns2:32663 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:62510 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:62510 . + +ns4:32663 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "32663" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:32852 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:32852 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:32889 a ns4:InletZoneConnectionPoint, - ns4:ZoneConnectionPoint ; +ns4:32889 a ns3:InletZoneConnectionPoint, + ns3:ZoneConnectionPoint ; rdfs:label "Floor_7.CoreZone.airInlet" ; - ns1:hasMedium . + ns2:hasMedium . -ns2:32975 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:32975 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "32975" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:33208 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:33208 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "return_fan.electricalInlet" ; - ns1:cnx ns2:34927 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:34927 . - -ns2:33218 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:34927 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:34927 . + +ns4:33218 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "33218" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:33560 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:33560 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:40974 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:40974 . - -ns2:34025 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:40974 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:40974 . + +ns4:34025 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "34025" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:34035 a ns1:PhysicalSpace ; +ns4:34035 a ns2:PhysicalSpace ; rdfs:label "3007C" . -ns2:34070 a ns1:PhysicalSpace ; +ns4:34070 a ns2:PhysicalSpace ; rdfs:label "8853B" . -ns2:34100 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:34100 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "ra_temp.Temperature" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:34111 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:34111 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:34140 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:34140 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "34140" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:34214 a ns1:PhysicalSpace ; +ns4:34214 a ns2:PhysicalSpace ; rdfs:label "7685" . -ns2:34399 a ; +ns4:34399 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:85673 . + ns2:uses ns4:85673 . -ns2:34431 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:34431 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "34431" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:34586 a ns1:PhysicalSpace ; +ns4:34586 a ns2:PhysicalSpace ; rdfs:label "6810A" . -ns2:34828 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:34828 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "34828" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:35096 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:35096 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "35096" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:35199 a ns1:PhysicalSpace ; +ns4:35199 a ns2:PhysicalSpace ; rdfs:label "9451J" . -ns2:35320 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:35320 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:35334 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:35334 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:74699 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:74699 . + ns2:cnx ns4:74699 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:74699 . -ns2:35667 a ns4:OutletZoneConnectionPoint, - ns4:ZoneConnectionPoint ; +ns4:35667 a ns3:OutletZoneConnectionPoint, + ns3:ZoneConnectionPoint ; rdfs:label "Floor_8.CoreZone.airOutlet" ; - ns1:hasMedium . + ns2:hasMedium . -ns2:35839 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:35839 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "35839" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:35902 a ns1:PhysicalSpace ; +ns4:35902 a ns2:PhysicalSpace ; rdfs:label "0420F" . -ns2:35915 a ; +ns4:35915 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:91041 . + ns2:uses ns4:91041 . -ns2:36095 a ns1:PhysicalSpace ; +ns4:36095 a ns2:PhysicalSpace ; rdfs:label "7151" . -ns2:36141 a ; +ns4:36141 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:05076 . + ns2:produces ns4:05076 . -ns2:36322 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:36322 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "36322" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:36499 a ns1:PhysicalSpace ; +ns4:36499 a ns2:PhysicalSpace ; rdfs:label "8274" . -ns2:36632 a ns1:PhysicalSpace ; +ns4:36632 a ns2:PhysicalSpace ; rdfs:label "5569" . -ns2:36713 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:36713 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:03999 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:03999 . + ns2:cnx ns4:03999 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:03999 . -ns2:36756 a ns1:PhysicalSpace ; +ns4:36756 a ns2:PhysicalSpace ; rdfs:label "2948G" . -ns2:37019 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:37019 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "37019" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:37060 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:37060 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "37060" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:37437 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:37437 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "37437" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:37444 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:37444 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "37444" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:37702 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:37702 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "37702" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:37705 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:37705 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:37850 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:37850 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "37850" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:37945 a ns1:PhysicalSpace ; +ns4:37945 a ns2:PhysicalSpace ; rdfs:label "8347" . -ns2:37963 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:37963 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "37963" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:38087 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:38087 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:38133 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:38133 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "Floor_9.RTU_6.Plenum.press_sens.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:38135 a ns1:PhysicalSpace ; +ns4:38135 a ns2:PhysicalSpace ; rdfs:label "0408" . -ns2:38144 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:38144 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:86650 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:86650 . + ns2:cnx ns4:86650 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:86650 . -ns2:38293 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:38293 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:51893 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:51893 . + ns2:cnx ns4:51893 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:51893 . -ns2:38338 a ; +ns4:38338 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:57979 . + ns2:uses ns4:57979 . -ns2:38499 a ns1:PhysicalSpace ; +ns4:38499 a ns2:PhysicalSpace ; rdfs:label "6865H" . -ns2:38773 a ns1:PhysicalSpace ; +ns4:38773 a ns2:PhysicalSpace ; rdfs:label "5573" . -ns2:38894 a ns1:PhysicalSpace ; +ns4:38894 a ns2:PhysicalSpace ; rdfs:label "6850" . -ns2:39112 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:39112 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:68474 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:68474 . - -ns2:39127 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:cnx ns4:68474 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:68474 . + +ns4:39127 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:39778 a ns1:PhysicalSpace ; +ns4:39778 a ns2:PhysicalSpace ; rdfs:label "2595C" . -ns2:39859 a ; +ns4:39859 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:35320 . + ns2:uses ns4:35320 . -ns2:39866 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:39866 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:80730 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:80730 . - -ns2:39971 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:80730 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:80730 . + +ns4:39971 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "39971" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:40046 a ns1:PhysicalSpace ; +ns4:40046 a ns2:PhysicalSpace ; rdfs:label "1544B" . -ns2:40462 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:40462 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:45896 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:45896 . + ns2:cnx ns4:45896 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:45896 . -ns2:40910 a ns1:PhysicalSpace ; +ns4:40910 a ns2:PhysicalSpace ; rdfs:label "8224B" . -ns2:41330 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:41330 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:41538 a ns1:PhysicalSpace ; +ns4:41538 a ns2:PhysicalSpace ; rdfs:label "2161E" . -ns2:41627 a ns1:PhysicalSpace ; +ns4:41627 a ns2:PhysicalSpace ; rdfs:label "3529" . -ns2:41736 a ; +ns4:41736 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:28727 . + ns2:uses ns4:28727 . -ns2:41789 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:41789 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "41789" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:41843 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:41843 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "41843" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:41983 a ns1:PhysicalSpace ; +ns4:41983 a ns2:PhysicalSpace ; rdfs:label "3521" . -ns2:42355 a ns1:PhysicalSpace ; +ns4:42355 a ns2:PhysicalSpace ; rdfs:label "2873N" . -ns2:42459 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:42459 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "42459" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:42561 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:42561 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "42561" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:42767 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:42767 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "42767" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:43255 a ; +ns4:43255 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:75390 . + ns2:uses ns4:75390 . -ns2:43263 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:43263 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:11099 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:11099 . - -ns2:43459 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:11099 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:11099 . + +ns4:43459 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "43459" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:43535 a ns1:PhysicalSpace ; +ns4:43535 a ns2:PhysicalSpace ; rdfs:label "4073" . -ns2:43932 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:43932 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "cwc.r_in_temp.Temperature" ; - ns1:ofMedium ns1:Fluid-Refrigerant ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ns2:Fluid-Refrigerant ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:43950 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:43950 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:15464 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:15464 . + ns2:cnx ns4:15464 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:15464 . -ns2:44005 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:44005 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:38529 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:38529 . + ns2:cnx ns4:38529 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:38529 . -ns2:44653 a ns1:PhysicalSpace ; +ns4:44653 a ns2:PhysicalSpace ; rdfs:label "9808D" . -ns2:44857 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:44857 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:45025 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:45025 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "45025" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:45209 a ns1:PhysicalSpace ; +ns4:45209 a ns2:PhysicalSpace ; rdfs:label "9220D" . -ns2:45213 a ns1:PhysicalSpace ; +ns4:45213 a ns2:PhysicalSpace ; rdfs:label "8272B" . -ns2:45221 a ; +ns4:45221 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:94727 . + ns2:uses ns4:94727 . -ns2:45283 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:45283 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "sensor.Temperature" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:45336 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:45336 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "45336" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:45370 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:45370 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "45370" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:45511 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:ElectricPower, - ns4:ElectricPowerkW ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:45511 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:ElectricPower, + ns3:ElectricPowerkW ; rdfs:label "45511" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:45606 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:45606 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "45606" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:45669 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:45669 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:51343 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:51343 . - -ns2:46167 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:51343 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:51343 . + +ns4:46167 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "46167" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:46343 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:46343 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "46343" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:46553 a ns1:PhysicalSpace ; +ns4:46553 a ns2:PhysicalSpace ; rdfs:label "7321U" . -ns2:46562 a ; +ns4:46562 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:32852 . + ns2:uses ns4:32852 . -ns2:46589 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:46589 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:46632 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:46632 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "46632" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:46904 a ; +ns4:46904 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:68532 . + ns2:uses ns4:68532 . -ns2:47105 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:47105 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "47105" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:47428 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:47428 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "47428" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:47785 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:47785 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:09611 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:09611 . - -ns2:47797 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:09611 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:09611 . + +ns4:47797 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "47797" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:47815 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:47815 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:07222 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:07222 . + ns2:cnx ns4:07222 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:07222 . -ns2:47847 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:47847 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:64435 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:64435 . + ns2:cnx ns4:64435 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:64435 . -ns2:47899 a ns1:PhysicalSpace ; +ns4:47899 a ns2:PhysicalSpace ; rdfs:label "5640V" . -ns2:48697 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:48697 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "sensor.Temperature" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:48813 a ns1:PhysicalSpace ; +ns4:48813 a ns2:PhysicalSpace ; rdfs:label "0528" . -ns2:48959 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:48959 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:17586 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:17586 . + ns2:cnx ns4:17586 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:17586 . -ns2:49032 a ns1:PhysicalSpace ; +ns4:49032 a ns2:PhysicalSpace ; rdfs:label "9481G" . -ns2:49227 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:49227 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:49467 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:49467 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:49578 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:49578 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "49578" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:49932 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:49932 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "ra_temp.Temperature" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:50012 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:50012 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:07924 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:07924 . - -ns2:50146 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:ElectricPower, - ns4:ElectricPowerkW ; + ns2:cnx ns4:07924 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:07924 . + +ns4:50146 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:ElectricPower, + ns3:ElectricPowerkW ; rdfs:label "50146" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:50296 a ns1:PhysicalSpace ; +ns4:50296 a ns2:PhysicalSpace ; rdfs:label "1596A" . -ns2:50365 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:50365 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:50388 a ns1:PhysicalSpace ; +ns4:50388 a ns2:PhysicalSpace ; rdfs:label "5419" . -ns2:50589 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:50589 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "50589" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:50637 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:50637 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:26427 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:26427 . - -ns2:50802 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:ElectricPower, - ns4:ElectricPowerkW ; + ns2:cnx ns4:26427 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:26427 . + +ns4:50802 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:ElectricPower, + ns3:ElectricPowerkW ; rdfs:label "50802" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:50826 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:50826 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "50826" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:50980 a ns1:PhysicalSpace ; +ns4:50980 a ns2:PhysicalSpace ; rdfs:label "0316G" . -ns2:51141 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:51141 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "51141" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:51271 a ns1:PhysicalSpace ; +ns4:51271 a ns2:PhysicalSpace ; rdfs:label "5756F" . -ns2:51302 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:51302 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:51470 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:51470 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "51470" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:51617 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:51617 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:51907 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:51907 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:79665 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:79665 . - -ns2:51996 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:cnx ns4:79665 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:79665 . + +ns4:51996 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:52038 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:52038 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:34134 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:34134 . + ns2:cnx ns4:34134 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:34134 . -ns2:52202 a ; +ns4:52202 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:83500 . + ns2:uses ns4:83500 . -ns2:52272 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:52272 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:52427 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:52427 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:52496 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:52496 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:52644 a ns1:PhysicalSpace ; +ns4:52644 a ns2:PhysicalSpace ; rdfs:label "8070F" . -ns2:52674 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:52674 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "Floor_2.RTU_1.Plenum.press_sens.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:52856 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:52856 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "52856" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:53010 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:53010 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "53010" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:53031 a ns1:PhysicalSpace ; +ns4:53031 a ns2:PhysicalSpace ; rdfs:label "7853D" . -ns2:53137 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:53137 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:53154 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:53154 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "53154" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:53738 a ; +ns4:53738 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:79655 . + ns2:uses ns4:79655 . -ns2:53829 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:53829 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "53829" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:54149 a ; +ns4:54149 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:59892 . + ns2:produces ns4:59892 . -ns2:54247 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:54247 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:54301 a ns1:PhysicalSpace ; +ns4:54301 a ns2:PhysicalSpace ; rdfs:label "3925" . -ns2:54585 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:54585 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:75966 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:75966 . - -ns2:54662 a ns1:ActuatableProperty, - ns1:EnumerableProperty, - ns1:EnumeratedActuatableProperty, - ns1:Property ; + ns2:cnx ns4:75966 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:75966 . + +ns4:54662 a ns2:ActuatableProperty, + ns2:EnumerableProperty, + ns2:EnumeratedActuatableProperty, + ns2:Property ; rdfs:label "54662" ; - ns1:hasEnumerationKind ns1:EnumerationKind-OnOff . + ns2:hasEnumerationKind ns2:EnumerationKind-OnOff . -ns2:55121 a ; +ns4:55121 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:75833 . + ns2:produces ns4:75833 . -ns2:55134 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:55134 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "55134" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:55637 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:55637 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:58251 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:58251 . - -ns2:55720 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:58251 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:58251 . + +ns4:55720 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "ra_temp.Temperature" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:55769 a ns1:PhysicalSpace ; +ns4:55769 a ns2:PhysicalSpace ; rdfs:label "5187D" . -ns2:55776 a ns1:PhysicalSpace ; +ns4:55776 a ns2:PhysicalSpace ; rdfs:label "4779" . -ns2:56226 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:56226 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "56226" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:56337 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:56337 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "56337" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:56383 a ns1:ActuatableProperty, - ns1:EnumerableProperty, - ns1:EnumeratedActuatableProperty, - ns1:Property ; +ns4:56383 a ns2:ActuatableProperty, + ns2:EnumerableProperty, + ns2:EnumeratedActuatableProperty, + ns2:Property ; rdfs:label "56383" ; - ns1:hasEnumerationKind ns1:EnumerationKind-OnOff . + ns2:hasEnumerationKind ns2:EnumerationKind-OnOff . -ns2:56542 a ns1:PhysicalSpace ; +ns4:56542 a ns2:PhysicalSpace ; rdfs:label "3966T" . -ns2:56560 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:56560 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "56560" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:56903 a ns1:PhysicalSpace ; +ns4:56903 a ns2:PhysicalSpace ; rdfs:label "6368" . -ns2:57274 a ns1:PhysicalSpace ; +ns4:57274 a ns2:PhysicalSpace ; rdfs:label "8443H" . -ns2:57526 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:57526 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:57854 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:57854 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "return_fan.electricalInlet" ; - ns1:cnx ns2:43438 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:43438 . - -ns2:57909 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:43438 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:43438 . + +ns4:57909 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "57909" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:58036 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:58036 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:13867 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:13867 . + ns2:cnx ns4:13867 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:13867 . -ns2:58115 a ns1:PhysicalSpace ; +ns4:58115 a ns2:PhysicalSpace ; rdfs:label "5935E" . -ns2:58209 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:58209 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "58209" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:58281 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:58281 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:45050 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:45050 . - -ns2:58507 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:45050 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:45050 . + +ns4:58507 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "58507" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:59084 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:59084 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:46417 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:46417 . + ns2:cnx ns4:46417 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:46417 . -ns2:59147 a ns1:PhysicalSpace ; +ns4:59147 a ns2:PhysicalSpace ; rdfs:label "2061" . -ns2:59698 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:59698 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:59765 a ns1:PhysicalSpace ; +ns4:59765 a ns2:PhysicalSpace ; rdfs:label "3264" . -ns2:60047 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:60047 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:60261 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:60261 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "60261" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:60321 a ns1:PhysicalSpace ; +ns4:60321 a ns2:PhysicalSpace ; rdfs:label "8163M" . -ns2:60515 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:60515 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "60515" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:60866 a ns1:PhysicalSpace ; +ns4:60866 a ns2:PhysicalSpace ; rdfs:label "2708" . -ns2:60868 a ns1:PhysicalSpace ; +ns4:60868 a ns2:PhysicalSpace ; rdfs:label "5732B" . -ns2:60897 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:60897 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "60897" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:61077 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:61077 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:17361 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:17361 . + ns2:cnx ns4:17361 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:17361 . -ns2:61102 a ns1:PhysicalSpace ; +ns4:61102 a ns2:PhysicalSpace ; rdfs:label "1389A" . -ns2:61489 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:61489 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:61555 a ns1:PhysicalSpace ; +ns4:61555 a ns2:PhysicalSpace ; rdfs:label "5551" . -ns2:61643 a ns1:PhysicalSpace ; +ns4:61643 a ns2:PhysicalSpace ; rdfs:label "0031K" . -ns2:61722 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:61722 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:80523 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:80523 . + ns2:cnx ns4:80523 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:80523 . -ns2:61950 a ; +ns4:61950 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:02892 . + ns2:produces ns4:02892 . -ns2:62133 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:62133 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "62133" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:62183 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:62183 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "62183" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:62254 a ns1:PhysicalSpace ; +ns4:62254 a ns2:PhysicalSpace ; rdfs:label "3328" . -ns2:62403 a ; +ns4:62403 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:16646 . + ns2:uses ns4:16646 . -ns2:62700 a ns1:PhysicalSpace ; +ns4:62700 a ns2:PhysicalSpace ; rdfs:label "1732K" . -ns2:62715 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:62715 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:62783 a ns1:PhysicalSpace ; +ns4:62783 a ns2:PhysicalSpace ; rdfs:label "6110B" . -ns2:62880 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:62880 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "62880" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:62952 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:62952 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "62952" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:63019 a ns1:PhysicalSpace ; +ns4:63019 a ns2:PhysicalSpace ; rdfs:label "0155" . -ns2:63074 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:63074 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "63074" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:63209 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:63209 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:79114 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:79114 . + ns2:cnx ns4:79114 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:79114 . -ns2:63323 a ns1:PhysicalSpace ; +ns4:63323 a ns2:PhysicalSpace ; rdfs:label "9638C" . -ns2:63348 a ; +ns4:63348 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:06683 . + ns2:produces ns4:06683 . -ns2:63389 a ns1:PhysicalSpace ; +ns4:63389 a ns2:PhysicalSpace ; rdfs:label "0880G" . -ns2:63769 a ns1:PhysicalSpace ; +ns4:63769 a ns2:PhysicalSpace ; rdfs:label "1528" . -ns2:63839 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:63839 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "63839" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:63841 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:63841 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "63841" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:63957 a ns1:PhysicalSpace ; +ns4:63957 a ns2:PhysicalSpace ; rdfs:label "0221D" . -ns2:64215 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:64215 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:45429 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:45429 . - -ns2:64218 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:ElectricPower, - ns4:ElectricPowerkW ; + ns2:cnx ns4:45429 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:45429 . + +ns4:64218 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:ElectricPower, + ns3:ElectricPowerkW ; rdfs:label "64218" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:64383 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:64383 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "64383" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:64769 a ns1:PhysicalSpace ; +ns4:64769 a ns2:PhysicalSpace ; rdfs:label "1801F" . -ns2:65088 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:65088 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:65146 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:65146 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "65146" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:65321 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:65321 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:65728 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:65728 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "return_fan.electricalInlet" ; - ns1:cnx ns2:02817 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:02817 . - -ns2:65911 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:02817 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:02817 . + +ns4:65911 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "Floor_3.RTU_8.Plenum.press_sens.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:65983 a ns1:PhysicalSpace ; +ns4:65983 a ns2:PhysicalSpace ; rdfs:label "8174N" . -ns2:65988 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:65988 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "65988" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:66100 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:66100 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:49965 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:49965 . - -ns2:66129 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:49965 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:49965 . + +ns4:66129 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "66129" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:66235 a ns1:PhysicalSpace ; +ns4:66235 a ns2:PhysicalSpace ; rdfs:label "3835" . -ns2:66827 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:66827 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "66827" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:66884 a ns1:PhysicalSpace ; +ns4:66884 a ns2:PhysicalSpace ; rdfs:label "0553" . -ns2:66976 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:66976 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:00783 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:00783 . - -ns2:67320 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:00783 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:00783 . + +ns4:67320 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "67320" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:67397 a ; +ns4:67397 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:49467 . + ns2:uses ns4:49467 . -ns2:67438 a ns1:PhysicalSpace ; +ns4:67438 a ns2:PhysicalSpace ; rdfs:label "4935S" . -ns2:67513 a ns1:PhysicalSpace ; +ns4:67513 a ns2:PhysicalSpace ; rdfs:label "8583A" . -ns2:67737 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:67737 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "67737" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:67933 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:67933 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "cwc.r_in_temp.Temperature" ; - ns1:ofMedium ns1:Fluid-Refrigerant ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:68175 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:ofMedium ns2:Fluid-Refrigerant ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:68175 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:68284 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:68284 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:64887 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:64887 . - -ns2:68532 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:64887 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:64887 . + +ns4:68532 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:68539 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:68539 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "68539" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:68575 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:68575 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "68575" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:68682 a ns1:ActuatableProperty, - ns1:EnumerableProperty, - ns1:EnumeratedActuatableProperty, - ns1:Property ; +ns4:68682 a ns2:ActuatableProperty, + ns2:EnumerableProperty, + ns2:EnumeratedActuatableProperty, + ns2:Property ; rdfs:label "68682" ; - ns1:hasEnumerationKind ns1:EnumerationKind-OnOff . + ns2:hasEnumerationKind ns2:EnumerationKind-OnOff . -ns2:68703 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:68703 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:68747 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:68747 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "68747" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:68806 a ns1:PhysicalSpace ; +ns4:68806 a ns2:PhysicalSpace ; rdfs:label "0436" . -ns2:68832 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:68832 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:44594 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:44594 . + ns2:cnx ns4:44594 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:44594 . -ns2:68836 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:68836 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:47806 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:47806 . - -ns2:68980 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:47806 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:47806 . + +ns4:68980 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:69235 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:69235 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "69235" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:69341 a ns1:PhysicalSpace ; +ns4:69341 a ns2:PhysicalSpace ; rdfs:label "5454L" . -ns2:69796 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:69796 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "69796" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:69839 a ns1:PhysicalSpace ; +ns4:69839 a ns2:PhysicalSpace ; rdfs:label "1230A" . -ns2:70256 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:70256 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:70293 a ns1:PhysicalSpace ; +ns4:70293 a ns2:PhysicalSpace ; rdfs:label "1296" . -ns2:70830 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:70830 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:54050 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:54050 . - -ns2:71010 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:54050 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:54050 . + +ns4:71010 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "71010" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:71091 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:71091 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:71304 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:71304 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "71304" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:71485 a ns1:PhysicalSpace ; +ns4:71485 a ns2:PhysicalSpace ; rdfs:label "0402" . -ns2:71498 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:71498 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "sensor.Temperature" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:71503 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:71503 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "71503" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:71674 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:71674 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "71674" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:71745 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:71745 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:71776 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:71776 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:71799 a ns1:PhysicalSpace ; +ns4:71799 a ns2:PhysicalSpace ; rdfs:label "9538D" . -ns2:71802 a ; +ns4:71802 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:30191 . + ns2:uses ns4:30191 . -ns2:72324 a ns1:ActuatableProperty, - ns1:EnumerableProperty, - ns1:EnumeratedActuatableProperty, - ns1:Property ; +ns4:72324 a ns2:ActuatableProperty, + ns2:EnumerableProperty, + ns2:EnumeratedActuatableProperty, + ns2:Property ; rdfs:label "72324" ; - ns1:hasEnumerationKind ns1:EnumerationKind-OnOff . + ns2:hasEnumerationKind ns2:EnumerationKind-OnOff . -ns2:72380 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:72380 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:72384 a ns1:PhysicalSpace ; +ns4:72384 a ns2:PhysicalSpace ; rdfs:label "0899C" . -ns2:72408 a ; +ns4:72408 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:71745 . + ns2:uses ns4:71745 . -ns2:72594 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:72594 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "72594" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:72643 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:72643 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:97969 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:97969 . + ns2:cnx ns4:97969 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:97969 . -ns2:73149 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:73149 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:76708 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:76708 . - -ns2:73168 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:76708 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:76708 . + +ns4:73168 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "73168" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:73271 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:73271 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "73271" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:73369 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:73369 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "cwc.r_in_temp.Temperature" ; - ns1:ofMedium ns1:Fluid-Refrigerant ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:73382 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:ofMedium ns2:Fluid-Refrigerant ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:73382 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:73637 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:73637 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:31947 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:31947 . + ns2:cnx ns4:31947 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:31947 . -ns2:73715 a ns1:PhysicalSpace ; +ns4:73715 a ns2:PhysicalSpace ; rdfs:label "5519" . -ns2:74136 a ns1:PhysicalSpace ; +ns4:74136 a ns2:PhysicalSpace ; rdfs:label "6795J" . -ns2:74168 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:74168 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:09160 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:09160 . - -ns2:74255 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:09160 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:09160 . + +ns4:74255 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "74255" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:75022 a ns1:PhysicalSpace ; +ns4:75022 a ns2:PhysicalSpace ; rdfs:label "2532B" . -ns2:75043 a ns1:PhysicalSpace ; +ns4:75043 a ns2:PhysicalSpace ; rdfs:label "8318J" . -ns2:75346 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:75346 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "75346" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:75390 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:75390 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:75459 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:75459 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:75560 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:75560 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:75571 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:75571 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:63295 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:63295 . - -ns2:75678 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:63295 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:63295 . + +ns4:75678 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "75678" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:75857 a ns1:PhysicalSpace ; +ns4:75857 a ns2:PhysicalSpace ; rdfs:label "0301A" . -ns2:76006 a ns1:PhysicalSpace ; +ns4:76006 a ns2:PhysicalSpace ; rdfs:label "0086" . -ns2:76202 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:76202 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "76202" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:76229 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:ElectricPower, - ns4:ElectricPowerkW ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:76229 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:ElectricPower, + ns3:ElectricPowerkW ; rdfs:label "76229" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:76277 a ns1:PhysicalSpace ; +ns4:76277 a ns2:PhysicalSpace ; rdfs:label "8825" . -ns2:76702 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:76702 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "76702" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:77089 a ns1:PhysicalSpace ; +ns4:77089 a ns2:PhysicalSpace ; rdfs:label "7450B" . -ns2:77288 a ns1:PhysicalSpace ; +ns4:77288 a ns2:PhysicalSpace ; rdfs:label "8726" . -ns2:77487 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:77487 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "77487" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:77598 a ns1:PhysicalSpace ; +ns4:77598 a ns2:PhysicalSpace ; rdfs:label "9066" . -ns2:77627 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:77627 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "77627" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:77830 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:77830 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "77830" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:78200 a ; +ns4:78200 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:51302 . + ns2:uses ns4:51302 . -ns2:78469 a ns1:ActuatableProperty, - ns1:EnumerableProperty, - ns1:EnumeratedActuatableProperty, - ns1:Property ; +ns4:78469 a ns2:ActuatableProperty, + ns2:EnumerableProperty, + ns2:EnumeratedActuatableProperty, + ns2:Property ; rdfs:label "78469" ; - ns1:hasEnumerationKind ns1:EnumerationKind-OnOff . + ns2:hasEnumerationKind ns2:EnumerationKind-OnOff . -ns2:78652 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:78652 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "cwc.r_in_temp.Temperature" ; - ns1:ofMedium ns1:Fluid-Refrigerant ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:78672 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:ofMedium ns2:Fluid-Refrigerant ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:78672 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "78672" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:78804 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:78804 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "78804" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:78919 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:78919 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "78919" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:79228 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:79228 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "79228" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:79229 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:79229 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "sensor.Temperature" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:79519 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:79519 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "79519" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:79530 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:79530 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "79530" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:79613 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:79613 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:79655 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:79655 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:79772 a ns1:PhysicalSpace ; +ns4:79772 a ns2:PhysicalSpace ; rdfs:label "3372C" . -ns2:79838 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:79838 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "79838" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:80112 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:80112 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "80112" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:80198 a ns1:PhysicalSpace ; +ns4:80198 a ns2:PhysicalSpace ; rdfs:label "2113" . -ns2:80284 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:80284 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "80284" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:80357 a ns1:PhysicalSpace ; +ns4:80357 a ns2:PhysicalSpace ; rdfs:label "7606D" . -ns2:80369 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:80369 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "80369" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:80527 a ; +ns4:80527 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:37705 . + ns2:uses ns4:37705 . -ns2:80750 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:80750 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "80750" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:80928 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:80928 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "cwc.r_in_temp.Temperature" ; - ns1:ofMedium ns1:Fluid-Refrigerant ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ns2:Fluid-Refrigerant ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:81234 a ns1:PhysicalSpace ; +ns4:81234 a ns2:PhysicalSpace ; rdfs:label "9220Q" . -ns2:81250 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:81250 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:18055 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:18055 . + ns2:cnx ns4:18055 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:18055 . -ns2:81522 a ns1:PhysicalSpace ; +ns4:81522 a ns2:PhysicalSpace ; rdfs:label "0079M" . -ns2:81636 a ns1:PhysicalSpace ; +ns4:81636 a ns2:PhysicalSpace ; rdfs:label "0395" . -ns2:81756 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:81756 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "Floor_9.RTU_0.Plenum.press_sens.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:81762 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:81762 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:56611 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:56611 . + ns2:cnx ns4:56611 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:56611 . -ns2:81875 a ; +ns4:81875 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:44857 . + ns2:uses ns4:44857 . -ns2:81897 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:81897 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:82091 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:82091 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "82091" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:82092 a ns1:PhysicalSpace ; +ns4:82092 a ns2:PhysicalSpace ; rdfs:label "2733R" . -ns2:82137 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:82137 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "82137" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:82418 a ns1:PhysicalSpace ; +ns4:82418 a ns2:PhysicalSpace ; rdfs:label "6555C" . -ns2:82474 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:82474 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "82474" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:82815 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:82815 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:19220 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:19220 . - -ns2:82836 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:cnx ns4:19220 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:19220 . + +ns4:82836 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:82850 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:82850 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "82850" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:83022 a ns1:PhysicalSpace ; +ns4:83022 a ns2:PhysicalSpace ; rdfs:label "1870B" . -ns2:83058 a ; +ns4:83058 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:25846 . + ns2:uses ns4:25846 . -ns2:83156 a ns1:PhysicalSpace ; +ns4:83156 a ns2:PhysicalSpace ; rdfs:label "7385A" . -ns2:83412 a ns1:PhysicalSpace ; +ns4:83412 a ns2:PhysicalSpace ; rdfs:label "7534" . -ns2:83500 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:83500 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:83836 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:83836 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "83836" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:83859 a ns1:PhysicalSpace ; +ns4:83859 a ns2:PhysicalSpace ; rdfs:label "3650B" . -ns2:83874 a ns1:PhysicalSpace ; +ns4:83874 a ns2:PhysicalSpace ; rdfs:label "3175" . -ns2:83945 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:83945 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:83976 a ns1:PhysicalSpace ; +ns4:83976 a ns2:PhysicalSpace ; rdfs:label "9339R" . -ns2:84004 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:84004 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "84004" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:84011 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:84011 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:84420 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:84420 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:92407 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:92407 . + ns2:cnx ns4:92407 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:92407 . -ns2:84427 a ns1:PhysicalSpace ; +ns4:84427 a ns2:PhysicalSpace ; rdfs:label "8072A" . -ns2:84590 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:84590 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "84590" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:84775 a ns1:PhysicalSpace ; +ns4:84775 a ns2:PhysicalSpace ; rdfs:label "5715D" . -ns2:84875 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:84875 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "84875" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:85011 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:85011 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:61196 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:61196 . + ns2:cnx ns4:61196 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:61196 . -ns2:85187 a ns1:PhysicalSpace ; +ns4:85187 a ns2:PhysicalSpace ; rdfs:label "8349" . -ns2:85272 a ; +ns4:85272 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:92693 . + ns2:produces ns4:92693 . -ns2:85308 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:85308 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "Floor_5.RTU_4.Plenum.press_sens.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:85360 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:85360 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:85492 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:85492 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "sa_temp.Temperature" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:85543 a ; +ns4:85543 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:31647 . + ns2:uses ns4:31647 . -ns2:85673 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:85673 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "highPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:85693 a ns1:PhysicalSpace ; +ns4:85693 a ns2:PhysicalSpace ; rdfs:label "4451G" . -ns2:85874 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:85874 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "85874" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:86121 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:86121 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "86121" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:86189 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:86189 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:86202 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:86202 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:97030 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:97030 . + ns2:cnx ns4:97030 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:97030 . -ns2:86307 a ns1:PhysicalSpace ; +ns4:86307 a ns2:PhysicalSpace ; rdfs:label "3443C" . -ns2:86558 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:86558 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "return_fan.electricalInlet" ; - ns1:cnx ns2:18339 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:18339 . + ns2:cnx ns4:18339 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:18339 . -ns2:86745 a ns1:PhysicalSpace ; +ns4:86745 a ns2:PhysicalSpace ; rdfs:label "0769" . -ns2:86755 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:86755 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "86755" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:86860 a ns1:PhysicalSpace ; +ns4:86860 a ns2:PhysicalSpace ; rdfs:label "4690C" . -ns2:86863 a ns1:PhysicalSpace ; +ns4:86863 a ns2:PhysicalSpace ; rdfs:label "0621H" . -ns2:86972 a ns1:PhysicalSpace ; +ns4:86972 a ns2:PhysicalSpace ; rdfs:label "3836D" . -ns2:87095 a ns1:PhysicalSpace ; +ns4:87095 a ns2:PhysicalSpace ; rdfs:label "4512G" . -ns2:87206 a ns1:PhysicalSpace ; +ns4:87206 a ns2:PhysicalSpace ; rdfs:label "9020A" . -ns2:87411 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; +ns4:87411 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "87411" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:87499 a ns1:PhysicalSpace ; +ns4:87499 a ns2:PhysicalSpace ; rdfs:label "0854J" . -ns2:87527 a ns1:PhysicalSpace ; +ns4:87527 a ns2:PhysicalSpace ; rdfs:label "3606" . -ns2:87576 a ns1:PhysicalSpace ; +ns4:87576 a ns2:PhysicalSpace ; rdfs:label "3007" . -ns2:87772 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:87772 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:71025 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:71025 . + ns2:cnx ns4:71025 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:71025 . -ns2:87806 a ns1:PhysicalSpace ; +ns4:87806 a ns2:PhysicalSpace ; rdfs:label "7693B" . -ns2:87816 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:87816 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:77211 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:77211 . + ns2:cnx ns4:77211 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:77211 . -ns2:88163 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:88163 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:71329 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:71329 . - -ns2:88211 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:71329 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:71329 . + +ns4:88211 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "88211" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:88293 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:88293 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:97033 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:97033 . - -ns2:88324 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns2:cnx ns4:97033 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:97033 . + +ns4:88324 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:88328 a ns1:PhysicalSpace ; +ns4:88328 a ns2:PhysicalSpace ; rdfs:label "1723C" . -ns2:88426 a ns1:PhysicalSpace ; +ns4:88426 a ns2:PhysicalSpace ; rdfs:label "3841B" . -ns2:88428 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:88428 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "88428" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:88537 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:88537 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "88537" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:88578 a ; +ns4:88578 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:52424 . + ns2:produces ns4:52424 . -ns2:88730 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:88730 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:82619 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:82619 . - -ns2:88811 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:82619 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:82619 . + +ns4:88811 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "88811" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:89014 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:89014 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "89014" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:89053 a ns1:PhysicalSpace ; +ns4:89053 a ns2:PhysicalSpace ; rdfs:label "3537" . -ns2:89385 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:89385 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "89385" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:89548 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:89548 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:52728 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:52728 . + ns2:cnx ns4:52728 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:52728 . -ns2:89693 a ns1:PhysicalSpace ; +ns4:89693 a ns2:PhysicalSpace ; rdfs:label "5731" . -ns2:89781 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:89781 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:90778 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:90778 . - -ns2:90417 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:90778 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:90778 . + +ns4:90417 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "90417" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:90440 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:90440 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:94683 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:94683 . - -ns2:90585 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:94683 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:94683 . + +ns4:90585 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "90585" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:90615 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:90615 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "90615" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:90849 a ns1:PhysicalSpace ; +ns4:90849 a ns2:PhysicalSpace ; rdfs:label "3760S" . -ns2:90938 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:90938 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "90938" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:91161 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:91161 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:45991 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:45991 . - -ns2:91247 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:45991 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:45991 . + +ns4:91247 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "91247" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:91585 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:91585 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:74362 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:74362 . - -ns2:91594 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:74362 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:74362 . + +ns4:91594 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "91594" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:91806 a ; +ns4:91806 a ; rdfs:label "diff_causality.low_input" ; - ns1:uses ns2:79613 . + ns2:uses ns4:79613 . -ns2:91933 a ns4:OutletZoneConnectionPoint, - ns4:ZoneConnectionPoint ; +ns4:91933 a ns3:OutletZoneConnectionPoint, + ns3:ZoneConnectionPoint ; rdfs:label "Floor_8.CoreZone.airOutlet" ; - ns1:hasMedium . + ns2:hasMedium . -ns2:91989 a ns1:PhysicalSpace ; +ns4:91989 a ns2:PhysicalSpace ; rdfs:label "5181E" . -ns2:92085 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:92085 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:46293 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:46293 . + ns2:cnx ns4:46293 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:46293 . -ns2:92168 a ns1:PhysicalSpace ; +ns4:92168 a ns2:PhysicalSpace ; rdfs:label "8232C" . -ns2:92192 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:92192 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "92192" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:92273 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:92273 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "92273" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:92333 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:92333 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "92333" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:92494 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:92494 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:86998 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:86998 . + ns2:cnx ns4:86998 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:86998 . -ns2:92523 a ; +ns4:92523 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:48347 . - -ns2:92544 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:ElectricPower, - ns4:ElectricPowerkW ; + ns2:produces ns4:48347 . + +ns4:92544 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:ElectricPower, + ns3:ElectricPowerkW ; rdfs:label "92544" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:92560 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:92560 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "92560" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:92564 a ns1:PhysicalSpace ; +ns4:92564 a ns2:PhysicalSpace ; rdfs:label "0040L" . -ns2:92787 a ns1:PhysicalSpace ; +ns4:92787 a ns2:PhysicalSpace ; rdfs:label "8548" . -ns2:93084 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:93084 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:12418 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:12418 . + ns2:cnx ns4:12418 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:12418 . -ns2:93343 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:93343 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:75104 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:75104 . - -ns2:94411 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:75104 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:75104 . + +ns4:94411 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "94411" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:94446 a ns1:PhysicalSpace ; +ns4:94446 a ns2:PhysicalSpace ; rdfs:label "8119" . -ns2:94526 a ns1:PhysicalSpace ; +ns4:94526 a ns2:PhysicalSpace ; rdfs:label "0901G" . -ns2:94561 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:94561 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:64318 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:64318 . + ns2:cnx ns4:64318 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:64318 . -ns2:94590 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:94590 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:06502 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:06502 . + ns2:cnx ns4:06502 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:06502 . -ns2:94648 a ns1:PhysicalSpace ; +ns4:94648 a ns2:PhysicalSpace ; rdfs:label "8016C" . -ns2:94727 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; +ns4:94727 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:94734 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:94734 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:55198 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:55198 . - -ns2:94737 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:55198 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:55198 . + +ns4:94737 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "94737" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:94772 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:94772 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:84250 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:84250 . + ns2:cnx ns4:84250 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:84250 . -ns2:94875 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:94875 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:99976 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:99976 . + ns2:cnx ns4:99976 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:99976 . -ns2:95013 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:95013 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:18118 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:18118 . - -ns2:95123 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:18118 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:18118 . + +ns4:95123 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "95123" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:95531 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:95531 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:37038 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:37038 . - -ns2:95660 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Temperature ; + ns2:cnx ns4:37038 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:37038 . + +ns4:95660 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Temperature ; rdfs:label "cwc.r_in_temp.Temperature" ; - ns1:ofMedium ns1:Fluid-Refrigerant ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:95663 a ns1:ActuatableProperty, - ns1:EnumerableProperty, - ns1:EnumeratedActuatableProperty, - ns1:Property ; + ns2:ofMedium ns2:Fluid-Refrigerant ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:95663 a ns2:ActuatableProperty, + ns2:EnumerableProperty, + ns2:EnumeratedActuatableProperty, + ns2:Property ; rdfs:label "95663" ; - ns1:hasEnumerationKind ns1:EnumerationKind-OnOff . + ns2:hasEnumerationKind ns2:EnumerationKind-OnOff . -ns2:96052 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:96052 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "96052" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:96074 a ns1:PhysicalSpace ; +ns4:96074 a ns2:PhysicalSpace ; rdfs:label "2694" . -ns2:96164 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; +ns4:96164 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "96164" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:96356 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:96356 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:69044 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:69044 . + ns2:cnx ns4:69044 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:69044 . -ns2:96539 a ; +ns4:96539 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:79219 . + ns2:produces ns4:79219 . -ns2:96550 a ns1:PhysicalSpace ; +ns4:96550 a ns2:PhysicalSpace ; rdfs:label "1921G" . -ns2:96724 a ns1:PhysicalSpace ; +ns4:96724 a ns2:PhysicalSpace ; rdfs:label "4382" . -ns2:96937 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:96937 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "96937" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:97037 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:97037 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "97037" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:97092 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:97092 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "97092" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:97141 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:97141 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "97141" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:97516 a ns1:PhysicalSpace ; +ns4:97516 a ns2:PhysicalSpace ; rdfs:label "1105B" . -ns2:97840 a ns1:ActuatableProperty, - ns1:EnumerableProperty, - ns1:EnumeratedActuatableProperty, - ns1:Property ; +ns4:97840 a ns2:ActuatableProperty, + ns2:EnumerableProperty, + ns2:EnumeratedActuatableProperty, + ns2:Property ; rdfs:label "97840" ; - ns1:hasEnumerationKind ns1:EnumerationKind-OnOff . + ns2:hasEnumerationKind ns2:EnumerationKind-OnOff . -ns2:98024 a ; +ns4:98024 a ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:84974 . - -ns2:98128 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:ElectricPower, - ns4:ElectricPowerkW ; + ns2:produces ns4:84974 . + +ns4:98128 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:ElectricPower, + ns3:ElectricPowerkW ; rdfs:label "98128" ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:98153 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Flow ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:98153 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Flow ; rdfs:label "airFlow" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:98181 a ; +ns4:98181 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:60047 . + ns2:uses ns4:60047 . -ns2:98278 a ; +ns4:98278 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:16851 . + ns2:uses ns4:16851 . -ns2:98488 a ns1:PhysicalSpace ; +ns4:98488 a ns2:PhysicalSpace ; rdfs:label "7804A" . -ns2:98582 a ns1:PhysicalSpace ; +ns4:98582 a ns2:PhysicalSpace ; rdfs:label "1234" . -ns2:98635 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; +ns4:98635 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "supply_fan.electricalInlet" ; - ns1:cnx ns2:24002 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:24002 . + ns2:cnx ns4:24002 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:24002 . -ns2:99272 a ns1:PhysicalSpace ; +ns4:99272 a ns2:PhysicalSpace ; rdfs:label "0616" . -ns2:99435 a ns1:PhysicalSpace ; +ns4:99435 a ns2:PhysicalSpace ; rdfs:label "2503" . -ns2:99500 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:99500 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "99500" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:99553 a ; +ns4:99553 a ; rdfs:label "diff_causality.high_input" ; - ns1:uses ns2:16091 . + ns2:uses ns4:16091 . -ns2:99615 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; +ns4:99615 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "99615" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:99669 a ns1:PhysicalSpace ; +ns4:99669 a ns2:PhysicalSpace ; rdfs:label "3344D" . -ns2:99759 a ns1:ActuatableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; +ns4:99759 a ns2:ActuatableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "99759" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:00022 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:00022 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:88253 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88253 . + ns2:cnx ns4:88253 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88253 . -ns2:00066 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:00066 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:04430 ; - ns1:hasMedium ; - ns1:hasProperty ns2:32144 ; - ns1:isConnectionPointOf ns2:04430 ; - ns1:mapsTo ns2:52909 . - -ns2:00254 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:04430 ; + ns2:hasMedium ; + ns2:hasProperty ns4:32144 ; + ns2:isConnectionPointOf ns4:04430 ; + ns2:mapsTo ns4:52909 . + +ns4:00254 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:21736 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:21736 . + ns2:cnx ns4:21736 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:21736 . -ns2:01187 a ns1:PhysicalSpace ; +ns4:01187 a ns2:PhysicalSpace ; rdfs:label "9723A" . -ns2:01192 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:01192 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:76708 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:76708 ; - ns1:mapsTo ns2:48597 . + ns2:cnx ns4:76708 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:76708 ; + ns2:mapsTo ns4:48597 . -ns2:01646 a ns1:PhysicalSpace ; +ns4:01646 a ns2:PhysicalSpace ; rdfs:label "6566" . -ns2:01794 a ns1:PhysicalSpace ; +ns4:01794 a ns2:PhysicalSpace ; rdfs:label "0814" . -ns2:02043 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:02043 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:68474 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68474 ; - ns1:mapsTo ns2:04901 . + ns2:cnx ns4:68474 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68474 ; + ns2:mapsTo ns4:04901 . -ns2:02149 a ns1:PhysicalSpace ; +ns4:02149 a ns2:PhysicalSpace ; rdfs:label "8874" . -ns2:02387 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:02387 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:89752 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:89752 . + ns2:cnx ns4:89752 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:89752 . -ns2:02440 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:02440 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:37038 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:37038 ; - ns1:mapsTo ns2:44403 . - -ns2:02500 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37038 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:37038 ; + ns2:mapsTo ns4:44403 . + +ns4:02500 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:75104 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:75104 ; - ns1:mapsTo ns2:41716 . - -ns2:02800 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:75104 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:75104 ; + ns2:mapsTo ns4:41716 . + +ns4:02800 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:12418 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12418 ; - ns1:mapsTo ns2:10168 . + ns2:cnx ns4:12418 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12418 ; + ns2:mapsTo ns4:10168 . -ns2:02897 a ns1:PhysicalSpace ; +ns4:02897 a ns2:PhysicalSpace ; rdfs:label "1181C" . -ns2:03206 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:03206 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:60254 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:60254 ; - ns1:mapsTo ns2:19181 . - -ns2:03374 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:60254 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:60254 ; + ns2:mapsTo ns4:19181 . + +ns4:03374 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "return_fan.airInlet" ; - ns1:cnx ns2:02817 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:02817 ; - ns1:mapsTo ns2:67277 . - -ns2:03382 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02817 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:02817 ; + ns2:mapsTo ns4:67277 . + +ns4:03382 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:86998 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:86998 ; - ns1:mapsTo ns2:43285 . - -ns2:03760 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:86998 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:86998 ; + ns2:mapsTo ns4:43285 . + +ns4:03760 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:25067 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25067 . + ns2:cnx ns4:25067 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25067 . -ns2:03898 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:03898 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:97033 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97033 ; - ns1:mapsTo ns2:88705 . - -ns2:03929 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:97033 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97033 ; + ns2:mapsTo ns4:88705 . + +ns4:03929 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "iso_damper.airOutlet" ; - ns1:cnx ns2:00808 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:00808 ; - ns1:mapsTo ns2:70952 . - -ns2:04041 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:00808 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:00808 ; + ns2:mapsTo ns4:70952 . + +ns4:04041 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_damper.airInlet" ; - ns1:cnx ns2:35505 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:35505 ; - ns1:mapsTo ns2:71652 . - -ns2:04231 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:35505 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:35505 ; + ns2:mapsTo ns4:71652 . + +ns4:04231 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:16051 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:16051 . + ns2:cnx ns4:16051 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:16051 . -ns2:04274 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:04274 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:07222 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:07222 ; - ns1:mapsTo ns2:20563 . - -ns2:04798 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:07222 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:07222 ; + ns2:mapsTo ns4:20563 . + +ns4:04798 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:96315 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:96315 . + ns2:cnx ns4:96315 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:96315 . -ns2:04984 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:04984 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:03254 ; - ns1:hasMedium ; - ns1:hasProperty ns2:65088 ; - ns1:isConnectionPointOf ns2:03254 ; - ns1:mapsTo ns2:40300 . - -ns2:05086 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03254 ; + ns2:hasMedium ; + ns2:hasProperty ns4:65088 ; + ns2:isConnectionPointOf ns4:03254 ; + ns2:mapsTo ns4:40300 . + +ns4:05086 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:34355 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34355 ; - ns1:mapsTo ns2:35251 . + ns2:cnx ns4:34355 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34355 ; + ns2:mapsTo ns4:35251 . -ns2:05243 a ns1:PhysicalSpace ; +ns4:05243 a ns2:PhysicalSpace ; rdfs:label "1047D" . -ns2:05363 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:05363 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:45050 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45050 ; - ns1:mapsTo ns2:99455 . + ns2:cnx ns4:45050 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45050 ; + ns2:mapsTo ns4:99455 . -ns2:05382 a ns1:PhysicalSpace ; +ns4:05382 a ns2:PhysicalSpace ; rdfs:label "9806D" . -ns2:05849 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:05849 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:68951 ; - ns1:hasMedium ; - ns1:hasProperty ns2:26969 ; - ns1:isConnectionPointOf ns2:68951 ; - ns1:mapsTo ns2:26456 . - -ns2:06054 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:68951 ; + ns2:hasMedium ; + ns2:hasProperty ns4:26969 ; + ns2:isConnectionPointOf ns4:68951 ; + ns2:mapsTo ns4:26456 . + +ns4:06054 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "return_fan.airInlet" ; - ns1:cnx ns2:43438 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:43438 ; - ns1:mapsTo ns2:69130 . - -ns2:06056 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:43438 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:43438 ; + ns2:mapsTo ns4:69130 . + +ns4:06056 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:75104 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:75104 ; - ns1:mapsTo ns2:97458 . - -ns2:06591 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:75104 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:75104 ; + ns2:mapsTo ns4:97458 . + +ns4:06591 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:71329 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:71329 ; - ns1:mapsTo ns2:97655 . - -ns2:06755 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:71329 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:71329 ; + ns2:mapsTo ns4:97655 . + +ns4:06755 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:37192 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:37192 . + ns2:cnx ns4:37192 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:37192 . -ns2:06773 a ns1:PhysicalSpace ; +ns4:06773 a ns2:PhysicalSpace ; rdfs:label "0842D" . -ns2:06861 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:06861 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:34134 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34134 ; - ns1:mapsTo ns2:82400 . - -ns2:06948 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:34134 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34134 ; + ns2:mapsTo ns4:82400 . + +ns4:06948 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:60462 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:60462 . + ns2:cnx ns4:60462 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:60462 . -ns2:07175 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:07175 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:86998 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:86998 ; - ns1:mapsTo ns2:69373 . - -ns2:07755 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:86998 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:86998 ; + ns2:mapsTo ns4:69373 . + +ns4:07755 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:85916 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:85916 . + ns2:cnx ns4:85916 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:85916 . -ns2:08140 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:08140 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:49064 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:49064 . + ns2:cnx ns4:49064 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:49064 . -ns2:08710 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:08710 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:68140 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68140 . + ns2:cnx ns4:68140 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68140 . -ns2:08953 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:08953 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:95090 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:95090 . + ns2:cnx ns4:95090 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:95090 . -ns2:09170 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:09170 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:35514 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:35514 . + ns2:cnx ns4:35514 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:35514 . -ns2:09372 a ns1:PhysicalSpace ; +ns4:09372 a ns2:PhysicalSpace ; rdfs:label "1771C" . -ns2:09479 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:09479 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:55951 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:55951 ; - ns1:mapsTo ns2:26091 . + ns2:cnx ns4:55951 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:55951 ; + ns2:mapsTo ns4:26091 . -ns2:09784 a ns1:PhysicalSpace ; +ns4:09784 a ns2:PhysicalSpace ; rdfs:label "1962" . -ns2:09848 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:09848 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:86007 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:86007 ; - ns1:mapsTo ns2:42328 . - -ns2:10177 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:86007 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:86007 ; + ns2:mapsTo ns4:42328 . + +ns4:10177 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:09638 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09638 . + ns2:cnx ns4:09638 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09638 . -ns2:10922 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:10922 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:39513 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:39513 . + ns2:cnx ns4:39513 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:39513 . -ns2:10923 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:10923 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:74130 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74130 . + ns2:cnx ns4:74130 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74130 . -ns2:11279 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:11279 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:85916 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:85916 . + ns2:cnx ns4:85916 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:85916 . -ns2:11303 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:11303 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:36176 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:36176 . + ns2:cnx ns4:36176 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:36176 . -ns2:11473 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:11473 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:13867 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:13867 ; - ns1:mapsTo ns2:07850 . - -ns2:11589 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:13867 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:13867 ; + ns2:mapsTo ns4:07850 . + +ns4:11589 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:74362 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74362 ; - ns1:mapsTo ns2:41716 . - -ns2:11590 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:74362 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74362 ; + ns2:mapsTo ns4:41716 . + +ns4:11590 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:03254 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03254 . + ns2:cnx ns4:03254 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03254 . -ns2:11607 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:11607 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:10658 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10658 . + ns2:cnx ns4:10658 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10658 . -ns2:11860 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:11860 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:56753 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:56753 . + ns2:cnx ns4:56753 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:56753 . -ns2:12117 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:12117 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:03990 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03990 ; - ns1:mapsTo ns2:12321 . + ns2:cnx ns4:03990 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03990 ; + ns2:mapsTo ns4:12321 . -ns2:12136 a ns1:PhysicalSpace ; +ns4:12136 a ns2:PhysicalSpace ; rdfs:label "9230P" . -ns2:13038 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:13038 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:97030 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97030 ; - ns1:mapsTo ns2:47481 . - -ns2:13364 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:97030 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97030 ; + ns2:mapsTo ns4:47481 . + +ns4:13364 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:64435 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:64435 ; - ns1:mapsTo ns2:03503 . - -ns2:13434 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:64435 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:64435 ; + ns2:mapsTo ns4:03503 . + +ns4:13434 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:55951 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:55951 ; - ns1:mapsTo ns2:13428 . - -ns2:13564 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:55951 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:55951 ; + ns2:mapsTo ns4:13428 . + +ns4:13564 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:40974 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:40974 ; - ns1:mapsTo ns2:04784 . - -ns2:13583 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:40974 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:40974 ; + ns2:mapsTo ns4:04784 . + +ns4:13583 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:86650 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:86650 ; - ns1:mapsTo ns2:99287 . - -ns2:13637 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:86650 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:86650 ; + ns2:mapsTo ns4:99287 . + +ns4:13637 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:72185 ; - ns1:hasMedium ; - ns1:hasProperty ns2:59698 ; - ns1:isConnectionPointOf ns2:72185 ; - ns1:mapsTo ns2:99209 . - -ns2:14626 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:72185 ; + ns2:hasMedium ; + ns2:hasProperty ns4:59698 ; + ns2:isConnectionPointOf ns4:72185 ; + ns2:mapsTo ns4:99209 . + +ns4:14626 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:96809 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:96809 . + ns2:cnx ns4:96809 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:96809 . -ns2:15051 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:15051 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:18055 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18055 ; - ns1:mapsTo ns2:10430 . - -ns2:15094 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:18055 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18055 ; + ns2:mapsTo ns4:10430 . + +ns4:15094 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:67388 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:67388 . + ns2:cnx ns4:67388 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:67388 . -ns2:15343 a ns1:PhysicalSpace ; +ns4:15343 a ns2:PhysicalSpace ; rdfs:label "7854" . -ns2:15763 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:15763 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:79114 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:79114 ; - ns1:mapsTo ns2:10653 . - -ns2:15879 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:79114 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:79114 ; + ns2:mapsTo ns4:10653 . + +ns4:15879 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:49614 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:49614 . + ns2:cnx ns4:49614 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:49614 . -ns2:15903 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:15903 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:60841 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:60841 . + ns2:cnx ns4:60841 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:60841 . -ns2:15983 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:15983 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:67388 ; - ns1:hasMedium ; - ns1:hasProperty ns2:09214 ; - ns1:isConnectionPointOf ns2:67388 ; - ns1:mapsTo ns2:70623 . - -ns2:16279 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:67388 ; + ns2:hasMedium ; + ns2:hasProperty ns4:09214 ; + ns2:isConnectionPointOf ns4:67388 ; + ns2:mapsTo ns4:70623 . + +ns4:16279 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:54050 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54050 ; - ns1:mapsTo ns2:11126 . - -ns2:16405 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:54050 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54050 ; + ns2:mapsTo ns4:11126 . + +ns4:16405 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:73972 ; - ns1:hasMedium ; - ns1:hasProperty ns2:10224 ; - ns1:isConnectionPointOf ns2:73972 ; - ns1:mapsTo ns2:64683 . + ns2:cnx ns4:73972 ; + ns2:hasMedium ; + ns2:hasProperty ns4:10224 ; + ns2:isConnectionPointOf ns4:73972 ; + ns2:mapsTo ns4:64683 . -ns2:16446 a ns1:PhysicalSpace ; +ns4:16446 a ns2:PhysicalSpace ; rdfs:label "2156B" . -ns2:16512 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:16512 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:74065 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74065 . + ns2:cnx ns4:74065 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74065 . -ns2:16617 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:16617 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "return_fan.airInlet" ; - ns1:cnx ns2:18339 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18339 ; - ns1:mapsTo ns2:01874 . - -ns2:16884 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:18339 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18339 ; + ns2:mapsTo ns4:01874 . + +ns4:16884 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:34781 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34781 . + ns2:cnx ns4:34781 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34781 . -ns2:17179 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:17179 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:24559 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:24559 ; - ns1:mapsTo ns2:40636 . - -ns2:17434 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:24559 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:24559 ; + ns2:mapsTo ns4:40636 . + +ns4:17434 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:65206 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65206 . + ns2:cnx ns4:65206 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65206 . -ns2:17670 a ns1:PhysicalSpace ; +ns4:17670 a ns2:PhysicalSpace ; rdfs:label "4443" . -ns2:17755 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:17755 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:20861 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:20861 ; - ns1:mapsTo ns2:38655 . - -ns2:17966 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:20861 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:20861 ; + ns2:mapsTo ns4:38655 . + +ns4:17966 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:11099 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:11099 ; - ns1:mapsTo ns2:11513 . - -ns2:18254 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:11099 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:11099 ; + ns2:mapsTo ns4:11513 . + +ns4:18254 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:73972 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73972 . + ns2:cnx ns4:73972 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73972 . -ns2:18751 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:18751 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_damper.airInlet" ; - ns1:cnx ns2:14119 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:14119 ; - ns1:mapsTo ns2:23780 . - -ns2:18925 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:14119 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:14119 ; + ns2:mapsTo ns4:23780 . + +ns4:18925 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:54082 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54082 . + ns2:cnx ns4:54082 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54082 . -ns2:19371 a ns1:PhysicalSpace ; +ns4:19371 a ns2:PhysicalSpace ; rdfs:label "0185" . -ns2:19464 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:19464 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:09611 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09611 ; - ns1:mapsTo ns2:27223 . - -ns2:19989 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09611 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09611 ; + ns2:mapsTo ns4:27223 . + +ns4:19989 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:40974 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:40974 ; - ns1:mapsTo ns2:94165 . - -ns2:20014 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:40974 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:40974 ; + ns2:mapsTo ns4:94165 . + +ns4:20014 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "ea_damper.airOutlet" ; - ns1:cnx ns2:11125 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:11125 ; - ns1:mapsTo ns2:82983 . + ns2:cnx ns4:11125 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:11125 ; + ns2:mapsTo ns4:82983 . -ns2:20203 a ns1:PhysicalSpace ; +ns4:20203 a ns2:PhysicalSpace ; rdfs:label "7446" . -ns2:20749 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:20749 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:58251 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58251 ; - ns1:mapsTo ns2:52697 . + ns2:cnx ns4:58251 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58251 ; + ns2:mapsTo ns4:52697 . -ns2:20880 a ns1:PhysicalSpace ; +ns4:20880 a ns2:PhysicalSpace ; rdfs:label "4426C" . -ns2:20926 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:20926 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:43925 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:43925 . + ns2:cnx ns4:43925 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:43925 . -ns2:21109 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:21109 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:05342 ; - ns1:hasMedium ; - ns1:hasProperty ns2:71091 ; - ns1:isConnectionPointOf ns2:05342 ; - ns1:mapsTo ns2:44403 . - -ns2:21298 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05342 ; + ns2:hasMedium ; + ns2:hasProperty ns4:71091 ; + ns2:isConnectionPointOf ns4:05342 ; + ns2:mapsTo ns4:44403 . + +ns4:21298 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:16343 ; - ns1:hasMedium ; - ns1:hasProperty ns2:54247 ; - ns1:isConnectionPointOf ns2:16343 ; - ns1:mapsTo ns2:22976 . - -ns2:21349 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:16343 ; + ns2:hasMedium ; + ns2:hasProperty ns4:54247 ; + ns2:isConnectionPointOf ns4:16343 ; + ns2:mapsTo ns4:22976 . + +ns4:21349 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:15067 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15067 . + ns2:cnx ns4:15067 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15067 . -ns2:21453 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:21453 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:43925 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:43925 . + ns2:cnx ns4:43925 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:43925 . -ns2:21551 a ns1:PhysicalSpace ; +ns4:21551 a ns2:PhysicalSpace ; rdfs:label "5663C" . -ns2:21597 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:21597 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:57501 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:57501 . + ns2:cnx ns4:57501 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:57501 . -ns2:22389 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:22389 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:72337 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:72337 . + ns2:cnx ns4:72337 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:72337 . -ns2:22687 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:22687 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:03999 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03999 ; - ns1:mapsTo ns2:10168 . - -ns2:23239 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03999 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03999 ; + ns2:mapsTo ns4:10168 . + +ns4:23239 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:74360 ; - ns1:hasMedium ; - ns1:hasProperty ns2:86189 ; - ns1:isConnectionPointOf ns2:74360 ; - ns1:mapsTo ns2:26091 . - -ns2:23308 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:74360 ; + ns2:hasMedium ; + ns2:hasProperty ns4:86189 ; + ns2:isConnectionPointOf ns4:74360 ; + ns2:mapsTo ns4:26091 . + +ns4:23308 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:26427 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:26427 ; - ns1:mapsTo ns2:53343 . - -ns2:24801 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:26427 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:26427 ; + ns2:mapsTo ns4:53343 . + +ns4:24801 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:97969 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97969 ; - ns1:mapsTo ns2:13280 . - -ns2:24866 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:97969 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97969 ; + ns2:mapsTo ns4:13280 . + +ns4:24866 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:26426 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:26426 . + ns2:cnx ns4:26426 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:26426 . -ns2:24972 a ns1:PhysicalSpace ; +ns4:24972 a ns2:PhysicalSpace ; rdfs:label "9877B" . -ns2:25174 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:25174 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:75582 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:75582 . + ns2:cnx ns4:75582 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:75582 . -ns2:25446 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:25446 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:06594 ; - ns1:hasMedium ; - ns1:hasProperty ns2:18059 ; - ns1:isConnectionPointOf ns2:06594 ; - ns1:mapsTo ns2:13280 . - -ns2:26023 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06594 ; + ns2:hasMedium ; + ns2:hasProperty ns4:18059 ; + ns2:isConnectionPointOf ns4:06594 ; + ns2:mapsTo ns4:13280 . + +ns4:26023 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:73024 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73024 ; - ns1:mapsTo ns2:27223 . - -ns2:26037 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:73024 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73024 ; + ns2:mapsTo ns4:27223 . + +ns4:26037 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:89752 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:89752 . + ns2:cnx ns4:89752 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:89752 . -ns2:26524 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:26524 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:31318 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:31318 . + ns2:cnx ns4:31318 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:31318 . -ns2:26579 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:26579 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:31261 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:31261 . + ns2:cnx ns4:31261 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:31261 . -ns2:27409 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:27409 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:54050 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54050 ; - ns1:mapsTo ns2:97969 . - -ns2:27490 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:54050 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54050 ; + ns2:mapsTo ns4:97969 . + +ns4:27490 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:96315 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:96315 . + ns2:cnx ns4:96315 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:96315 . -ns2:27511 a ns1:PhysicalSpace ; +ns4:27511 a ns2:PhysicalSpace ; rdfs:label "4459" . -ns2:27844 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:27844 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:19014 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:19014 . + ns2:cnx ns4:19014 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:19014 . -ns2:28576 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:28576 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:50935 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50935 ; - ns1:mapsTo ns2:23460 . - -ns2:29692 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:50935 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50935 ; + ns2:mapsTo ns4:23460 . + +ns4:29692 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:64318 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:64318 ; - ns1:mapsTo ns2:06081 . - -ns2:30505 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:64318 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:64318 ; + ns2:mapsTo ns4:06081 . + +ns4:30505 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:68016 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68016 . + ns2:cnx ns4:68016 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68016 . -ns2:30593 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:30593 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:45896 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45896 ; - ns1:mapsTo ns2:13428 . - -ns2:30610 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:45896 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45896 ; + ns2:mapsTo ns4:13428 . + +ns4:30610 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:16343 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:16343 . + ns2:cnx ns4:16343 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:16343 . -ns2:30613 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:30613 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:74130 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74130 . + ns2:cnx ns4:74130 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74130 . -ns2:31603 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:31603 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:70120 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:70120 . + ns2:cnx ns4:70120 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:70120 . -ns2:31628 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:31628 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:20289 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:20289 ; - ns1:mapsTo ns2:11126 . - -ns2:31729 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:20289 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:20289 ; + ns2:mapsTo ns4:11126 . + +ns4:31729 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:11099 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:11099 ; - ns1:mapsTo ns2:07850 . - -ns2:31859 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:11099 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:11099 ; + ns2:mapsTo ns4:07850 . + +ns4:31859 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:74699 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74699 ; - ns1:mapsTo ns2:97655 . - -ns2:31907 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:74699 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74699 ; + ns2:mapsTo ns4:97655 . + +ns4:31907 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:53221 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:53221 . + ns2:cnx ns4:53221 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:53221 . -ns2:32023 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:32023 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:75732 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:75732 . + ns2:cnx ns4:75732 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:75732 . -ns2:32040 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:32040 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:99976 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:99976 ; - ns1:mapsTo ns2:70623 . - -ns2:32193 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:99976 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:99976 ; + ns2:mapsTo ns4:70623 . + +ns4:32193 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:05342 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05342 . + ns2:cnx ns4:05342 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05342 . -ns2:32468 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:32468 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:65374 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65374 . + ns2:cnx ns4:65374 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65374 . -ns2:32499 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:32499 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:45992 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45992 . + ns2:cnx ns4:45992 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45992 . -ns2:32630 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:32630 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:45429 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45429 ; - ns1:mapsTo ns2:75350 . - -ns2:32847 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:45429 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45429 ; + ns2:mapsTo ns4:75350 . + +ns4:32847 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:73942 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73942 ; - ns1:mapsTo ns2:61520 . - -ns2:33010 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:73942 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73942 ; + ns2:mapsTo ns4:61520 . + +ns4:33010 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:34134 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34134 ; - ns1:mapsTo ns2:33422 . - -ns2:33018 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34134 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34134 ; + ns2:mapsTo ns4:33422 . + +ns4:33018 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:83428 ; - ns1:hasMedium ; - ns1:hasProperty ns2:04501 ; - ns1:isConnectionPointOf ns2:83428 ; - ns1:mapsTo ns2:22163 . - -ns2:33243 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:83428 ; + ns2:hasMedium ; + ns2:hasProperty ns4:04501 ; + ns2:isConnectionPointOf ns4:83428 ; + ns2:mapsTo ns4:22163 . + +ns4:33243 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:03990 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03990 ; - ns1:mapsTo ns2:42696 . - -ns2:33702 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03990 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03990 ; + ns2:mapsTo ns4:42696 . + +ns4:33702 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:82262 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:82262 ; - ns1:mapsTo ns2:40053 . - -ns2:33745 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:82262 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:82262 ; + ns2:mapsTo ns4:40053 . + +ns4:33745 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:65381 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65381 . + ns2:cnx ns4:65381 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65381 . -ns2:33880 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:33880 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:24344 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:24344 ; - ns1:mapsTo ns2:85390 . - -ns2:33889 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:24344 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:24344 ; + ns2:mapsTo ns4:85390 . + +ns4:33889 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:51343 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:51343 ; - ns1:mapsTo ns2:35242 . - -ns2:33944 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:51343 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:51343 ; + ns2:mapsTo ns4:35242 . + +ns4:33944 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:16051 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:16051 . + ns2:cnx ns4:16051 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:16051 . -ns2:34128 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:34128 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_damper.airInlet" ; - ns1:cnx ns2:53679 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:53679 ; - ns1:mapsTo ns2:41260 . - -ns2:34188 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:53679 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:53679 ; + ns2:mapsTo ns4:41260 . + +ns4:34188 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:04913 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:04913 . + ns2:cnx ns4:04913 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:04913 . -ns2:34268 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:34268 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:09200 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09200 . + ns2:cnx ns4:09200 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09200 . -ns2:34440 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:34440 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:74065 ; - ns1:hasMedium ; - ns1:hasProperty ns2:02216 ; - ns1:isConnectionPointOf ns2:74065 ; - ns1:mapsTo ns2:48597 . + ns2:cnx ns4:74065 ; + ns2:hasMedium ; + ns2:hasProperty ns4:02216 ; + ns2:isConnectionPointOf ns4:74065 ; + ns2:mapsTo ns4:48597 . -ns2:34646 a ns1:PhysicalSpace ; +ns4:34646 a ns2:PhysicalSpace ; rdfs:label "8183" . -ns2:34690 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:34690 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:74699 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74699 ; - ns1:mapsTo ns2:99209 . + ns2:cnx ns4:74699 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74699 ; + ns2:mapsTo ns4:99209 . -ns2:35173 a ns1:PhysicalSpace ; +ns4:35173 a ns2:PhysicalSpace ; rdfs:label "7505B" . -ns2:35410 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:35410 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:07024 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:07024 ; - ns1:mapsTo ns2:89238 . - -ns2:35611 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07024 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:07024 ; + ns2:mapsTo ns4:89238 . + +ns4:35611 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:65015 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65015 ; - ns1:mapsTo ns2:29732 . + ns2:cnx ns4:65015 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65015 ; + ns2:mapsTo ns4:29732 . -ns2:35624 a ns1:PhysicalSpace ; +ns4:35624 a ns2:PhysicalSpace ; rdfs:label "5656D" . -ns2:35763 a ns1:PhysicalSpace ; +ns4:35763 a ns2:PhysicalSpace ; rdfs:label "4787" . -ns2:36041 a ns1:PhysicalSpace ; +ns4:36041 a ns2:PhysicalSpace ; rdfs:label "9632D" . -ns2:36099 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:36099 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:84250 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:84250 ; - ns1:mapsTo ns2:29634 . - -ns2:36274 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:84250 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:84250 ; + ns2:mapsTo ns4:29634 . + +ns4:36274 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:46293 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46293 ; - ns1:mapsTo ns2:47087 . - -ns2:36453 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:46293 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46293 ; + ns2:mapsTo ns4:47087 . + +ns4:36453 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "iso_damper.airOutlet" ; - ns1:cnx ns2:81406 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:81406 ; - ns1:mapsTo ns2:30223 . - -ns2:36831 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:81406 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:81406 ; + ns2:mapsTo ns4:30223 . + +ns4:36831 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:36176 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:36176 . + ns2:cnx ns4:36176 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:36176 . -ns2:37405 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:37405 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:68474 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68474 ; - ns1:mapsTo ns2:26456 . - -ns2:37516 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:68474 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68474 ; + ns2:mapsTo ns4:26456 . + +ns4:37516 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:74360 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74360 . + ns2:cnx ns4:74360 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74360 . -ns2:37579 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:37579 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:81183 ; - ns1:hasMedium ; - ns1:hasProperty ns2:68175 ; - ns1:isConnectionPointOf ns2:81183 ; - ns1:mapsTo ns2:10430 . - -ns2:37622 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:81183 ; + ns2:hasMedium ; + ns2:hasProperty ns4:68175 ; + ns2:isConnectionPointOf ns4:81183 ; + ns2:mapsTo ns4:10430 . + +ns4:37622 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:32493 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:32493 ; - ns1:mapsTo ns2:15762 . - -ns2:38096 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:32493 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:32493 ; + ns2:mapsTo ns4:15762 . + +ns4:38096 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:12686 ; - ns1:hasMedium ; - ns1:hasProperty ns2:03772 ; - ns1:isConnectionPointOf ns2:12686 ; - ns1:mapsTo ns2:81532 . + ns2:cnx ns4:12686 ; + ns2:hasMedium ; + ns2:hasProperty ns4:03772 ; + ns2:isConnectionPointOf ns4:12686 ; + ns2:mapsTo ns4:81532 . -ns2:38128 a ns1:PhysicalSpace ; +ns4:38128 a ns2:PhysicalSpace ; rdfs:label "6423" . -ns2:38157 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:38157 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:73219 ; - ns1:hasMedium ; - ns1:hasProperty ns2:21241 ; - ns1:isConnectionPointOf ns2:73219 ; - ns1:mapsTo ns2:35606 . - -ns2:38290 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:73219 ; + ns2:hasMedium ; + ns2:hasProperty ns4:21241 ; + ns2:isConnectionPointOf ns4:73219 ; + ns2:mapsTo ns4:35606 . + +ns4:38290 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:99976 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:99976 ; - ns1:mapsTo ns2:20835 . - -ns2:38470 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:99976 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:99976 ; + ns2:mapsTo ns4:20835 . + +ns4:38470 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:08495 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:08495 ; - ns1:mapsTo ns2:35606 . - -ns2:38533 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:08495 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:08495 ; + ns2:mapsTo ns4:35606 . + +ns4:38533 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:80693 ; - ns1:hasMedium ; - ns1:hasProperty ns2:73382 ; - ns1:isConnectionPointOf ns2:80693 ; - ns1:mapsTo ns2:57804 . - -ns2:38563 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:80693 ; + ns2:hasMedium ; + ns2:hasProperty ns4:73382 ; + ns2:isConnectionPointOf ns4:80693 ; + ns2:mapsTo ns4:57804 . + +ns4:38563 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:38627 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:38627 . + ns2:cnx ns4:38627 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:38627 . -ns2:38883 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:38883 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:25613 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25613 . + ns2:cnx ns4:25613 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25613 . -ns2:39011 a ns1:PhysicalSpace ; +ns4:39011 a ns2:PhysicalSpace ; rdfs:label "6223" . -ns2:39130 a ns1:PhysicalSpace ; +ns4:39130 a ns2:PhysicalSpace ; rdfs:label "6843" . -ns2:39217 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:39217 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:50935 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50935 ; - ns1:mapsTo ns2:97393 . - -ns2:39299 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:50935 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50935 ; + ns2:mapsTo ns4:97393 . + +ns4:39299 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:73674 ; - ns1:hasMedium ; - ns1:hasProperty ns2:49227 ; - ns1:isConnectionPointOf ns2:73674 ; - ns1:mapsTo ns2:73305 . - -ns2:39780 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:73674 ; + ns2:hasMedium ; + ns2:hasProperty ns4:49227 ; + ns2:isConnectionPointOf ns4:73674 ; + ns2:mapsTo ns4:73305 . + +ns4:39780 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:80838 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80838 . + ns2:cnx ns4:80838 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80838 . -ns2:40072 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:40072 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:57017 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:57017 ; - ns1:mapsTo ns2:35121 . - -ns2:40109 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:57017 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:57017 ; + ns2:mapsTo ns4:35121 . + +ns4:40109 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "ea_damper.airOutlet" ; - ns1:cnx ns2:56948 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:56948 ; - ns1:mapsTo ns2:37517 . - -ns2:40177 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:56948 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:56948 ; + ns2:mapsTo ns4:37517 . + +ns4:40177 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:41545 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:41545 . + ns2:cnx ns4:41545 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:41545 . -ns2:40314 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:40314 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:31947 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:31947 ; - ns1:mapsTo ns2:68202 . - -ns2:40470 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:31947 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:31947 ; + ns2:mapsTo ns4:68202 . + +ns4:40470 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:51893 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:51893 ; - ns1:mapsTo ns2:29732 . - -ns2:40609 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:51893 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:51893 ; + ns2:mapsTo ns4:29732 . + +ns4:40609 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:44594 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:44594 ; - ns1:mapsTo ns2:68202 . - -ns2:40685 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:44594 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:44594 ; + ns2:mapsTo ns4:68202 . + +ns4:40685 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:34781 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34781 . + ns2:cnx ns4:34781 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34781 . -ns2:40842 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:40842 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:63543 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:63543 ; - ns1:mapsTo ns2:19181 . - -ns2:41034 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:63543 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:63543 ; + ns2:mapsTo ns4:19181 . + +ns4:41034 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:55198 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:55198 ; - ns1:mapsTo ns2:49121 . - -ns2:41291 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:55198 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:55198 ; + ns2:mapsTo ns4:49121 . + +ns4:41291 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:57017 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:57017 ; - ns1:mapsTo ns2:28200 . - -ns2:41417 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:57017 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:57017 ; + ns2:mapsTo ns4:28200 . + +ns4:41417 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:55408 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:55408 . + ns2:cnx ns4:55408 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:55408 . -ns2:41865 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:41865 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:18099 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18099 . + ns2:cnx ns4:18099 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18099 . -ns2:41978 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:41978 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:77381 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77381 . + ns2:cnx ns4:77381 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77381 . -ns2:41979 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:41979 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:09900 ; - ns1:hasMedium ; - ns1:hasProperty ns2:18527 ; - ns1:isConnectionPointOf ns2:09900 ; - ns1:mapsTo ns2:30054 . - -ns2:42536 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09900 ; + ns2:hasMedium ; + ns2:hasProperty ns4:18527 ; + ns2:isConnectionPointOf ns4:09900 ; + ns2:mapsTo ns4:30054 . + +ns4:42536 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:15477 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15477 ; - ns1:mapsTo ns2:10648 . - -ns2:42555 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15477 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15477 ; + ns2:mapsTo ns4:10648 . + +ns4:42555 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:07024 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:07024 ; - ns1:mapsTo ns2:81559 . - -ns2:42854 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:07024 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:07024 ; + ns2:mapsTo ns4:81559 . + +ns4:42854 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:87570 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87570 . + ns2:cnx ns4:87570 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87570 . -ns2:43071 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:43071 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:80693 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80693 . + ns2:cnx ns4:80693 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80693 . -ns2:43351 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:43351 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:12553 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12553 ; - ns1:mapsTo ns2:29634 . - -ns2:43983 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:12553 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12553 ; + ns2:mapsTo ns4:29634 . + +ns4:43983 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:67542 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:67542 . + ns2:cnx ns4:67542 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:67542 . -ns2:44503 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:44503 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:24344 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:24344 ; - ns1:mapsTo ns2:81532 . - -ns2:44640 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:24344 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:24344 ; + ns2:mapsTo ns4:81532 . + +ns4:44640 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:18118 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18118 ; - ns1:mapsTo ns2:73305 . - -ns2:44650 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18118 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18118 ; + ns2:mapsTo ns4:73305 . + +ns4:44650 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:79421 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:79421 ; - ns1:mapsTo ns2:89654 . - -ns2:44830 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:79421 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:79421 ; + ns2:mapsTo ns4:89654 . + +ns4:44830 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:96809 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:96809 . + ns2:cnx ns4:96809 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:96809 . -ns2:44848 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:44848 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:80838 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80838 . + ns2:cnx ns4:80838 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80838 . -ns2:44875 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:44875 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:12438 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12438 ; - ns1:mapsTo ns2:99388 . - -ns2:45107 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:12438 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12438 ; + ns2:mapsTo ns4:99388 . + +ns4:45107 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "ea_damper.airOutlet" ; - ns1:cnx ns2:98539 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98539 ; - ns1:mapsTo ns2:43864 . - -ns2:45108 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:98539 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98539 ; + ns2:mapsTo ns4:43864 . + +ns4:45108 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:62426 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62426 . + ns2:cnx ns4:62426 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62426 . -ns2:45172 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:45172 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:37038 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:37038 ; - ns1:mapsTo ns2:78531 . - -ns2:45386 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:37038 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:37038 ; + ns2:mapsTo ns4:78531 . + +ns4:45386 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:80065 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80065 . + ns2:cnx ns4:80065 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80065 . -ns2:45595 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:45595 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:38627 ; - ns1:hasMedium ; - ns1:hasProperty ns2:75459 ; - ns1:isConnectionPointOf ns2:38627 ; - ns1:mapsTo ns2:33422 . + ns2:cnx ns4:38627 ; + ns2:hasMedium ; + ns2:hasProperty ns4:75459 ; + ns2:isConnectionPointOf ns4:38627 ; + ns2:mapsTo ns4:33422 . -ns2:45770 a ns1:PhysicalSpace ; +ns4:45770 a ns2:PhysicalSpace ; rdfs:label "6654" . -ns2:45985 a ns1:PhysicalSpace ; +ns4:45985 a ns2:PhysicalSpace ; rdfs:label "1890D" . -ns2:46031 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:46031 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:63543 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:63543 ; - ns1:mapsTo ns2:05910 . - -ns2:46039 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:63543 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:63543 ; + ns2:mapsTo ns4:05910 . + +ns4:46039 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "return_fan.airInlet" ; - ns1:cnx ns2:34927 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34927 ; - ns1:mapsTo ns2:26559 . - -ns2:46374 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34927 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34927 ; + ns2:mapsTo ns4:26559 . + +ns4:46374 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:69044 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69044 ; - ns1:mapsTo ns2:52909 . - -ns2:46466 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:69044 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69044 ; + ns2:mapsTo ns4:52909 . + +ns4:46466 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:73219 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73219 . + ns2:cnx ns4:73219 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73219 . -ns2:46836 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:46836 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:90778 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:90778 ; - ns1:mapsTo ns2:28200 . - -ns2:46914 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:90778 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:90778 ; + ns2:mapsTo ns4:28200 . + +ns4:46914 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:17586 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:17586 ; - ns1:mapsTo ns2:31018 . - -ns2:47011 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:17586 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:17586 ; + ns2:mapsTo ns4:31018 . + +ns4:47011 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:37899 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:37899 . + ns2:cnx ns4:37899 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:37899 . -ns2:47104 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:47104 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:59158 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:59158 ; - ns1:mapsTo ns2:69790 . - -ns2:47376 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:59158 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:59158 ; + ns2:mapsTo ns4:69790 . + +ns4:47376 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:47806 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:47806 ; - ns1:mapsTo ns2:22163 . - -ns2:48091 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:47806 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:47806 ; + ns2:mapsTo ns4:22163 . + +ns4:48091 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:75966 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:75966 ; - ns1:mapsTo ns2:65987 . - -ns2:48116 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:75966 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:75966 ; + ns2:mapsTo ns4:65987 . + +ns4:48116 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:30657 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:30657 . + ns2:cnx ns4:30657 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:30657 . -ns2:48567 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:48567 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:77211 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77211 ; - ns1:mapsTo ns2:78531 . - -ns2:48579 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:77211 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77211 ; + ns2:mapsTo ns4:78531 . + +ns4:48579 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:12686 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12686 . + ns2:cnx ns4:12686 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12686 . -ns2:48637 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:48637 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:23392 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:23392 . + ns2:cnx ns4:23392 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:23392 . -ns2:49323 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:49323 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:32837 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:32837 . + ns2:cnx ns4:32837 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:32837 . -ns2:49337 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:49337 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:92407 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:92407 ; - ns1:mapsTo ns2:41868 . - -ns2:49369 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:92407 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:92407 ; + ns2:mapsTo ns4:41868 . + +ns4:49369 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "ea_damper.airOutlet" ; - ns1:cnx ns2:49730 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:49730 ; - ns1:mapsTo ns2:60599 . + ns2:cnx ns4:49730 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:49730 ; + ns2:mapsTo ns4:60599 . -ns2:49603 a ns1:PhysicalSpace ; +ns4:49603 a ns2:PhysicalSpace ; rdfs:label "3575F" . -ns2:49869 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint, - ns1:PhysicalSpace ; +ns4:49869 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint, + ns2:PhysicalSpace ; rdfs:label "6621A", "fan.electricalInlet" ; - ns1:cnx ns2:55951 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:55951 . + ns2:cnx ns4:55951 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:55951 . -ns2:49917 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:49917 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:25140 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25140 . + ns2:cnx ns4:25140 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25140 . -ns2:50027 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:50027 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:80523 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80523 ; - ns1:mapsTo ns2:38344 . - -ns2:50235 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:80523 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80523 ; + ns2:mapsTo ns4:38344 . + +ns4:50235 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:45050 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45050 ; - ns1:mapsTo ns2:55916 . + ns2:cnx ns4:45050 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45050 ; + ns2:mapsTo ns4:55916 . -ns2:50438 a ns1:PhysicalSpace ; +ns4:50438 a ns2:PhysicalSpace ; rdfs:label "9073" . -ns2:50805 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:50805 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:66562 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:66562 ; - ns1:mapsTo ns2:85390 . - -ns2:50858 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:66562 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:66562 ; + ns2:mapsTo ns4:85390 . + +ns4:50858 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:87632 ; - ns1:hasMedium ; - ns1:hasProperty ns2:51617 ; - ns1:isConnectionPointOf ns2:87632 ; - ns1:mapsTo ns2:68285 . - -ns2:51911 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:87632 ; + ns2:hasMedium ; + ns2:hasProperty ns4:51617 ; + ns2:isConnectionPointOf ns4:87632 ; + ns2:mapsTo ns4:68285 . + +ns4:51911 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:71025 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:71025 ; - ns1:mapsTo ns2:06299 . - -ns2:52024 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:71025 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:71025 ; + ns2:mapsTo ns4:06299 . + +ns4:52024 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:15067 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15067 . + ns2:cnx ns4:15067 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15067 . -ns2:52037 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:52037 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:70120 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:70120 . + ns2:cnx ns4:70120 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:70120 . -ns2:52164 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:52164 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:84620 ; - ns1:hasMedium ; - ns1:hasProperty ns2:23963 ; - ns1:isConnectionPointOf ns2:84620 ; - ns1:mapsTo ns2:41868 . - -ns2:52809 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:84620 ; + ns2:hasMedium ; + ns2:hasProperty ns4:23963 ; + ns2:isConnectionPointOf ns4:84620 ; + ns2:mapsTo ns4:41868 . + +ns4:52809 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:77381 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77381 . + ns2:cnx ns4:77381 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77381 . -ns2:53092 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:53092 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:54101 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54101 . + ns2:cnx ns4:54101 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54101 . -ns2:53211 a ns1:PhysicalSpace ; +ns4:53211 a ns2:PhysicalSpace ; rdfs:label "3979" . -ns2:53581 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:53581 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:25674 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25674 . + ns2:cnx ns4:25674 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25674 . -ns2:53666 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:53666 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:17586 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:17586 ; - ns1:mapsTo ns2:89654 . - -ns2:53704 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:17586 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:17586 ; + ns2:mapsTo ns4:89654 . + +ns4:53704 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:04430 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:04430 . + ns2:cnx ns4:04430 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:04430 . -ns2:53775 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:53775 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:05619 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05619 . + ns2:cnx ns4:05619 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05619 . -ns2:53835 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:53835 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:60841 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:60841 . + ns2:cnx ns4:60841 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:60841 . -ns2:54550 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:54550 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:44942 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:44942 . + ns2:cnx ns4:44942 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:44942 . -ns2:54553 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:54553 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:77457 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77457 ; - ns1:mapsTo ns2:47249 . - -ns2:54578 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:77457 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77457 ; + ns2:mapsTo ns4:47249 . + +ns4:54578 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:09900 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09900 . + ns2:cnx ns4:09900 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09900 . -ns2:55020 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:55020 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:80276 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80276 . + ns2:cnx ns4:80276 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80276 . -ns2:55188 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:55188 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:45441 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45441 . + ns2:cnx ns4:45441 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45441 . -ns2:55442 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:55442 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:65206 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65206 . + ns2:cnx ns4:65206 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65206 . -ns2:55810 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:55810 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:85409 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:85409 . + ns2:cnx ns4:85409 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:85409 . -ns2:55837 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:55837 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:73674 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73674 . + ns2:cnx ns4:73674 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73674 . -ns2:56161 a ns1:PhysicalSpace ; +ns4:56161 a ns2:PhysicalSpace ; rdfs:label "2454A" . -ns2:56272 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:56272 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:17361 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:17361 ; - ns1:mapsTo ns2:04784 . - -ns2:56547 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:17361 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:17361 ; + ns2:mapsTo ns4:04784 . + +ns4:56547 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:61196 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:61196 ; - ns1:mapsTo ns2:49121 . - -ns2:56886 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:61196 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:61196 ; + ns2:mapsTo ns4:49121 . + +ns4:56886 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:56611 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:56611 ; - ns1:mapsTo ns2:08874 . + ns2:cnx ns4:56611 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:56611 ; + ns2:mapsTo ns4:08874 . -ns2:56993 a ns1:PhysicalSpace ; +ns4:56993 a ns2:PhysicalSpace ; rdfs:label "5605" . -ns2:57087 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:57087 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:53221 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:53221 . + ns2:cnx ns4:53221 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:53221 . -ns2:57442 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:57442 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:46417 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46417 ; - ns1:mapsTo ns2:49336 . - -ns2:57702 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:46417 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46417 ; + ns2:mapsTo ns4:49336 . + +ns4:57702 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:32837 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:32837 . + ns2:cnx ns4:32837 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:32837 . -ns2:57774 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:57774 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:91853 ; - ns1:hasMedium ; - ns1:hasProperty ns2:51996 ; - ns1:isConnectionPointOf ns2:91853 ; - ns1:mapsTo ns2:10648 . - -ns2:57861 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:91853 ; + ns2:hasMedium ; + ns2:hasProperty ns4:51996 ; + ns2:isConnectionPointOf ns4:91853 ; + ns2:mapsTo ns4:10648 . + +ns4:57861 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:72337 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:72337 . + ns2:cnx ns4:72337 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:72337 . -ns2:57974 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:57974 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:68140 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68140 . + ns2:cnx ns4:68140 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68140 . -ns2:58061 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:58061 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:25140 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25140 . + ns2:cnx ns4:25140 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25140 . -ns2:58141 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:58141 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:44133 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:44133 . + ns2:cnx ns4:44133 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:44133 . -ns2:58231 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:58231 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:15464 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15464 ; - ns1:mapsTo ns2:10653 . - -ns2:58533 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15464 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15464 ; + ns2:mapsTo ns4:10653 . + +ns4:58533 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:18118 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18118 ; - ns1:mapsTo ns2:40053 . - -ns2:58620 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18118 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18118 ; + ns2:mapsTo ns4:40053 . + +ns4:58620 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:31947 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:31947 ; - ns1:mapsTo ns2:56119 . - -ns2:58810 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:31947 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:31947 ; + ns2:mapsTo ns4:56119 . + +ns4:58810 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:21910 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:21910 ; - ns1:mapsTo ns2:65987 . - -ns2:59125 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:21910 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:21910 ; + ns2:mapsTo ns4:65987 . + +ns4:59125 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:74083 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74083 . + ns2:cnx ns4:74083 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74083 . -ns2:59156 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:59156 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:56753 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:56753 . + ns2:cnx ns4:56753 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:56753 . -ns2:59232 a ns1:PhysicalSpace ; +ns4:59232 a ns2:PhysicalSpace ; rdfs:label "8941A" . -ns2:59276 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:59276 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:20861 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:20861 ; - ns1:mapsTo ns2:14490 . - -ns2:59359 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:20861 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:20861 ; + ns2:mapsTo ns4:14490 . + +ns4:59359 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:53089 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:53089 ; - ns1:mapsTo ns2:62233 . - -ns2:59407 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:53089 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:53089 ; + ns2:mapsTo ns4:62233 . + +ns4:59407 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:86007 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:86007 ; - ns1:mapsTo ns2:09379 . - -ns2:59507 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:86007 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:86007 ; + ns2:mapsTo ns4:09379 . + +ns4:59507 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:08495 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:08495 ; - ns1:mapsTo ns2:35242 . - -ns2:59682 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:08495 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:08495 ; + ns2:mapsTo ns4:35242 . + +ns4:59682 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:19014 ; - ns1:hasMedium ; - ns1:hasProperty ns2:85360 ; - ns1:isConnectionPointOf ns2:19014 ; - ns1:mapsTo ns2:42328 . - -ns2:59993 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:19014 ; + ns2:hasMedium ; + ns2:hasProperty ns4:85360 ; + ns2:isConnectionPointOf ns4:19014 ; + ns2:mapsTo ns4:42328 . + +ns4:59993 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:09638 ; - ns1:hasMedium ; - ns1:hasProperty ns2:22465 ; - ns1:isConnectionPointOf ns2:09638 ; - ns1:mapsTo ns2:47481 . - -ns2:60170 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09638 ; + ns2:hasMedium ; + ns2:hasProperty ns4:22465 ; + ns2:isConnectionPointOf ns4:09638 ; + ns2:mapsTo ns4:47481 . + +ns4:60170 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:59158 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:59158 ; - ns1:mapsTo ns2:61520 . - -ns2:60714 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:59158 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:59158 ; + ns2:mapsTo ns4:61520 . + +ns4:60714 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:65381 ; - ns1:hasMedium ; - ns1:hasProperty ns2:68703 ; - ns1:isConnectionPointOf ns2:65381 ; - ns1:mapsTo ns2:07961 . - -ns2:61021 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:65381 ; + ns2:hasMedium ; + ns2:hasProperty ns4:68703 ; + ns2:isConnectionPointOf ns4:65381 ; + ns2:mapsTo ns4:07961 . + +ns4:61021 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:31261 ; - ns1:hasMedium ; - ns1:hasProperty ns2:52496 ; - ns1:isConnectionPointOf ns2:31261 ; - ns1:mapsTo ns2:98308 . - -ns2:61181 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:31261 ; + ns2:hasMedium ; + ns2:hasProperty ns4:52496 ; + ns2:isConnectionPointOf ns4:31261 ; + ns2:mapsTo ns4:98308 . + +ns4:61181 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:30312 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:30312 ; - ns1:mapsTo ns2:12321 . - -ns2:61223 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:30312 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:30312 ; + ns2:mapsTo ns4:12321 . + +ns4:61223 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:02590 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:02590 . + ns2:cnx ns4:02590 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:02590 . -ns2:61357 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:61357 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:64887 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:64887 ; - ns1:mapsTo ns2:09379 . - -ns2:61423 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:64887 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:64887 ; + ns2:mapsTo ns4:09379 . + +ns4:61423 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:24416 ; - ns1:hasMedium ; - ns1:hasProperty ns2:61489 ; - ns1:isConnectionPointOf ns2:24416 ; - ns1:mapsTo ns2:62233 . + ns2:cnx ns4:24416 ; + ns2:hasMedium ; + ns2:hasProperty ns4:61489 ; + ns2:isConnectionPointOf ns4:24416 ; + ns2:mapsTo ns4:62233 . -ns2:61790 a ns1:PhysicalSpace ; +ns4:61790 a ns2:PhysicalSpace ; rdfs:label "0109D" . -ns2:61821 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:61821 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "iso_damper.airOutlet" ; - ns1:cnx ns2:22732 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:22732 ; - ns1:mapsTo ns2:89919 . + ns2:cnx ns4:22732 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:22732 ; + ns2:mapsTo ns4:89919 . -ns2:62141 a ns1:PhysicalSpace ; +ns4:62141 a ns2:PhysicalSpace ; rdfs:label "4826C" . -ns2:62454 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:62454 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:30030 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:30030 . + ns2:cnx ns4:30030 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:30030 . -ns2:62608 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:62608 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:69044 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69044 ; - ns1:mapsTo ns2:40636 . - -ns2:62913 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69044 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69044 ; + ns2:mapsTo ns4:40636 . + +ns4:62913 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:80065 ; - ns1:hasMedium ; - ns1:hasProperty ns2:26069 ; - ns1:isConnectionPointOf ns2:80065 ; - ns1:mapsTo ns2:55916 . - -ns2:63214 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:80065 ; + ns2:hasMedium ; + ns2:hasProperty ns4:26069 ; + ns2:isConnectionPointOf ns4:80065 ; + ns2:mapsTo ns4:55916 . + +ns4:63214 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:54463 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54463 . + ns2:cnx ns4:54463 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54463 . -ns2:63225 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:63225 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:44133 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:44133 . + ns2:cnx ns4:44133 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:44133 . -ns2:63590 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:63590 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:25200 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25200 ; - ns1:mapsTo ns2:43285 . - -ns2:63837 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25200 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25200 ; + ns2:mapsTo ns4:43285 . + +ns4:63837 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:30030 ; - ns1:hasMedium ; - ns1:hasProperty ns2:84011 ; - ns1:isConnectionPointOf ns2:30030 ; - ns1:mapsTo ns2:97458 . - -ns2:64164 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:30030 ; + ns2:hasMedium ; + ns2:hasProperty ns4:84011 ; + ns2:isConnectionPointOf ns4:30030 ; + ns2:mapsTo ns4:97458 . + +ns4:64164 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:74083 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74083 . + ns2:cnx ns4:74083 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74083 . -ns2:64191 a ns1:PhysicalSpace ; +ns4:64191 a ns2:PhysicalSpace ; rdfs:label "5288P" . -ns2:64212 a ns1:PhysicalSpace ; +ns4:64212 a ns2:PhysicalSpace ; rdfs:label "3806C" . -ns2:64575 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:64575 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:68886 ; - ns1:hasMedium ; - ns1:hasProperty ns2:03036 ; - ns1:isConnectionPointOf ns2:68886 ; - ns1:mapsTo ns2:51197 . - -ns2:64617 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:68886 ; + ns2:hasMedium ; + ns2:hasProperty ns4:03036 ; + ns2:isConnectionPointOf ns4:68886 ; + ns2:mapsTo ns4:51197 . + +ns4:64617 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:84620 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:84620 . + ns2:cnx ns4:84620 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:84620 . -ns2:64652 a ns1:PhysicalSpace ; +ns4:64652 a ns2:PhysicalSpace ; rdfs:label "4659N" . -ns2:64940 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:64940 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:81183 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:81183 . + ns2:cnx ns4:81183 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:81183 . -ns2:65196 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:65196 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:19805 ; - ns1:hasMedium ; - ns1:hasProperty ns2:00778 ; - ns1:isConnectionPointOf ns2:19805 ; - ns1:mapsTo ns2:69373 . - -ns2:65207 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:19805 ; + ns2:hasMedium ; + ns2:hasProperty ns4:00778 ; + ns2:isConnectionPointOf ns4:19805 ; + ns2:mapsTo ns4:69373 . + +ns4:65207 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:77457 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77457 ; - ns1:mapsTo ns2:40300 . + ns2:cnx ns4:77457 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77457 ; + ns2:mapsTo ns4:40300 . -ns2:65562 a ns1:PhysicalSpace ; +ns4:65562 a ns2:PhysicalSpace ; rdfs:label "2397B" . -ns2:65843 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:65843 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:64435 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:64435 ; - ns1:mapsTo ns2:51164 . - -ns2:65905 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:64435 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:64435 ; + ns2:mapsTo ns4:51164 . + +ns4:65905 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:58411 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58411 . + ns2:cnx ns4:58411 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58411 . -ns2:65991 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:65991 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:54101 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54101 . + ns2:cnx ns4:54101 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54101 . -ns2:66422 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:66422 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:37899 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:37899 . + ns2:cnx ns4:37899 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:37899 . -ns2:66752 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:66752 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:25674 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25674 . + ns2:cnx ns4:25674 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25674 . -ns2:67151 a ns1:PhysicalSpace ; +ns4:67151 a ns2:PhysicalSpace ; rdfs:label "8692" . -ns2:67207 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:67207 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:97969 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97969 ; - ns1:mapsTo ns2:04462 . + ns2:cnx ns4:97969 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97969 ; + ns2:mapsTo ns4:04462 . -ns2:67243 a ns1:PhysicalSpace ; +ns4:67243 a ns2:PhysicalSpace ; rdfs:label "5437" . -ns2:67286 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:67286 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:37192 ; - ns1:hasMedium ; - ns1:hasProperty ns2:52272 ; - ns1:isConnectionPointOf ns2:37192 ; - ns1:mapsTo ns2:56119 . - -ns2:67453 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:37192 ; + ns2:hasMedium ; + ns2:hasProperty ns4:52272 ; + ns2:isConnectionPointOf ns4:37192 ; + ns2:mapsTo ns4:56119 . + +ns4:67453 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:02590 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:02590 . + ns2:cnx ns4:02590 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:02590 . -ns2:67696 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:67696 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:26426 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:26426 . + ns2:cnx ns4:26426 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:26426 . -ns2:68211 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:68211 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:68951 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68951 . + ns2:cnx ns4:68951 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68951 . -ns2:68313 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:68313 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_damper.airInlet" ; - ns1:cnx ns2:51238 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:51238 ; - ns1:mapsTo ns2:41846 . - -ns2:69116 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:51238 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:51238 ; + ns2:mapsTo ns4:41846 . + +ns4:69116 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:15464 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15464 ; - ns1:mapsTo ns2:57804 . - -ns2:69135 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15464 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15464 ; + ns2:mapsTo ns4:57804 . + +ns4:69135 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:84040 ; - ns1:hasMedium ; - ns1:hasProperty ns2:81897 ; - ns1:isConnectionPointOf ns2:84040 ; - ns1:mapsTo ns2:92322 . - -ns2:69823 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:84040 ; + ns2:hasMedium ; + ns2:hasProperty ns4:81897 ; + ns2:isConnectionPointOf ns4:84040 ; + ns2:mapsTo ns4:92322 . + +ns4:69823 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:04913 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:04913 . + ns2:cnx ns4:04913 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:04913 . -ns2:70209 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:70209 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:19220 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:19220 ; - ns1:mapsTo ns2:08874 . - -ns2:70321 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:19220 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:19220 ; + ns2:mapsTo ns4:08874 . + +ns4:70321 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:65374 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65374 . + ns2:cnx ns4:65374 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65374 . -ns2:70544 a ns1:PhysicalSpace ; +ns4:70544 a ns2:PhysicalSpace ; rdfs:label "3649H" . -ns2:71107 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:71107 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:68016 ; - ns1:hasMedium ; - ns1:hasProperty ns2:72380 ; - ns1:isConnectionPointOf ns2:68016 ; - ns1:mapsTo ns2:31018 . + ns2:cnx ns4:68016 ; + ns2:hasMedium ; + ns2:hasProperty ns4:72380 ; + ns2:isConnectionPointOf ns4:68016 ; + ns2:mapsTo ns4:31018 . -ns2:71398 a ns1:PhysicalSpace ; +ns4:71398 a ns2:PhysicalSpace ; rdfs:label "9864A" . -ns2:71478 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:71478 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:38529 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:38529 ; - ns1:mapsTo ns2:14490 . - -ns2:71570 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:38529 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:38529 ; + ns2:mapsTo ns4:14490 . + +ns4:71570 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:54708 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54708 ; - ns1:mapsTo ns2:99388 . - -ns2:72014 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:54708 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54708 ; + ns2:mapsTo ns4:99388 . + +ns4:72014 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:75582 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:75582 . + ns2:cnx ns4:75582 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:75582 . -ns2:72100 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:72100 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:39513 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:39513 . + ns2:cnx ns4:39513 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:39513 . -ns2:72199 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:72199 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:62426 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62426 . + ns2:cnx ns4:62426 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62426 . -ns2:72285 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:72285 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:19107 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:19107 . + ns2:cnx ns4:19107 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:19107 . -ns2:72358 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:72358 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:19107 ; - ns1:hasMedium ; - ns1:hasProperty ns2:62715 ; - ns1:isConnectionPointOf ns2:19107 ; - ns1:mapsTo ns2:04653 . - -ns2:72498 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:19107 ; + ns2:hasMedium ; + ns2:hasProperty ns4:62715 ; + ns2:isConnectionPointOf ns4:19107 ; + ns2:mapsTo ns4:04653 . + +ns4:72498 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:87421 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87421 . + ns2:cnx ns4:87421 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87421 . -ns2:72960 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:72960 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "iso_damper.airOutlet" ; - ns1:cnx ns2:83549 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83549 ; - ns1:mapsTo ns2:77220 . - -ns2:73143 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:83549 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83549 ; + ns2:mapsTo ns4:77220 . + +ns4:73143 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:88253 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88253 . + ns2:cnx ns4:88253 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88253 . -ns2:73848 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:73848 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:22040 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:22040 . + ns2:cnx ns4:22040 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:22040 . -ns2:73870 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:73870 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:97033 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97033 ; - ns1:mapsTo ns2:04653 . + ns2:cnx ns4:97033 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97033 ; + ns2:mapsTo ns4:04653 . -ns2:74269 a ns1:PhysicalSpace ; +ns4:74269 a ns2:PhysicalSpace ; rdfs:label "8345C" . -ns2:74622 a ns1:PhysicalSpace ; +ns4:74622 a ns2:PhysicalSpace ; rdfs:label "0089B" . -ns2:75197 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:75197 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:41545 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:41545 . + ns2:cnx ns4:41545 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:41545 . -ns2:75463 a ns1:PhysicalSpace ; +ns4:75463 a ns2:PhysicalSpace ; rdfs:label "5151" . -ns2:75587 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:75587 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:82619 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:82619 ; - ns1:mapsTo ns2:04462 . - -ns2:76086 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:82619 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:82619 ; + ns2:mapsTo ns4:04462 . + +ns4:76086 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:31318 ; - ns1:hasMedium ; - ns1:hasProperty ns2:34111 ; - ns1:isConnectionPointOf ns2:31318 ; - ns1:mapsTo ns2:38655 . - -ns2:76425 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:31318 ; + ns2:hasMedium ; + ns2:hasProperty ns4:34111 ; + ns2:isConnectionPointOf ns4:31318 ; + ns2:mapsTo ns4:38655 . + +ns4:76425 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:45991 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45991 ; - ns1:mapsTo ns2:23460 . - -ns2:77169 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:45991 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45991 ; + ns2:mapsTo ns4:23460 . + +ns4:77169 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:45992 ; - ns1:hasMedium ; - ns1:hasProperty ns2:39127 ; - ns1:isConnectionPointOf ns2:45992 ; - ns1:mapsTo ns2:84309 . - -ns2:77489 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:45992 ; + ns2:hasMedium ; + ns2:hasProperty ns4:39127 ; + ns2:isConnectionPointOf ns4:45992 ; + ns2:mapsTo ns4:84309 . + +ns4:77489 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:30657 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:30657 . + ns2:cnx ns4:30657 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:30657 . -ns2:78472 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:78472 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:80730 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80730 ; - ns1:mapsTo ns2:51164 . - -ns2:78658 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:80730 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80730 ; + ns2:mapsTo ns4:51164 . + +ns4:78658 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:24002 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:24002 ; - ns1:mapsTo ns2:31863 . - -ns2:78883 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:24002 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:24002 ; + ns2:mapsTo ns4:31863 . + +ns4:78883 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:32493 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:32493 ; - ns1:mapsTo ns2:49336 . + ns2:cnx ns4:32493 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:32493 ; + ns2:mapsTo ns4:49336 . -ns2:78886 a ns1:PhysicalSpace ; +ns4:78886 a ns2:PhysicalSpace ; rdfs:label "7517B" . -ns2:79003 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:79003 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:25067 ; - ns1:hasMedium ; - ns1:hasProperty ns2:57526 ; - ns1:isConnectionPointOf ns2:25067 ; - ns1:mapsTo ns2:97969 . + ns2:cnx ns4:25067 ; + ns2:hasMedium ; + ns2:hasProperty ns4:57526 ; + ns2:isConnectionPointOf ns4:25067 ; + ns2:mapsTo ns4:97969 . -ns2:79569 a ns1:PhysicalSpace ; +ns4:79569 a ns2:PhysicalSpace ; rdfs:label "2521" . -ns2:79626 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:79626 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:55198 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:55198 ; - ns1:mapsTo ns2:92322 . - -ns2:80160 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:55198 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:55198 ; + ns2:mapsTo ns4:92322 . + +ns4:80160 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:09611 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09611 ; - ns1:mapsTo ns2:68285 . - -ns2:80306 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09611 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09611 ; + ns2:mapsTo ns4:68285 . + +ns4:80306 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:75732 ; - ns1:hasMedium ; - ns1:hasProperty ns2:41330 ; - ns1:isConnectionPointOf ns2:75732 ; - ns1:mapsTo ns2:05910 . - -ns2:80488 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:75732 ; + ns2:hasMedium ; + ns2:hasProperty ns4:41330 ; + ns2:isConnectionPointOf ns4:75732 ; + ns2:mapsTo ns4:05910 . + +ns4:80488 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:73323 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73323 . + ns2:cnx ns4:73323 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73323 . -ns2:80960 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:80960 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:54082 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54082 . + ns2:cnx ns4:54082 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54082 . -ns2:81499 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:81499 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:05062 ; - ns1:hasMedium ; - ns1:hasProperty ns2:53137 ; - ns1:isConnectionPointOf ns2:05062 ; - ns1:mapsTo ns2:35251 . - -ns2:81565 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05062 ; + ns2:hasMedium ; + ns2:hasProperty ns4:53137 ; + ns2:isConnectionPointOf ns4:05062 ; + ns2:mapsTo ns4:35251 . + +ns4:81565 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:58411 ; - ns1:hasMedium ; - ns1:hasProperty ns2:38087 ; - ns1:isConnectionPointOf ns2:58411 ; - ns1:mapsTo ns2:87461 . - -ns2:81579 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:58411 ; + ns2:hasMedium ; + ns2:hasProperty ns4:38087 ; + ns2:isConnectionPointOf ns4:58411 ; + ns2:mapsTo ns4:87461 . + +ns4:81579 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:10658 ; - ns1:hasMedium ; - ns1:hasProperty ns2:98153 ; - ns1:isConnectionPointOf ns2:10658 ; - ns1:mapsTo ns2:11513 . - -ns2:82026 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:10658 ; + ns2:hasMedium ; + ns2:hasProperty ns4:98153 ; + ns2:isConnectionPointOf ns4:10658 ; + ns2:mapsTo ns4:11513 . + +ns4:82026 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:00783 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:00783 ; - ns1:mapsTo ns2:88207 . - -ns2:82709 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:00783 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:00783 ; + ns2:mapsTo ns4:88207 . + +ns4:82709 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:45441 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45441 . + ns2:cnx ns4:45441 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45441 . -ns2:82716 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:82716 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:72185 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:72185 . + ns2:cnx ns4:72185 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:72185 . -ns2:82856 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:82856 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:79665 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:79665 ; - ns1:mapsTo ns2:04201 . - -ns2:82891 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:79665 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:79665 ; + ns2:mapsTo ns4:04201 . + +ns4:82891 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:87570 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87570 . + ns2:cnx ns4:87570 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87570 . -ns2:83072 a ns1:PhysicalSpace ; +ns4:83072 a ns2:PhysicalSpace ; rdfs:label "7625B" . -ns2:83087 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:83087 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:12553 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12553 ; - ns1:mapsTo ns2:79414 . - -ns2:83154 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:12553 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12553 ; + ns2:mapsTo ns4:79414 . + +ns4:83154 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:52728 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:52728 ; - ns1:mapsTo ns2:47249 . - -ns2:83422 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:52728 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:52728 ; + ns2:mapsTo ns4:47249 . + +ns4:83422 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:32904 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:32904 . + ns2:cnx ns4:32904 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:32904 . -ns2:83506 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:83506 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:21736 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:21736 . + ns2:cnx ns4:21736 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:21736 . -ns2:83757 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:83757 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:68166 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68166 . + ns2:cnx ns4:68166 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68166 . -ns2:83786 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:83786 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:67542 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:67542 . + ns2:cnx ns4:67542 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:67542 . -ns2:83903 a ns1:PhysicalSpace ; +ns4:83903 a ns2:PhysicalSpace ; rdfs:label "0811" . -ns2:84297 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:84297 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:52918 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:52918 . + ns2:cnx ns4:52918 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:52918 . -ns2:84378 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:84378 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:91853 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:91853 . + ns2:cnx ns4:91853 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:91853 . -ns2:84395 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:84395 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:53089 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:53089 ; - ns1:mapsTo ns2:38344 . - -ns2:85241 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:53089 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:53089 ; + ns2:mapsTo ns4:38344 . + +ns4:85241 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:62855 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62855 ; - ns1:mapsTo ns2:30054 . - -ns2:85356 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:62855 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62855 ; + ns2:mapsTo ns4:30054 . + +ns4:85356 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:19805 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:19805 . + ns2:cnx ns4:19805 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:19805 . -ns2:85384 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:85384 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:97030 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97030 ; - ns1:mapsTo ns2:46761 . - -ns2:85834 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:97030 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97030 ; + ns2:mapsTo ns4:46761 . + +ns4:85834 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:95090 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:95090 . + ns2:cnx ns4:95090 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:95090 . -ns2:85847 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:85847 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:62855 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62855 ; - ns1:mapsTo ns2:06081 . - -ns2:85886 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:62855 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62855 ; + ns2:mapsTo ns4:06081 . + +ns4:85886 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:89915 ; - ns1:hasMedium ; - ns1:hasProperty ns2:30152 ; - ns1:isConnectionPointOf ns2:89915 ; - ns1:mapsTo ns2:15762 . - -ns2:85928 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:89915 ; + ns2:hasMedium ; + ns2:hasProperty ns4:30152 ; + ns2:isConnectionPointOf ns4:89915 ; + ns2:mapsTo ns4:15762 . + +ns4:85928 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:09160 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09160 ; - ns1:mapsTo ns2:20563 . + ns2:cnx ns4:09160 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09160 ; + ns2:mapsTo ns4:20563 . -ns2:85937 a ns1:PhysicalSpace ; +ns4:85937 a ns2:PhysicalSpace ; rdfs:label "8808D" . -ns2:86195 a ns1:PhysicalSpace ; +ns4:86195 a ns2:PhysicalSpace ; rdfs:label "8362E" . -ns2:86254 a ns1:PhysicalSpace ; +ns4:86254 a ns2:PhysicalSpace ; rdfs:label "7112A" . -ns2:86381 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:86381 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:25613 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25613 . + ns2:cnx ns4:25613 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25613 . -ns2:86539 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:86539 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:87632 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87632 . + ns2:cnx ns4:87632 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87632 . -ns2:86877 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:86877 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:62383 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62383 ; - ns1:mapsTo ns2:88705 . - -ns2:87105 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:62383 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62383 ; + ns2:mapsTo ns4:88705 . + +ns4:87105 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:03860 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03860 ; - ns1:mapsTo ns2:31863 . - -ns2:87391 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03860 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03860 ; + ns2:mapsTo ns4:31863 . + +ns4:87391 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:35514 ; - ns1:hasMedium ; - ns1:hasProperty ns2:88324 ; - ns1:isConnectionPointOf ns2:35514 ; - ns1:mapsTo ns2:48021 . - -ns2:87420 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:35514 ; + ns2:hasMedium ; + ns2:hasProperty ns4:88324 ; + ns2:isConnectionPointOf ns4:35514 ; + ns2:mapsTo ns4:48021 . + +ns4:87420 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:89915 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:89915 . + ns2:cnx ns4:89915 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:89915 . -ns2:87585 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:87585 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:54463 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54463 . + ns2:cnx ns4:54463 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54463 . -ns2:88273 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:88273 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:68166 ; - ns1:hasMedium ; - ns1:hasProperty ns2:65321 ; - ns1:isConnectionPointOf ns2:68166 ; - ns1:mapsTo ns2:04201 . - -ns2:88346 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:68166 ; + ns2:hasMedium ; + ns2:hasProperty ns4:65321 ; + ns2:isConnectionPointOf ns4:68166 ; + ns2:mapsTo ns4:04201 . + +ns4:88346 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:18099 ; - ns1:hasMedium ; - ns1:hasProperty ns2:82836 ; - ns1:isConnectionPointOf ns2:18099 ; - ns1:mapsTo ns2:79414 . + ns2:cnx ns4:18099 ; + ns2:hasMedium ; + ns2:hasProperty ns4:82836 ; + ns2:isConnectionPointOf ns4:18099 ; + ns2:mapsTo ns4:79414 . -ns2:88897 a ns1:PhysicalSpace ; +ns4:88897 a ns2:PhysicalSpace ; rdfs:label "7060" . -ns2:89220 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:89220 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:87421 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87421 . + ns2:cnx ns4:87421 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87421 . -ns2:89383 a ns1:PhysicalSpace ; +ns4:89383 a ns2:PhysicalSpace ; rdfs:label "9170B" . -ns2:90274 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:90274 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:22040 ; - ns1:hasMedium ; - ns1:hasProperty ns2:19137 ; - ns1:isConnectionPointOf ns2:22040 ; - ns1:mapsTo ns2:03503 . - -ns2:91176 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:22040 ; + ns2:hasMedium ; + ns2:hasProperty ns4:19137 ; + ns2:isConnectionPointOf ns4:22040 ; + ns2:mapsTo ns4:03503 . + +ns4:91176 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:60462 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:60462 . + ns2:cnx ns4:60462 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:60462 . -ns2:91479 a ns1:PhysicalSpace ; +ns4:91479 a ns2:PhysicalSpace ; rdfs:label "4313C" . -ns2:91556 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:91556 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:24416 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:24416 . + ns2:cnx ns4:24416 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:24416 . -ns2:92566 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:92566 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:32904 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:32904 . + ns2:cnx ns4:32904 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:32904 . -ns2:92617 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:92617 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:94683 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:94683 ; - ns1:mapsTo ns2:99455 . - -ns2:92683 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:94683 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:94683 ; + ns2:mapsTo ns4:99455 . + +ns4:92683 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:03860 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03860 ; - ns1:mapsTo ns2:87461 . + ns2:cnx ns4:03860 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03860 ; + ns2:mapsTo ns4:87461 . -ns2:92769 a ns1:PhysicalSpace ; +ns4:92769 a ns2:PhysicalSpace ; rdfs:label "5984A" . -ns2:92902 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:92902 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:13590 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:13590 ; - ns1:mapsTo ns2:64361 . - -ns2:93328 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:13590 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:13590 ; + ns2:mapsTo ns4:64361 . + +ns4:93328 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:70230 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:70230 ; - ns1:mapsTo ns2:20835 . + ns2:cnx ns4:70230 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:70230 ; + ns2:mapsTo ns4:20835 . -ns2:93667 a ns1:PhysicalSpace ; +ns4:93667 a ns2:PhysicalSpace ; rdfs:label "0234" . -ns2:93766 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:93766 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:76708 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:76708 ; - ns1:mapsTo ns2:99287 . - -ns2:94078 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:76708 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:76708 ; + ns2:mapsTo ns4:99287 . + +ns4:94078 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:36725 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:36725 ; - ns1:mapsTo ns2:75350 . + ns2:cnx ns4:36725 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:36725 ; + ns2:mapsTo ns4:75350 . -ns2:94888 a ns1:PhysicalSpace ; +ns4:94888 a ns2:PhysicalSpace ; rdfs:label "0644" . -ns2:95037 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:95037 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:85409 ; - ns1:hasMedium ; - ns1:hasProperty ns2:70256 ; - ns1:isConnectionPointOf ns2:85409 ; - ns1:mapsTo ns2:97393 . - -ns2:95216 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:85409 ; + ns2:hasMedium ; + ns2:hasProperty ns4:70256 ; + ns2:isConnectionPointOf ns4:85409 ; + ns2:mapsTo ns4:97393 . + +ns4:95216 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterOutlet" ; - ns1:cnx ns2:52918 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:52918 . + ns2:cnx ns4:52918 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:52918 . -ns2:95461 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:95461 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:49064 ; - ns1:hasMedium ; - ns1:hasProperty ns2:83945 ; - ns1:isConnectionPointOf ns2:49064 ; - ns1:mapsTo ns2:81559 . - -ns2:95718 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:49064 ; + ns2:hasMedium ; + ns2:hasProperty ns4:83945 ; + ns2:isConnectionPointOf ns4:49064 ; + ns2:mapsTo ns4:81559 . + +ns4:95718 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:39604 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:39604 ; - ns1:mapsTo ns2:82400 . - -ns2:95888 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:39604 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:39604 ; + ns2:mapsTo ns4:82400 . + +ns4:95888 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:97321 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97321 . + ns2:cnx ns4:97321 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97321 . -ns2:96291 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:96291 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:49965 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:49965 ; - ns1:mapsTo ns2:46761 . - -ns2:96327 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:49965 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:49965 ; + ns2:mapsTo ns4:46761 . + +ns4:96327 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:05619 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05619 . + ns2:cnx ns4:05619 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05619 . -ns2:96385 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:96385 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:54708 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54708 ; - ns1:mapsTo ns2:84309 . - -ns2:96390 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:54708 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54708 ; + ns2:mapsTo ns4:84309 . + +ns4:96390 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:51893 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:51893 ; - ns1:mapsTo ns2:07961 . + ns2:cnx ns4:51893 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:51893 ; + ns2:mapsTo ns4:07961 . -ns2:96875 a ns1:PhysicalSpace ; +ns4:96875 a ns2:PhysicalSpace ; rdfs:label "9603C" . -ns2:96967 a ns1:PhysicalSpace ; +ns4:96967 a ns2:PhysicalSpace ; rdfs:label "3230C" . -ns2:97025 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:97025 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:79665 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:79665 ; - ns1:mapsTo ns2:88207 . - -ns2:97101 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:79665 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:79665 ; + ns2:mapsTo ns4:88207 . + +ns4:97101 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:55408 ; - ns1:hasMedium ; - ns1:hasProperty ns2:71776 ; - ns1:isConnectionPointOf ns2:55408 ; - ns1:mapsTo ns2:94165 . + ns2:cnx ns4:55408 ; + ns2:hasMedium ; + ns2:hasProperty ns4:71776 ; + ns2:isConnectionPointOf ns4:55408 ; + ns2:mapsTo ns4:94165 . -ns2:97335 a ns1:PhysicalSpace ; +ns4:97335 a ns2:PhysicalSpace ; rdfs:label "6830C" . -ns2:97401 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:97401 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:73323 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73323 . + ns2:cnx ns4:73323 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73323 . -ns2:98135 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:98135 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet" ; - ns1:cnx ns2:19220 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:19220 ; - ns1:mapsTo ns2:48021 . - -ns2:98230 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:19220 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:19220 ; + ns2:mapsTo ns4:48021 . + +ns4:98230 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:80276 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80276 . + ns2:cnx ns4:80276 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80276 . -ns2:98301 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:98301 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:23392 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:23392 . + ns2:cnx ns4:23392 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:23392 . -ns2:98452 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:98452 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:46293 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46293 ; - ns1:mapsTo ns2:52697 . - -ns2:98836 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:46293 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46293 ; + ns2:mapsTo ns4:52697 . + +ns4:98836 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:06594 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06594 . + ns2:cnx ns4:06594 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06594 . -ns2:99282 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:99282 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:18941 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18941 ; - ns1:mapsTo ns2:89238 . - -ns2:99477 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18941 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18941 ; + ns2:mapsTo ns4:89238 . + +ns4:99477 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:62481 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62481 ; - ns1:mapsTo ns2:53503 . - -ns2:99658 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:62481 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62481 ; + ns2:mapsTo ns4:53503 . + +ns4:99658 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:05062 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05062 . + ns2:cnx ns4:05062 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05062 . -ns2:99750 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:99750 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airOutlet" ; - ns1:cnx ns2:49614 ; - ns1:hasMedium ; - ns1:hasProperty ns2:28017 ; - ns1:isConnectionPointOf ns2:49614 ; - ns1:mapsTo ns2:69790 . - -ns2:99918 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:49614 ; + ns2:hasMedium ; + ns2:hasProperty ns4:28017 ; + ns2:isConnectionPointOf ns4:49614 ; + ns2:mapsTo ns4:69790 . + +ns4:99918 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:18055 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18055 ; - ns1:mapsTo ns2:53503 . - -ns2:00024 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18055 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18055 ; + ns2:mapsTo ns4:53503 . + +ns4:00024 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "00024" ; - ns1:cnx ns2:27754, - ns2:29599 ; - ns1:connectsThrough ns2:27754 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29599 . - -ns2:00845 a ns1:Connectable, - ns1:ConnectionPoint, - ns1:Equipment, - ns1:OutletConnectionPoint, - ns1:Sensor, - ns4:AirConnectionPoint ; + ns2:cnx ns4:27754, + ns4:29599 ; + ns2:connectsThrough ns4:27754 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29599 . + +ns4:00845 a ns2:Connectable, + ns2:ConnectionPoint, + ns2:Equipment, + ns2:OutletConnectionPoint, + ns2:Sensor, + ns3:AirConnectionPoint ; rdfs:label "Floor_6.RTU_9.Plenum.press_sens", "hw_coil.airOutlet" ; - ns1:cnx ns2:09200 ; - ns1:hasConnectionPoint ns2:09200 ; - ns1:hasMedium ; - ns1:hasObservationLocation ns2:06275 ; - ns1:hasProperty ns2:46589 ; - ns1:isConnectionPointOf ns2:09200 ; - ns1:mapsTo ns2:35121 ; - ns1:observes ns2:85308 . - -ns2:01697 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09200 ; + ns2:hasConnectionPoint ns4:09200 ; + ns2:hasMedium ; + ns2:hasObservationLocation ns4:06275 ; + ns2:hasProperty ns4:46589 ; + ns2:isConnectionPointOf ns4:09200 ; + ns2:mapsTo ns4:35121 ; + ns2:observes ns4:85308 . + +ns4:01697 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "01697" ; - ns1:cnx ns2:59512, - ns2:98159 ; - ns1:connectsThrough ns2:59512 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98159 . - -ns2:01718 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:59512, + ns4:98159 ; + ns2:connectsThrough ns4:59512 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98159 . + +ns4:01718 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "01718" ; - ns1:cnx ns2:05175, - ns2:42054 ; - ns1:connectsThrough ns2:42054 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05175 . - -ns2:02007 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05175, + ns4:42054 ; + ns2:connectsThrough ns4:42054 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05175 . + +ns4:02007 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "02007" ; - ns1:cnx ns2:05353, - ns2:70668 ; - ns1:connectsThrough ns2:70668 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05353 . - -ns2:02161 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05353, + ns4:70668 ; + ns2:connectsThrough ns4:70668 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05353 . + +ns4:02161 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "02161" ; - ns1:cnx ns2:28044, - ns2:46019 ; - ns1:connectsThrough ns2:28044 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46019 . - -ns2:02332 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:28044, + ns4:46019 ; + ns2:connectsThrough ns4:28044 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46019 . + +ns4:02332 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "02332" ; - ns1:cnx ns2:05353, - ns2:48815 ; - ns1:connectsThrough ns2:48815 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05353 . - -ns2:03863 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05353, + ns4:48815 ; + ns2:connectsThrough ns4:48815 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05353 . + +ns4:03863 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "03863" ; - ns1:cnx ns2:03342, - ns2:18693 ; - ns1:connectsThrough ns2:03342 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18693 . - -ns2:04219 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03342, + ns4:18693 ; + ns2:connectsThrough ns4:03342 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18693 . + +ns4:04219 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "04219" ; - ns1:cnx ns2:05101, - ns2:95914 ; - ns1:connectsThrough ns2:95914 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05101 . - -ns2:06301 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05101, + ns4:95914 ; + ns2:connectsThrough ns4:95914 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05101 . + +ns4:06301 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "06301" ; - ns1:cnx ns2:42308, - ns2:66983 ; - ns1:connectsThrough ns2:66983 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:42308 . - -ns2:06476 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42308, + ns4:66983 ; + ns2:connectsThrough ns4:66983 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:42308 . + +ns4:06476 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "06476" ; - ns1:cnx ns2:69111, - ns2:87912 ; - ns1:connectsThrough ns2:87912 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69111 . - -ns2:07708 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69111, + ns4:87912 ; + ns2:connectsThrough ns4:87912 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69111 . + +ns4:07708 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "07708" ; - ns1:cnx ns2:42308, - ns2:42481 ; - ns1:connectsThrough ns2:42481 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:42308 . - -ns2:08720 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42308, + ns4:42481 ; + ns2:connectsThrough ns4:42481 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:42308 . + +ns4:08720 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "08720" ; - ns1:cnx ns2:25798, - ns2:83890 ; - ns1:connectsThrough ns2:25798 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . - -ns2:09291 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25798, + ns4:83890 ; + ns2:connectsThrough ns4:25798 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . + +ns4:09291 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "09291" ; - ns1:cnx ns2:86986, - ns2:98159 ; - ns1:connectsThrough ns2:86986 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98159 . - -ns2:09315 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:86986, + ns4:98159 ; + ns2:connectsThrough ns4:86986 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98159 . + +ns4:09315 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "09315" ; - ns1:cnx ns2:42308, - ns2:81744 ; - ns1:connectsThrough ns2:81744 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:42308 . - -ns2:09473 a , - ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:42308, + ns4:81744 ; + ns2:connectsThrough ns4:81744 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:42308 . + +ns4:09473 a , + ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "diff_causality.differential_output" ; - ns1:produces ns2:51842 ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:09731 a ns1:Connectable, - ns1:ConnectionPoint, - ns1:Equipment, - ns1:InletConnectionPoint, - ns1:Sensor, - ns1:TemperatureSensor, - ns4:AirConnectionPoint ; + ns2:produces ns4:51842 ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:09731 a ns2:Connectable, + ns2:ConnectionPoint, + ns2:Equipment, + ns2:InletConnectionPoint, + ns2:Sensor, + ns2:TemperatureSensor, + ns3:AirConnectionPoint ; rdfs:label "cwc.r_in_temp", "supply_fan.airInlet" ; - ns1:cnx ns2:63295 ; - ns1:hasConnectionPoint ns2:63295 ; - ns1:hasMedium ; - ns1:hasObservationLocation ns2:55857 ; - ns1:isConnectionPointOf ns2:63295 ; - ns1:mapsTo ns2:04901 ; - ns1:observes ns2:04230 ; + ns2:cnx ns4:63295 ; + ns2:hasConnectionPoint ns4:63295 ; + ns2:hasMedium ; + ns2:hasObservationLocation ns4:55857 ; + ns2:isConnectionPointOf ns4:63295 ; + ns2:mapsTo ns4:04901 ; + ns2:observes ns4:04230 ; rdfs:comment "refrigerant temperature after coil" . -ns2:10397 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:10397 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "10397" ; - ns1:cnx ns2:29892, - ns2:42308 ; - ns1:connectsThrough ns2:29892 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:42308 . - -ns2:11204 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:29892, + ns4:42308 ; + ns2:connectsThrough ns4:29892 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:42308 . + +ns4:11204 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "11204" ; - ns1:cnx ns2:06275, - ns2:69552 ; - ns1:connectsThrough ns2:69552 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06275 . - -ns2:11687 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06275, + ns4:69552 ; + ns2:connectsThrough ns4:69552 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06275 . + +ns4:11687 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "11687" ; - ns1:cnx ns2:28911, - ns2:86286 ; - ns1:connectsThrough ns2:86286 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:28911 . - -ns2:12638 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:28911, + ns4:86286 ; + ns2:connectsThrough ns4:86286 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:28911 . + +ns4:12638 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "12638" ; - ns1:cnx ns2:06275, - ns2:66163 ; - ns1:connectsThrough ns2:66163 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06275 . - -ns2:12960 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06275, + ns4:66163 ; + ns2:connectsThrough ns4:66163 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06275 . + +ns4:12960 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "12960" ; - ns1:cnx ns2:05175, - ns2:86986 ; - ns1:connectsThrough ns2:86986 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05175 . - -ns2:13281 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05175, + ns4:86986 ; + ns2:connectsThrough ns4:86986 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05175 . + +ns4:13281 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "13281" ; - ns1:cnx ns2:28042, - ns2:50126 ; - ns1:connectsThrough ns2:28042 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50126 . - -ns2:14171 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:28042, + ns4:50126 ; + ns2:connectsThrough ns4:28042 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50126 . + +ns4:14171 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "14171" ; - ns1:cnx ns2:45908, - ns2:50126 ; - ns1:connectsThrough ns2:45908 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50126 . - -ns2:14968 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:45908, + ns4:50126 ; + ns2:connectsThrough ns4:45908 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50126 . + +ns4:14968 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "14968" ; - ns1:cnx ns2:44036, - ns2:97215 ; - ns1:connectsThrough ns2:97215 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:44036 . - -ns2:15408 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:44036, + ns4:97215 ; + ns2:connectsThrough ns4:97215 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:44036 . + +ns4:15408 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "15408" ; - ns1:cnx ns2:83890, - ns2:99042 ; - ns1:connectsThrough ns2:99042 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . - -ns2:15549 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:83890, + ns4:99042 ; + ns2:connectsThrough ns4:99042 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . + +ns4:15549 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "15549" ; - ns1:cnx ns2:10117, - ns2:18936 ; - ns1:connectsThrough ns2:18936 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10117 . - -ns2:15991 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:10117, + ns4:18936 ; + ns2:connectsThrough ns4:18936 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10117 . + +ns4:15991 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "15991" ; - ns1:cnx ns2:61942, - ns2:88028 ; - ns1:connectsThrough ns2:61942 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88028 . - -ns2:16633 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:61942, + ns4:88028 ; + ns2:connectsThrough ns4:61942 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88028 . + +ns4:16633 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "16633" ; - ns1:cnx ns2:50126, - ns2:77006 ; - ns1:connectsThrough ns2:77006 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50126 . - -ns2:17099 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:50126, + ns4:77006 ; + ns2:connectsThrough ns4:77006 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50126 . + +ns4:17099 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "17099" ; - ns1:cnx ns2:16551, - ns2:93276 ; - ns1:connectsThrough ns2:16551 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93276 . - -ns2:17608 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns2:RefrigerantConnectionPoint ; + ns2:cnx ns4:16551, + ns4:93276 ; + ns2:connectsThrough ns4:16551 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93276 . + +ns4:17608 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns4:RefrigerantConnectionPoint ; rdfs:label "cwc.refrigerantOutlet" ; - ns1:cnx ns2:57776 ; - ns1:hasMedium ns1:Fluid-Refrigerant ; - ns1:hasProperty ns2:73369 ; - ns1:isConnectionPointOf ns2:57776 . - -ns2:17687 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:57776 ; + ns2:hasMedium ns2:Fluid-Refrigerant ; + ns2:hasProperty ns4:73369 ; + ns2:isConnectionPointOf ns4:57776 . + +ns4:17687 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "17687" ; - ns1:cnx ns2:47474, - ns2:50126 ; - ns1:connectsThrough ns2:47474 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50126 . - -ns2:17765 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:47474, + ns4:50126 ; + ns2:connectsThrough ns4:47474 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50126 . + +ns4:17765 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "17765" ; - ns1:cnx ns2:11777, - ns2:83890 ; - ns1:connectsThrough ns2:11777 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . - -ns2:17862 a ns1:ActuatableProperty, - ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:11777, + ns4:83890 ; + ns2:connectsThrough ns4:11777 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . + +ns4:17862 a ns2:ActuatableProperty, + ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:57017 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:57017 ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:18214 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:57017 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:57017 ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:18214 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "18214" ; - ns1:cnx ns2:20425, - ns2:88028 ; - ns1:connectsThrough ns2:20425 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88028 . - -ns2:18358 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:20425, + ns4:88028 ; + ns2:connectsThrough ns4:20425 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88028 . + +ns4:18358 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "18358" ; - ns1:cnx ns2:05353, - ns2:29089 ; - ns1:connectsThrough ns2:29089 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05353 . - -ns2:19216 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05353, + ns4:29089 ; + ns2:connectsThrough ns4:29089 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05353 . + +ns4:19216 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "19216" ; - ns1:cnx ns2:37912, - ns2:50126 ; - ns1:connectsThrough ns2:37912 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50126 . - -ns2:19898 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37912, + ns4:50126 ; + ns2:connectsThrough ns4:37912 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50126 . + +ns4:19898 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "19898" ; - ns1:cnx ns2:37652, - ns2:83890 ; - ns1:connectsThrough ns2:37652 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . - -ns2:20269 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37652, + ns4:83890 ; + ns2:connectsThrough ns4:37652 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . + +ns4:20269 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "20269" ; - ns1:cnx ns2:05101, - ns2:45908 ; - ns1:connectsThrough ns2:45908 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05101 . - -ns2:22291 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05101, + ns4:45908 ; + ns2:connectsThrough ns4:45908 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05101 . + +ns4:22291 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "22291" ; - ns1:cnx ns2:46019, - ns2:83759 ; - ns1:connectsThrough ns2:83759 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46019 . - -ns2:22726 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:46019, + ns4:83759 ; + ns2:connectsThrough ns4:83759 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46019 . + +ns4:22726 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "22726" ; - ns1:cnx ns2:46019, - ns2:50484 ; - ns1:connectsThrough ns2:50484 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46019 . - -ns2:23378 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:46019, + ns4:50484 ; + ns2:connectsThrough ns4:50484 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46019 . + +ns4:23378 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "23378" ; - ns1:cnx ns2:28911, - ns2:39361 ; - ns1:connectsThrough ns2:39361 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:28911 . - -ns2:23453 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:28911, + ns4:39361 ; + ns2:connectsThrough ns4:39361 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:28911 . + +ns4:23453 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "23453" ; - ns1:cnx ns2:80586, - ns2:93276 ; - ns1:connectsThrough ns2:80586 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93276 . - -ns2:23712 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:80586, + ns4:93276 ; + ns2:connectsThrough ns4:80586 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93276 . + +ns4:23712 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "23712" ; - ns1:cnx ns2:18158, - ns2:50126 ; - ns1:connectsThrough ns2:18158 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50126 . - -ns2:23780 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18158, + ns4:50126 ; + ns2:connectsThrough ns4:18158 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50126 . + +ns4:23780 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_6.outsideAirInlet" ; - ns1:cnx ns2:55672 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:55672 . - -ns2:23884 a ns1:ActuatableProperty, - ns1:PhysicalSpace, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand ; + ns2:cnx ns4:55672 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:55672 . + +ns4:23884 a ns2:ActuatableProperty, + ns2:PhysicalSpace, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand ; rdfs:label "1630" ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:24918 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; +ns4:24918 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "24918" ; - ns1:cnx ns2:16070, - ns2:69111 ; - ns1:connectsThrough ns2:16070 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69111 . - -ns2:25265 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16070, + ns4:69111 ; + ns2:connectsThrough ns4:16070 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69111 . + +ns4:25265 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "25265" ; - ns1:cnx ns2:05175, - ns2:73994 ; - ns1:connectsThrough ns2:73994 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05175 . - -ns2:25300 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05175, + ns4:73994 ; + ns2:connectsThrough ns4:73994 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05175 . + +ns4:25300 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "25300" ; - ns1:cnx ns2:07051, - ns2:42308 ; - ns1:connectsThrough ns2:07051 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:42308 . - -ns2:25532 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07051, + ns4:42308 ; + ns2:connectsThrough ns4:07051 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:42308 . + +ns4:25532 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "25532" ; - ns1:cnx ns2:77070, - ns2:93889 ; - ns1:connectsThrough ns2:93889 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77070 . - -ns2:25549 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:77070, + ns4:93889 ; + ns2:connectsThrough ns4:93889 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77070 . + +ns4:25549 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "25549" ; - ns1:cnx ns2:28911, - ns2:55685 ; - ns1:connectsThrough ns2:55685 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:28911 . - -ns2:26283 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:28911, + ns4:55685 ; + ns2:connectsThrough ns4:55685 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:28911 . + +ns4:26283 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "26283" ; - ns1:cnx ns2:69111, - ns2:95463 ; - ns1:connectsThrough ns2:95463 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69111 . - -ns2:27032 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69111, + ns4:95463 ; + ns2:connectsThrough ns4:95463 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69111 . + +ns4:27032 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "27032" ; - ns1:cnx ns2:50126, - ns2:71209 ; - ns1:connectsThrough ns2:71209 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50126 . - -ns2:27066 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:50126, + ns4:71209 ; + ns2:connectsThrough ns4:71209 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50126 . + +ns4:27066 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "27066" ; - ns1:cnx ns2:33232, - ns2:46019 ; - ns1:connectsThrough ns2:33232 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46019 . - -ns2:27741 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:33232, + ns4:46019 ; + ns2:connectsThrough ns4:33232 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46019 . + +ns4:27741 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "27741" ; - ns1:cnx ns2:05353, - ns2:70337 ; - ns1:connectsThrough ns2:70337 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05353 . + ns2:cnx ns4:05353, + ns4:70337 ; + ns2:connectsThrough ns4:70337 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05353 . -ns2:29710 a ns1:PhysicalSpace ; +ns4:29710 a ns2:PhysicalSpace ; rdfs:label "0655" . -ns2:30170 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:30170 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "30170" ; - ns1:cnx ns2:06275, - ns2:48548 ; - ns1:connectsThrough ns2:48548 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06275 . - -ns2:31123 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06275, + ns4:48548 ; + ns2:connectsThrough ns4:48548 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06275 . + +ns4:31123 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "31123" ; - ns1:cnx ns2:83975, - ns2:93276 ; - ns1:connectsThrough ns2:83975 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93276 . - -ns2:31827 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:83975, + ns4:93276 ; + ns2:connectsThrough ns4:83975 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93276 . + +ns4:31827 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "31827" ; - ns1:cnx ns2:28817, - ns2:29599 ; - ns1:connectsThrough ns2:28817 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29599 . - -ns2:31834 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:28817, + ns4:29599 ; + ns2:connectsThrough ns4:28817 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29599 . + +ns4:31834 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "31834" ; - ns1:cnx ns2:07591, - ns2:10117 ; - ns1:connectsThrough ns2:07591 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10117 . - -ns2:32049 a ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:07591, + ns4:10117 ; + ns2:connectsThrough ns4:07591 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10117 . + +ns4:32049 a ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "32049" ; - ns1:cnx ns2:71928, - ns2:98159 ; - ns1:connectsThrough ns2:71928 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98159 . - -ns2:33468 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:71928, + ns4:98159 ; + ns2:connectsThrough ns4:71928 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98159 . + +ns4:33468 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "33468" ; - ns1:cnx ns2:16718, - ns2:93276 ; - ns1:connectsThrough ns2:16718 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93276 . - -ns2:33614 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16718, + ns4:93276 ; + ns2:connectsThrough ns4:16718 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93276 . + +ns4:33614 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "33614" ; - ns1:cnx ns2:06275, - ns2:64179 ; - ns1:connectsThrough ns2:64179 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06275 . - -ns2:33657 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06275, + ns4:64179 ; + ns2:connectsThrough ns4:64179 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06275 . + +ns4:33657 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "33657" ; - ns1:cnx ns2:53271, - ns2:98159 ; - ns1:connectsThrough ns2:53271 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98159 . - -ns2:34654 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:53271, + ns4:98159 ; + ns2:connectsThrough ns4:53271 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98159 . + +ns4:34654 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "34654" ; - ns1:cnx ns2:16958, - ns2:83890 ; - ns1:connectsThrough ns2:16958 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . + ns2:cnx ns4:16958, + ns4:83890 ; + ns2:connectsThrough ns4:16958 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . -ns2:34667 a ns1:PhysicalSpace ; +ns4:34667 a ns2:PhysicalSpace ; rdfs:label "1571" . -ns2:35307 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:35307 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "35307" ; - ns1:cnx ns2:29599, - ns2:33279 ; - ns1:connectsThrough ns2:33279 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29599 . + ns2:cnx ns4:29599, + ns4:33279 ; + ns2:connectsThrough ns4:33279 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29599 . -ns2:35366 a ns1:PhysicalSpace ; +ns4:35366 a ns2:PhysicalSpace ; rdfs:label "4223" . -ns2:36177 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; +ns4:36177 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "36177" ; - ns1:cnx ns2:71687, - ns2:98159 ; - ns1:connectsThrough ns2:71687 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98159 . - -ns2:36302 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:71687, + ns4:98159 ; + ns2:connectsThrough ns4:71687 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98159 . + +ns4:36302 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "36302" ; - ns1:cnx ns2:05101, - ns2:70319 ; - ns1:connectsThrough ns2:70319 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05101 . - -ns2:36341 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05101, + ns4:70319 ; + ns2:connectsThrough ns4:70319 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05101 . + +ns4:36341 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "36341" ; - ns1:cnx ns2:05175, - ns2:32081 ; - ns1:connectsThrough ns2:32081 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05175 . - -ns2:36739 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05175, + ns4:32081 ; + ns2:connectsThrough ns4:32081 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05175 . + +ns4:36739 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "36739" ; - ns1:cnx ns2:88028, - ns2:97655 ; - ns1:connectsThrough ns2:97655 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88028 . - -ns2:37517 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:88028, + ns4:97655 ; + ns2:connectsThrough ns4:97655 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88028 . + +ns4:37517 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_3.exhaustAirOutlet" ; - ns1:cnx ns2:69576 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69576 . + ns2:cnx ns4:69576 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69576 . -ns2:38633 a ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:38633 a ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "38633" ; - ns1:cnx ns2:33562, - ns2:46019 ; - ns1:connectsThrough ns2:33562 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46019 . - -ns2:39247 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:33562, + ns4:46019 ; + ns2:connectsThrough ns4:33562 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46019 . + +ns4:39247 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "39247" ; - ns1:cnx ns2:88028, - ns2:99057 ; - ns1:connectsThrough ns2:99057 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88028 . - -ns2:40142 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:88028, + ns4:99057 ; + ns2:connectsThrough ns4:99057 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88028 . + +ns4:40142 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "40142" ; - ns1:cnx ns2:25473, - ns2:28911 ; - ns1:connectsThrough ns2:25473 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:28911 . + ns2:cnx ns4:25473, + ns4:28911 ; + ns2:connectsThrough ns4:25473 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:28911 . -ns2:40192 a ns1:PhysicalSpace ; +ns4:40192 a ns2:PhysicalSpace ; rdfs:label "5053" . -ns2:40219 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:40219 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "40219" ; - ns1:cnx ns2:00496, - ns2:83890 ; - ns1:connectsThrough ns2:00496 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . - -ns2:40367 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:00496, + ns4:83890 ; + ns2:connectsThrough ns4:00496 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . + +ns4:40367 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "40367" ; - ns1:cnx ns2:05353, - ns2:87484 ; - ns1:connectsThrough ns2:87484 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05353 . - -ns2:40402 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05353, + ns4:87484 ; + ns2:connectsThrough ns4:87484 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05353 . + +ns4:40402 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "40402" ; - ns1:cnx ns2:54382, - ns2:69111 ; - ns1:connectsThrough ns2:54382 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69111 . - -ns2:40757 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint, - ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:Percent ; + ns2:cnx ns4:54382, + ns4:69111 ; + ns2:connectsThrough ns4:54382 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69111 . + +ns4:40757 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint, + ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:Percent ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:24344 ; - ns1:hasMedium ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:24344 ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:41197 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:24344 ; + ns2:hasMedium ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:24344 ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:41197 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "41197" ; - ns1:cnx ns2:77070, - ns2:97029 ; - ns1:connectsThrough ns2:97029 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77070 . - -ns2:41260 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:77070, + ns4:97029 ; + ns2:connectsThrough ns4:97029 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77070 . + +ns4:41260 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_5.outsideAirInlet" ; - ns1:cnx ns2:05785 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05785 . + ns2:cnx ns4:05785 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05785 . -ns2:41699 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:41699 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "41699" ; - ns1:cnx ns2:69111, - ns2:72322 ; - ns1:connectsThrough ns2:72322 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69111 . - -ns2:41846 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69111, + ns4:72322 ; + ns2:connectsThrough ns4:72322 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69111 . + +ns4:41846 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_5.outsideAirInlet" ; - ns1:cnx ns2:69576 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69576 . + ns2:cnx ns4:69576 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69576 . -ns2:42074 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint ; +ns4:42074 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint ; rdfs:label "42074" ; - ns1:cnx ns2:50126, - ns2:88574 ; - ns1:connectsThrough ns2:88574 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50126 . - -ns2:42397 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:50126, + ns4:88574 ; + ns2:connectsThrough ns4:88574 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50126 . + +ns4:42397 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "42397" ; - ns1:cnx ns2:10117, - ns2:29115 ; - ns1:connectsThrough ns2:29115 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10117 . - -ns2:43864 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:10117, + ns4:29115 ; + ns2:connectsThrough ns4:29115 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10117 . + +ns4:43864 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_4.exhaustAirOutlet" ; - ns1:cnx ns2:55672 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:55672 . + ns2:cnx ns4:55672 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:55672 . -ns2:45401 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:45401 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "45401" ; - ns1:cnx ns2:05101, - ns2:95073 ; - ns1:connectsThrough ns2:95073 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05101 . - -ns2:47134 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05101, + ns4:95073 ; + ns2:connectsThrough ns4:95073 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05101 . + +ns4:47134 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "47134" ; - ns1:cnx ns2:21786, - ns2:46019 ; - ns1:connectsThrough ns2:21786 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46019 . - -ns2:48230 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint ; + ns2:cnx ns4:21786, + ns4:46019 ; + ns2:connectsThrough ns4:21786 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46019 . + +ns4:48230 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint ; rdfs:label "48230" ; - ns1:cnx ns2:10117, - ns2:25566 ; - ns1:connectsThrough ns2:25566 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10117 . - -ns2:48870 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:10117, + ns4:25566 ; + ns2:connectsThrough ns4:25566 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10117 . + +ns4:48870 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "48870" ; - ns1:cnx ns2:37912, - ns2:77070 ; - ns1:connectsThrough ns2:37912 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77070 . - -ns2:49150 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37912, + ns4:77070 ; + ns2:connectsThrough ns4:37912 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77070 . + +ns4:49150 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "49150" ; - ns1:cnx ns2:16070, - ns2:83890 ; - ns1:connectsThrough ns2:16070 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . - -ns2:49391 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16070, + ns4:83890 ; + ns2:connectsThrough ns4:16070 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . + +ns4:49391 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "49391" ; - ns1:cnx ns2:05175, - ns2:97276 ; - ns1:connectsThrough ns2:97276 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05175 . - -ns2:49573 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05175, + ns4:97276 ; + ns2:connectsThrough ns4:97276 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05175 . + +ns4:49573 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "49573" ; - ns1:cnx ns2:34554, - ns2:77070 ; - ns1:connectsThrough ns2:34554 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77070 . - -ns2:49899 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns2:RefrigerantConnectionPoint ; + ns2:cnx ns4:34554, + ns4:77070 ; + ns2:connectsThrough ns4:34554 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77070 . + +ns4:49899 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns4:RefrigerantConnectionPoint ; rdfs:label "cwc.refrigerantInlet" ; - ns1:cnx ns2:57776 ; - ns1:hasMedium ns1:Fluid-Refrigerant ; - ns1:hasProperty ns2:80928 ; - ns1:isConnectionPointOf ns2:57776 . - -ns2:50604 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:57776 ; + ns2:hasMedium ns2:Fluid-Refrigerant ; + ns2:hasProperty ns4:80928 ; + ns2:isConnectionPointOf ns4:57776 . + +ns4:50604 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "50604" ; - ns1:cnx ns2:31065, - ns2:98159 ; - ns1:connectsThrough ns2:31065 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98159 . + ns2:cnx ns4:31065, + ns4:98159 ; + ns2:connectsThrough ns4:31065 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98159 . -ns2:50612 a ns1:PhysicalSpace ; +ns4:50612 a ns2:PhysicalSpace ; rdfs:label "2505" . -ns2:51208 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:51208 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "51208" ; - ns1:cnx ns2:28842, - ns2:93276 ; - ns1:connectsThrough ns2:28842 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93276 . - -ns2:52083 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:28842, + ns4:93276 ; + ns2:connectsThrough ns4:28842 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93276 . + +ns4:52083 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "52083" ; - ns1:cnx ns2:28911, - ns2:85171 ; - ns1:connectsThrough ns2:85171 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:28911 . - -ns2:52516 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns2:RefrigerantConnectionPoint ; + ns2:cnx ns4:28911, + ns4:85171 ; + ns2:connectsThrough ns4:85171 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:28911 . + +ns4:52516 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns4:RefrigerantConnectionPoint ; rdfs:label "cwc.refrigerantInlet" ; - ns1:cnx ns2:45817 ; - ns1:hasMedium ns1:Fluid-Refrigerant ; - ns1:hasProperty ns2:30453 ; - ns1:isConnectionPointOf ns2:45817 . - -ns2:53361 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns2:RefrigerantConnectionPoint ; + ns2:cnx ns4:45817 ; + ns2:hasMedium ns2:Fluid-Refrigerant ; + ns2:hasProperty ns4:30453 ; + ns2:isConnectionPointOf ns4:45817 . + +ns4:53361 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns4:RefrigerantConnectionPoint ; rdfs:label "cwc.refrigerantInlet" ; - ns1:cnx ns2:92865 ; - ns1:hasMedium ns1:Fluid-Refrigerant ; - ns1:hasProperty ns2:78652 ; - ns1:isConnectionPointOf ns2:92865 . - -ns2:54539 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:92865 ; + ns2:hasMedium ns2:Fluid-Refrigerant ; + ns2:hasProperty ns4:78652 ; + ns2:isConnectionPointOf ns4:92865 . + +ns4:54539 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "54539" ; - ns1:cnx ns2:29599, - ns2:92535 ; - ns1:connectsThrough ns2:92535 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29599 . - -ns2:54602 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:29599, + ns4:92535 ; + ns2:connectsThrough ns4:92535 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29599 . + +ns4:54602 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "54602" ; - ns1:cnx ns2:42308, - ns2:42650 ; - ns1:connectsThrough ns2:42650 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:42308 . - -ns2:54971 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42308, + ns4:42650 ; + ns2:connectsThrough ns4:42650 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:42308 . + +ns4:54971 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "54971" ; - ns1:cnx ns2:88028, - ns2:89750 ; - ns1:connectsThrough ns2:89750 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88028 . - -ns2:55180 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:88028, + ns4:89750 ; + ns2:connectsThrough ns4:89750 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88028 . + +ns4:55180 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "55180" ; - ns1:cnx ns2:53655, - ns2:69111 ; - ns1:connectsThrough ns2:53655 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69111 . - -ns2:55857 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns2:RefrigerantConnectionPoint ; + ns2:cnx ns4:53655, + ns4:69111 ; + ns2:connectsThrough ns4:53655 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69111 . + +ns4:55857 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns4:RefrigerantConnectionPoint ; rdfs:label "cwc.refrigerantOutlet" ; - ns1:cnx ns2:92865 ; - ns1:hasMedium ns1:Fluid-Refrigerant ; - ns1:hasProperty ns2:04230 ; - ns1:isConnectionPointOf ns2:92865 . + ns2:cnx ns4:92865 ; + ns2:hasMedium ns2:Fluid-Refrigerant ; + ns2:hasProperty ns4:04230 ; + ns2:isConnectionPointOf ns4:92865 . -ns2:56015 a ns1:PhysicalSpace ; +ns4:56015 a ns2:PhysicalSpace ; rdfs:label "0652" . -ns2:57392 a ns1:ConnectionPoint, - ns1:InletConnectionPoint ; +ns4:57392 a ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "57392" ; - ns1:cnx ns2:09278, - ns2:93276 ; - ns1:connectsThrough ns2:09278 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93276 . - -ns2:57775 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09278, + ns4:93276 ; + ns2:connectsThrough ns4:09278 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93276 . + +ns4:57775 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "57775" ; - ns1:cnx ns2:09596, - ns2:88028 ; - ns1:connectsThrough ns2:09596 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88028 . - -ns2:59640 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint ; + ns2:cnx ns4:09596, + ns4:88028 ; + ns2:connectsThrough ns4:09596 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88028 . + +ns4:59640 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint ; rdfs:label "59640" ; - ns1:cnx ns2:34986, - ns2:77070 ; - ns1:connectsThrough ns2:34986 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77070 . - -ns2:59934 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34986, + ns4:77070 ; + ns2:connectsThrough ns4:34986 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77070 . + +ns4:59934 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "59934" ; - ns1:cnx ns2:06275, - ns2:58341 ; - ns1:connectsThrough ns2:58341 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06275 . - -ns2:60443 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06275, + ns4:58341 ; + ns2:connectsThrough ns4:58341 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06275 . + +ns4:60443 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "60443" ; - ns1:cnx ns2:05101, - ns2:07095 ; - ns1:connectsThrough ns2:07095 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05101 . - -ns2:60599 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05101, + ns4:07095 ; + ns2:connectsThrough ns4:07095 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05101 . + +ns4:60599 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_9.exhaustAirOutlet" ; - ns1:cnx ns2:05785 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05785 . + ns2:cnx ns4:05785 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05785 . -ns2:60850 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:60850 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "60850" ; - ns1:cnx ns2:05101, - ns2:70045 ; - ns1:connectsThrough ns2:70045 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05101 . + ns2:cnx ns4:05101, + ns4:70045 ; + ns2:connectsThrough ns4:70045 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05101 . -ns2:60876 a ns1:PhysicalSpace ; +ns4:60876 a ns2:PhysicalSpace ; rdfs:label "8900" . -ns2:63092 a , - ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns1:PhysicalSpace ; +ns4:63092 a , + ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns2:PhysicalSpace ; rdfs:label "G-93.enclosure", "hw_valve.linkageInlet" ; - ns1:cnx ns2:44942 ; - ns1:contains ns2:92225 ; - ns1:encloses ns2:76100 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:44942 . - -ns2:64698 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:44942 ; + ns2:contains ns4:92225 ; + ns2:encloses ns4:76100 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:44942 . + +ns4:64698 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "64698" ; - ns1:cnx ns2:06275, - ns2:64380 ; - ns1:connectsThrough ns2:64380 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06275 . - -ns2:66460 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06275, + ns4:64380 ; + ns2:connectsThrough ns4:64380 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06275 . + +ns4:66460 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "66460" ; - ns1:cnx ns2:77139, - ns2:83890 ; - ns1:connectsThrough ns2:77139 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . - -ns2:66606 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:77139, + ns4:83890 ; + ns2:connectsThrough ns4:77139 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . + +ns4:66606 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "66606" ; - ns1:cnx ns2:50126, - ns2:88441 ; - ns1:connectsThrough ns2:88441 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50126 . - -ns2:66870 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:50126, + ns4:88441 ; + ns2:connectsThrough ns4:88441 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50126 . + +ns4:66870 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "66870" ; - ns1:cnx ns2:18257, - ns2:98159 ; - ns1:connectsThrough ns2:18257 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98159 . - -ns2:67251 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18257, + ns4:98159 ; + ns2:connectsThrough ns4:18257 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98159 . + +ns4:67251 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "67251" ; - ns1:cnx ns2:05353, - ns2:90835 ; - ns1:connectsThrough ns2:90835 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05353 . - -ns2:67959 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint ; + ns2:cnx ns4:05353, + ns4:90835 ; + ns2:connectsThrough ns4:90835 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05353 . + +ns4:67959 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint ; rdfs:label "67959" ; - ns1:cnx ns2:30594, - ns2:88028 ; - ns1:connectsThrough ns2:30594 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88028 . - -ns2:69060 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:30594, + ns4:88028 ; + ns2:connectsThrough ns4:30594 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88028 . + +ns4:69060 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "69060" ; - ns1:cnx ns2:05672, - ns2:98159 ; - ns1:connectsThrough ns2:05672 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98159 . - -ns2:69174 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05672, + ns4:98159 ; + ns2:connectsThrough ns4:05672 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98159 . + +ns4:69174 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "69174" ; - ns1:cnx ns2:05101, - ns2:65267 ; - ns1:connectsThrough ns2:65267 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05101 . - -ns2:70362 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05101, + ns4:65267 ; + ns2:connectsThrough ns4:65267 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05101 . + +ns4:70362 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "70362" ; - ns1:cnx ns2:05175, - ns2:57984 ; - ns1:connectsThrough ns2:57984 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05175 . - -ns2:71652 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05175, + ns4:57984 ; + ns2:connectsThrough ns4:57984 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05175 . + +ns4:71652 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_1.outsideAirInlet" ; - ns1:cnx ns2:67780 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:67780 . + ns2:cnx ns4:67780 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:67780 . -ns2:72190 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:72190 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "72190" ; - ns1:cnx ns2:19566, - ns2:93276 ; - ns1:connectsThrough ns2:19566 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93276 . - -ns2:72478 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:19566, + ns4:93276 ; + ns2:connectsThrough ns4:19566 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93276 . + +ns4:72478 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "72478" ; - ns1:cnx ns2:05353, - ns2:83065 ; - ns1:connectsThrough ns2:83065 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05353 . - -ns2:72525 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05353, + ns4:83065 ; + ns2:connectsThrough ns4:83065 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05353 . + +ns4:72525 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "72525" ; - ns1:cnx ns2:43211, - ns2:88028 ; - ns1:connectsThrough ns2:43211 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88028 . - -ns2:72880 a ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:43211, + ns4:88028 ; + ns2:connectsThrough ns4:43211 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88028 . + +ns4:72880 a ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "72880" ; - ns1:cnx ns2:69401, - ns2:83890 ; - ns1:connectsThrough ns2:69401 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . - -ns2:73303 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69401, + ns4:83890 ; + ns2:connectsThrough ns4:69401 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . + +ns4:73303 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "73303" ; - ns1:cnx ns2:05175, - ns2:86102 ; - ns1:connectsThrough ns2:86102 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05175 . - -ns2:75031 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05175, + ns4:86102 ; + ns2:connectsThrough ns4:86102 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05175 . + +ns4:75031 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "75031" ; - ns1:cnx ns2:42308, - ns2:52944 ; - ns1:connectsThrough ns2:52944 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:42308 . - -ns2:75519 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42308, + ns4:52944 ; + ns2:connectsThrough ns4:52944 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:42308 . + +ns4:75519 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "75519" ; - ns1:cnx ns2:03342, - ns2:03605 ; - ns1:connectsThrough ns2:03342 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03605 . - -ns2:75528 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns1:PhysicalSpace, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03342, + ns4:03605 ; + ns2:connectsThrough ns4:03342 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03605 . + +ns4:75528 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns2:PhysicalSpace, + ns3:AirConnectionPoint ; rdfs:label "1380C", "fan.airOutlet" ; - ns1:cnx ns2:07222 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:07222 ; - ns1:mapsTo ns2:98308 . - -ns2:76313 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07222 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:07222 ; + ns2:mapsTo ns4:98308 . + +ns4:76313 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "76313" ; - ns1:cnx ns2:83759, - ns2:93276 ; - ns1:connectsThrough ns2:83759 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93276 . - -ns2:76342 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:83759, + ns4:93276 ; + ns2:connectsThrough ns4:83759 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93276 . + +ns4:76342 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "76342" ; - ns1:cnx ns2:57605, - ns2:83890 ; - ns1:connectsThrough ns2:57605 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . - -ns2:78283 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:57605, + ns4:83890 ; + ns2:connectsThrough ns4:57605 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . + +ns4:78283 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "78283" ; - ns1:cnx ns2:06275, - ns2:59800 ; - ns1:connectsThrough ns2:59800 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06275 . - -ns2:78346 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns2:RefrigerantConnectionPoint ; + ns2:cnx ns4:06275, + ns4:59800 ; + ns2:connectsThrough ns4:59800 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06275 . + +ns4:78346 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns4:RefrigerantConnectionPoint ; rdfs:label "cwc.refrigerantInlet" ; - ns1:cnx ns2:47395 ; - ns1:hasMedium ns1:Fluid-Refrigerant ; - ns1:hasProperty ns2:95660 ; - ns1:isConnectionPointOf ns2:47395 . - -ns2:82486 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:47395 ; + ns2:hasMedium ns2:Fluid-Refrigerant ; + ns2:hasProperty ns4:95660 ; + ns2:isConnectionPointOf ns4:47395 . + +ns4:82486 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "82486" ; - ns1:cnx ns2:29599, - ns2:32816 ; - ns1:connectsThrough ns2:32816 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29599 . - -ns2:82983 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:29599, + ns4:32816 ; + ns2:connectsThrough ns4:32816 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29599 . + +ns4:82983 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_2.exhaustAirOutlet" ; - ns1:cnx ns2:67780 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:67780 . + ns2:cnx ns4:67780 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:67780 . -ns2:83083 a ns1:PhysicalSpace ; +ns4:83083 a ns2:PhysicalSpace ; rdfs:label "3418" . -ns2:84896 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; +ns4:84896 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "84896" ; - ns1:cnx ns2:59800, - ns2:77070 ; - ns1:connectsThrough ns2:59800 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77070 . - -ns2:85270 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:59800, + ns4:77070 ; + ns2:connectsThrough ns4:59800 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77070 . + +ns4:85270 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "85270" ; - ns1:cnx ns2:27754, - ns2:46019 ; - ns1:connectsThrough ns2:27754 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46019 . - -ns2:85482 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:27754, + ns4:46019 ; + ns2:connectsThrough ns4:27754 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46019 . + +ns4:85482 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "85482" ; - ns1:cnx ns2:29599, - ns2:57735 ; - ns1:connectsThrough ns2:57735 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29599 . - -ns2:86369 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns2:RefrigerantConnectionPoint ; + ns2:cnx ns4:29599, + ns4:57735 ; + ns2:connectsThrough ns4:57735 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29599 . + +ns4:86369 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns4:RefrigerantConnectionPoint ; rdfs:label "cwc.refrigerantOutlet" ; - ns1:cnx ns2:47395 ; - ns1:hasMedium ns1:Fluid-Refrigerant ; - ns1:hasProperty ns2:67933 ; - ns1:isConnectionPointOf ns2:47395 . - -ns2:86658 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:47395 ; + ns2:hasMedium ns2:Fluid-Refrigerant ; + ns2:hasProperty ns4:67933 ; + ns2:isConnectionPointOf ns4:47395 . + +ns4:86658 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "86658" ; - ns1:cnx ns2:71687, - ns2:83890 ; - ns1:connectsThrough ns2:71687 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . - -ns2:87516 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:71687, + ns4:83890 ; + ns2:connectsThrough ns4:71687 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . + +ns4:87516 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "87516" ; - ns1:cnx ns2:46019, - ns2:56473 ; - ns1:connectsThrough ns2:56473 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46019 . - -ns2:87645 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:46019, + ns4:56473 ; + ns2:connectsThrough ns4:56473 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46019 . + +ns4:87645 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "87645" ; - ns1:cnx ns2:10117, - ns2:93128 ; - ns1:connectsThrough ns2:93128 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10117 . - -ns2:88792 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:10117, + ns4:93128 ; + ns2:connectsThrough ns4:93128 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10117 . + +ns4:88792 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "88792" ; - ns1:cnx ns2:50126, - ns2:54936 ; - ns1:connectsThrough ns2:54936 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50126 . - -ns2:88796 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:50126, + ns4:54936 ; + ns2:connectsThrough ns4:54936 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50126 . + +ns4:88796 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "88796" ; - ns1:cnx ns2:07088, - ns2:88028 ; - ns1:connectsThrough ns2:07088 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88028 . + ns2:cnx ns4:07088, + ns4:88028 ; + ns2:connectsThrough ns4:07088 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88028 . -ns2:90387 a ns1:PhysicalSpace ; +ns4:90387 a ns2:PhysicalSpace ; rdfs:label "3500" . -ns2:90686 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; +ns4:90686 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "90686" ; - ns1:cnx ns2:39361, - ns2:93276 ; - ns1:connectsThrough ns2:39361 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93276 . - -ns2:91202 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:39361, + ns4:93276 ; + ns2:connectsThrough ns4:39361 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93276 . + +ns4:91202 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "91202" ; - ns1:cnx ns2:07088, - ns2:10117 ; - ns1:connectsThrough ns2:07088 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10117 . - -ns2:91232 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07088, + ns4:10117 ; + ns2:connectsThrough ns4:07088 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10117 . + +ns4:91232 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "91232" ; - ns1:cnx ns2:12423, - ns2:77070 ; - ns1:connectsThrough ns2:12423 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77070 . - -ns2:91896 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:12423, + ns4:77070 ; + ns2:connectsThrough ns4:12423 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77070 . + +ns4:91896 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "91896" ; - ns1:cnx ns2:25887, - ns2:46019 ; - ns1:connectsThrough ns2:25887 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46019 . + ns2:cnx ns4:25887, + ns4:46019 ; + ns2:connectsThrough ns4:25887 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46019 . -ns2:92225 a ns1:PhysicalSpace ; +ns4:92225 a ns2:PhysicalSpace ; rdfs:label "3898" . -ns2:92871 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:92871 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "92871" ; - ns1:cnx ns2:60029, - ns2:77070 ; - ns1:connectsThrough ns2:60029 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77070 . - -ns2:92951 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:60029, + ns4:77070 ; + ns2:connectsThrough ns4:60029 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77070 . + +ns4:92951 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "92951" ; - ns1:cnx ns2:65261, - ns2:83890 ; - ns1:connectsThrough ns2:65261 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . - -ns2:96174 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:65261, + ns4:83890 ; + ns2:connectsThrough ns4:65261 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . + +ns4:96174 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "96174" ; - ns1:cnx ns2:16445, - ns2:98159 ; - ns1:connectsThrough ns2:16445 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98159 . - -ns2:97035 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16445, + ns4:98159 ; + ns2:connectsThrough ns4:16445 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98159 . + +ns4:97035 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "97035" ; - ns1:cnx ns2:24415, - ns2:88028 ; - ns1:connectsThrough ns2:24415 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88028 . - -ns2:97098 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:24415, + ns4:88028 ; + ns2:connectsThrough ns4:24415 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88028 . + +ns4:97098 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "97098" ; - ns1:cnx ns2:10117, - ns2:70337 ; - ns1:connectsThrough ns2:70337 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10117 . - -ns2:97222 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:10117, + ns4:70337 ; + ns2:connectsThrough ns4:70337 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10117 . + +ns4:97222 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "97222" ; - ns1:cnx ns2:28911, - ns2:38917 ; - ns1:connectsThrough ns2:38917 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:28911 . - -ns2:97435 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:28911, + ns4:38917 ; + ns2:connectsThrough ns4:38917 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:28911 . + +ns4:97435 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "97435" ; - ns1:cnx ns2:37324, - ns2:97215 ; - ns1:connectsThrough ns2:97215 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:37324 . - -ns2:97948 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37324, + ns4:97215 ; + ns2:connectsThrough ns4:97215 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:37324 . + +ns4:97948 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "97948" ; - ns1:cnx ns2:10117, - ns2:74580 ; - ns1:connectsThrough ns2:74580 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10117 . - -ns2:99160 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:10117, + ns4:74580 ; + ns2:connectsThrough ns4:74580 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10117 . + +ns4:99160 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "99160" ; - ns1:cnx ns2:69111, - ns2:78502 ; - ns1:connectsThrough ns2:78502 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69111 . - -ns2:99249 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69111, + ns4:78502 ; + ns2:connectsThrough ns4:78502 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69111 . + +ns4:99249 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "99249" ; - ns1:cnx ns2:69111, - ns2:98060 ; - ns1:connectsThrough ns2:98060 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69111 . - -ns2:99378 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69111, + ns4:98060 ; + ns2:connectsThrough ns4:98060 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69111 . + +ns4:99378 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "99378" ; - ns1:cnx ns2:28911, - ns2:34639 ; - ns1:connectsThrough ns2:34639 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:28911 . - -ns2:99527 a ns1:ActuatableProperty, - ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:PercentCommand, - ns4:Temperature ; + ns2:cnx ns4:28911, + ns4:34639 ; + ns2:connectsThrough ns4:34639 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:28911 . + +ns4:99527 a ns2:ActuatableProperty, + ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:PercentCommand, + ns3:Temperature ; rdfs:label "99527" ; - ns3:hasQuantityKind , + ns1:hasQuantityKind , ; - ns3:hasUnit , + ns1:hasUnit , . -ns2:99961 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:99961 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "99961" ; - ns1:cnx ns2:16934, - ns2:29599 ; - ns1:connectsThrough ns2:16934 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29599 . - -ns2:00287 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:16934, + ns4:29599 ; + ns2:connectsThrough ns4:16934 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29599 . + +ns4:00287 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:09638, - ns2:48919 ; - ns1:connectsThrough ns2:48919 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09638 . - -ns2:00319 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09638, + ns4:48919 ; + ns2:connectsThrough ns4:48919 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09638 . + +ns4:00319 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-6.zone.supplyInlet" ; - ns1:cnx ns2:12364, - ns2:80151 ; - ns1:connectsThrough ns2:12364 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80151 . - -ns2:00445 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:12364, + ns4:80151 ; + ns2:connectsThrough ns4:12364 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80151 . + +ns4:00445 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-9.zone.returnOutlet" ; - ns1:cnx ns2:26040, - ns2:85171 ; - ns1:connectsThrough ns2:85171 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:26040 . - -ns2:00459 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:26040, + ns4:85171 ; + ns2:connectsThrough ns4:85171 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:26040 . + +ns4:00459 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:05619, - ns2:24513 ; - ns1:connectsThrough ns2:24513 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05619 . - -ns2:00617 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:05619, + ns4:24513 ; + ns2:connectsThrough ns4:24513 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05619 . + +ns4:00617 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:30993, - ns2:87570 ; - ns1:connectsThrough ns2:30993 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87570 . - -ns2:01014 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:30993, + ns4:87570 ; + ns2:connectsThrough ns4:30993 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87570 . + +ns4:01014 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:58818, - ns2:73024 ; - ns1:connectsThrough ns2:58818 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73024 . - -ns2:01218 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:58818, + ns4:73024 ; + ns2:connectsThrough ns4:58818 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73024 . + +ns4:01218 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "mixed_air_damper.airInlet" ; - ns1:cnx ns2:31173, - ns2:90476 ; - ns1:connectsThrough ns2:90476 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:31173 . - -ns2:01401 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:31173, + ns4:90476 ; + ns2:connectsThrough ns4:90476 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:31173 . + +ns4:01401 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:21333, - ns2:44594 ; - ns1:connectsThrough ns2:21333 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:44594 . - -ns2:01882 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:21333, + ns4:44594 ; + ns2:connectsThrough ns4:21333 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:44594 . + +ns4:01882 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_damper.airOutlet" ; - ns1:cnx ns2:53679, - ns2:56341 ; - ns1:connectsThrough ns2:56341 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:53679 . - -ns2:02029 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:53679, + ns4:56341 ; + ns2:connectsThrough ns4:56341 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:53679 . + +ns4:02029 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_2.RTU_1.Plenum.supplyInlet" ; - ns1:cnx ns2:05101, - ns2:62659 ; - ns1:connectsThrough ns2:62659 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05101 . - -ns2:02218 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:05101, + ns4:62659 ; + ns2:connectsThrough ns4:62659 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05101 . + +ns4:02218 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "ff_press.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:02517 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:02517 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-29.zone.returnOutlet" ; - ns1:cnx ns2:15016, - ns2:92535 ; - ns1:connectsThrough ns2:92535 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15016 . - -ns2:02549 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15016, + ns4:92535 ; + ns2:connectsThrough ns4:92535 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15016 . + +ns4:02549 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "02549" ; - ns1:cnx ns2:51853, - ns2:88028 ; - ns1:connectsThrough ns2:51853 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:51853, - ns2:88028 . - -ns2:02583 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:51853, + ns4:88028 ; + ns2:connectsThrough ns4:51853 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:51853, + ns4:88028 . + +ns4:02583 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_6.RTU_4.Ceiling.returnOutlet" ; - ns1:cnx ns2:05175, - ns2:78087 ; - ns1:connectsThrough ns2:78087 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05175 . - -ns2:02651 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05175, + ns4:78087 ; + ns2:connectsThrough ns4:78087 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05175 . + +ns4:02651 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "pre_filter.airInlet" ; - ns1:cnx ns2:07660, - ns2:55046 ; - ns1:connectsThrough ns2:55046 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:07660 . - -ns2:02746 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07660, + ns4:55046 ; + ns2:connectsThrough ns4:55046 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:07660 . + +ns4:02746 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:39604, - ns2:86505 ; - ns1:connectsThrough ns2:86505 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:39604 . - -ns2:02892 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:39604, + ns4:86505 ; + ns2:connectsThrough ns4:86505 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:39604 . + +ns4:02892 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "ra_pres.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:03190 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:03190 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "9-66B.zone.supplyInlet" ; - ns1:cnx ns2:01240, - ns2:17729 ; - ns1:connectsThrough ns2:17729 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:01240 . - -ns2:03652 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:01240, + ns4:17729 ; + ns2:connectsThrough ns4:17729 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:01240 . + +ns4:03652 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-08D.zone.supplyInlet" ; - ns1:cnx ns2:82341, - ns2:91944 ; - ns1:connectsThrough ns2:82341 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:91944 . - -ns2:04646 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:82341, + ns4:91944 ; + ns2:connectsThrough ns4:82341 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:91944 . + +ns4:04646 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_9.RTU_2.Plenum.supplyInlet" ; - ns1:cnx ns2:11294, - ns2:50126 ; - ns1:connectsThrough ns2:11294 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50126 . - -ns2:04947 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:11294, + ns4:50126 ; + ns2:connectsThrough ns4:11294 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50126 . + +ns4:04947 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:22040, - ns2:30816 ; - ns1:connectsThrough ns2:30816 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:22040 . - -ns2:05076 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:22040, + ns4:30816 ; + ns2:connectsThrough ns4:30816 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:22040 . + +ns4:05076 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "sa_press.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:05320 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:05320 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:04028, - ns2:16343 ; - ns1:connectsThrough ns2:04028 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:16343 . - -ns2:05873 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:04028, + ns4:16343 ; + ns2:connectsThrough ns4:04028 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:16343 . + +ns4:05873 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "final_filter.airInlet" ; - ns1:cnx ns2:15832, - ns2:17912 ; - ns1:connectsThrough ns2:15832 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:17912 . - -ns2:05982 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15832, + ns4:17912 ; + ns2:connectsThrough ns4:15832 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:17912 . + +ns4:05982 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-4.zone.supplyInlet" ; - ns1:cnx ns2:54326, - ns2:97668 ; - ns1:connectsThrough ns2:54326 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97668 . - -ns2:06147 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:54326, + ns4:97668 ; + ns2:connectsThrough ns4:54326 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97668 . + +ns4:06147 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-09.zone.returnOutlet" ; - ns1:cnx ns2:33232, - ns2:69090 ; - ns1:connectsThrough ns2:33232 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69090 . - -ns2:06683 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:33232, + ns4:69090 ; + ns2:connectsThrough ns4:33232 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69090 . + +ns4:06683 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "pf_press.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:06816 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:06816 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "6-83B.zone.returnOutlet" ; - ns1:cnx ns2:01240, - ns2:31065 ; - ns1:connectsThrough ns2:31065 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:01240 . - -ns2:07756 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:01240, + ns4:31065 ; + ns2:connectsThrough ns4:31065 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:01240 . + +ns4:07756 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "9-91.zone.supplyInlet" ; - ns1:cnx ns2:61966, - ns2:87782 ; - ns1:connectsThrough ns2:61966 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87782 . - -ns2:08292 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:61966, + ns4:87782 ; + ns2:connectsThrough ns4:61966 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87782 . + +ns4:08292 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_9.RTU_9.Plenum.supplyInlet" ; - ns1:cnx ns2:30777, - ns2:88028 ; - ns1:connectsThrough ns2:30777 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88028 . - -ns2:08733 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:30777, + ns4:88028 ; + ns2:connectsThrough ns4:30777 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88028 . + +ns4:08733 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "iso_damper.airInlet" ; - ns1:cnx ns2:63755, - ns2:83549 ; - ns1:connectsThrough ns2:63755 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83549 . - -ns2:08907 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:63755, + ns4:83549 ; + ns2:connectsThrough ns4:63755 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83549 . + +ns4:08907 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:74065, - ns2:79224 ; - ns1:connectsThrough ns2:79224 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74065 . - -ns2:09247 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:74065, + ns4:79224 ; + ns2:connectsThrough ns4:79224 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74065 . + +ns4:09247 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:77758, - ns2:97321 ; - ns1:connectsThrough ns2:77758 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97321 . - -ns2:09442 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:77758, + ns4:97321 ; + ns2:connectsThrough ns4:77758 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97321 . + +ns4:09442 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "ea_damper.airInlet" ; - ns1:cnx ns2:11125, - ns2:36823 ; - ns1:connectsThrough ns2:36823 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:11125 . - -ns2:09753 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:11125, + ns4:36823 ; + ns2:connectsThrough ns4:36823 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:11125 . + +ns4:09753 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:03023, - ns2:26427 ; - ns1:connectsThrough ns2:03023 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:26427 . - -ns2:10261 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03023, + ns4:26427 ; + ns2:connectsThrough ns4:03023 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:26427 . + +ns4:10261 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_flow_station.airInlet" ; - ns1:cnx ns2:34392, - ns2:56341 ; - ns1:connectsThrough ns2:56341 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34392 . - -ns2:10484 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:34392, + ns4:56341 ; + ns2:connectsThrough ns4:56341 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34392 . + +ns4:10484 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:26803, - ns2:53221 ; - ns1:connectsThrough ns2:26803 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:53221 . - -ns2:10678 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns1:PhysicalSpace, - ns4:AirConnectionPoint ; + ns2:cnx ns4:26803, + ns4:53221 ; + ns2:connectsThrough ns4:26803 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:53221 . + +ns4:10678 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns2:PhysicalSpace, + ns3:AirConnectionPoint ; rdfs:label "G-18.enclosure" ; - ns1:cnx ns2:46825, - ns2:93276 ; - ns1:connectsThrough ns2:46825 ; - ns1:contains ns2:05243, - ns2:20880, - ns2:27511, - ns2:71398, - ns2:83072, - ns2:90387 ; - ns1:encloses ns2:69090 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93276 . - -ns2:10763 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:46825, + ns4:93276 ; + ns2:connectsThrough ns4:46825 ; + ns2:contains ns4:05243, + ns4:20880, + ns4:27511, + ns4:71398, + ns4:83072, + ns4:90387 ; + ns2:encloses ns4:69090 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93276 . + +ns4:10763 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:09852, - ns2:19107 ; - ns1:connectsThrough ns2:09852 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:19107 . - -ns2:10883 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09852, + ns4:19107 ; + ns2:connectsThrough ns4:09852 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:19107 . + +ns4:10883 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:30584, - ns2:31261 ; - ns1:connectsThrough ns2:30584 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:31261 . - -ns2:11167 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:30584, + ns4:31261 ; + ns2:connectsThrough ns4:30584 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:31261 . + +ns4:11167 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:30657, - ns2:35508 ; - ns1:connectsThrough ns2:35508 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:30657 . - -ns2:11351 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:30657, + ns4:35508 ; + ns2:connectsThrough ns4:35508 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:30657 . + +ns4:11351 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:74083, - ns2:90552 ; - ns1:connectsThrough ns2:90552 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74083 . - -ns2:11429 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:74083, + ns4:90552 ; + ns2:connectsThrough ns4:90552 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74083 . + +ns4:11429 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "return_fan.airOutlet" ; - ns1:cnx ns2:18339, - ns2:36823 ; - ns1:connectsThrough ns2:36823 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18339 . - -ns2:11858 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18339, + ns4:36823 ; + ns2:connectsThrough ns4:36823 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18339 . + +ns4:11858 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:79224, - ns2:86650 ; - ns1:connectsThrough ns2:79224 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:86650 . - -ns2:11913 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:79224, + ns4:86650 ; + ns2:connectsThrough ns4:79224 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:86650 . + +ns4:11913 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:21333, - ns2:37192 ; - ns1:connectsThrough ns2:21333 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:37192 . - -ns2:12002 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:21333, + ns4:37192 ; + ns2:connectsThrough ns4:21333 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:37192 . + +ns4:12002 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "final_filter.airInlet" ; - ns1:cnx ns2:52992, - ns2:85645 ; - ns1:connectsThrough ns2:52992 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:85645 . - -ns2:12218 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:52992, + ns4:85645 ; + ns2:connectsThrough ns4:52992 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:85645 . + +ns4:12218 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:25140, - ns2:56375 ; - ns1:connectsThrough ns2:56375 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25140 . - -ns2:12539 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25140, + ns4:56375 ; + ns2:connectsThrough ns4:56375 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25140 . + +ns4:12539 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:52728, - ns2:60631 ; - ns1:connectsThrough ns2:60631 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:52728 . - -ns2:12631 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:52728, + ns4:60631 ; + ns2:connectsThrough ns4:60631 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:52728 . + +ns4:12631 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-3.zone.returnOutlet" ; - ns1:cnx ns2:12692, - ns2:25473 ; - ns1:connectsThrough ns2:25473 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12692 . - -ns2:12778 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:12692, + ns4:25473 ; + ns2:connectsThrough ns4:25473 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12692 . + +ns4:12778 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:24250, - ns2:84250 ; - ns1:connectsThrough ns2:24250 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:84250 . - -ns2:12794 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:24250, + ns4:84250 ; + ns2:connectsThrough ns4:24250 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:84250 . + +ns4:12794 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-6.zone.supplyInlet" ; - ns1:cnx ns2:12692, - ns2:21481 ; - ns1:connectsThrough ns2:21481 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12692 . - -ns2:13246 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:12692, + ns4:21481 ; + ns2:connectsThrough ns4:21481 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12692 . + +ns4:13246 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:46331, - ns2:89752 ; - ns1:connectsThrough ns2:46331 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:89752 . - -ns2:14007 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:46331, + ns4:89752 ; + ns2:connectsThrough ns4:46331 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:89752 . + +ns4:14007 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "mixed_air_damper.airOutlet" ; - ns1:cnx ns2:55046, - ns2:87637 ; - ns1:connectsThrough ns2:55046 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87637 . - -ns2:14012 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:55046, + ns4:87637 ; + ns2:connectsThrough ns4:55046 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87637 . + +ns4:14012 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "cwc.airInlet" ; - ns1:cnx ns2:40562, - ns2:92865 ; - ns1:connectsThrough ns2:40562 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:92865 . - -ns2:14065 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:40562, + ns4:92865 ; + ns2:connectsThrough ns4:40562 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:92865 . + +ns4:14065 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "final_filter.airOutlet" ; - ns1:cnx ns2:56445, - ns2:79897 ; - ns1:connectsThrough ns2:56445 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:79897 . - -ns2:14188 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:56445, + ns4:79897 ; + ns2:connectsThrough ns4:56445 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:79897 . + +ns4:14188 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "cwc.airOutlet" ; - ns1:cnx ns2:52992, - ns2:92865 ; - ns1:connectsThrough ns2:52992 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:92865 . - -ns2:14475 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:52992, + ns4:92865 ; + ns2:connectsThrough ns4:52992 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:92865 . + +ns4:14475 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-57.zone.supplyInlet" ; - ns1:cnx ns2:10814, - ns2:41128 ; - ns1:connectsThrough ns2:41128 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10814 . - -ns2:14639 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:10814, + ns4:41128 ; + ns2:connectsThrough ns4:41128 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10814 . + +ns4:14639 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_9.CoreZone.core_space_4.airInlet" ; - ns1:cnx ns2:37324, - ns2:88574 ; - ns1:connectsThrough ns2:88574 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:37324 . - -ns2:14994 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37324, + ns4:88574 ; + ns2:connectsThrough ns4:88574 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:37324 . + +ns4:14994 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "bp_damper.airInlet" ; - ns1:cnx ns2:40562, - ns2:58489 ; - ns1:connectsThrough ns2:40562 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58489 . - -ns2:15204 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:40562, + ns4:58489 ; + ns2:connectsThrough ns4:40562 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58489 . + +ns4:15204 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "pre_filter.airOutlet" ; - ns1:cnx ns2:21343, - ns2:84053 ; - ns1:connectsThrough ns2:21343 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:84053 . - -ns2:15209 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:21343, + ns4:84053 ; + ns2:connectsThrough ns4:21343 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:84053 . + +ns4:15209 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:12438, - ns2:96963 ; - ns1:connectsThrough ns2:96963 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12438 . - -ns2:15217 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:12438, + ns4:96963 ; + ns2:connectsThrough ns4:96963 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12438 . + +ns4:15217 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "pf_press.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:15956 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:15956 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:04430, - ns2:85262 ; - ns1:connectsThrough ns2:85262 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:04430 . - -ns2:15996 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:04430, + ns4:85262 ; + ns2:connectsThrough ns4:85262 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:04430 . + +ns4:15996 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:74360, - ns2:95827 ; - ns1:connectsThrough ns2:95827 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74360 . - -ns2:16095 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:74360, + ns4:95827 ; + ns2:connectsThrough ns4:95827 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74360 . + +ns4:16095 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:09900, - ns2:71903 ; - ns1:connectsThrough ns2:71903 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09900 . - -ns2:16174 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09900, + ns4:71903 ; + ns2:connectsThrough ns4:71903 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09900 . + +ns4:16174 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-98.zone.returnOutlet" ; - ns1:cnx ns2:15450, - ns2:23626 ; - ns1:connectsThrough ns2:15450 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:23626 . - -ns2:16302 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15450, + ns4:23626 ; + ns2:connectsThrough ns4:15450 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:23626 . + +ns4:16302 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-2.zone.returnOutlet" ; - ns1:cnx ns2:19566, - ns2:69415 ; - ns1:connectsThrough ns2:19566 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69415 . - -ns2:16627 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:19566, + ns4:69415 ; + ns2:connectsThrough ns4:19566 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69415 . + +ns4:16627 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:65779, - ns2:85676 ; - ns1:connectsThrough ns2:85676 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65779 . - -ns2:16636 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:65779, + ns4:85676 ; + ns2:connectsThrough ns4:85676 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65779 . + +ns4:16636 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-24.zone.supplyInlet" ; - ns1:cnx ns2:13461, - ns2:43608 ; - ns1:connectsThrough ns2:43608 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:13461 . - -ns2:17590 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:13461, + ns4:43608 ; + ns2:connectsThrough ns4:43608 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:13461 . + +ns4:17590 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:35841, - ns2:68886 ; - ns1:connectsThrough ns2:35841 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68886 . - -ns2:17598 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:35841, + ns4:68886 ; + ns2:connectsThrough ns4:35841 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68886 . + +ns4:17598 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:45429, - ns2:61849 ; - ns1:connectsThrough ns2:61849 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45429 . + ns2:cnx ns4:45429, + ns4:61849 ; + ns2:connectsThrough ns4:61849 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45429 . -ns2:17753 a ns1:PhysicalSpace ; +ns4:17753 a ns2:PhysicalSpace ; rdfs:label "4284", "8908" . -ns2:18032 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:18032 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:02809, - ns2:24002 ; - ns1:connectsThrough ns2:02809 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:24002 . - -ns2:18449 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02809, + ns4:24002 ; + ns2:connectsThrough ns4:02809 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:24002 . + +ns4:18449 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_1.CoreZone.core_space_2.airOutlet" ; - ns1:cnx ns2:03605, - ns2:69401 ; - ns1:connectsThrough ns2:69401 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03605 . - -ns2:18531 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03605, + ns4:69401 ; + ns2:connectsThrough ns4:69401 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03605 . + +ns4:18531 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_2.RTU_0.Ceiling.returnOutlet" ; - ns1:cnx ns2:08315, - ns2:93276 ; - ns1:connectsThrough ns2:08315 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93276 . - -ns2:18857 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:08315, + ns4:93276 ; + ns2:connectsThrough ns4:08315 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93276 . + +ns4:18857 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:67542, - ns2:93499 ; - ns1:connectsThrough ns2:93499 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:67542 . - -ns2:18999 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:67542, + ns4:93499 ; + ns2:connectsThrough ns4:93499 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:67542 . + +ns4:18999 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:12353, - ns2:32904 ; - ns1:connectsThrough ns2:12353 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:32904 . - -ns2:19364 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:12353, + ns4:32904 ; + ns2:connectsThrough ns4:12353 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:32904 . + +ns4:19364 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:13472, - ns2:87632 ; - ns1:connectsThrough ns2:13472 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87632 . - -ns2:19877 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:13472, + ns4:87632 ; + ns2:connectsThrough ns4:13472 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87632 . + +ns4:19877 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-71.zone.returnOutlet" ; - ns1:cnx ns2:46825, - ns2:78065 ; - ns1:connectsThrough ns2:46825 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:78065 . - -ns2:20132 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:46825, + ns4:78065 ; + ns2:connectsThrough ns4:46825 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:78065 . + +ns4:20132 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "return_fan.airOutlet" ; - ns1:cnx ns2:02817, - ns2:52572 ; - ns1:connectsThrough ns2:52572 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:02817 . - -ns2:20371 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02817, + ns4:52572 ; + ns2:connectsThrough ns4:52572 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:02817 . + +ns4:20371 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-09.zone.returnOutlet" ; - ns1:cnx ns2:50418, - ns2:78502 ; - ns1:connectsThrough ns2:78502 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50418 . - -ns2:20843 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:50418, + ns4:78502 ; + ns2:connectsThrough ns4:78502 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50418 . + +ns4:20843 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:31261, - ns2:91920 ; - ns1:connectsThrough ns2:91920 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:31261 . - -ns2:20866 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:31261, + ns4:91920 ; + ns2:connectsThrough ns4:91920 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:31261 . + +ns4:20866 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "final_filter.airInlet" ; - ns1:cnx ns2:48176, - ns2:79897 ; - ns1:connectsThrough ns2:48176 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:79897 . - -ns2:21028 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:48176, + ns4:79897 ; + ns2:connectsThrough ns4:48176 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:79897 . + +ns4:21028 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:13590, - ns2:23324 ; - ns1:connectsThrough ns2:23324 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:13590 . - -ns2:21165 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:13590, + ns4:23324 ; + ns2:connectsThrough ns4:23324 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:13590 . + +ns4:21165 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:25284, - ns2:49064 ; - ns1:connectsThrough ns2:25284 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:49064 . - -ns2:21534 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25284, + ns4:49064 ; + ns2:connectsThrough ns4:25284 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:49064 . + +ns4:21534 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:18941, - ns2:55174 ; - ns1:connectsThrough ns2:55174 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18941 . - -ns2:21587 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18941, + ns4:55174 ; + ns2:connectsThrough ns4:55174 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18941 . + +ns4:21587 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_7.RTU_7.Plenum.supplyInlet" ; - ns1:cnx ns2:06275, - ns2:25082 ; - ns1:connectsThrough ns2:25082 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06275 . - -ns2:21806 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06275, + ns4:25082 ; + ns2:connectsThrough ns4:25082 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06275 . + +ns4:21806 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-34.zone.supplyInlet" ; - ns1:cnx ns2:29739, - ns2:98609 ; - ns1:connectsThrough ns2:29739 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98609 . - -ns2:21886 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:29739, + ns4:98609 ; + ns2:connectsThrough ns4:29739 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98609 . + +ns4:21886 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-24.zone.supplyInlet" ; - ns1:cnx ns2:18895, - ns2:69090 ; - ns1:connectsThrough ns2:18895 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69090 . - -ns2:21938 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:18895, + ns4:69090 ; + ns2:connectsThrough ns4:18895 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69090 . + +ns4:21938 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:18099, - ns2:33969 ; - ns1:connectsThrough ns2:33969 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18099 . - -ns2:22249 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18099, + ns4:33969 ; + ns2:connectsThrough ns4:33969 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18099 . + +ns4:22249 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "final_filter.airOutlet" ; - ns1:cnx ns2:08460, - ns2:61372 ; - ns1:connectsThrough ns2:08460 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:61372 . - -ns2:22290 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:08460, + ns4:61372 ; + ns2:connectsThrough ns4:08460 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:61372 . + +ns4:22290 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:25200, - ns2:30148 ; - ns1:connectsThrough ns2:30148 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25200 . - -ns2:22612 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:25200, + ns4:30148 ; + ns2:connectsThrough ns4:30148 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25200 . + +ns4:22612 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:25067, - ns2:96546 ; - ns1:connectsThrough ns2:96546 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25067 . - -ns2:22663 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:25067, + ns4:96546 ; + ns2:connectsThrough ns4:96546 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25067 . + +ns4:22663 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:56375, - ns2:80065 ; - ns1:connectsThrough ns2:56375 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80065 . - -ns2:22932 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:56375, + ns4:80065 ; + ns2:connectsThrough ns4:56375 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80065 . + +ns4:22932 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:05342, - ns2:30993 ; - ns1:connectsThrough ns2:30993 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05342 . - -ns2:23233 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05342, + ns4:30993 ; + ns2:connectsThrough ns4:30993 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05342 . + +ns4:23233 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "7-1.zone.returnOutlet" ; - ns1:cnx ns2:43841, - ns2:86102 ; - ns1:connectsThrough ns2:86102 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:43841 . - -ns2:23310 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:43841, + ns4:86102 ; + ns2:connectsThrough ns4:86102 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:43841 . + +ns4:23310 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "cwc.airInlet" ; - ns1:cnx ns2:47395, - ns2:54185 ; - ns1:connectsThrough ns2:54185 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:47395 . - -ns2:23625 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:47395, + ns4:54185 ; + ns2:connectsThrough ns4:54185 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:47395 . + +ns4:23625 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-69.zone.supplyInlet" ; - ns1:cnx ns2:03365, - ns2:50261 ; - ns1:connectsThrough ns2:50261 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03365 . - -ns2:24339 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03365, + ns4:50261 ; + ns2:connectsThrough ns4:50261 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03365 . + +ns4:24339 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:07119, - ns2:71025 ; - ns1:connectsThrough ns2:07119 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:71025 . - -ns2:24631 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:07119, + ns4:71025 ; + ns2:connectsThrough ns4:07119 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:71025 . + +ns4:24631 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:26803, - ns2:38627 ; - ns1:connectsThrough ns2:26803 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:38627 . - -ns2:24806 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:26803, + ns4:38627 ; + ns2:connectsThrough ns4:26803 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:38627 . + +ns4:24806 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:44942, - ns2:91920 ; - ns1:connectsThrough ns2:91920 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:44942 . - -ns2:25134 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:44942, + ns4:91920 ; + ns2:connectsThrough ns4:91920 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:44942 . + +ns4:25134 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "mixed_air_damper.airInlet" ; - ns1:cnx ns2:51136, - ns2:87637 ; - ns1:connectsThrough ns2:51136 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87637 . - -ns2:25319 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:51136, + ns4:87637 ; + ns2:connectsThrough ns4:51136 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87637 . + +ns4:25319 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_2.RTU_4.Plenum.supplyInlet" ; - ns1:cnx ns2:10117, - ns2:11294 ; - ns1:connectsThrough ns2:11294 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10117 . - -ns2:25836 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:10117, + ns4:11294 ; + ns2:connectsThrough ns4:11294 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10117 . + +ns4:25836 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:67974, - ns2:72185 ; - ns1:connectsThrough ns2:67974 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:72185 . - -ns2:26208 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:67974, + ns4:72185 ; + ns2:connectsThrough ns4:67974 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:72185 . + +ns4:26208 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:54863, - ns2:83428 ; - ns1:connectsThrough ns2:54863 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83428 . - -ns2:26285 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:54863, + ns4:83428 ; + ns2:connectsThrough ns4:54863 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83428 . + +ns4:26285 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:49965, - ns2:80062 ; - ns1:connectsThrough ns2:80062 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:49965 . - -ns2:26345 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:49965, + ns4:80062 ; + ns2:connectsThrough ns4:80062 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:49965 . + +ns4:26345 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:08460, - ns2:11624 ; - ns1:connectsThrough ns2:08460 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:11624 . - -ns2:26374 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:08460, + ns4:11624 ; + ns2:connectsThrough ns4:08460 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:11624 . + +ns4:26374 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:42045, - ns2:70230 ; - ns1:connectsThrough ns2:42045 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:70230 . - -ns2:26452 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42045, + ns4:70230 ; + ns2:connectsThrough ns4:42045 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:70230 . + +ns4:26452 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:42045, - ns2:67388 ; - ns1:connectsThrough ns2:42045 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:67388 . - -ns2:27044 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42045, + ns4:67388 ; + ns2:connectsThrough ns4:42045 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:67388 . + +ns4:27044 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-13.zone.supplyInlet" ; - ns1:cnx ns2:25163, - ns2:78065 ; - ns1:connectsThrough ns2:25163 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:78065 . - -ns2:27088 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25163, + ns4:78065 ; + ns2:connectsThrough ns4:25163 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:78065 . + +ns4:27088 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:30816, - ns2:80730 ; - ns1:connectsThrough ns2:30816 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80730 . - -ns2:27154 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:30816, + ns4:80730 ; + ns2:connectsThrough ns4:30816 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80730 . + +ns4:27154 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "mixed_air_damper.airOutlet" ; - ns1:cnx ns2:31173, - ns2:80380 ; - ns1:connectsThrough ns2:80380 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:31173 . - -ns2:27305 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:31173, + ns4:80380 ; + ns2:connectsThrough ns4:80380 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:31173 . + +ns4:27305 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:57501, - ns2:69442 ; - ns1:connectsThrough ns2:69442 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:57501 . - -ns2:27363 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:57501, + ns4:69442 ; + ns2:connectsThrough ns4:69442 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:57501 . + +ns4:27363 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "iso_damper.airInlet" ; - ns1:cnx ns2:22732, - ns2:40409 ; - ns1:connectsThrough ns2:40409 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:22732 . - -ns2:27497 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:22732, + ns4:40409 ; + ns2:connectsThrough ns4:40409 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:22732 . + +ns4:27497 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_flow_station.airOutlet" ; - ns1:cnx ns2:36633, - ns2:77251 ; - ns1:connectsThrough ns2:36633 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77251 . - -ns2:27784 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:36633, + ns4:77251 ; + ns2:connectsThrough ns4:36633 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77251 . + +ns4:27784 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_6.RTU_4.Ceiling.returnOutlet" ; - ns1:cnx ns2:28911, - ns2:78087 ; - ns1:connectsThrough ns2:78087 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:28911 . - -ns2:27792 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:28911, + ns4:78087 ; + ns2:connectsThrough ns4:78087 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:28911 . + +ns4:27792 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "mixed_air_damper.airOutlet" ; - ns1:cnx ns2:36633, - ns2:39848 ; - ns1:connectsThrough ns2:36633 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:39848 . - -ns2:27827 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:36633, + ns4:39848 ; + ns2:connectsThrough ns4:36633 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:39848 . + +ns4:27827 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "bp_damper.airOutlet" ; - ns1:cnx ns2:52992, - ns2:58489 ; - ns1:connectsThrough ns2:52992 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58489 . - -ns2:28196 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:52992, + ns4:58489 ; + ns2:connectsThrough ns4:52992 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58489 . + +ns4:28196 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:03254, - ns2:60631 ; - ns1:connectsThrough ns2:60631 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03254 . - -ns2:28283 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03254, + ns4:60631 ; + ns2:connectsThrough ns4:60631 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03254 . + +ns4:28283 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-0A.zone.returnOutlet" ; - ns1:cnx ns2:11777, - ns2:79420 ; - ns1:connectsThrough ns2:11777 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:79420 . - -ns2:28411 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:11777, + ns4:79420 ; + ns2:connectsThrough ns4:11777 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:79420 . + +ns4:28411 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:16657, - ns2:68951 ; - ns1:connectsThrough ns2:16657 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68951 . - -ns2:28452 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16657, + ns4:68951 ; + ns2:connectsThrough ns4:16657 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68951 . + +ns4:28452 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:21910, - ns2:40887 ; - ns1:connectsThrough ns2:40887 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:21910 . - -ns2:28695 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:21910, + ns4:40887 ; + ns2:connectsThrough ns4:40887 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:21910 . + +ns4:28695 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:75732, - ns2:88844 ; - ns1:connectsThrough ns2:88844 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:75732 . - -ns2:29249 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:75732, + ns4:88844 ; + ns2:connectsThrough ns4:88844 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:75732 . + +ns4:29249 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "ea_damper.airInlet" ; - ns1:cnx ns2:52572, - ns2:98539 ; - ns1:connectsThrough ns2:52572 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98539 . - -ns2:29476 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:52572, + ns4:98539 ; + ns2:connectsThrough ns4:52572 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98539 . + +ns4:29476 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:80523, - ns2:96446 ; - ns1:connectsThrough ns2:96446 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80523 . - -ns2:29573 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:80523, + ns4:96446 ; + ns2:connectsThrough ns4:96446 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80523 . + +ns4:29573 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "0-30.zone.returnOutlet" ; - ns1:cnx ns2:43967, - ns2:87912 ; - ns1:connectsThrough ns2:87912 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:43967 . - -ns2:29636 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:43967, + ns4:87912 ; + ns2:connectsThrough ns4:87912 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:43967 . + +ns4:29636 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:39723, - ns2:96809 ; - ns1:connectsThrough ns2:39723 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:96809 . - -ns2:30089 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:39723, + ns4:96809 ; + ns2:connectsThrough ns4:39723 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:96809 . + +ns4:30089 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:34781, - ns2:85434 ; - ns1:connectsThrough ns2:85434 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34781 . - -ns2:30582 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34781, + ns4:85434 ; + ns2:connectsThrough ns4:85434 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34781 . + +ns4:30582 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:19805, - ns2:30148 ; - ns1:connectsThrough ns2:30148 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:19805 . - -ns2:30599 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:19805, + ns4:30148 ; + ns2:connectsThrough ns4:30148 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:19805 . + +ns4:30599 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:01094, - ns2:54463 ; - ns1:connectsThrough ns2:01094 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54463 . - -ns2:30707 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:01094, + ns4:54463 ; + ns2:connectsThrough ns4:01094 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54463 . + +ns4:30707 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:69810, - ns2:75582 ; - ns1:connectsThrough ns2:69810 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:75582 . - -ns2:30894 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:69810, + ns4:75582 ; + ns2:connectsThrough ns4:69810 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:75582 . + +ns4:30894 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:04028, - ns2:60462 ; - ns1:connectsThrough ns2:04028 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:60462 . - -ns2:30900 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:04028, + ns4:60462 ; + ns2:connectsThrough ns4:04028 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:60462 . + +ns4:30900 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_8.RTU_7.Plenum.supplyInlet" ; - ns1:cnx ns2:30777, - ns2:77070 ; - ns1:connectsThrough ns2:30777 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77070 . - -ns2:31093 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:30777, + ns4:77070 ; + ns2:connectsThrough ns4:30777 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77070 . + +ns4:31093 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:37192, - ns2:39524 ; - ns1:connectsThrough ns2:39524 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:37192 . - -ns2:31650 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37192, + ns4:39524 ; + ns2:connectsThrough ns4:39524 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:37192 . + +ns4:31650 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "7-82.zone.supplyInlet" ; - ns1:cnx ns2:16401, - ns2:55654 ; - ns1:connectsThrough ns2:16401 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:55654 . - -ns2:31924 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:16401, + ns4:55654 ; + ns2:connectsThrough ns4:16401 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:55654 . + +ns4:31924 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:16051, - ns2:77758 ; - ns1:connectsThrough ns2:77758 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:16051 . - -ns2:31977 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16051, + ns4:77758 ; + ns2:connectsThrough ns4:77758 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:16051 . + +ns4:31977 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-73B.zone.supplyInlet" ; - ns1:cnx ns2:50742, - ns2:68534 ; - ns1:connectsThrough ns2:50742 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68534 . - -ns2:32100 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:50742, + ns4:68534 ; + ns2:connectsThrough ns4:50742 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68534 . + +ns4:32100 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-68.zone.returnOutlet" ; - ns1:cnx ns2:28817, - ns2:73947 ; - ns1:connectsThrough ns2:28817 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73947 . - -ns2:32258 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:28817, + ns4:73947 ; + ns2:connectsThrough ns4:28817 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73947 . + +ns4:32258 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:30312, - ns2:85676 ; - ns1:connectsThrough ns2:85676 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:30312 . - -ns2:32500 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:30312, + ns4:85676 ; + ns2:connectsThrough ns4:85676 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:30312 . + +ns4:32500 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:29667, - ns2:79114 ; - ns1:connectsThrough ns2:29667 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:79114 . - -ns2:32646 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:29667, + ns4:79114 ; + ns2:connectsThrough ns4:29667 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:79114 . + +ns4:32646 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:05062, - ns2:07119 ; - ns1:connectsThrough ns2:07119 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05062 . - -ns2:32795 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:05062, + ns4:07119 ; + ns2:connectsThrough ns4:07119 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05062 . + +ns4:32795 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:36241, - ns2:73674 ; - ns1:connectsThrough ns2:36241 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73674 . - -ns2:33895 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:36241, + ns4:73674 ; + ns2:connectsThrough ns4:36241 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73674 . + +ns4:33895 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:58411, - ns2:85932 ; - ns1:connectsThrough ns2:85932 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58411 . - -ns2:34046 a ns1:BidirectionalConnectionPoint, - ns1:ConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:58411, + ns4:85932 ; + ns2:connectsThrough ns4:85932 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58411 . + +ns4:34046 a ns2:BidirectionalConnectionPoint, + ns2:ConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "34046" ; - ns1:cnx ns2:42308, - ns2:51853 ; - ns1:connectsThrough ns2:51853 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:42308, - ns2:51853 . - -ns2:34277 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:42308, + ns4:51853 ; + ns2:connectsThrough ns4:51853 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:42308, + ns4:51853 . + +ns4:34277 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:21736, - ns2:93913 ; - ns1:connectsThrough ns2:93913 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:21736 . - -ns2:34767 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:21736, + ns4:93913 ; + ns2:connectsThrough ns4:93913 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:21736 . + +ns4:34767 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:62426, - ns2:82606 ; - ns1:connectsThrough ns2:82606 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62426 . - -ns2:34889 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:62426, + ns4:82606 ; + ns2:connectsThrough ns4:82606 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62426 . + +ns4:34889 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:58412, - ns2:89915 ; - ns1:connectsThrough ns2:58412 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:89915 . - -ns2:34957 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:58412, + ns4:89915 ; + ns2:connectsThrough ns4:58412 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:89915 . + +ns4:34957 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:62479, - ns2:65374 ; - ns1:connectsThrough ns2:62479 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65374 . - -ns2:34996 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:62479, + ns4:65374 ; + ns2:connectsThrough ns4:62479 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65374 . + +ns4:34996 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-72.zone.supplyInlet" ; - ns1:cnx ns2:15016, - ns2:30616 ; - ns1:connectsThrough ns2:30616 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15016 . - -ns2:35174 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15016, + ns4:30616 ; + ns2:connectsThrough ns4:30616 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15016 . + +ns4:35174 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "mixed_air_damper.airOutlet" ; - ns1:cnx ns2:42750, - ns2:51341 ; - ns1:connectsThrough ns2:42750 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:51341 . - -ns2:35388 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42750, + ns4:51341 ; + ns2:connectsThrough ns4:42750 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:51341 . + +ns4:35388 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:13867, - ns2:99824 ; - ns1:connectsThrough ns2:99824 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:13867 . - -ns2:36289 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:13867, + ns4:99824 ; + ns2:connectsThrough ns4:99824 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:13867 . + +ns4:36289 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:31318, - ns2:82929 ; - ns1:connectsThrough ns2:82929 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:31318 . - -ns2:37818 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:31318, + ns4:82929 ; + ns2:connectsThrough ns4:82929 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:31318 . + +ns4:37818 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:69442, - ns2:81183 ; - ns1:connectsThrough ns2:69442 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:81183 . - -ns2:38115 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69442, + ns4:81183 ; + ns2:connectsThrough ns4:69442 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:81183 . + +ns4:38115 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_9.CoreZone.core_space_4.airInlet" ; - ns1:cnx ns2:03605, - ns2:30594 ; - ns1:connectsThrough ns2:30594 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03605 . - -ns2:38418 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03605, + ns4:30594 ; + ns2:connectsThrough ns4:30594 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03605 . + +ns4:38418 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_1.CoreZone.core_space_2.airInlet" ; - ns1:cnx ns2:34986, - ns2:44036 ; - ns1:connectsThrough ns2:34986 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:44036 . - -ns2:38721 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34986, + ns4:44036 ; + ns2:connectsThrough ns4:34986 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:44036 . + +ns4:38721 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-90.zone.supplyInlet" ; - ns1:cnx ns2:09362, - ns2:80519 ; - ns1:connectsThrough ns2:80519 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09362 . - -ns2:38974 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09362, + ns4:80519 ; + ns2:connectsThrough ns4:80519 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09362 . + +ns4:38974 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "5-72.zone.supplyInlet" ; - ns1:cnx ns2:07881, - ns2:60471 ; - ns1:connectsThrough ns2:07881 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:60471 . - -ns2:39678 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:07881, + ns4:60471 ; + ns2:connectsThrough ns4:07881 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:60471 . + +ns4:39678 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:40374, - ns2:45441 ; - ns1:connectsThrough ns2:40374 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45441 . - -ns2:40095 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:40374, + ns4:45441 ; + ns2:connectsThrough ns4:40374 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45441 . + +ns4:40095 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "bp_damper.airOutlet" ; - ns1:cnx ns2:48176, - ns2:57522 ; - ns1:connectsThrough ns2:48176 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:57522 . - -ns2:40147 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:48176, + ns4:57522 ; + ns2:connectsThrough ns4:48176 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:57522 . + +ns4:40147 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-91.zone.supplyInlet" ; - ns1:cnx ns2:42653, - ns2:43967 ; - ns1:connectsThrough ns2:42653 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:43967 . - -ns2:40617 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42653, + ns4:43967 ; + ns2:connectsThrough ns4:42653 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:43967 . + +ns4:40617 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-39.zone.returnOutlet" ; - ns1:cnx ns2:56473, - ns2:92645 ; - ns1:connectsThrough ns2:56473 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:92645 . - -ns2:40727 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:56473, + ns4:92645 ; + ns2:connectsThrough ns4:56473 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:92645 . + +ns4:40727 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "pre_filter.airOutlet" ; - ns1:cnx ns2:40562, - ns2:64314 ; - ns1:connectsThrough ns2:40562 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:64314 . - -ns2:40865 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:40562, + ns4:64314 ; + ns2:connectsThrough ns4:40562 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:64314 . + +ns4:40865 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-2.zone.supplyInlet" ; - ns1:cnx ns2:26799, - ns2:89082 ; - ns1:connectsThrough ns2:89082 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:26799 . - -ns2:41633 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:26799, + ns4:89082 ; + ns2:connectsThrough ns4:89082 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:26799 . + +ns4:41633 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "5-2.zone.supplyInlet" ; - ns1:cnx ns2:19094, - ns2:43841 ; - ns1:connectsThrough ns2:19094 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:43841 . - -ns2:41833 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:19094, + ns4:43841 ; + ns2:connectsThrough ns4:19094 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:43841 . + +ns4:41833 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "pre_filter.airOutlet" ; - ns1:cnx ns2:07660, - ns2:54185 ; - ns1:connectsThrough ns2:54185 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:07660 . - -ns2:42273 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07660, + ns4:54185 ; + ns2:connectsThrough ns4:54185 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:07660 . + +ns4:42273 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-50B.zone.returnOutlet" ; - ns1:cnx ns2:68534, - ns2:80586 ; - ns1:connectsThrough ns2:80586 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68534 . - -ns2:42765 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:68534, + ns4:80586 ; + ns2:connectsThrough ns4:80586 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68534 . + +ns4:42765 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:15386, - ns2:65381 ; - ns1:connectsThrough ns2:15386 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65381 . - -ns2:42823 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15386, + ns4:65381 ; + ns2:connectsThrough ns4:15386 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65381 . + +ns4:42823 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:68106, - ns2:73942 ; - ns1:connectsThrough ns2:68106 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73942 . - -ns2:43000 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:68106, + ns4:73942 ; + ns2:connectsThrough ns4:68106 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73942 . + +ns4:43000 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:49364, - ns2:94683 ; - ns1:connectsThrough ns2:49364 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:94683 . - -ns2:43081 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:49364, + ns4:94683 ; + ns2:connectsThrough ns4:49364 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:94683 . + +ns4:43081 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:75732, - ns2:93499 ; - ns1:connectsThrough ns2:93499 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:75732 . - -ns2:43202 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:75732, + ns4:93499 ; + ns2:connectsThrough ns4:93499 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:75732 . + +ns4:43202 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:54082, - ns2:76728 ; - ns1:connectsThrough ns2:76728 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54082 . - -ns2:43692 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:54082, + ns4:76728 ; + ns2:connectsThrough ns4:76728 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54082 . + +ns4:43692 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_flow_station.airOutlet" ; - ns1:cnx ns2:42750, - ns2:54792 ; - ns1:connectsThrough ns2:42750 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54792 . - -ns2:44137 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42750, + ns4:54792 ; + ns2:connectsThrough ns4:42750 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54792 . + +ns4:44137 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "final_filter.airInlet" ; - ns1:cnx ns2:42612, - ns2:61372 ; - ns1:connectsThrough ns2:42612 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:61372 . - -ns2:44510 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42612, + ns4:61372 ; + ns2:connectsThrough ns4:42612 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:61372 . + +ns4:44510 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:74884, - ns2:90778 ; - ns1:connectsThrough ns2:74884 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:90778 . - -ns2:44513 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:74884, + ns4:90778 ; + ns2:connectsThrough ns4:74884 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:90778 . + +ns4:44513 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "pre_filter.airInlet" ; - ns1:cnx ns2:36633, - ns2:84053 ; - ns1:connectsThrough ns2:36633 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:84053 . - -ns2:44522 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:36633, + ns4:84053 ; + ns2:connectsThrough ns4:36633 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:84053 . + +ns4:44522 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-2.zone.returnOutlet" ; - ns1:cnx ns2:58953, - ns2:73994 ; - ns1:connectsThrough ns2:73994 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58953 . - -ns2:44735 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:58953, + ns4:73994 ; + ns2:connectsThrough ns4:73994 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58953 . + +ns4:44735 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:67388, - ns2:85434 ; - ns1:connectsThrough ns2:85434 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:67388 . - -ns2:45385 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:67388, + ns4:85434 ; + ns2:connectsThrough ns4:85434 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:67388 . + +ns4:45385 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:24574, - ns2:77211 ; - ns1:connectsThrough ns2:24574 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77211 . - -ns2:45516 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:24574, + ns4:77211 ; + ns2:connectsThrough ns4:24574 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77211 . + +ns4:45516 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:35508, - ns2:84620 ; - ns1:connectsThrough ns2:35508 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:84620 . - -ns2:45775 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:35508, + ns4:84620 ; + ns2:connectsThrough ns4:35508 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:84620 . + +ns4:45775 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-6.zone.supplyInlet" ; - ns1:cnx ns2:26376, - ns2:63334 ; - ns1:connectsThrough ns2:26376 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:63334 . - -ns2:46181 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:26376, + ns4:63334 ; + ns2:connectsThrough ns4:26376 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:63334 . + +ns4:46181 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:42654, - ns2:62481 ; - ns1:connectsThrough ns2:42654 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62481 . - -ns2:46353 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:42654, + ns4:62481 ; + ns2:connectsThrough ns4:42654 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62481 . + +ns4:46353 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:05062, - ns2:32445 ; - ns1:connectsThrough ns2:32445 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05062 . - -ns2:46736 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05062, + ns4:32445 ; + ns2:connectsThrough ns4:32445 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05062 . + +ns4:46736 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:46417, - ns2:58412 ; - ns1:connectsThrough ns2:58412 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46417 . - -ns2:46802 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:46417, + ns4:58412 ; + ns2:connectsThrough ns4:58412 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46417 . + +ns4:46802 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "9-83.zone.returnOutlet" ; - ns1:cnx ns2:00496, - ns2:13344 ; - ns1:connectsThrough ns2:00496 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:13344 . - -ns2:47059 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:00496, + ns4:13344 ; + ns2:connectsThrough ns4:00496 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:13344 . + +ns4:47059 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:45991, - ns2:81633 ; - ns1:connectsThrough ns2:81633 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45991 . - -ns2:47100 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:45991, + ns4:81633 ; + ns2:connectsThrough ns4:81633 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45991 . + +ns4:47100 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_4.RTU_5.Plenum.supplyInlet" ; - ns1:cnx ns2:25082, - ns2:42308 ; - ns1:connectsThrough ns2:25082 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:42308 . - -ns2:47494 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25082, + ns4:42308 ; + ns2:connectsThrough ns4:25082 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:42308 . + +ns4:47494 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-8.zone.returnOutlet" ; - ns1:cnx ns2:57984, - ns2:93162 ; - ns1:connectsThrough ns2:57984 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93162 . - -ns2:48268 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:57984, + ns4:93162 ; + ns2:connectsThrough ns4:57984 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93162 . + +ns4:48268 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-55.zone.supplyInlet" ; - ns1:cnx ns2:23626, - ns2:82844 ; - ns1:connectsThrough ns2:82844 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:23626 . - -ns2:48347 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:23626, + ns4:82844 ; + ns2:connectsThrough ns4:82844 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:23626 . + +ns4:48347 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "pf_press.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:48493 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:48493 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:35514, - ns2:96615 ; - ns1:connectsThrough ns2:96615 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:35514 . - -ns2:49432 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:35514, + ns4:96615 ; + ns2:connectsThrough ns4:96615 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:35514 . + +ns4:49432 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_3.RTU_3.Ceiling.returnOutlet" ; - ns1:cnx ns2:29599, - ns2:97787 ; - ns1:connectsThrough ns2:97787 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29599 . - -ns2:49497 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:29599, + ns4:97787 ; + ns2:connectsThrough ns4:97787 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29599 . + +ns4:49497 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:09200, - ns2:25601 ; - ns1:connectsThrough ns2:25601 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09200 . - -ns2:49498 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09200, + ns4:25601 ; + ns2:connectsThrough ns4:25601 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09200 . + +ns4:49498 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "bp_damper.airInlet" ; - ns1:cnx ns2:54185, - ns2:92197 ; - ns1:connectsThrough ns2:54185 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:92197 . - -ns2:49700 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:54185, + ns4:92197 ; + ns2:connectsThrough ns4:54185 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:92197 . + +ns4:49700 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:73972, - ns2:80445 ; - ns1:connectsThrough ns2:80445 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73972 . - -ns2:49767 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:73972, + ns4:80445 ; + ns2:connectsThrough ns4:80445 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73972 . + +ns4:49767 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:34379, - ns2:56753 ; - ns1:connectsThrough ns2:34379 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:56753 . - -ns2:49943 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34379, + ns4:56753 ; + ns2:connectsThrough ns4:34379 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:56753 . + +ns4:49943 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "return_fan.airOutlet" ; - ns1:cnx ns2:43438, - ns2:51136 ; - ns1:connectsThrough ns2:51136 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:43438 . - -ns2:49951 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:43438, + ns4:51136 ; + ns2:connectsThrough ns4:51136 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:43438 . + +ns4:49951 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:61849, - ns2:73972 ; - ns1:connectsThrough ns2:61849 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73972 . - -ns2:50224 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:61849, + ns4:73972 ; + ns2:connectsThrough ns4:61849 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73972 . + +ns4:50224 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:32445, - ns2:65206 ; - ns1:connectsThrough ns2:32445 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65206 . - -ns2:50319 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:32445, + ns4:65206 ; + ns2:connectsThrough ns4:32445 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65206 . + +ns4:50319 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:35514, - ns2:52537 ; - ns1:connectsThrough ns2:52537 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:35514 . - -ns2:50525 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:35514, + ns4:52537 ; + ns2:connectsThrough ns4:52537 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:35514 . + +ns4:50525 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "mixed_air_damper.airInlet" ; - ns1:cnx ns2:36823, - ns2:51341 ; - ns1:connectsThrough ns2:36823 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:51341 . - -ns2:50625 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:36823, + ns4:51341 ; + ns2:connectsThrough ns4:36823 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:51341 . + +ns4:50625 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:09900, - ns2:63455 ; - ns1:connectsThrough ns2:63455 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09900 . - -ns2:50969 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:09900, + ns4:63455 ; + ns2:connectsThrough ns4:63455 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09900 . + +ns4:50969 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:37899, - ns2:96546 ; - ns1:connectsThrough ns2:96546 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:37899 . - -ns2:51259 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37899, + ns4:96546 ; + ns2:connectsThrough ns4:96546 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:37899 . + +ns4:51259 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-11A.zone.supplyInlet" ; - ns1:cnx ns2:63083, - ns2:70253 ; - ns1:connectsThrough ns2:63083 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:70253 . - -ns2:51689 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:63083, + ns4:70253 ; + ns2:connectsThrough ns4:63083 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:70253 . + +ns4:51689 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:21542, - ns2:85916 ; - ns1:connectsThrough ns2:21542 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:85916 . - -ns2:51721 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:21542, + ns4:85916 ; + ns2:connectsThrough ns4:21542 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:85916 . + +ns4:51721 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_damper.airOutlet" ; - ns1:cnx ns2:14119, - ns2:44139 ; - ns1:connectsThrough ns2:44139 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:14119 . - -ns2:51809 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:14119, + ns4:44139 ; + ns2:connectsThrough ns4:44139 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:14119 . + +ns4:51809 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "0-25.zone.returnOutlet" ; - ns1:cnx ns2:46213, - ns2:99042 ; - ns1:connectsThrough ns2:99042 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46213 . - -ns2:51828 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:46213, + ns4:99042 ; + ns2:connectsThrough ns4:99042 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46213 . + +ns4:51828 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-4.zone.supplyInlet" ; - ns1:cnx ns2:58975, - ns2:79414 ; - ns1:connectsThrough ns2:79414 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58975 . - -ns2:51842 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:58975, + ns4:79414 ; + ns2:connectsThrough ns4:79414 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58975 . + +ns4:51842 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "ra_pres.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:52029 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:52029 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:24416, - ns2:96446 ; - ns1:connectsThrough ns2:96446 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:24416 . - -ns2:52219 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:24416, + ns4:96446 ; + ns2:connectsThrough ns4:96446 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:24416 . + +ns4:52219 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "final_filter.airOutlet" ; - ns1:cnx ns2:57180, - ns2:85645 ; - ns1:connectsThrough ns2:57180 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:85645 . - -ns2:52416 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:57180, + ns4:85645 ; + ns2:connectsThrough ns4:57180 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:85645 . + +ns4:52416 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:64887, - ns2:90747 ; - ns1:connectsThrough ns2:90747 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:64887 . - -ns2:52424 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:64887, + ns4:90747 ; + ns2:connectsThrough ns4:90747 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:64887 . + +ns4:52424 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "ff_press.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:52638 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:52638 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:41561, - ns2:61196 ; - ns1:connectsThrough ns2:41561 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:61196 . - -ns2:52815 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:41561, + ns4:61196 ; + ns2:connectsThrough ns4:41561 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:61196 . + +ns4:52815 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:01094, - ns2:03254 ; - ns1:connectsThrough ns2:01094 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03254 . - -ns2:52923 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:01094, + ns4:03254 ; + ns2:connectsThrough ns4:01094 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03254 . + +ns4:52923 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-84.zone.supplyInlet" ; - ns1:cnx ns2:38300, - ns2:73947 ; - ns1:connectsThrough ns2:38300 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73947 . - -ns2:53636 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:38300, + ns4:73947 ; + ns2:connectsThrough ns4:38300 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73947 . + +ns4:53636 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:02590, - ns2:37548 ; - ns1:connectsThrough ns2:37548 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:02590 . - -ns2:53787 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02590, + ns4:37548 ; + ns2:connectsThrough ns4:37548 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:02590 . + +ns4:53787 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "1-6.zone.supplyInlet" ; - ns1:cnx ns2:04698, - ns2:16890 ; - ns1:connectsThrough ns2:16890 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:04698 . - -ns2:53962 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:04698, + ns4:16890 ; + ns2:connectsThrough ns4:16890 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:04698 . + +ns4:53962 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:25347, - ns2:68140 ; - ns1:connectsThrough ns2:25347 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68140 . - -ns2:54268 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:25347, + ns4:68140 ; + ns2:connectsThrough ns4:25347 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68140 . + +ns4:54268 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:88253, - ns2:92921 ; - ns1:connectsThrough ns2:92921 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88253 . - -ns2:54319 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:88253, + ns4:92921 ; + ns2:connectsThrough ns4:92921 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88253 . + +ns4:54319 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:19107, - ns2:39985 ; - ns1:connectsThrough ns2:39985 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:19107 . - -ns2:54486 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:19107, + ns4:39985 ; + ns2:connectsThrough ns4:39985 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:19107 . + +ns4:54486 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "0-1.zone.returnOutlet" ; - ns1:cnx ns2:58975, - ns2:59512 ; - ns1:connectsThrough ns2:59512 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58975 . - -ns2:54523 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:58975, + ns4:59512 ; + ns2:connectsThrough ns4:59512 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58975 . + +ns4:54523 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_flow_station.airInlet" ; - ns1:cnx ns2:54792, - ns2:83653 ; - ns1:connectsThrough ns2:83653 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54792 . - -ns2:54692 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:54792, + ns4:83653 ; + ns2:connectsThrough ns4:83653 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54792 . + +ns4:54692 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_9.RTU_8.Ceiling.returnOutlet" ; - ns1:cnx ns2:08315, - ns2:98159 ; - ns1:connectsThrough ns2:08315 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98159 . - -ns2:54882 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:08315, + ns4:98159 ; + ns2:connectsThrough ns4:08315 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98159 . + +ns4:54882 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:25613, - ns2:36241 ; - ns1:connectsThrough ns2:36241 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25613 . - -ns2:55013 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25613, + ns4:36241 ; + ns2:connectsThrough ns4:36241 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25613 . + +ns4:55013 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "cwc.airOutlet" ; - ns1:cnx ns2:45817, - ns2:48176 ; - ns1:connectsThrough ns2:48176 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45817 . - -ns2:55187 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:45817, + ns4:48176 ; + ns2:connectsThrough ns4:48176 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45817 . + +ns4:55187 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:51343, - ns2:90702 ; - ns1:connectsThrough ns2:90702 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:51343 . - -ns2:55212 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:51343, + ns4:90702 ; + ns2:connectsThrough ns4:90702 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:51343 . + +ns4:55212 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:09638, - ns2:80062 ; - ns1:connectsThrough ns2:80062 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09638 . - -ns2:55213 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:09638, + ns4:80062 ; + ns2:connectsThrough ns4:80062 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09638 . + +ns4:55213 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:68166, - ns2:77276 ; - ns1:connectsThrough ns2:77276 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68166 . - -ns2:55416 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:68166, + ns4:77276 ; + ns2:connectsThrough ns4:77276 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68166 . + +ns4:55416 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:24559, - ns2:85262 ; - ns1:connectsThrough ns2:85262 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:24559 . - -ns2:55505 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:24559, + ns4:85262 ; + ns2:connectsThrough ns4:85262 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:24559 . + +ns4:55505 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "iso_damper.airInlet" ; - ns1:cnx ns2:00808, - ns2:83407 ; - ns1:connectsThrough ns2:83407 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:00808 . - -ns2:55520 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:00808, + ns4:83407 ; + ns2:connectsThrough ns4:83407 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:00808 . + +ns4:55520 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-44.zone.returnOutlet" ; - ns1:cnx ns2:57735, - ns2:76100 ; - ns1:connectsThrough ns2:57735 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:76100 . - -ns2:55679 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:57735, + ns4:76100 ; + ns2:connectsThrough ns4:57735 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:76100 . + +ns4:55679 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-6A.zone.supplyInlet" ; - ns1:cnx ns2:79420, - ns2:94342 ; - ns1:connectsThrough ns2:94342 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:79420 . - -ns2:55877 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:79420, + ns4:94342 ; + ns2:connectsThrough ns4:94342 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:79420 . + +ns4:55877 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:36176, - ns2:39524 ; - ns1:connectsThrough ns2:39524 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:36176 . - -ns2:55931 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:36176, + ns4:39524 ; + ns2:connectsThrough ns4:39524 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:36176 . + +ns4:55931 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:29667, - ns2:80693 ; - ns1:connectsThrough ns2:29667 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80693 . - -ns2:55942 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:29667, + ns4:80693 ; + ns2:connectsThrough ns4:29667 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80693 . + +ns4:55942 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:22040, - ns2:39723 ; - ns1:connectsThrough ns2:39723 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:22040 . - -ns2:56030 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:22040, + ns4:39723 ; + ns2:connectsThrough ns4:39723 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:22040 . + +ns4:56030 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "8-7.zone.returnOutlet" ; - ns1:cnx ns2:04698, - ns2:32081 ; - ns1:connectsThrough ns2:32081 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:04698 . - -ns2:56041 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:04698, + ns4:32081 ; + ns2:connectsThrough ns4:32081 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:04698 . + +ns4:56041 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_6.CoreZone.core_space_8.airInlet" ; - ns1:cnx ns2:18693, - ns2:25566 ; - ns1:connectsThrough ns2:25566 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18693 . - -ns2:56136 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:18693, + ns4:25566 ; + ns2:connectsThrough ns4:25566 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18693 . + +ns4:56136 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:41545, - ns2:95932 ; - ns1:connectsThrough ns2:95932 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:41545 . - -ns2:56172 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:41545, + ns4:95932 ; + ns2:connectsThrough ns4:95932 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:41545 . + +ns4:56172 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_8.CoreZone.core_space_8.airOutlet" ; - ns1:cnx ns2:18693, - ns2:71928 ; - ns1:connectsThrough ns2:71928 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18693 . - -ns2:56205 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18693, + ns4:71928 ; + ns2:connectsThrough ns4:71928 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18693 . + +ns4:56205 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "8-43A.zone.returnOutlet" ; - ns1:cnx ns2:18257, - ns2:54090 ; - ns1:connectsThrough ns2:18257 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54090 . - -ns2:56530 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18257, + ns4:54090 ; + ns2:connectsThrough ns4:18257 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54090 . + +ns4:56530 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "1-35.zone.returnOutlet" ; - ns1:cnx ns2:95463, - ns2:96232 ; - ns1:connectsThrough ns2:95463 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:96232 . - -ns2:56624 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:95463, + ns4:96232 ; + ns2:connectsThrough ns4:95463 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:96232 . + +ns4:56624 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:46331, - ns2:74360 ; - ns1:connectsThrough ns2:46331 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74360 . - -ns2:56747 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:46331, + ns4:74360 ; + ns2:connectsThrough ns4:46331 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74360 . + +ns4:56747 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-9.zone.returnOutlet" ; - ns1:cnx ns2:42054, - ns2:97668 ; - ns1:connectsThrough ns2:42054 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97668 . - -ns2:56799 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42054, + ns4:97668 ; + ns2:connectsThrough ns4:42054 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97668 . + +ns4:56799 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "mixed_air_damper.airInlet" ; - ns1:cnx ns2:39848, - ns2:52572 ; - ns1:connectsThrough ns2:52572 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:39848 . - -ns2:57751 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:39848, + ns4:52572 ; + ns2:connectsThrough ns4:52572 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:39848 . + +ns4:57751 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:16657, - ns2:54101 ; - ns1:connectsThrough ns2:16657 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54101 . - -ns2:58482 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16657, + ns4:54101 ; + ns2:connectsThrough ns4:16657 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54101 . + +ns4:58482 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_0.RTU_3.Ceiling.returnOutlet" ; - ns1:cnx ns2:69111, - ns2:97787 ; - ns1:connectsThrough ns2:97787 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69111 . - -ns2:58895 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69111, + ns4:97787 ; + ns2:connectsThrough ns4:97787 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69111 . + +ns4:58895 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "1-71B.zone.returnOutlet" ; - ns1:cnx ns2:69136, - ns2:77139 ; - ns1:connectsThrough ns2:77139 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69136 . - -ns2:58956 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69136, + ns4:77139 ; + ns2:connectsThrough ns4:77139 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69136 . + +ns4:58956 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-65.zone.supplyInlet" ; - ns1:cnx ns2:32220, - ns2:83378 ; - ns1:connectsThrough ns2:32220 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83378 . - -ns2:59115 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:32220, + ns4:83378 ; + ns2:connectsThrough ns4:32220 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83378 . + +ns4:59115 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "final_filter.airOutlet" ; - ns1:cnx ns2:17912, - ns2:85048 ; - ns1:connectsThrough ns2:85048 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:17912 . - -ns2:59177 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:17912, + ns4:85048 ; + ns2:connectsThrough ns4:85048 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:17912 . + +ns4:59177 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:26426, - ns2:75934 ; - ns1:connectsThrough ns2:75934 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:26426 . - -ns2:59892 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:26426, + ns4:75934 ; + ns2:connectsThrough ns4:75934 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:26426 . + +ns4:59892 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "ra_pres.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:59984 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:59984 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-2.zone.returnOutlet" ; - ns1:cnx ns2:34639, - ns2:80151 ; - ns1:connectsThrough ns2:34639 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80151 . - -ns2:60006 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34639, + ns4:80151 ; + ns2:connectsThrough ns4:34639 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80151 . + +ns4:60006 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:25067, - ns2:61128 ; - ns1:connectsThrough ns2:61128 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25067 . - -ns2:60071 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:25067, + ns4:61128 ; + ns2:connectsThrough ns4:61128 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25067 . + +ns4:60071 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:82606, - ns2:89915 ; - ns1:connectsThrough ns2:82606 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:89915 . - -ns2:60332 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:82606, + ns4:89915 ; + ns2:connectsThrough ns4:82606 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:89915 . + +ns4:60332 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "0-63.zone.returnOutlet" ; - ns1:cnx ns2:13461, - ns2:53271 ; - ns1:connectsThrough ns2:53271 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:13461 . - -ns2:60707 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:13461, + ns4:53271 ; + ns2:connectsThrough ns4:53271 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:13461 . + +ns4:60707 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:73219, - ns2:90702 ; - ns1:connectsThrough ns2:90702 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73219 . - -ns2:60877 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:73219, + ns4:90702 ; + ns2:connectsThrough ns4:90702 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73219 . + +ns4:60877 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:09200, - ns2:74884 ; - ns1:connectsThrough ns2:74884 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09200 . - -ns2:60889 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09200, + ns4:74884 ; + ns2:connectsThrough ns4:74884 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09200 . + +ns4:60889 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-39.zone.returnOutlet" ; - ns1:cnx ns2:33279, - ns2:45421 ; - ns1:connectsThrough ns2:33279 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45421 . - -ns2:61099 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:33279, + ns4:45421 ; + ns2:connectsThrough ns4:33279 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45421 . + +ns4:61099 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "1-6.zone.returnOutlet" ; - ns1:cnx ns2:16454, - ns2:97276 ; - ns1:connectsThrough ns2:97276 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:16454 . - -ns2:61169 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16454, + ns4:97276 ; + ns2:connectsThrough ns4:97276 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:16454 . + +ns4:61169 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:38529, - ns2:82929 ; - ns1:connectsThrough ns2:82929 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:38529 . - -ns2:61573 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:38529, + ns4:82929 ; + ns2:connectsThrough ns4:82929 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:38529 . + +ns4:61573 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:65779, - ns2:77406 ; - ns1:connectsThrough ns2:77406 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65779 . - -ns2:61895 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:65779, + ns4:77406 ; + ns2:connectsThrough ns4:77406 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65779 . + +ns4:61895 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-1.zone.supplyInlet" ; - ns1:cnx ns2:73677, - ns2:93162 ; - ns1:connectsThrough ns2:73677 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:93162 . - -ns2:61920 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:73677, + ns4:93162 ; + ns2:connectsThrough ns4:73677 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:93162 . + +ns4:61920 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:39513, - ns2:63455 ; - ns1:connectsThrough ns2:63455 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:39513 . - -ns2:62031 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:39513, + ns4:63455 ; + ns2:connectsThrough ns4:63455 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:39513 . + +ns4:62031 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:19014, - ns2:24513 ; - ns1:connectsThrough ns2:24513 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:19014 . - -ns2:62103 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:19014, + ns4:24513 ; + ns2:connectsThrough ns4:24513 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:19014 . + +ns4:62103 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "bp_damper.airOutlet" ; - ns1:cnx ns2:15832, - ns2:92197 ; - ns1:connectsThrough ns2:15832 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:92197 . - -ns2:62284 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15832, + ns4:92197 ; + ns2:connectsThrough ns4:15832 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:92197 . + +ns4:62284 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-92.zone.supplyInlet" ; - ns1:cnx ns2:34910, - ns2:45421 ; - ns1:connectsThrough ns2:34910 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45421 . - -ns2:62873 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34910, + ns4:45421 ; + ns2:connectsThrough ns4:34910 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45421 . + +ns4:62873 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:56611, - ns2:96615 ; - ns1:connectsThrough ns2:96615 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:56611 . - -ns2:63046 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:56611, + ns4:96615 ; + ns2:connectsThrough ns4:96615 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:56611 . + +ns4:63046 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:42654, - ns2:81183 ; - ns1:connectsThrough ns2:42654 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:81183 . - -ns2:63557 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42654, + ns4:81183 ; + ns2:connectsThrough ns4:42654 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:81183 . + +ns4:63557 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:00783, - ns2:57596 ; - ns1:connectsThrough ns2:57596 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:00783 . - -ns2:63823 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:00783, + ns4:57596 ; + ns2:connectsThrough ns4:57596 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:00783 . + +ns4:63823 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "pre_filter.airInlet" ; - ns1:cnx ns2:64314, - ns2:80380 ; - ns1:connectsThrough ns2:80380 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:64314 . - -ns2:64177 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:64314, + ns4:80380 ; + ns2:connectsThrough ns4:80380 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:64314 . + +ns4:64177 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "bp_damper.airOutlet" ; - ns1:cnx ns2:42612, - ns2:62986 ; - ns1:connectsThrough ns2:42612 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62986 . - -ns2:64279 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42612, + ns4:62986 ; + ns2:connectsThrough ns4:42612 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62986 . + +ns4:64279 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-7A.zone.supplyInlet" ; - ns1:cnx ns2:16382, - ns2:90402 ; - ns1:connectsThrough ns2:16382 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:90402 . - -ns2:64302 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16382, + ns4:90402 ; + ns2:connectsThrough ns4:16382 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:90402 . + +ns4:64302 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:06502, - ns2:56445 ; - ns1:connectsThrough ns2:56445 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06502 . - -ns2:64347 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06502, + ns4:56445 ; + ns2:connectsThrough ns4:56445 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06502 . + +ns4:64347 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:09852, - ns2:62383 ; - ns1:connectsThrough ns2:09852 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62383 . - -ns2:64663 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09852, + ns4:62383 ; + ns2:connectsThrough ns4:09852 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62383 . + +ns4:64663 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-39.zone.returnOutlet" ; - ns1:cnx ns2:10814, - ns2:16934 ; - ns1:connectsThrough ns2:16934 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10814 . - -ns2:65082 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:10814, + ns4:16934 ; + ns2:connectsThrough ns4:16934 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10814 . + +ns4:65082 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_flow_station.airOutlet" ; - ns1:cnx ns2:55046, - ns2:73249 ; - ns1:connectsThrough ns2:55046 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73249 . - -ns2:65351 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:55046, + ns4:73249 ; + ns2:connectsThrough ns4:55046 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73249 . + +ns4:65351 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-93.zone.returnOutlet" ; - ns1:cnx ns2:21786, - ns2:24053 ; - ns1:connectsThrough ns2:21786 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:24053 . - -ns2:65665 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:21786, + ns4:24053 ; + ns2:connectsThrough ns4:21786 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:24053 . + +ns4:65665 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "7-26D.zone.returnOutlet" ; - ns1:cnx ns2:57605, - ns2:91944 ; - ns1:connectsThrough ns2:57605 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:91944 . - -ns2:66260 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:57605, + ns4:91944 ; + ns2:connectsThrough ns4:57605 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:91944 . + +ns4:66260 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:74065, - ns2:93913 ; - ns1:connectsThrough ns2:93913 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74065 . - -ns2:66490 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:74065, + ns4:93913 ; + ns2:connectsThrough ns4:93913 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74065 . + +ns4:66490 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_4.RTU_5.Ceiling.returnOutlet" ; - ns1:cnx ns2:46019, - ns2:91912 ; - ns1:connectsThrough ns2:91912 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46019 . - -ns2:66509 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:46019, + ns4:91912 ; + ns2:connectsThrough ns4:91912 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46019 . + +ns4:66509 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-65.zone.supplyInlet" ; - ns1:cnx ns2:24053, - ns2:84877 ; - ns1:connectsThrough ns2:84877 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:24053 . - -ns2:66888 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:24053, + ns4:84877 ; + ns2:connectsThrough ns4:84877 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:24053 . + +ns4:66888 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-01.zone.returnOutlet" ; - ns1:cnx ns2:33721, - ns2:50484 ; - ns1:connectsThrough ns2:50484 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:33721 . - -ns2:67520 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:33721, + ns4:50484 ; + ns2:connectsThrough ns4:50484 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:33721 . + +ns4:67520 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-61A.zone.returnOutlet" ; - ns1:cnx ns2:16718, - ns2:70253 ; - ns1:connectsThrough ns2:16718 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:70253 . - -ns2:67748 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16718, + ns4:70253 ; + ns2:connectsThrough ns4:16718 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:70253 . + +ns4:67748 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:41561, - ns2:84040 ; - ns1:connectsThrough ns2:41561 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:84040 . - -ns2:68422 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:41561, + ns4:84040 ; + ns2:connectsThrough ns4:41561 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:84040 . + +ns4:68422 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:81633, - ns2:85409 ; - ns1:connectsThrough ns2:81633 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:85409 . - -ns2:68518 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:81633, + ns4:85409 ; + ns2:connectsThrough ns4:81633 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:85409 . + +ns4:68518 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "7-84.zone.supplyInlet" ; - ns1:cnx ns2:25111, - ns2:50418 ; - ns1:connectsThrough ns2:25111 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:50418 . - -ns2:69029 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:25111, + ns4:50418 ; + ns2:connectsThrough ns4:25111 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:50418 . + +ns4:69029 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:83428, - ns2:92921 ; - ns1:connectsThrough ns2:92921 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83428 . - -ns2:69089 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:83428, + ns4:92921 ; + ns2:connectsThrough ns4:92921 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83428 . + +ns4:69089 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:39985, - ns2:80276 ; - ns1:connectsThrough ns2:39985 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80276 . - -ns2:69319 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:39985, + ns4:80276 ; + ns2:connectsThrough ns4:39985 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80276 . + +ns4:69319 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "return_fan.airOutlet" ; - ns1:cnx ns2:34927, - ns2:90476 ; - ns1:connectsThrough ns2:90476 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34927 . - -ns2:69394 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34927, + ns4:90476 ; + ns2:connectsThrough ns4:90476 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34927 . + +ns4:69394 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "cwc.airInlet" ; - ns1:cnx ns2:21343, - ns2:45817 ; - ns1:connectsThrough ns2:21343 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45817 . - -ns2:69563 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:21343, + ns4:45817 ; + ns2:connectsThrough ns4:21343 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45817 . + +ns4:69563 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:23324, - ns2:84620 ; - ns1:connectsThrough ns2:23324 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:84620 . - -ns2:70008 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:23324, + ns4:84620 ; + ns2:connectsThrough ns4:23324 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:84620 . + +ns4:70008 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-11.zone.supplyInlet" ; - ns1:cnx ns2:76264, - ns2:77887 ; - ns1:connectsThrough ns2:76264 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77887 . - -ns2:70423 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:76264, + ns4:77887 ; + ns2:connectsThrough ns4:76264 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77887 . + +ns4:70423 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "bp_damper.airInlet" ; - ns1:cnx ns2:21343, - ns2:57522 ; - ns1:connectsThrough ns2:21343 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:57522 . - -ns2:70442 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:21343, + ns4:57522 ; + ns2:connectsThrough ns4:21343 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:57522 . + +ns4:70442 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:45896, - ns2:95827 ; - ns1:connectsThrough ns2:95827 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45896 . - -ns2:71075 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:45896, + ns4:95827 ; + ns2:connectsThrough ns4:95827 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45896 . + +ns4:71075 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:37718, - ns2:70120 ; - ns1:connectsThrough ns2:37718 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:70120 . - -ns2:71145 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37718, + ns4:70120 ; + ns2:connectsThrough ns4:37718 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:70120 . + +ns4:71145 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:16050, - ns2:63295 ; - ns1:connectsThrough ns2:16050 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:63295 . - -ns2:71533 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16050, + ns4:63295 ; + ns2:connectsThrough ns4:16050 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:63295 . + +ns4:71533 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-8.zone.supplyInlet" ; - ns1:cnx ns2:26040, - ns2:68940 ; - ns1:connectsThrough ns2:68940 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:26040 . - -ns2:72250 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:26040, + ns4:68940 ; + ns2:connectsThrough ns4:68940 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:26040 . + +ns4:72250 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-60.zone.supplyInlet" ; - ns1:cnx ns2:75076, - ns2:92645 ; - ns1:connectsThrough ns2:75076 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:92645 . - -ns2:72299 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:75076, + ns4:92645 ; + ns2:connectsThrough ns4:75076 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:92645 . + +ns4:72299 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:26783, - ns2:82262 ; - ns1:connectsThrough ns2:26783 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:82262 . - -ns2:72386 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:26783, + ns4:82262 ; + ns2:connectsThrough ns4:26783 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:82262 . + +ns4:72386 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-08.zone.returnOutlet" ; - ns1:cnx ns2:09362, - ns2:28044 ; - ns1:connectsThrough ns2:28044 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09362 . - -ns2:73694 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09362, + ns4:28044 ; + ns2:connectsThrough ns4:28044 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09362 . + +ns4:73694 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "0-97.zone.returnOutlet" ; - ns1:cnx ns2:16445, - ns2:60471 ; - ns1:connectsThrough ns2:16445 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:60471 . - -ns2:73777 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16445, + ns4:60471 ; + ns2:connectsThrough ns4:16445 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:60471 . + +ns4:73777 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "cwc.airOutlet" ; - ns1:cnx ns2:42612, - ns2:57776 ; - ns1:connectsThrough ns2:42612 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:57776 . - -ns2:74179 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42612, + ns4:57776 ; + ns2:connectsThrough ns4:42612 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:57776 . + +ns4:74179 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:02809, - ns2:58411 ; - ns1:connectsThrough ns2:02809 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58411 . - -ns2:74351 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02809, + ns4:58411 ; + ns2:connectsThrough ns4:02809 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58411 . + +ns4:74351 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:16050, - ns2:68951 ; - ns1:connectsThrough ns2:16050 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68951 . - -ns2:75105 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16050, + ns4:68951 ; + ns2:connectsThrough ns4:16050 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68951 . + +ns4:75105 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_flow_station.airOutlet" ; - ns1:cnx ns2:34392, - ns2:80380 ; - ns1:connectsThrough ns2:80380 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34392 . - -ns2:75434 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34392, + ns4:80380 ; + ns2:connectsThrough ns4:80380 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34392 . + +ns4:75434 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "ea_damper.airInlet" ; - ns1:cnx ns2:51136, - ns2:56948 ; - ns1:connectsThrough ns2:51136 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:56948 . - -ns2:75833 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:51136, + ns4:56948 ; + ns2:connectsThrough ns4:51136 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:56948 . + +ns4:75833 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "sa_press.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:76009 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:76009 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:10658, - ns2:99824 ; - ns1:connectsThrough ns2:99824 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10658 . - -ns2:76054 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:10658, + ns4:99824 ; + ns2:connectsThrough ns4:99824 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10658 . + +ns4:76054 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:15386, - ns2:65015 ; - ns1:connectsThrough ns2:15386 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65015 . - -ns2:76232 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15386, + ns4:65015 ; + ns2:connectsThrough ns4:15386 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65015 . + +ns4:76232 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:20289, - ns2:61128 ; - ns1:connectsThrough ns2:61128 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:20289 . - -ns2:76440 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:20289, + ns4:61128 ; + ns2:connectsThrough ns4:61128 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:20289 . + +ns4:76440 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "6-77.zone.returnOutlet" ; - ns1:cnx ns2:65580, - ns2:98060 ; - ns1:connectsThrough ns2:98060 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65580 . - -ns2:76714 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:65580, + ns4:98060 ; + ns2:connectsThrough ns4:98060 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65580 . + +ns4:76714 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-7.zone.supplyInlet" ; - ns1:cnx ns2:33343, - ns2:69415 ; - ns1:connectsThrough ns2:33343 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69415 . - -ns2:76856 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:33343, + ns4:69415 ; + ns2:connectsThrough ns4:33343 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69415 . + +ns4:76856 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:25347, - ns2:80693 ; - ns1:connectsThrough ns2:25347 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80693 . - -ns2:76894 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:25347, + ns4:80693 ; + ns2:connectsThrough ns4:25347 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80693 . + +ns4:76894 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:34379, - ns2:49614 ; - ns1:connectsThrough ns2:34379 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:49614 . - -ns2:76930 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34379, + ns4:49614 ; + ns2:connectsThrough ns4:34379 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:49614 . + +ns4:76930 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:26783, - ns2:73674 ; - ns1:connectsThrough ns2:26783 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73674 . - -ns2:76954 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:26783, + ns4:73674 ; + ns2:connectsThrough ns4:26783 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73674 . + +ns4:76954 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:16343, - ns2:40887 ; - ns1:connectsThrough ns2:40887 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:16343 . - -ns2:76964 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16343, + ns4:40887 ; + ns2:connectsThrough ns4:40887 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:16343 . + +ns4:76964 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:55408, - ns2:92091 ; - ns1:connectsThrough ns2:92091 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:55408 . - -ns2:77207 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:55408, + ns4:92091 ; + ns2:connectsThrough ns4:92091 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:55408 . + +ns4:77207 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "pre_filter.airOutlet" ; - ns1:cnx ns2:15718, - ns2:57148 ; - ns1:connectsThrough ns2:57148 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15718 . - -ns2:77513 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:15718, + ns4:57148 ; + ns2:connectsThrough ns4:57148 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15718 . + +ns4:77513 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:13472, - ns2:95090 ; - ns1:connectsThrough ns2:13472 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:95090 . - -ns2:77736 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:13472, + ns4:95090 ; + ns2:connectsThrough ns4:13472 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:95090 . + +ns4:77736 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:58818, - ns2:87632 ; - ns1:connectsThrough ns2:58818 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87632 . - -ns2:77862 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:58818, + ns4:87632 ; + ns2:connectsThrough ns4:58818 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87632 . + +ns4:77862 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_damper.airOutlet" ; - ns1:cnx ns2:35505, - ns2:83653 ; - ns1:connectsThrough ns2:83653 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:35505 . - -ns2:78426 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:35505, + ns4:83653 ; + ns2:connectsThrough ns4:83653 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:35505 . + +ns4:78426 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:23392, - ns2:39389 ; - ns1:connectsThrough ns2:39389 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:23392 . - -ns2:78608 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:23392, + ns4:39389 ; + ns2:connectsThrough ns4:39389 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:23392 . + +ns4:78608 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:02277, - ns2:68016 ; - ns1:connectsThrough ns2:02277 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68016 . - -ns2:78724 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02277, + ns4:68016 ; + ns2:connectsThrough ns4:02277 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68016 . + +ns4:78724 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-06.zone.supplyInlet" ; - ns1:cnx ns2:07686, - ns2:94119 ; - ns1:connectsThrough ns2:07686 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:94119 . - -ns2:79048 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07686, + ns4:94119 ; + ns2:connectsThrough ns4:07686 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:94119 . + +ns4:79048 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-41.zone.returnOutlet" ; - ns1:cnx ns2:25798, - ns2:83378 ; - ns1:connectsThrough ns2:25798 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83378 . - -ns2:79140 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25798, + ns4:83378 ; + ns2:connectsThrough ns4:25798 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83378 . + +ns4:79140 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:45992, - ns2:96963 ; - ns1:connectsThrough ns2:96963 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45992 . - -ns2:79219 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:45992, + ns4:96963 ; + ns2:connectsThrough ns4:96963 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45992 . + +ns4:79219 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "ff_press.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:79416 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; +ns4:79416 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:43925, - ns2:85932 ; - ns1:connectsThrough ns2:85932 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:43925 . - -ns2:79430 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:43925, + ns4:85932 ; + ns2:connectsThrough ns4:85932 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:43925 . + +ns4:79430 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-2.zone.returnOutlet" ; - ns1:cnx ns2:63334, - ns2:86286 ; - ns1:connectsThrough ns2:86286 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:63334 . - -ns2:80091 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:63334, + ns4:86286 ; + ns2:connectsThrough ns4:86286 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:63334 . + +ns4:80091 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:60841, - ns2:64612 ; - ns1:connectsThrough ns2:64612 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:60841 . - -ns2:80383 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:60841, + ns4:64612 ; + ns2:connectsThrough ns4:64612 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:60841 . + +ns4:80383 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "cwc.airOutlet" ; - ns1:cnx ns2:15832, - ns2:47395 ; - ns1:connectsThrough ns2:15832 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:47395 . - -ns2:80482 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15832, + ns4:47395 ; + ns2:connectsThrough ns4:15832 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:47395 . + +ns4:80482 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-99.zone.supplyInlet" ; - ns1:cnx ns2:42081, - ns2:76100 ; - ns1:connectsThrough ns2:42081 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:76100 . - -ns2:80679 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:42081, + ns4:76100 ; + ns2:connectsThrough ns4:42081 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:76100 . + +ns4:80679 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-7.zone.supplyInlet" ; - ns1:cnx ns2:29499, - ns2:47009 ; - ns1:connectsThrough ns2:47009 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29499 . - -ns2:80749 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:29499, + ns4:47009 ; + ns2:connectsThrough ns4:47009 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29499 . + +ns4:80749 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:18099, - ns2:24250 ; - ns1:connectsThrough ns2:24250 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18099 . - -ns2:80775 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:AirConnectionPoint, - ns4:Temperature ; + ns2:cnx ns4:18099, + ns4:24250 ; + ns2:connectsThrough ns4:24250 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18099 . + +ns4:80775 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:AirConnectionPoint, + ns3:Temperature ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:62510 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62510 ; - ns1:mapsTo ns2:14550 ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:81189 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:62510 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62510 ; + ns2:mapsTo ns4:14550 ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:81189 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:33969, - ns2:52918 ; - ns1:connectsThrough ns2:33969 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:52918 . - -ns2:81543 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:33969, + ns4:52918 ; + ns2:connectsThrough ns4:33969 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:52918 . + +ns4:81543 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:20991, - ns2:45992 ; - ns1:connectsThrough ns2:20991 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:45992 . - -ns2:81688 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:20991, + ns4:45992 ; + ns2:connectsThrough ns4:20991 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:45992 . + +ns4:81688 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:74130, - ns2:80445 ; - ns1:connectsThrough ns2:80445 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74130 . - -ns2:81861 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:74130, + ns4:80445 ; + ns2:connectsThrough ns4:80445 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74130 . + +ns4:81861 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:38627, - ns2:86505 ; - ns1:connectsThrough ns2:86505 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:38627 . - -ns2:81884 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:38627, + ns4:86505 ; + ns2:connectsThrough ns4:86505 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:38627 . + +ns4:81884 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:64318, - ns2:71903 ; - ns1:connectsThrough ns2:71903 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:64318 . - -ns2:81895 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:64318, + ns4:71903 ; + ns2:connectsThrough ns4:71903 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:64318 . + +ns4:81895 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:19805, - ns2:40374 ; - ns1:connectsThrough ns2:40374 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:19805 . - -ns2:82356 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:19805, + ns4:40374 ; + ns2:connectsThrough ns4:40374 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:19805 . + +ns4:82356 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:69810, - ns2:91853 ; - ns1:connectsThrough ns2:69810 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:91853 . - -ns2:82625 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69810, + ns4:91853 ; + ns2:connectsThrough ns4:69810 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:91853 . + +ns4:82625 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-6.zone.returnOutlet" ; - ns1:cnx ns2:05672, - ns2:29499 ; - ns1:connectsThrough ns2:05672 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29499 . - -ns2:82894 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05672, + ns4:29499 ; + ns2:connectsThrough ns4:05672 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29499 . + +ns4:82894 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-10.zone.returnOutlet" ; - ns1:cnx ns2:28842, - ns2:67586 ; - ns1:connectsThrough ns2:28842 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:67586 . - -ns2:82977 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:28842, + ns4:67586 ; + ns2:connectsThrough ns4:28842 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:67586 . + +ns4:82977 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "5-41.zone.supplyInlet" ; - ns1:cnx ns2:06559, - ns2:13344 ; - ns1:connectsThrough ns2:06559 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:13344 . - -ns2:83074 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06559, + ns4:13344 ; + ns2:connectsThrough ns4:06559 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:13344 . + +ns4:83074 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:41382, - ns2:74362 ; - ns1:connectsThrough ns2:41382 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:74362 . - -ns2:83463 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:41382, + ns4:74362 ; + ns2:connectsThrough ns4:41382 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:74362 . + +ns4:83463 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:33619, - ns2:73323 ; - ns1:connectsThrough ns2:33619 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73323 . - -ns2:83482 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:33619, + ns4:73323 ; + ns2:connectsThrough ns4:33619 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73323 . + +ns4:83482 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:25601, - ns2:87421 ; - ns1:connectsThrough ns2:25601 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87421 . - -ns2:83742 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25601, + ns4:87421 ; + ns2:connectsThrough ns4:25601 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87421 . + +ns4:83742 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-68.zone.returnOutlet" ; - ns1:cnx ns2:16958, - ns2:87782 ; - ns1:connectsThrough ns2:16958 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:87782 . - -ns2:83796 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:16958, + ns4:87782 ; + ns2:connectsThrough ns4:16958 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:87782 . + +ns4:83796 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:10658, - ns2:62479 ; - ns1:connectsThrough ns2:62479 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10658 . - -ns2:84065 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:10658, + ns4:62479 ; + ns2:connectsThrough ns4:62479 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10658 . + +ns4:84065 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:77381, - ns2:77406 ; - ns1:connectsThrough ns2:77406 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77381 . - -ns2:84103 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:77381, + ns4:77406 ; + ns2:connectsThrough ns4:77406 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77381 . + +ns4:84103 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:25284, - ns2:72337 ; - ns1:connectsThrough ns2:25284 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:72337 . - -ns2:84668 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25284, + ns4:72337 ; + ns2:connectsThrough ns4:25284 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:72337 . + +ns4:84668 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:49064, - ns2:55174 ; - ns1:connectsThrough ns2:55174 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:49064 . - -ns2:84841 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:49064, + ns4:55174 ; + ns2:connectsThrough ns4:55174 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:49064 . + +ns4:84841 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:08808, - ns2:12686 ; - ns1:connectsThrough ns2:08808 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12686 . - -ns2:84974 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:08808, + ns4:12686 ; + ns2:connectsThrough ns4:08808 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12686 . + +ns4:84974 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "sa_press.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:85649 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:85649 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_damper.airOutlet" ; - ns1:cnx ns2:51238, - ns2:75183 ; - ns1:connectsThrough ns2:75183 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:51238 . - -ns2:85858 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:51238, + ns4:75183 ; + ns2:connectsThrough ns4:75183 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:51238 . + +ns4:85858 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:17361, - ns2:92091 ; - ns1:connectsThrough ns2:92091 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:17361 . - -ns2:85905 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:17361, + ns4:92091 ; + ns2:connectsThrough ns4:92091 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:17361 . + +ns4:85905 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:67974, - ns2:71329 ; - ns1:connectsThrough ns2:67974 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:71329 . - -ns2:86634 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:67974, + ns4:71329 ; + ns2:connectsThrough ns4:67974 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:71329 . + +ns4:86634 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-60.zone.supplyInlet" ; - ns1:cnx ns2:31562, - ns2:67586 ; - ns1:connectsThrough ns2:31562 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:67586 . - -ns2:87151 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:31562, + ns4:67586 ; + ns2:connectsThrough ns4:31562 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:67586 . + +ns4:87151 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-80.zone.returnOutlet" ; - ns1:cnx ns2:53655, - ns2:77887 ; - ns1:connectsThrough ns2:53655 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77887 . - -ns2:87186 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:53655, + ns4:77887 ; + ns2:connectsThrough ns4:53655 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77887 . + +ns4:87186 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "0-80.zone.supplyInlet" ; - ns1:cnx ns2:46213, - ns2:85385 ; - ns1:connectsThrough ns2:85385 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46213 . - -ns2:87263 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:46213, + ns4:85385 ; + ns2:connectsThrough ns4:85385 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46213 . + +ns4:87263 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:02075, - ns2:82619 ; - ns1:connectsThrough ns2:02075 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:82619 . - -ns2:87318 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02075, + ns4:82619 ; + ns2:connectsThrough ns4:02075 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:82619 . + +ns4:87318 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:07924, - ns2:85048 ; - ns1:connectsThrough ns2:85048 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:07924 . - -ns2:87387 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07924, + ns4:85048 ; + ns2:connectsThrough ns4:85048 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:07924 . + +ns4:87387 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:54863, - ns2:62510 ; - ns1:connectsThrough ns2:54863 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62510 . - -ns2:87432 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:54863, + ns4:62510 ; + ns2:connectsThrough ns4:54863 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62510 . + +ns4:87432 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:60254, - ns2:88844 ; - ns1:connectsThrough ns2:88844 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:60254 . - -ns2:87692 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:60254, + ns4:88844 ; + ns2:connectsThrough ns4:88844 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:60254 . + +ns4:87692 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:12686, - ns2:95932 ; - ns1:connectsThrough ns2:95932 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12686 . - -ns2:87812 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:12686, + ns4:95932 ; + ns2:connectsThrough ns4:95932 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12686 . + +ns4:87812 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "7-00.zone.supplyInlet" ; - ns1:cnx ns2:06115, - ns2:65580 ; - ns1:connectsThrough ns2:06115 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65580 . - -ns2:87860 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06115, + ns4:65580 ; + ns2:connectsThrough ns4:06115 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65580 . + +ns4:87860 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-74.zone.returnOutlet" ; - ns1:cnx ns2:54382, - ns2:94119 ; - ns1:connectsThrough ns2:54382 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:94119 . - -ns2:88169 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:54382, + ns4:94119 ; + ns2:connectsThrough ns4:54382 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:94119 . + +ns4:88169 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:32837, - ns2:52537 ; - ns1:connectsThrough ns2:52537 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:32837 . - -ns2:88184 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:32837, + ns4:52537 ; + ns2:connectsThrough ns4:52537 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:32837 . + +ns4:88184 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:02075, - ns2:06594 ; - ns1:connectsThrough ns2:02075 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06594 . - -ns2:88217 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:02075, + ns4:06594 ; + ns2:connectsThrough ns4:02075 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06594 . + +ns4:88217 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:04430, - ns2:33619 ; - ns1:connectsThrough ns2:33619 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:04430 . - -ns2:88280 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:04430, + ns4:33619 ; + ns2:connectsThrough ns4:33619 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:04430 . + +ns4:88280 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "5-7.zone.supplyInlet" ; - ns1:cnx ns2:08368, - ns2:16454 ; - ns1:connectsThrough ns2:08368 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:16454 . - -ns2:88535 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:08368, + ns4:16454 ; + ns2:connectsThrough ns4:08368 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:16454 . + +ns4:88535 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:57596, - ns2:68166 ; - ns1:connectsThrough ns2:57596 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68166 . - -ns2:88604 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:57596, + ns4:68166 ; + ns2:connectsThrough ns4:57596 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68166 . + +ns4:88604 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:65381, - ns2:75934 ; - ns1:connectsThrough ns2:75934 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65381 . - -ns2:88748 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:65381, + ns4:75934 ; + ns2:connectsThrough ns4:75934 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65381 . + +ns4:88748 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "5-99B.zone.supplyInlet" ; - ns1:cnx ns2:69136, - ns2:70445 ; - ns1:connectsThrough ns2:70445 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69136 . - -ns2:88895 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69136, + ns4:70445 ; + ns2:connectsThrough ns4:70445 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69136 . + +ns4:88895 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:08808, - ns2:66562 ; - ns1:connectsThrough ns2:08808 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:66562 . - -ns2:88980 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:08808, + ns4:66562 ; + ns2:connectsThrough ns4:08808 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:66562 . + +ns4:88980 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:06594, - ns2:90552 ; - ns1:connectsThrough ns2:90552 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06594 . - -ns2:89063 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06594, + ns4:90552 ; + ns2:connectsThrough ns4:90552 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06594 . + +ns4:89063 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:12418, - ns2:35841 ; - ns1:connectsThrough ns2:35841 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12418 . - -ns2:89481 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:12418, + ns4:35841 ; + ns2:connectsThrough ns4:35841 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12418 . + +ns4:89481 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:27115, - ns2:44133 ; - ns1:connectsThrough ns2:27115 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:44133 . - -ns2:89815 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:27115, + ns4:44133 ; + ns2:connectsThrough ns4:27115 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:44133 . + +ns4:89815 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:02277, - ns2:80838 ; - ns1:connectsThrough ns2:02277 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80838 . - -ns2:89839 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02277, + ns4:80838 ; + ns2:connectsThrough ns4:02277 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80838 . + +ns4:89839 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:08470, - ns2:79421 ; - ns1:connectsThrough ns2:08470 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:79421 . - -ns2:89893 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:08470, + ns4:79421 ; + ns2:connectsThrough ns4:08470 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:79421 . + +ns4:89893 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "ra_pres.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:89973 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:89973 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "0-98.zone.supplyInlet" ; - ns1:cnx ns2:70764, - ns2:92270 ; - ns1:connectsThrough ns2:92270 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:70764 . - -ns2:89999 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:70764, + ns4:92270 ; + ns2:connectsThrough ns4:92270 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:70764 . + +ns4:89999 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "ea_damper.airInlet" ; - ns1:cnx ns2:49730, - ns2:90476 ; - ns1:connectsThrough ns2:90476 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:49730 . - -ns2:90570 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:49730, + ns4:90476 ; + ns2:connectsThrough ns4:90476 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:49730 . + +ns4:90570 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:37548, - ns2:72185 ; - ns1:connectsThrough ns2:37548 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:72185 . - -ns2:90577 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37548, + ns4:72185 ; + ns2:connectsThrough ns4:37548 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:72185 . + +ns4:90577 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "8-91.zone.supplyInlet" ; - ns1:cnx ns2:92766, - ns2:96232 ; - ns1:connectsThrough ns2:92766 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:96232 . - -ns2:90604 a ns1:ActuatableProperty, - ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns1:Property, - ns1:QuantifiableActuatableProperty, - ns1:QuantifiableProperty, - ns4:AirConnectionPoint, - ns4:PercentCommand ; + ns2:cnx ns4:92766, + ns4:96232 ; + ns2:connectsThrough ns4:92766 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:96232 . + +ns4:90604 a ns2:ActuatableProperty, + ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns2:Property, + ns2:QuantifiableActuatableProperty, + ns2:QuantifiableProperty, + ns3:AirConnectionPoint, + ns3:PercentCommand ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:92407 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:92407 ; - ns1:mapsTo ns2:64361 ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:90868 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:92407 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:92407 ; + ns2:mapsTo ns4:64361 ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:90868 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:20991, - ns2:25674 ; - ns1:connectsThrough ns2:20991 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25674 . - -ns2:91015 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:20991, + ns4:25674 ; + ns2:connectsThrough ns4:20991 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25674 . + +ns4:91015 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-5.zone.supplyInlet" ; - ns1:cnx ns2:04668, - ns2:58953 ; - ns1:connectsThrough ns2:04668 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58953 . - -ns2:91041 a ns1:ObservableProperty, - ns1:PhysicalSpace, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:04668, + ns4:58953 ; + ns2:connectsThrough ns4:04668 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58953 . + +ns4:91041 a ns2:ObservableProperty, + ns2:PhysicalSpace, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "4625", "lowPort.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:91065 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:91065 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-0.zone.returnOutlet" ; - ns1:cnx ns2:16551, - ns2:47830 ; - ns1:connectsThrough ns2:16551 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:47830 . - -ns2:91971 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16551, + ns4:47830 ; + ns2:connectsThrough ns4:16551 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:47830 . + +ns4:91971 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-1.zone.supplyInlet" ; - ns1:cnx ns2:05888, - ns2:96506 ; - ns1:connectsThrough ns2:05888 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:96506 . - -ns2:92008 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:05888, + ns4:96506 ; + ns2:connectsThrough ns4:05888 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:96506 . + +ns4:92008 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:21542, - ns2:68886 ; - ns1:connectsThrough ns2:21542 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68886 . - -ns2:92103 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:21542, + ns4:68886 ; + ns2:connectsThrough ns4:21542 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68886 . + +ns4:92103 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:08470, - ns2:68016 ; - ns1:connectsThrough ns2:08470 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:68016 . - -ns2:92540 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:08470, + ns4:68016 ; + ns2:connectsThrough ns4:08470 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:68016 . + +ns4:92540 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:05342, - ns2:24574 ; - ns1:connectsThrough ns2:24574 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05342 . - -ns2:92693 a ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:05342, + ns4:24574 ; + ns2:connectsThrough ns4:24574 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05342 . + +ns4:92693 a ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "ff_press.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:92763 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:92763 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "oa_flow_station.airInlet" ; - ns1:cnx ns2:73249, - ns2:75183 ; - ns1:connectsThrough ns2:75183 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73249 . - -ns2:92954 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:73249, + ns4:75183 ; + ns2:connectsThrough ns4:75183 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73249 . + +ns4:92954 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-9.zone.supplyInlet" ; - ns1:cnx ns2:30117, - ns2:47830 ; - ns1:connectsThrough ns2:30117 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:47830 . - -ns2:93088 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:30117, + ns4:47830 ; + ns2:connectsThrough ns4:30117 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:47830 . + +ns4:93088 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "bp_damper.airInlet" ; - ns1:cnx ns2:57148, - ns2:62986 ; - ns1:connectsThrough ns2:57148 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:62986 . - -ns2:93389 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:57148, + ns4:62986 ; + ns2:connectsThrough ns4:57148 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:62986 . + +ns4:93389 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:49614, - ns2:68106 ; - ns1:connectsThrough ns2:68106 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:49614 . - -ns2:93617 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:49614, + ns4:68106 ; + ns2:connectsThrough ns4:68106 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:49614 . + +ns4:93617 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-11A.zone.returnOutlet" ; - ns1:cnx ns2:05971, - ns2:65261 ; - ns1:connectsThrough ns2:65261 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05971 . - -ns2:94541 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:05971, + ns4:65261 ; + ns2:connectsThrough ns4:65261 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05971 . + +ns4:94541 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:04913, - ns2:62740 ; - ns1:connectsThrough ns2:62740 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:04913 . - -ns2:95093 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:04913, + ns4:62740 ; + ns2:connectsThrough ns4:62740 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:04913 . + +ns4:95093 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-45.zone.supplyInlet" ; - ns1:cnx ns2:08108, - ns2:33721 ; - ns1:connectsThrough ns2:08108 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:33721 . - -ns2:95273 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:08108, + ns4:33721 ; + ns2:connectsThrough ns4:08108 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:33721 . + +ns4:95273 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:12353, - ns2:24416 ; - ns1:connectsThrough ns2:12353 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:24416 . - -ns2:95885 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:12353, + ns4:24416 ; + ns2:connectsThrough ns4:12353 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:24416 . + +ns4:95885 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:58251, - ns2:79346 ; - ns1:connectsThrough ns2:79346 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58251 . - -ns2:95939 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:58251, + ns4:79346 ; + ns2:connectsThrough ns4:79346 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58251 . + +ns4:95939 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:09160, - ns2:30584 ; - ns1:connectsThrough ns2:30584 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09160 . - -ns2:96248 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09160, + ns4:30584 ; + ns2:connectsThrough ns4:30584 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09160 . + +ns4:96248 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:49364, - ns2:80065 ; - ns1:connectsThrough ns2:49364 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:80065 . - -ns2:96338 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:49364, + ns4:80065 ; + ns2:connectsThrough ns4:49364 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:80065 . + +ns4:96338 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_8.RTU_1.Plenum.supplyInlet" ; - ns1:cnx ns2:05353, - ns2:62659 ; - ns1:connectsThrough ns2:62659 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05353 . - -ns2:97049 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05353, + ns4:62659 ; + ns2:connectsThrough ns4:62659 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05353 . + +ns4:97049 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-42.zone.returnOutlet" ; - ns1:cnx ns2:55654, - ns2:72322 ; - ns1:connectsThrough ns2:72322 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:55654 . - -ns2:97168 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:55654, + ns4:72322 ; + ns2:connectsThrough ns4:72322 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:55654 . + +ns4:97168 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-77.zone.returnOutlet" ; - ns1:cnx ns2:03365, - ns2:32816 ; - ns1:connectsThrough ns2:32816 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03365 . - -ns2:97304 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03365, + ns4:32816 ; + ns2:connectsThrough ns4:32816 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03365 . + +ns4:97304 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "7-98A.zone.supplyInlet" ; - ns1:cnx ns2:54090, - ns2:71446 ; - ns1:connectsThrough ns2:71446 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:54090 . - -ns2:98327 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:54090, + ns4:71446 ; + ns2:connectsThrough ns4:71446 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:54090 . + +ns4:98327 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-31.zone.returnOutlet" ; - ns1:cnx ns2:83975, - ns2:98609 ; - ns1:connectsThrough ns2:83975 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:98609 . - -ns2:98522 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:83975, + ns4:98609 ; + ns2:connectsThrough ns4:83975 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:98609 . + +ns4:98522 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:30030, - ns2:41382 ; - ns1:connectsThrough ns2:41382 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:30030 . - -ns2:98616 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:30030, + ns4:41382 ; + ns2:connectsThrough ns4:41382 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:30030 . + +ns4:98616 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "hw_coil.airInlet" ; - ns1:cnx ns2:03023, - ns2:91853 ; - ns1:connectsThrough ns2:03023 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:91853 . - -ns2:98697 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:03023, + ns4:91853 ; + ns2:connectsThrough ns4:03023 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:91853 . + +ns4:98697 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_valve.waterInlet" ; - ns1:cnx ns2:48919, - ns2:96315 ; - ns1:connectsThrough ns2:48919 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:96315 . - -ns2:98956 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:48919, + ns4:96315 ; + ns2:connectsThrough ns4:48919 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:96315 . + +ns4:98956 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "0-57.zone.returnOutlet" ; - ns1:cnx ns2:37652, - ns2:70764 ; - ns1:connectsThrough ns2:37652 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:70764 . - -ns2:99413 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37652, + ns4:70764 ; + ns2:connectsThrough ns4:37652 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:70764 . + +ns4:99413 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-7.zone.returnOutlet" ; - ns1:cnx ns2:26799, - ns2:55685 ; - ns1:connectsThrough ns2:55685 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:26799 . - -ns2:99683 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:26799, + ns4:55685 ; + ns2:connectsThrough ns4:55685 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:26799 . + +ns4:99683 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:30030, - ns2:37718 ; - ns1:connectsThrough ns2:37718 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:30030 . - -ns2:99818 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:30030, + ns4:37718 ; + ns2:connectsThrough ns4:37718 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:30030 . + +ns4:99818 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:39389, - ns2:73219 ; - ns1:connectsThrough ns2:39389 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:73219 . + ns2:cnx ns4:39389, + ns4:73219 ; + ns2:connectsThrough ns4:39389 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:73219 . -ns2:00496 a ns1:Connection ; +ns4:00496 a ns2:Connection ; rdfs:label "00496" ; - ns1:cnx ns2:40219, - ns2:46802 ; - ns1:connectsAt ns2:40219, - ns2:46802 ; - ns1:connectsFrom ns2:13344 ; - ns1:connectsTo ns2:83890 ; - ns1:hasMedium . - -ns2:00543 a ns1:Connection ; + ns2:cnx ns4:40219, + ns4:46802 ; + ns2:connectsAt ns4:40219, + ns4:46802 ; + ns2:connectsFrom ns4:13344 ; + ns2:connectsTo ns4:83890 ; + ns2:hasMedium . + +ns4:00543 a ns2:Connection ; rdfs:label "00543" ; - ns1:cnx ns2:60124, - ns2:62707 ; - ns1:connectsAt ns2:60124, - ns2:62707 ; - ns1:connectsFrom ns2:46907 ; - ns1:connectsTo ns2:81406 ; - ns1:hasMedium . - -ns2:01094 a ns1:Connection ; + ns2:cnx ns4:60124, + ns4:62707 ; + ns2:connectsAt ns4:60124, + ns4:62707 ; + ns2:connectsFrom ns4:46907 ; + ns2:connectsTo ns4:81406 ; + ns2:hasMedium . + +ns4:01094 a ns2:Connection ; rdfs:label "01094" ; - ns1:cnx ns2:30599, - ns2:52815 ; - ns1:connectsAt ns2:30599, - ns2:52815 ; - ns1:connectsFrom ns2:03254 ; - ns1:connectsTo ns2:54463 ; - ns1:hasMedium . - -ns2:01874 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:30599, + ns4:52815 ; + ns2:connectsAt ns4:30599, + ns4:52815 ; + ns2:connectsFrom ns4:03254 ; + ns2:connectsTo ns4:54463 ; + ns2:hasMedium . + +ns4:01874 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_8.returnAirInlet" ; - ns1:cnx ns2:67780, - ns2:78087 ; - ns1:connectsThrough ns2:78087 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:67780 . + ns2:cnx ns4:67780, + ns4:78087 ; + ns2:connectsThrough ns4:78087 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:67780 . -ns2:02075 a ns1:Connection ; +ns4:02075 a ns2:Connection ; rdfs:label "02075" ; - ns1:cnx ns2:87263, - ns2:88184 ; - ns1:connectsAt ns2:87263, - ns2:88184 ; - ns1:connectsFrom ns2:82619 ; - ns1:connectsTo ns2:06594 ; - ns1:hasMedium . - -ns2:02809 a ns1:Connection ; + ns2:cnx ns4:87263, + ns4:88184 ; + ns2:connectsAt ns4:87263, + ns4:88184 ; + ns2:connectsFrom ns4:82619 ; + ns2:connectsTo ns4:06594 ; + ns2:hasMedium . + +ns4:02809 a ns2:Connection ; rdfs:label "02809" ; - ns1:cnx ns2:18032, - ns2:74179 ; - ns1:connectsAt ns2:18032, - ns2:74179 ; - ns1:connectsFrom ns2:24002 ; - ns1:connectsTo ns2:58411 ; - ns1:hasMedium . - -ns2:03023 a ns1:Connection ; + ns2:cnx ns4:18032, + ns4:74179 ; + ns2:connectsAt ns4:18032, + ns4:74179 ; + ns2:connectsFrom ns4:24002 ; + ns2:connectsTo ns4:58411 ; + ns2:hasMedium . + +ns4:03023 a ns2:Connection ; rdfs:label "03023" ; - ns1:cnx ns2:09753, - ns2:98616 ; - ns1:connectsAt ns2:09753, - ns2:98616 ; - ns1:connectsFrom ns2:26427 ; - ns1:connectsTo ns2:91853 ; - ns1:hasMedium . - -ns2:03342 a ns1:Connection ; + ns2:cnx ns4:09753, + ns4:98616 ; + ns2:connectsAt ns4:09753, + ns4:98616 ; + ns2:connectsFrom ns4:26427 ; + ns2:connectsTo ns4:91853 ; + ns2:hasMedium . + +ns4:03342 a ns2:Connection ; rdfs:label "03342" ; - ns1:cnx ns2:03863, - ns2:75519 ; - ns1:connectsAt ns2:03863, - ns2:75519 ; - ns1:connectsFrom ns2:03605 ; - ns1:connectsTo ns2:18693 ; - ns1:hasMedium . - -ns2:04028 a ns1:Connection ; + ns2:cnx ns4:03863, + ns4:75519 ; + ns2:connectsAt ns4:03863, + ns4:75519 ; + ns2:connectsFrom ns4:03605 ; + ns2:connectsTo ns4:18693 ; + ns2:hasMedium . + +ns4:04028 a ns2:Connection ; rdfs:label "04028" ; - ns1:cnx ns2:05320, - ns2:30894 ; - ns1:connectsAt ns2:05320, - ns2:30894 ; - ns1:connectsFrom ns2:16343 ; - ns1:connectsTo ns2:60462 ; - ns1:hasMedium . - -ns2:04668 a ns1:Connection ; + ns2:cnx ns4:05320, + ns4:30894 ; + ns2:connectsAt ns4:05320, + ns4:30894 ; + ns2:connectsFrom ns4:16343 ; + ns2:connectsTo ns4:60462 ; + ns2:hasMedium . + +ns4:04668 a ns2:Connection ; rdfs:label "04668" ; - ns1:cnx ns2:69373, - ns2:91015 ; - ns1:connectsAt ns2:69373, - ns2:91015 ; - ns1:connectsFrom ns2:86545 ; - ns1:connectsTo ns2:58953 ; - ns1:hasMedium . - -ns2:05672 a ns1:Connection ; + ns2:cnx ns4:69373, + ns4:91015 ; + ns2:connectsAt ns4:69373, + ns4:91015 ; + ns2:connectsFrom ns4:86545 ; + ns2:connectsTo ns4:58953 ; + ns2:hasMedium . + +ns4:05672 a ns2:Connection ; rdfs:label "05672" ; - ns1:cnx ns2:69060, - ns2:82625 ; - ns1:connectsAt ns2:69060, - ns2:82625 ; - ns1:connectsFrom ns2:29499 ; - ns1:connectsTo ns2:98159 ; - ns1:hasMedium . - -ns2:05888 a ns1:Connection ; + ns2:cnx ns4:69060, + ns4:82625 ; + ns2:connectsAt ns4:69060, + ns4:82625 ; + ns2:connectsFrom ns4:29499 ; + ns2:connectsTo ns4:98159 ; + ns2:hasMedium . + +ns4:05888 a ns2:Connection ; rdfs:label "05888" ; - ns1:cnx ns2:91971, - ns2:97393 ; - ns1:connectsAt ns2:91971, - ns2:97393 ; - ns1:connectsFrom ns2:88818 ; - ns1:connectsTo ns2:96506 ; - ns1:hasMedium . - -ns2:06115 a ns1:Connection ; + ns2:cnx ns4:91971, + ns4:97393 ; + ns2:connectsAt ns4:91971, + ns4:97393 ; + ns2:connectsFrom ns4:88818 ; + ns2:connectsTo ns4:96506 ; + ns2:hasMedium . + +ns4:06115 a ns2:Connection ; rdfs:label "06115" ; - ns1:cnx ns2:04201, - ns2:87812 ; - ns1:connectsAt ns2:04201, - ns2:87812 ; - ns1:connectsFrom ns2:51853 ; - ns1:connectsTo ns2:65580 ; - ns1:hasMedium . - -ns2:06559 a ns1:Connection ; + ns2:cnx ns4:04201, + ns4:87812 ; + ns2:connectsAt ns4:04201, + ns4:87812 ; + ns2:connectsFrom ns4:51853 ; + ns2:connectsTo ns4:65580 ; + ns2:hasMedium . + +ns4:06559 a ns2:Connection ; rdfs:label "06559" ; - ns1:cnx ns2:55916, - ns2:82977 ; - ns1:connectsAt ns2:55916, - ns2:82977 ; - ns1:connectsFrom ns2:95765 ; - ns1:connectsTo ns2:13344 ; - ns1:hasMedium . - -ns2:07051 a ns1:Connection ; + ns2:cnx ns4:55916, + ns4:82977 ; + ns2:connectsAt ns4:55916, + ns4:82977 ; + ns2:connectsFrom ns4:95765 ; + ns2:connectsTo ns4:13344 ; + ns2:hasMedium . + +ns4:07051 a ns2:Connection ; rdfs:label "07051" ; - ns1:cnx ns2:25300, - ns2:89654 ; - ns1:connectsAt ns2:25300, - ns2:89654 ; - ns1:connectsFrom ns2:42308 ; - ns1:connectsTo ns2:18875 ; - ns1:hasMedium . - -ns2:07088 a ns1:Connection ; + ns2:cnx ns4:25300, + ns4:89654 ; + ns2:connectsAt ns4:25300, + ns4:89654 ; + ns2:connectsFrom ns4:42308 ; + ns2:connectsTo ns4:18875 ; + ns2:hasMedium . + +ns4:07088 a ns2:Connection ; rdfs:label "07088" ; - ns1:cnx ns2:88796, - ns2:91202 ; - ns1:connectsAt ns2:88796, - ns2:91202 ; - ns1:connectsFrom ns2:88028 ; - ns1:connectsTo ns2:10117 ; - ns1:hasMedium . - -ns2:07095 a ns1:Connection ; + ns2:cnx ns4:88796, + ns4:91202 ; + ns2:connectsAt ns4:88796, + ns4:91202 ; + ns2:connectsFrom ns4:88028 ; + ns2:connectsTo ns4:10117 ; + ns2:hasMedium . + +ns4:07095 a ns2:Connection ; rdfs:label "07095" ; - ns1:cnx ns2:23460, - ns2:60443 ; - ns1:connectsAt ns2:23460, - ns2:60443 ; - ns1:connectsFrom ns2:05101 ; - ns1:connectsTo ns2:88818 ; - ns1:hasMedium . - -ns2:07119 a ns1:Connection ; + ns2:cnx ns4:23460, + ns4:60443 ; + ns2:connectsAt ns4:23460, + ns4:60443 ; + ns2:connectsFrom ns4:05101 ; + ns2:connectsTo ns4:88818 ; + ns2:hasMedium . + +ns4:07119 a ns2:Connection ; rdfs:label "07119" ; - ns1:cnx ns2:24339, - ns2:32646 ; - ns1:connectsAt ns2:24339, - ns2:32646 ; - ns1:connectsFrom ns2:71025 ; - ns1:connectsTo ns2:05062 ; - ns1:hasMedium . - -ns2:07591 a ns1:Connection ; + ns2:cnx ns4:24339, + ns4:32646 ; + ns2:connectsAt ns4:24339, + ns4:32646 ; + ns2:connectsFrom ns4:71025 ; + ns2:connectsTo ns4:05062 ; + ns2:hasMedium . + +ns4:07591 a ns2:Connection ; rdfs:label "07591" ; - ns1:cnx ns2:31834, - ns2:40636 ; - ns1:connectsAt ns2:31834, - ns2:40636 ; - ns1:connectsFrom ns2:10117 ; - ns1:connectsTo ns2:63086 ; - ns1:hasMedium . - -ns2:07881 a ns1:Connection ; + ns2:cnx ns4:31834, + ns4:40636 ; + ns2:connectsAt ns4:31834, + ns4:40636 ; + ns2:connectsFrom ns4:10117 ; + ns2:connectsTo ns4:63086 ; + ns2:hasMedium . + +ns4:07881 a ns2:Connection ; rdfs:label "07881" ; - ns1:cnx ns2:22163, - ns2:38974 ; - ns1:connectsAt ns2:22163, - ns2:38974 ; - ns1:connectsFrom ns2:32876 ; - ns1:connectsTo ns2:60471 ; - ns1:hasMedium . - -ns2:08108 a ns1:Connection ; + ns2:cnx ns4:22163, + ns4:38974 ; + ns2:connectsAt ns4:22163, + ns4:38974 ; + ns2:connectsFrom ns4:32876 ; + ns2:connectsTo ns4:60471 ; + ns2:hasMedium . + +ns4:08108 a ns2:Connection ; rdfs:label "08108" ; - ns1:cnx ns2:26091, - ns2:95093 ; - ns1:connectsAt ns2:26091, - ns2:95093 ; - ns1:connectsFrom ns2:66742 ; - ns1:connectsTo ns2:33721 ; - ns1:hasMedium . - -ns2:08368 a ns1:Connection ; + ns2:cnx ns4:26091, + ns4:95093 ; + ns2:connectsAt ns4:26091, + ns4:95093 ; + ns2:connectsFrom ns4:66742 ; + ns2:connectsTo ns4:33721 ; + ns2:hasMedium . + +ns4:08368 a ns2:Connection ; rdfs:label "08368" ; - ns1:cnx ns2:68285, - ns2:88280 ; - ns1:connectsAt ns2:68285, - ns2:88280 ; - ns1:connectsFrom ns2:06962 ; - ns1:connectsTo ns2:16454 ; - ns1:hasMedium . - -ns2:08460 a ns1:Connection ; + ns2:cnx ns4:68285, + ns4:88280 ; + ns2:connectsAt ns4:68285, + ns4:88280 ; + ns2:connectsFrom ns4:06962 ; + ns2:connectsTo ns4:16454 ; + ns2:hasMedium . + +ns4:08460 a ns2:Connection ; rdfs:label "08460" ; - ns1:cnx ns2:22249, - ns2:26345 ; - ns1:connectsAt ns2:22249, - ns2:26345 ; - ns1:connectsFrom ns2:61372 ; - ns1:connectsTo ns2:11624 ; - ns1:hasMedium . - -ns2:08470 a ns1:Connection ; + ns2:cnx ns4:22249, + ns4:26345 ; + ns2:connectsAt ns4:22249, + ns4:26345 ; + ns2:connectsFrom ns4:61372 ; + ns2:connectsTo ns4:11624 ; + ns2:hasMedium . + +ns4:08470 a ns2:Connection ; rdfs:label "08470" ; - ns1:cnx ns2:89839, - ns2:92103 ; - ns1:connectsAt ns2:89839, - ns2:92103 ; - ns1:connectsFrom ns2:79421 ; - ns1:connectsTo ns2:68016 ; - ns1:hasMedium . - -ns2:08808 a ns1:Connection ; + ns2:cnx ns4:89839, + ns4:92103 ; + ns2:connectsAt ns4:89839, + ns4:92103 ; + ns2:connectsFrom ns4:79421 ; + ns2:connectsTo ns4:68016 ; + ns2:hasMedium . + +ns4:08808 a ns2:Connection ; rdfs:label "08808" ; - ns1:cnx ns2:84841, - ns2:88895 ; - ns1:connectsAt ns2:84841, - ns2:88895 ; - ns1:connectsFrom ns2:66562 ; - ns1:connectsTo ns2:12686 ; - ns1:hasMedium . - -ns2:09596 a ns1:Connection ; + ns2:cnx ns4:84841, + ns4:88895 ; + ns2:connectsAt ns4:84841, + ns4:88895 ; + ns2:connectsFrom ns4:66562 ; + ns2:connectsTo ns4:12686 ; + ns2:hasMedium . + +ns4:09596 a ns2:Connection ; rdfs:label "09596" ; - ns1:cnx ns2:57775, - ns2:99455 ; - ns1:connectsAt ns2:57775, - ns2:99455 ; - ns1:connectsFrom ns2:88028 ; - ns1:connectsTo ns2:95765 ; - ns1:hasMedium . - -ns2:09852 a ns1:Connection ; + ns2:cnx ns4:57775, + ns4:99455 ; + ns2:connectsAt ns4:57775, + ns4:99455 ; + ns2:connectsFrom ns4:88028 ; + ns2:connectsTo ns4:95765 ; + ns2:hasMedium . + +ns4:09852 a ns2:Connection ; rdfs:label "09852" ; - ns1:cnx ns2:10763, - ns2:64347 ; - ns1:connectsAt ns2:10763, - ns2:64347 ; - ns1:connectsFrom ns2:62383 ; - ns1:connectsTo ns2:19107 ; - ns1:hasMedium . - -ns2:09895 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:10763, + ns4:64347 ; + ns2:connectsAt ns4:10763, + ns4:64347 ; + ns2:connectsFrom ns4:62383 ; + ns2:connectsTo ns4:19107 ; + ns2:hasMedium . + +ns4:09895 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.airOutlet", "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:65779, - ns2:97321 ; - ns1:hasMedium , + ns2:cnx ns4:65779, + ns4:97321 ; + ns2:hasMedium , ; - ns1:hasProperty ns2:20149 ; - ns1:isConnectionPointOf ns2:65779, - ns2:97321 ; - ns1:mapsTo ns2:47087 . + ns2:hasProperty ns4:20149 ; + ns2:isConnectionPointOf ns4:65779, + ns4:97321 ; + ns2:mapsTo ns4:47087 . -ns2:11777 a ns1:Connection ; +ns4:11777 a ns2:Connection ; rdfs:label "11777" ; - ns1:cnx ns2:17765, - ns2:28283 ; - ns1:connectsAt ns2:17765, - ns2:28283 ; - ns1:connectsFrom ns2:79420 ; - ns1:connectsTo ns2:83890 ; - ns1:hasMedium . - -ns2:12353 a ns1:Connection ; + ns2:cnx ns4:17765, + ns4:28283 ; + ns2:connectsAt ns4:17765, + ns4:28283 ; + ns2:connectsFrom ns4:79420 ; + ns2:connectsTo ns4:83890 ; + ns2:hasMedium . + +ns4:12353 a ns2:Connection ; rdfs:label "12353" ; - ns1:cnx ns2:18999, - ns2:95273 ; - ns1:connectsAt ns2:18999, - ns2:95273 ; - ns1:connectsFrom ns2:24416 ; - ns1:connectsTo ns2:32904 ; - ns1:hasMedium . - -ns2:12364 a ns1:Connection ; + ns2:cnx ns4:18999, + ns4:95273 ; + ns2:connectsAt ns4:18999, + ns4:95273 ; + ns2:connectsFrom ns4:24416 ; + ns2:connectsTo ns4:32904 ; + ns2:hasMedium . + +ns4:12364 a ns2:Connection ; rdfs:label "12364" ; - ns1:cnx ns2:00319, - ns2:94165 ; - ns1:connectsAt ns2:00319, - ns2:94165 ; - ns1:connectsFrom ns2:69011 ; - ns1:connectsTo ns2:80151 ; - ns1:hasMedium . - -ns2:12423 a ns1:Connection ; + ns2:cnx ns4:00319, + ns4:94165 ; + ns2:connectsAt ns4:00319, + ns4:94165 ; + ns2:connectsFrom ns4:69011 ; + ns2:connectsTo ns4:80151 ; + ns2:hasMedium . + +ns4:12423 a ns2:Connection ; rdfs:label "12423" ; - ns1:cnx ns2:49336, - ns2:91232 ; - ns1:connectsAt ns2:49336, - ns2:91232 ; - ns1:connectsFrom ns2:77070 ; - ns1:connectsTo ns2:61647 ; - ns1:hasMedium . - -ns2:13472 a ns1:Connection ; + ns2:cnx ns4:49336, + ns4:91232 ; + ns2:connectsAt ns4:49336, + ns4:91232 ; + ns2:connectsFrom ns4:77070 ; + ns2:connectsTo ns4:61647 ; + ns2:hasMedium . + +ns4:13472 a ns2:Connection ; rdfs:label "13472" ; - ns1:cnx ns2:19364, - ns2:77513 ; - ns1:connectsAt ns2:19364, - ns2:77513 ; - ns1:connectsFrom ns2:87632 ; - ns1:connectsTo ns2:95090 ; - ns1:hasMedium . - -ns2:15386 a ns1:Connection ; + ns2:cnx ns4:19364, + ns4:77513 ; + ns2:connectsAt ns4:19364, + ns4:77513 ; + ns2:connectsFrom ns4:87632 ; + ns2:connectsTo ns4:95090 ; + ns2:hasMedium . + +ns4:15386 a ns2:Connection ; rdfs:label "15386" ; - ns1:cnx ns2:42765, - ns2:76054 ; - ns1:connectsAt ns2:42765, - ns2:76054 ; - ns1:connectsFrom ns2:65015 ; - ns1:connectsTo ns2:65381 ; - ns1:hasMedium . - -ns2:16050 a ns1:Connection ; + ns2:cnx ns4:42765, + ns4:76054 ; + ns2:connectsAt ns4:42765, + ns4:76054 ; + ns2:connectsFrom ns4:65015 ; + ns2:connectsTo ns4:65381 ; + ns2:hasMedium . + +ns4:16050 a ns2:Connection ; rdfs:label "16050" ; - ns1:cnx ns2:71145, - ns2:74351 ; - ns1:connectsAt ns2:71145, - ns2:74351 ; - ns1:connectsFrom ns2:63295 ; - ns1:connectsTo ns2:68951 ; - ns1:hasMedium . - -ns2:16070 a ns1:Connection ; + ns2:cnx ns4:71145, + ns4:74351 ; + ns2:connectsAt ns4:71145, + ns4:74351 ; + ns2:connectsFrom ns4:63295 ; + ns2:connectsTo ns4:68951 ; + ns2:hasMedium . + +ns4:16070 a ns2:Connection ; rdfs:label "16070" ; - ns1:cnx ns2:24918, - ns2:49150 ; - ns1:connectsAt ns2:24918, - ns2:49150 ; - ns1:connectsFrom ns2:69111 ; - ns1:connectsTo ns2:83890 ; - ns1:hasMedium . - -ns2:16382 a ns1:Connection ; + ns2:cnx ns4:24918, + ns4:49150 ; + ns2:connectsAt ns4:24918, + ns4:49150 ; + ns2:connectsFrom ns4:69111 ; + ns2:connectsTo ns4:83890 ; + ns2:hasMedium . + +ns4:16382 a ns2:Connection ; rdfs:label "16382" ; - ns1:cnx ns2:64279, - ns2:92322 ; - ns1:connectsAt ns2:64279, - ns2:92322 ; - ns1:connectsFrom ns2:12403 ; - ns1:connectsTo ns2:90402 ; - ns1:hasMedium . - -ns2:16401 a ns1:Connection ; + ns2:cnx ns4:64279, + ns4:92322 ; + ns2:connectsAt ns4:64279, + ns4:92322 ; + ns2:connectsFrom ns4:12403 ; + ns2:connectsTo ns4:90402 ; + ns2:hasMedium . + +ns4:16401 a ns2:Connection ; rdfs:label "16401" ; - ns1:cnx ns2:31650, - ns2:98308 ; - ns1:connectsAt ns2:31650, - ns2:98308 ; - ns1:connectsFrom ns2:34533 ; - ns1:connectsTo ns2:55654 ; - ns1:hasMedium . - -ns2:16445 a ns1:Connection ; + ns2:cnx ns4:31650, + ns4:98308 ; + ns2:connectsAt ns4:31650, + ns4:98308 ; + ns2:connectsFrom ns4:34533 ; + ns2:connectsTo ns4:55654 ; + ns2:hasMedium . + +ns4:16445 a ns2:Connection ; rdfs:label "16445" ; - ns1:cnx ns2:73694, - ns2:96174 ; - ns1:connectsAt ns2:73694, - ns2:96174 ; - ns1:connectsFrom ns2:60471 ; - ns1:connectsTo ns2:98159 ; - ns1:hasMedium . - -ns2:16551 a ns1:Connection ; + ns2:cnx ns4:73694, + ns4:96174 ; + ns2:connectsAt ns4:73694, + ns4:96174 ; + ns2:connectsFrom ns4:60471 ; + ns2:connectsTo ns4:98159 ; + ns2:hasMedium . + +ns4:16551 a ns2:Connection ; rdfs:label "16551" ; - ns1:cnx ns2:17099, - ns2:91065 ; - ns1:connectsAt ns2:17099, - ns2:91065 ; - ns1:connectsFrom ns2:47830 ; - ns1:connectsTo ns2:93276 ; - ns1:hasMedium . - -ns2:16657 a ns1:Connection ; + ns2:cnx ns4:17099, + ns4:91065 ; + ns2:connectsAt ns4:17099, + ns4:91065 ; + ns2:connectsFrom ns4:47830 ; + ns2:connectsTo ns4:93276 ; + ns2:hasMedium . + +ns4:16657 a ns2:Connection ; rdfs:label "16657" ; - ns1:cnx ns2:28411, - ns2:57751 ; - ns1:connectsAt ns2:28411, - ns2:57751 ; - ns1:connectsFrom ns2:68951 ; - ns1:connectsTo ns2:54101 ; - ns1:hasMedium . - -ns2:16718 a ns1:Connection ; + ns2:cnx ns4:28411, + ns4:57751 ; + ns2:connectsAt ns4:28411, + ns4:57751 ; + ns2:connectsFrom ns4:68951 ; + ns2:connectsTo ns4:54101 ; + ns2:hasMedium . + +ns4:16718 a ns2:Connection ; rdfs:label "16718" ; - ns1:cnx ns2:33468, - ns2:67520 ; - ns1:connectsAt ns2:33468, - ns2:67520 ; - ns1:connectsFrom ns2:70253 ; - ns1:connectsTo ns2:93276 ; - ns1:hasMedium . - -ns2:16890 a ns1:Connection ; + ns2:cnx ns4:33468, + ns4:67520 ; + ns2:connectsAt ns4:33468, + ns4:67520 ; + ns2:connectsFrom ns4:70253 ; + ns2:connectsTo ns4:93276 ; + ns2:hasMedium . + +ns4:16890 a ns2:Connection ; rdfs:label "16890" ; - ns1:cnx ns2:53787, - ns2:99209 ; - ns1:connectsAt ns2:53787, - ns2:99209 ; - ns1:connectsFrom ns2:97674 ; - ns1:connectsTo ns2:04698 ; - ns1:hasMedium . - -ns2:16934 a ns1:Connection ; + ns2:cnx ns4:53787, + ns4:99209 ; + ns2:connectsAt ns4:53787, + ns4:99209 ; + ns2:connectsFrom ns4:97674 ; + ns2:connectsTo ns4:04698 ; + ns2:hasMedium . + +ns4:16934 a ns2:Connection ; rdfs:label "16934" ; - ns1:cnx ns2:64663, - ns2:99961 ; - ns1:connectsAt ns2:64663, - ns2:99961 ; - ns1:connectsFrom ns2:10814 ; - ns1:connectsTo ns2:29599 ; - ns1:hasMedium . - -ns2:16958 a ns1:Connection ; + ns2:cnx ns4:64663, + ns4:99961 ; + ns2:connectsAt ns4:64663, + ns4:99961 ; + ns2:connectsFrom ns4:10814 ; + ns2:connectsTo ns4:29599 ; + ns2:hasMedium . + +ns4:16958 a ns2:Connection ; rdfs:label "16958" ; - ns1:cnx ns2:34654, - ns2:83742 ; - ns1:connectsAt ns2:34654, - ns2:83742 ; - ns1:connectsFrom ns2:87782 ; - ns1:connectsTo ns2:83890 ; - ns1:hasMedium . - -ns2:17729 a ns1:Connection ; + ns2:cnx ns4:34654, + ns4:83742 ; + ns2:connectsAt ns4:34654, + ns4:83742 ; + ns2:connectsFrom ns4:87782 ; + ns2:connectsTo ns4:83890 ; + ns2:hasMedium . + +ns4:17729 a ns2:Connection ; rdfs:label "17729" ; - ns1:cnx ns2:03190, - ns2:57804 ; - ns1:connectsAt ns2:03190, - ns2:57804 ; - ns1:connectsFrom ns2:06073 ; - ns1:connectsTo ns2:01240 ; - ns1:hasMedium . - -ns2:18158 a ns1:Connection ; + ns2:cnx ns4:03190, + ns4:57804 ; + ns2:connectsAt ns4:03190, + ns4:57804 ; + ns2:connectsFrom ns4:06073 ; + ns2:connectsTo ns4:01240 ; + ns2:hasMedium . + +ns4:18158 a ns2:Connection ; rdfs:label "18158" ; - ns1:cnx ns2:08874, - ns2:23712 ; - ns1:connectsAt ns2:08874, - ns2:23712 ; - ns1:connectsFrom ns2:50126 ; - ns1:connectsTo ns2:31269 ; - ns1:hasMedium . - -ns2:18257 a ns1:Connection ; + ns2:cnx ns4:08874, + ns4:23712 ; + ns2:connectsAt ns4:08874, + ns4:23712 ; + ns2:connectsFrom ns4:50126 ; + ns2:connectsTo ns4:31269 ; + ns2:hasMedium . + +ns4:18257 a ns2:Connection ; rdfs:label "18257" ; - ns1:cnx ns2:56205, - ns2:66870 ; - ns1:connectsAt ns2:56205, - ns2:66870 ; - ns1:connectsFrom ns2:54090 ; - ns1:connectsTo ns2:98159 ; - ns1:hasMedium . - -ns2:18936 a ns1:Connection ; + ns2:cnx ns4:56205, + ns4:66870 ; + ns2:connectsAt ns4:56205, + ns4:66870 ; + ns2:connectsFrom ns4:54090 ; + ns2:connectsTo ns4:98159 ; + ns2:hasMedium . + +ns4:18936 a ns2:Connection ; rdfs:label "18936" ; - ns1:cnx ns2:04901, - ns2:15549 ; - ns1:connectsAt ns2:04901, - ns2:15549 ; - ns1:connectsFrom ns2:10117 ; - ns1:connectsTo ns2:08346 ; - ns1:hasMedium . - -ns2:19094 a ns1:Connection ; + ns2:cnx ns4:04901, + ns4:15549 ; + ns2:connectsAt ns4:04901, + ns4:15549 ; + ns2:connectsFrom ns4:10117 ; + ns2:connectsTo ns4:08346 ; + ns2:hasMedium . + +ns4:19094 a ns2:Connection ; rdfs:label "19094" ; - ns1:cnx ns2:40300, - ns2:41633 ; - ns1:connectsAt ns2:40300, - ns2:41633 ; - ns1:connectsFrom ns2:15332 ; - ns1:connectsTo ns2:43841 ; - ns1:hasMedium . - -ns2:19566 a ns1:Connection ; + ns2:cnx ns4:40300, + ns4:41633 ; + ns2:connectsAt ns4:40300, + ns4:41633 ; + ns2:connectsFrom ns4:15332 ; + ns2:connectsTo ns4:43841 ; + ns2:hasMedium . + +ns4:19566 a ns2:Connection ; rdfs:label "19566" ; - ns1:cnx ns2:16302, - ns2:72190 ; - ns1:connectsAt ns2:16302, - ns2:72190 ; - ns1:connectsFrom ns2:69415 ; - ns1:connectsTo ns2:93276 ; - ns1:hasMedium . - -ns2:20425 a ns1:Connection ; + ns2:cnx ns4:16302, + ns4:72190 ; + ns2:connectsAt ns4:16302, + ns4:72190 ; + ns2:connectsFrom ns4:69415 ; + ns2:connectsTo ns4:93276 ; + ns2:hasMedium . + +ns4:20425 a ns2:Connection ; rdfs:label "20425" ; - ns1:cnx ns2:10168, - ns2:18214 ; - ns1:connectsAt ns2:10168, - ns2:18214 ; - ns1:connectsFrom ns2:88028 ; - ns1:connectsTo ns2:04098 ; - ns1:hasMedium . - -ns2:20991 a ns1:Connection ; + ns2:cnx ns4:10168, + ns4:18214 ; + ns2:connectsAt ns4:10168, + ns4:18214 ; + ns2:connectsFrom ns4:88028 ; + ns2:connectsTo ns4:04098 ; + ns2:hasMedium . + +ns4:20991 a ns2:Connection ; rdfs:label "20991" ; - ns1:cnx ns2:81543, - ns2:90868 ; - ns1:connectsAt ns2:81543, - ns2:90868 ; - ns1:connectsFrom ns2:45992 ; - ns1:connectsTo ns2:25674 ; - ns1:hasMedium . - -ns2:21333 a ns1:Connection ; + ns2:cnx ns4:81543, + ns4:90868 ; + ns2:connectsAt ns4:81543, + ns4:90868 ; + ns2:connectsFrom ns4:45992 ; + ns2:connectsTo ns4:25674 ; + ns2:hasMedium . + +ns4:21333 a ns2:Connection ; rdfs:label "21333" ; - ns1:cnx ns2:01401, - ns2:11913 ; - ns1:connectsAt ns2:01401, - ns2:11913 ; - ns1:connectsFrom ns2:44594 ; - ns1:connectsTo ns2:37192 ; - ns1:hasMedium . - -ns2:21481 a ns1:Connection ; + ns2:cnx ns4:01401, + ns4:11913 ; + ns2:connectsAt ns4:01401, + ns4:11913 ; + ns2:connectsFrom ns4:44594 ; + ns2:connectsTo ns4:37192 ; + ns2:hasMedium . + +ns4:21481 a ns2:Connection ; rdfs:label "21481" ; - ns1:cnx ns2:12794, - ns2:44403 ; - ns1:connectsAt ns2:12794, - ns2:44403 ; - ns1:connectsFrom ns2:77743 ; - ns1:connectsTo ns2:12692 ; - ns1:hasMedium . - -ns2:21542 a ns1:Connection ; + ns2:cnx ns4:12794, + ns4:44403 ; + ns2:connectsAt ns4:12794, + ns4:44403 ; + ns2:connectsFrom ns4:77743 ; + ns2:connectsTo ns4:12692 ; + ns2:hasMedium . + +ns4:21542 a ns2:Connection ; rdfs:label "21542" ; - ns1:cnx ns2:51689, - ns2:92008 ; - ns1:connectsAt ns2:51689, - ns2:92008 ; - ns1:connectsFrom ns2:68886 ; - ns1:connectsTo ns2:85916 ; - ns1:hasMedium . - -ns2:21786 a ns1:Connection ; + ns2:cnx ns4:51689, + ns4:92008 ; + ns2:connectsAt ns4:51689, + ns4:92008 ; + ns2:connectsFrom ns4:68886 ; + ns2:connectsTo ns4:85916 ; + ns2:hasMedium . + +ns4:21786 a ns2:Connection ; rdfs:label "21786" ; - ns1:cnx ns2:47134, - ns2:65351 ; - ns1:connectsAt ns2:47134, - ns2:65351 ; - ns1:connectsFrom ns2:24053 ; - ns1:connectsTo ns2:46019 ; - ns1:hasMedium . - -ns2:23324 a ns1:Connection ; + ns2:cnx ns4:47134, + ns4:65351 ; + ns2:connectsAt ns4:47134, + ns4:65351 ; + ns2:connectsFrom ns4:24053 ; + ns2:connectsTo ns4:46019 ; + ns2:hasMedium . + +ns4:23324 a ns2:Connection ; rdfs:label "23324" ; - ns1:cnx ns2:21028, - ns2:69563 ; - ns1:connectsAt ns2:21028, - ns2:69563 ; - ns1:connectsFrom ns2:13590 ; - ns1:connectsTo ns2:84620 ; - ns1:hasMedium . - -ns2:24250 a ns1:Connection ; + ns2:cnx ns4:21028, + ns4:69563 ; + ns2:connectsAt ns4:21028, + ns4:69563 ; + ns2:connectsFrom ns4:13590 ; + ns2:connectsTo ns4:84620 ; + ns2:hasMedium . + +ns4:24250 a ns2:Connection ; rdfs:label "24250" ; - ns1:cnx ns2:12778, - ns2:80749 ; - ns1:connectsAt ns2:12778, - ns2:80749 ; - ns1:connectsFrom ns2:84250 ; - ns1:connectsTo ns2:18099 ; - ns1:hasMedium . - -ns2:24415 a ns1:Connection ; + ns2:cnx ns4:12778, + ns4:80749 ; + ns2:connectsAt ns4:12778, + ns4:80749 ; + ns2:connectsFrom ns4:84250 ; + ns2:connectsTo ns4:18099 ; + ns2:hasMedium . + +ns4:24415 a ns2:Connection ; rdfs:label "24415" ; - ns1:cnx ns2:65987, - ns2:97035 ; - ns1:connectsAt ns2:65987, - ns2:97035 ; - ns1:connectsFrom ns2:88028 ; - ns1:connectsTo ns2:15243 ; - ns1:hasMedium . - -ns2:24513 a ns1:Connection ; + ns2:cnx ns4:65987, + ns4:97035 ; + ns2:connectsAt ns4:65987, + ns4:97035 ; + ns2:connectsFrom ns4:88028 ; + ns2:connectsTo ns4:15243 ; + ns2:hasMedium . + +ns4:24513 a ns2:Connection ; rdfs:label "24513" ; - ns1:cnx ns2:00459, - ns2:62031 ; - ns1:connectsAt ns2:00459, - ns2:62031 ; - ns1:connectsFrom ns2:19014 ; - ns1:connectsTo ns2:05619 ; - ns1:hasMedium . - -ns2:24574 a ns1:Connection ; + ns2:cnx ns4:00459, + ns4:62031 ; + ns2:connectsAt ns4:00459, + ns4:62031 ; + ns2:connectsFrom ns4:19014 ; + ns2:connectsTo ns4:05619 ; + ns2:hasMedium . + +ns4:24574 a ns2:Connection ; rdfs:label "24574" ; - ns1:cnx ns2:45385, - ns2:92540 ; - ns1:connectsAt ns2:45385, - ns2:92540 ; - ns1:connectsFrom ns2:77211 ; - ns1:connectsTo ns2:05342 ; - ns1:hasMedium . - -ns2:25111 a ns1:Connection ; + ns2:cnx ns4:45385, + ns4:92540 ; + ns2:connectsAt ns4:45385, + ns4:92540 ; + ns2:connectsFrom ns4:77211 ; + ns2:connectsTo ns4:05342 ; + ns2:hasMedium . + +ns4:25111 a ns2:Connection ; rdfs:label "25111" ; - ns1:cnx ns2:05910, - ns2:68518 ; - ns1:connectsAt ns2:05910, - ns2:68518 ; - ns1:connectsFrom ns2:85453 ; - ns1:connectsTo ns2:50418 ; - ns1:hasMedium . - -ns2:25163 a ns1:Connection ; + ns2:cnx ns4:05910, + ns4:68518 ; + ns2:connectsAt ns4:05910, + ns4:68518 ; + ns2:connectsFrom ns4:85453 ; + ns2:connectsTo ns4:50418 ; + ns2:hasMedium . + +ns4:25163 a ns2:Connection ; rdfs:label "25163" ; - ns1:cnx ns2:11513, - ns2:27044 ; - ns1:connectsAt ns2:11513, - ns2:27044 ; - ns1:connectsFrom ns2:02944 ; - ns1:connectsTo ns2:78065 ; - ns1:hasMedium . - -ns2:25284 a ns1:Connection ; + ns2:cnx ns4:11513, + ns4:27044 ; + ns2:connectsAt ns4:11513, + ns4:27044 ; + ns2:connectsFrom ns4:02944 ; + ns2:connectsTo ns4:78065 ; + ns2:hasMedium . + +ns4:25284 a ns2:Connection ; rdfs:label "25284" ; - ns1:cnx ns2:21165, - ns2:84103 ; - ns1:connectsAt ns2:21165, - ns2:84103 ; - ns1:connectsFrom ns2:49064 ; - ns1:connectsTo ns2:72337 ; - ns1:hasMedium . - -ns2:25347 a ns1:Connection ; + ns2:cnx ns4:21165, + ns4:84103 ; + ns2:connectsAt ns4:21165, + ns4:84103 ; + ns2:connectsFrom ns4:49064 ; + ns2:connectsTo ns4:72337 ; + ns2:hasMedium . + +ns4:25347 a ns2:Connection ; rdfs:label "25347" ; - ns1:cnx ns2:53962, - ns2:76856 ; - ns1:connectsAt ns2:53962, - ns2:76856 ; - ns1:connectsFrom ns2:80693 ; - ns1:connectsTo ns2:68140 ; - ns1:hasMedium . - -ns2:25473 a ns1:Connection ; + ns2:cnx ns4:53962, + ns4:76856 ; + ns2:connectsAt ns4:53962, + ns4:76856 ; + ns2:connectsFrom ns4:80693 ; + ns2:connectsTo ns4:68140 ; + ns2:hasMedium . + +ns4:25473 a ns2:Connection ; rdfs:label "25473" ; - ns1:cnx ns2:12631, - ns2:40142 ; - ns1:connectsAt ns2:12631, - ns2:40142 ; - ns1:connectsFrom ns2:12692 ; - ns1:connectsTo ns2:28911 ; - ns1:hasMedium . - -ns2:25566 a ns1:Connection ; + ns2:cnx ns4:12631, + ns4:40142 ; + ns2:connectsAt ns4:12631, + ns4:40142 ; + ns2:connectsFrom ns4:12692 ; + ns2:connectsTo ns4:28911 ; + ns2:hasMedium . + +ns4:25566 a ns2:Connection ; rdfs:label "25566" ; - ns1:cnx ns2:48230, - ns2:56041 ; - ns1:connectsAt ns2:48230, - ns2:56041 ; - ns1:connectsFrom ns2:10117 ; - ns1:connectsTo ns2:18693 ; - ns1:hasMedium . - -ns2:25601 a ns1:Connection ; + ns2:cnx ns4:48230, + ns4:56041 ; + ns2:connectsAt ns4:48230, + ns4:56041 ; + ns2:connectsFrom ns4:10117 ; + ns2:connectsTo ns4:18693 ; + ns2:hasMedium . + +ns4:25601 a ns2:Connection ; rdfs:label "25601" ; - ns1:cnx ns2:49497, - ns2:83482 ; - ns1:connectsAt ns2:49497, - ns2:83482 ; - ns1:connectsFrom ns2:09200 ; - ns1:connectsTo ns2:87421 ; - ns1:hasMedium . - -ns2:25798 a ns1:Connection ; + ns2:cnx ns4:49497, + ns4:83482 ; + ns2:connectsAt ns4:49497, + ns4:83482 ; + ns2:connectsFrom ns4:09200 ; + ns2:connectsTo ns4:87421 ; + ns2:hasMedium . + +ns4:25798 a ns2:Connection ; rdfs:label "25798" ; - ns1:cnx ns2:08720, - ns2:79048 ; - ns1:connectsAt ns2:08720, - ns2:79048 ; - ns1:connectsFrom ns2:83378 ; - ns1:connectsTo ns2:83890 ; - ns1:hasMedium . - -ns2:25887 a ns1:Connection ; + ns2:cnx ns4:08720, + ns4:79048 ; + ns2:connectsAt ns4:08720, + ns4:79048 ; + ns2:connectsFrom ns4:83378 ; + ns2:connectsTo ns4:83890 ; + ns2:hasMedium . + +ns4:25887 a ns2:Connection ; rdfs:label "25887" ; - ns1:cnx ns2:18193, - ns2:91896 ; - ns1:connectsAt ns2:18193, - ns2:91896 ; - ns1:connectsFrom ns2:90402 ; - ns1:connectsTo ns2:46019 ; - ns1:hasMedium . - -ns2:26376 a ns1:Connection ; + ns2:cnx ns4:18193, + ns4:91896 ; + ns2:connectsAt ns4:18193, + ns4:91896 ; + ns2:connectsFrom ns4:90402 ; + ns2:connectsTo ns4:46019 ; + ns2:hasMedium . + +ns4:26376 a ns2:Connection ; rdfs:label "26376" ; - ns1:cnx ns2:45775, - ns2:81532 ; - ns1:connectsAt ns2:45775, - ns2:81532 ; - ns1:connectsFrom ns2:46191 ; - ns1:connectsTo ns2:63334 ; - ns1:hasMedium . - -ns2:26783 a ns1:Connection ; + ns2:cnx ns4:45775, + ns4:81532 ; + ns2:connectsAt ns4:45775, + ns4:81532 ; + ns2:connectsFrom ns4:46191 ; + ns2:connectsTo ns4:63334 ; + ns2:hasMedium . + +ns4:26783 a ns2:Connection ; rdfs:label "26783" ; - ns1:cnx ns2:72299, - ns2:76930 ; - ns1:connectsAt ns2:72299, - ns2:76930 ; - ns1:connectsFrom ns2:82262 ; - ns1:connectsTo ns2:73674 ; - ns1:hasMedium . - -ns2:26803 a ns1:Connection ; + ns2:cnx ns4:72299, + ns4:76930 ; + ns2:connectsAt ns4:72299, + ns4:76930 ; + ns2:connectsFrom ns4:82262 ; + ns2:connectsTo ns4:73674 ; + ns2:hasMedium . + +ns4:26803 a ns2:Connection ; rdfs:label "26803" ; - ns1:cnx ns2:10484, - ns2:24631 ; - ns1:connectsAt ns2:10484, - ns2:24631 ; - ns1:connectsFrom ns2:38627 ; - ns1:connectsTo ns2:53221 ; - ns1:hasMedium . - -ns2:27754 a ns1:Connection ; + ns2:cnx ns4:10484, + ns4:24631 ; + ns2:connectsAt ns4:10484, + ns4:24631 ; + ns2:connectsFrom ns4:38627 ; + ns2:connectsTo ns4:53221 ; + ns2:hasMedium . + +ns4:27754 a ns2:Connection ; rdfs:label "27754" ; - ns1:cnx ns2:00024, - ns2:85270 ; - ns1:connectsAt ns2:00024, - ns2:85270 ; - ns1:connectsFrom ns2:29599 ; - ns1:connectsTo ns2:46019 ; - ns1:hasMedium . - -ns2:28042 a ns1:Connection ; + ns2:cnx ns4:00024, + ns4:85270 ; + ns2:connectsAt ns4:00024, + ns4:85270 ; + ns2:connectsFrom ns4:29599 ; + ns2:connectsTo ns4:46019 ; + ns2:hasMedium . + +ns4:28042 a ns2:Connection ; rdfs:label "28042" ; - ns1:cnx ns2:13281, - ns2:14490 ; - ns1:connectsAt ns2:13281, - ns2:14490 ; - ns1:connectsFrom ns2:50126 ; - ns1:connectsTo ns2:60688 ; - ns1:hasMedium . - -ns2:28044 a ns1:Connection ; + ns2:cnx ns4:13281, + ns4:14490 ; + ns2:connectsAt ns4:13281, + ns4:14490 ; + ns2:connectsFrom ns4:50126 ; + ns2:connectsTo ns4:60688 ; + ns2:hasMedium . + +ns4:28044 a ns2:Connection ; rdfs:label "28044" ; - ns1:cnx ns2:02161, - ns2:72386 ; - ns1:connectsAt ns2:02161, - ns2:72386 ; - ns1:connectsFrom ns2:09362 ; - ns1:connectsTo ns2:46019 ; - ns1:hasMedium . - -ns2:28817 a ns1:Connection ; + ns2:cnx ns4:02161, + ns4:72386 ; + ns2:connectsAt ns4:02161, + ns4:72386 ; + ns2:connectsFrom ns4:09362 ; + ns2:connectsTo ns4:46019 ; + ns2:hasMedium . + +ns4:28817 a ns2:Connection ; rdfs:label "28817" ; - ns1:cnx ns2:31827, - ns2:32100 ; - ns1:connectsAt ns2:31827, - ns2:32100 ; - ns1:connectsFrom ns2:73947 ; - ns1:connectsTo ns2:29599 ; - ns1:hasMedium . - -ns2:28842 a ns1:Connection ; + ns2:cnx ns4:31827, + ns4:32100 ; + ns2:connectsAt ns4:31827, + ns4:32100 ; + ns2:connectsFrom ns4:73947 ; + ns2:connectsTo ns4:29599 ; + ns2:hasMedium . + +ns4:28842 a ns2:Connection ; rdfs:label "28842" ; - ns1:cnx ns2:51208, - ns2:82894 ; - ns1:connectsAt ns2:51208, - ns2:82894 ; - ns1:connectsFrom ns2:67586 ; - ns1:connectsTo ns2:93276 ; - ns1:hasMedium . - -ns2:29089 a ns1:Connection ; + ns2:cnx ns4:51208, + ns4:82894 ; + ns2:connectsAt ns4:51208, + ns4:82894 ; + ns2:connectsFrom ns4:67586 ; + ns2:connectsTo ns4:93276 ; + ns2:hasMedium . + +ns4:29089 a ns2:Connection ; rdfs:label "29089" ; - ns1:cnx ns2:18358, - ns2:27223 ; - ns1:connectsAt ns2:18358, - ns2:27223 ; - ns1:connectsFrom ns2:05353 ; - ns1:connectsTo ns2:06962 ; - ns1:hasMedium . - -ns2:29115 a ns1:Connection ; + ns2:cnx ns4:18358, + ns4:27223 ; + ns2:connectsAt ns4:18358, + ns4:27223 ; + ns2:connectsFrom ns4:05353 ; + ns2:connectsTo ns4:06962 ; + ns2:hasMedium . + +ns4:29115 a ns2:Connection ; rdfs:label "29115" ; - ns1:cnx ns2:10653, - ns2:42397 ; - ns1:connectsAt ns2:10653, - ns2:42397 ; - ns1:connectsFrom ns2:10117 ; - ns1:connectsTo ns2:06073 ; - ns1:hasMedium . - -ns2:29667 a ns1:Connection ; + ns2:cnx ns4:10653, + ns4:42397 ; + ns2:connectsAt ns4:10653, + ns4:42397 ; + ns2:connectsFrom ns4:10117 ; + ns2:connectsTo ns4:06073 ; + ns2:hasMedium . + +ns4:29667 a ns2:Connection ; rdfs:label "29667" ; - ns1:cnx ns2:32500, - ns2:55931 ; - ns1:connectsAt ns2:32500, - ns2:55931 ; - ns1:connectsFrom ns2:79114 ; - ns1:connectsTo ns2:80693 ; - ns1:hasMedium . - -ns2:29739 a ns1:Connection ; + ns2:cnx ns4:32500, + ns4:55931 ; + ns2:connectsAt ns4:32500, + ns4:55931 ; + ns2:connectsFrom ns4:79114 ; + ns2:connectsTo ns4:80693 ; + ns2:hasMedium . + +ns4:29739 a ns2:Connection ; rdfs:label "29739" ; - ns1:cnx ns2:21806, - ns2:70623 ; - ns1:connectsAt ns2:21806, - ns2:70623 ; - ns1:connectsFrom ns2:07970 ; - ns1:connectsTo ns2:98609 ; - ns1:hasMedium . - -ns2:29892 a ns1:Connection ; + ns2:cnx ns4:21806, + ns4:70623 ; + ns2:connectsAt ns4:21806, + ns4:70623 ; + ns2:connectsFrom ns4:07970 ; + ns2:connectsTo ns4:98609 ; + ns2:hasMedium . + +ns4:29892 a ns2:Connection ; rdfs:label "29892" ; - ns1:cnx ns2:10397, - ns2:29634 ; - ns1:connectsAt ns2:10397, - ns2:29634 ; - ns1:connectsFrom ns2:42308 ; - ns1:connectsTo ns2:92286 ; - ns1:hasMedium . - -ns2:30117 a ns1:Connection ; + ns2:cnx ns4:10397, + ns4:29634 ; + ns2:connectsAt ns4:10397, + ns4:29634 ; + ns2:connectsFrom ns4:42308 ; + ns2:connectsTo ns4:92286 ; + ns2:hasMedium . + +ns4:30117 a ns2:Connection ; rdfs:label "30117" ; - ns1:cnx ns2:30054, - ns2:92954 ; - ns1:connectsAt ns2:30054, - ns2:92954 ; - ns1:connectsFrom ns2:03724 ; - ns1:connectsTo ns2:47830 ; - ns1:hasMedium . - -ns2:30148 a ns1:Connection ; + ns2:cnx ns4:30054, + ns4:92954 ; + ns2:connectsAt ns4:30054, + ns4:92954 ; + ns2:connectsFrom ns4:03724 ; + ns2:connectsTo ns4:47830 ; + ns2:hasMedium . + +ns4:30148 a ns2:Connection ; rdfs:label "30148" ; - ns1:cnx ns2:22290, - ns2:30582 ; - ns1:connectsAt ns2:22290, - ns2:30582 ; - ns1:connectsFrom ns2:25200 ; - ns1:connectsTo ns2:19805 ; - ns1:hasMedium . - -ns2:30223 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:22290, + ns4:30582 ; + ns2:connectsAt ns4:22290, + ns4:30582 ; + ns2:connectsFrom ns4:25200 ; + ns2:connectsTo ns4:19805 ; + ns2:hasMedium . + +ns4:30223 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_3.supplyAirOutlet" ; - ns1:cnx ns2:05785, - ns2:25082 ; - ns1:connectsThrough ns2:25082 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:05785 . + ns2:cnx ns4:05785, + ns4:25082 ; + ns2:connectsThrough ns4:25082 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:05785 . -ns2:30584 a ns1:Connection ; +ns4:30584 a ns2:Connection ; rdfs:label "30584" ; - ns1:cnx ns2:10883, - ns2:95939 ; - ns1:connectsAt ns2:10883, - ns2:95939 ; - ns1:connectsFrom ns2:09160 ; - ns1:connectsTo ns2:31261 ; - ns1:hasMedium . - -ns2:30594 a ns1:Connection ; + ns2:cnx ns4:10883, + ns4:95939 ; + ns2:connectsAt ns4:10883, + ns4:95939 ; + ns2:connectsFrom ns4:09160 ; + ns2:connectsTo ns4:31261 ; + ns2:hasMedium . + +ns4:30594 a ns2:Connection ; rdfs:label "30594" ; - ns1:cnx ns2:38115, - ns2:67959 ; - ns1:connectsAt ns2:38115, - ns2:67959 ; - ns1:connectsFrom ns2:88028 ; - ns1:connectsTo ns2:03605 ; - ns1:hasMedium . - -ns2:30616 a ns1:Connection ; + ns2:cnx ns4:38115, + ns4:67959 ; + ns2:connectsAt ns4:38115, + ns4:67959 ; + ns2:connectsFrom ns4:88028 ; + ns2:connectsTo ns4:03605 ; + ns2:hasMedium . + +ns4:30616 a ns2:Connection ; rdfs:label "30616" ; - ns1:cnx ns2:04653, - ns2:34996 ; - ns1:connectsAt ns2:04653, - ns2:34996 ; - ns1:connectsFrom ns2:09432 ; - ns1:connectsTo ns2:15016 ; - ns1:hasMedium . - -ns2:30816 a ns1:Connection ; + ns2:cnx ns4:04653, + ns4:34996 ; + ns2:connectsAt ns4:04653, + ns4:34996 ; + ns2:connectsFrom ns4:09432 ; + ns2:connectsTo ns4:15016 ; + ns2:hasMedium . + +ns4:30816 a ns2:Connection ; rdfs:label "30816" ; - ns1:cnx ns2:04947, - ns2:27088 ; - ns1:connectsAt ns2:04947, - ns2:27088 ; - ns1:connectsFrom ns2:80730 ; - ns1:connectsTo ns2:22040 ; - ns1:hasMedium . - -ns2:31065 a ns1:Connection ; + ns2:cnx ns4:04947, + ns4:27088 ; + ns2:connectsAt ns4:04947, + ns4:27088 ; + ns2:connectsFrom ns4:80730 ; + ns2:connectsTo ns4:22040 ; + ns2:hasMedium . + +ns4:31065 a ns2:Connection ; rdfs:label "31065" ; - ns1:cnx ns2:06816, - ns2:50604 ; - ns1:connectsAt ns2:06816, - ns2:50604 ; - ns1:connectsFrom ns2:01240 ; - ns1:connectsTo ns2:98159 ; - ns1:hasMedium . - -ns2:31562 a ns1:Connection ; + ns2:cnx ns4:06816, + ns4:50604 ; + ns2:connectsAt ns4:06816, + ns4:50604 ; + ns2:connectsFrom ns4:01240 ; + ns2:connectsTo ns4:98159 ; + ns2:hasMedium . + +ns4:31562 a ns2:Connection ; rdfs:label "31562" ; - ns1:cnx ns2:48021, - ns2:86634 ; - ns1:connectsAt ns2:48021, - ns2:86634 ; - ns1:connectsFrom ns2:31269 ; - ns1:connectsTo ns2:67586 ; - ns1:hasMedium . - -ns2:32081 a ns1:Connection ; + ns2:cnx ns4:48021, + ns4:86634 ; + ns2:connectsAt ns4:48021, + ns4:86634 ; + ns2:connectsFrom ns4:31269 ; + ns2:connectsTo ns4:67586 ; + ns2:hasMedium . + +ns4:32081 a ns2:Connection ; rdfs:label "32081" ; - ns1:cnx ns2:36341, - ns2:56030 ; - ns1:connectsAt ns2:36341, - ns2:56030 ; - ns1:connectsFrom ns2:04698 ; - ns1:connectsTo ns2:05175 ; - ns1:hasMedium . - -ns2:32220 a ns1:Connection ; + ns2:cnx ns4:36341, + ns4:56030 ; + ns2:connectsAt ns4:36341, + ns4:56030 ; + ns2:connectsFrom ns4:04698 ; + ns2:connectsTo ns4:05175 ; + ns2:hasMedium . + +ns4:32220 a ns2:Connection ; rdfs:label "32220" ; - ns1:cnx ns2:48597, - ns2:58956 ; - ns1:connectsAt ns2:48597, - ns2:58956 ; - ns1:connectsFrom ns2:47956 ; - ns1:connectsTo ns2:83378 ; - ns1:hasMedium . - -ns2:32445 a ns1:Connection ; + ns2:cnx ns4:48597, + ns4:58956 ; + ns2:connectsAt ns4:48597, + ns4:58956 ; + ns2:connectsFrom ns4:47956 ; + ns2:connectsTo ns4:83378 ; + ns2:hasMedium . + +ns4:32445 a ns2:Connection ; rdfs:label "32445" ; - ns1:cnx ns2:46353, - ns2:50224 ; - ns1:connectsAt ns2:46353, - ns2:50224 ; - ns1:connectsFrom ns2:05062 ; - ns1:connectsTo ns2:65206 ; - ns1:hasMedium . - -ns2:32816 a ns1:Connection ; + ns2:cnx ns4:46353, + ns4:50224 ; + ns2:connectsAt ns4:46353, + ns4:50224 ; + ns2:connectsFrom ns4:05062 ; + ns2:connectsTo ns4:65206 ; + ns2:hasMedium . + +ns4:32816 a ns2:Connection ; rdfs:label "32816" ; - ns1:cnx ns2:82486, - ns2:97168 ; - ns1:connectsAt ns2:82486, - ns2:97168 ; - ns1:connectsFrom ns2:03365 ; - ns1:connectsTo ns2:29599 ; - ns1:hasMedium . - -ns2:33232 a ns1:Connection ; + ns2:cnx ns4:82486, + ns4:97168 ; + ns2:connectsAt ns4:82486, + ns4:97168 ; + ns2:connectsFrom ns4:03365 ; + ns2:connectsTo ns4:29599 ; + ns2:hasMedium . + +ns4:33232 a ns2:Connection ; rdfs:label "33232" ; - ns1:cnx ns2:06147, - ns2:27066 ; - ns1:connectsAt ns2:06147, - ns2:27066 ; - ns1:connectsFrom ns2:69090 ; - ns1:connectsTo ns2:46019 ; - ns1:hasMedium . - -ns2:33279 a ns1:Connection ; + ns2:cnx ns4:06147, + ns4:27066 ; + ns2:connectsAt ns4:06147, + ns4:27066 ; + ns2:connectsFrom ns4:69090 ; + ns2:connectsTo ns4:46019 ; + ns2:hasMedium . + +ns4:33279 a ns2:Connection ; rdfs:label "33279" ; - ns1:cnx ns2:35307, - ns2:60889 ; - ns1:connectsAt ns2:35307, - ns2:60889 ; - ns1:connectsFrom ns2:45421 ; - ns1:connectsTo ns2:29599 ; - ns1:hasMedium . - -ns2:33343 a ns1:Connection ; + ns2:cnx ns4:35307, + ns4:60889 ; + ns2:connectsAt ns4:35307, + ns4:60889 ; + ns2:connectsFrom ns4:45421 ; + ns2:connectsTo ns4:29599 ; + ns2:hasMedium . + +ns4:33343 a ns2:Connection ; rdfs:label "33343" ; - ns1:cnx ns2:10648, - ns2:76714 ; - ns1:connectsAt ns2:10648, - ns2:76714 ; - ns1:connectsFrom ns2:08701 ; - ns1:connectsTo ns2:69415 ; - ns1:hasMedium . - -ns2:33619 a ns1:Connection ; + ns2:cnx ns4:10648, + ns4:76714 ; + ns2:connectsAt ns4:10648, + ns4:76714 ; + ns2:connectsFrom ns4:08701 ; + ns2:connectsTo ns4:69415 ; + ns2:hasMedium . + +ns4:33619 a ns2:Connection ; rdfs:label "33619" ; - ns1:cnx ns2:83463, - ns2:88217 ; - ns1:connectsAt ns2:83463, - ns2:88217 ; - ns1:connectsFrom ns2:04430 ; - ns1:connectsTo ns2:73323 ; - ns1:hasMedium . - -ns2:33969 a ns1:Connection ; + ns2:cnx ns4:83463, + ns4:88217 ; + ns2:connectsAt ns4:83463, + ns4:88217 ; + ns2:connectsFrom ns4:04430 ; + ns2:connectsTo ns4:73323 ; + ns2:hasMedium . + +ns4:33969 a ns2:Connection ; rdfs:label "33969" ; - ns1:cnx ns2:21938, - ns2:81189 ; - ns1:connectsAt ns2:21938, - ns2:81189 ; - ns1:connectsFrom ns2:18099 ; - ns1:connectsTo ns2:52918 ; - ns1:hasMedium . - -ns2:34379 a ns1:Connection ; + ns2:cnx ns4:21938, + ns4:81189 ; + ns2:connectsAt ns4:21938, + ns4:81189 ; + ns2:connectsFrom ns4:18099 ; + ns2:connectsTo ns4:52918 ; + ns2:hasMedium . + +ns4:34379 a ns2:Connection ; rdfs:label "34379" ; - ns1:cnx ns2:49767, - ns2:76894 ; - ns1:connectsAt ns2:49767, - ns2:76894 ; - ns1:connectsFrom ns2:49614 ; - ns1:connectsTo ns2:56753 ; - ns1:hasMedium . - -ns2:34554 a ns1:Connection ; + ns2:cnx ns4:49767, + ns4:76894 ; + ns2:connectsAt ns4:49767, + ns4:76894 ; + ns2:connectsFrom ns4:49614 ; + ns2:connectsTo ns4:56753 ; + ns2:hasMedium . + +ns4:34554 a ns2:Connection ; rdfs:label "34554" ; - ns1:cnx ns2:40053, - ns2:49573 ; - ns1:connectsAt ns2:40053, - ns2:49573 ; - ns1:connectsFrom ns2:77070 ; - ns1:connectsTo ns2:35720 ; - ns1:hasMedium . - -ns2:34639 a ns1:Connection ; + ns2:cnx ns4:40053, + ns4:49573 ; + ns2:connectsAt ns4:40053, + ns4:49573 ; + ns2:connectsFrom ns4:77070 ; + ns2:connectsTo ns4:35720 ; + ns2:hasMedium . + +ns4:34639 a ns2:Connection ; rdfs:label "34639" ; - ns1:cnx ns2:59984, - ns2:99378 ; - ns1:connectsAt ns2:59984, - ns2:99378 ; - ns1:connectsFrom ns2:80151 ; - ns1:connectsTo ns2:28911 ; - ns1:hasMedium . - -ns2:34910 a ns1:Connection ; + ns2:cnx ns4:59984, + ns4:99378 ; + ns2:connectsAt ns4:59984, + ns4:99378 ; + ns2:connectsFrom ns4:80151 ; + ns2:connectsTo ns4:28911 ; + ns2:hasMedium . + +ns4:34910 a ns2:Connection ; rdfs:label "34910" ; - ns1:cnx ns2:62284, - ns2:97458 ; - ns1:connectsAt ns2:62284, - ns2:97458 ; - ns1:connectsFrom ns2:27011 ; - ns1:connectsTo ns2:45421 ; - ns1:hasMedium . - -ns2:35508 a ns1:Connection ; + ns2:cnx ns4:62284, + ns4:97458 ; + ns2:connectsAt ns4:62284, + ns4:97458 ; + ns2:connectsFrom ns4:27011 ; + ns2:connectsTo ns4:45421 ; + ns2:hasMedium . + +ns4:35508 a ns2:Connection ; rdfs:label "35508" ; - ns1:cnx ns2:11167, - ns2:45516 ; - ns1:connectsAt ns2:11167, - ns2:45516 ; - ns1:connectsFrom ns2:84620 ; - ns1:connectsTo ns2:30657 ; - ns1:hasMedium . - -ns2:35841 a ns1:Connection ; + ns2:cnx ns4:11167, + ns4:45516 ; + ns2:connectsAt ns4:11167, + ns4:45516 ; + ns2:connectsFrom ns4:84620 ; + ns2:connectsTo ns4:30657 ; + ns2:hasMedium . + +ns4:35841 a ns2:Connection ; rdfs:label "35841" ; - ns1:cnx ns2:17590, - ns2:89063 ; - ns1:connectsAt ns2:17590, - ns2:89063 ; - ns1:connectsFrom ns2:12418 ; - ns1:connectsTo ns2:68886 ; - ns1:hasMedium . - -ns2:36241 a ns1:Connection ; + ns2:cnx ns4:17590, + ns4:89063 ; + ns2:connectsAt ns4:17590, + ns4:89063 ; + ns2:connectsFrom ns4:12418 ; + ns2:connectsTo ns4:68886 ; + ns2:hasMedium . + +ns4:36241 a ns2:Connection ; rdfs:label "36241" ; - ns1:cnx ns2:32795, - ns2:54882 ; - ns1:connectsAt ns2:32795, - ns2:54882 ; - ns1:connectsFrom ns2:73674 ; - ns1:connectsTo ns2:25613 ; - ns1:hasMedium . - -ns2:37032 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns1:PhysicalSpace, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:32795, + ns4:54882 ; + ns2:connectsAt ns4:32795, + ns4:54882 ; + ns2:connectsFrom ns4:73674 ; + ns2:connectsTo ns4:25613 ; + ns2:hasMedium . + +ns4:37032 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns2:PhysicalSpace, + ns3:HotWaterConnectionPoint ; rdfs:label "5077B", "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:64612, - ns2:85409 ; - ns1:connectsThrough ns2:64612 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:85409 . + ns2:cnx ns4:64612, + ns4:85409 ; + ns2:connectsThrough ns4:64612 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:85409 . -ns2:37548 a ns1:Connection ; +ns4:37548 a ns2:Connection ; rdfs:label "37548" ; - ns1:cnx ns2:53636, - ns2:90570 ; - ns1:connectsAt ns2:53636, - ns2:90570 ; - ns1:connectsFrom ns2:72185 ; - ns1:connectsTo ns2:02590 ; - ns1:hasMedium . - -ns2:37652 a ns1:Connection ; + ns2:cnx ns4:53636, + ns4:90570 ; + ns2:connectsAt ns4:53636, + ns4:90570 ; + ns2:connectsFrom ns4:72185 ; + ns2:connectsTo ns4:02590 ; + ns2:hasMedium . + +ns4:37652 a ns2:Connection ; rdfs:label "37652" ; - ns1:cnx ns2:19898, - ns2:98956 ; - ns1:connectsAt ns2:19898, - ns2:98956 ; - ns1:connectsFrom ns2:70764 ; - ns1:connectsTo ns2:83890 ; - ns1:hasMedium . - -ns2:37718 a ns1:Connection ; + ns2:cnx ns4:19898, + ns4:98956 ; + ns2:connectsAt ns4:19898, + ns4:98956 ; + ns2:connectsFrom ns4:70764 ; + ns2:connectsTo ns4:83890 ; + ns2:hasMedium . + +ns4:37718 a ns2:Connection ; rdfs:label "37718" ; - ns1:cnx ns2:71075, - ns2:99683 ; - ns1:connectsAt ns2:71075, - ns2:99683 ; - ns1:connectsFrom ns2:30030 ; - ns1:connectsTo ns2:70120 ; - ns1:hasMedium . - -ns2:37912 a ns1:Connection ; + ns2:cnx ns4:71075, + ns4:99683 ; + ns2:connectsAt ns4:71075, + ns4:99683 ; + ns2:connectsFrom ns4:30030 ; + ns2:connectsTo ns4:70120 ; + ns2:hasMedium . + +ns4:37912 a ns2:Connection ; rdfs:label "37912" ; - ns1:cnx ns2:19216, - ns2:48870 ; - ns1:connectsAt ns2:19216, - ns2:48870 ; - ns1:connectsFrom ns2:77070 ; - ns1:connectsTo ns2:50126 ; - ns1:hasMedium . - -ns2:38300 a ns1:Connection ; + ns2:cnx ns4:19216, + ns4:48870 ; + ns2:connectsAt ns4:19216, + ns4:48870 ; + ns2:connectsFrom ns4:77070 ; + ns2:connectsTo ns4:50126 ; + ns2:hasMedium . + +ns4:38300 a ns2:Connection ; rdfs:label "38300" ; - ns1:cnx ns2:41868, - ns2:52923 ; - ns1:connectsAt ns2:41868, - ns2:52923 ; - ns1:connectsFrom ns2:25047 ; - ns1:connectsTo ns2:73947 ; - ns1:hasMedium . - -ns2:38917 a ns1:Connection ; + ns2:cnx ns4:41868, + ns4:52923 ; + ns2:connectsAt ns4:41868, + ns4:52923 ; + ns2:connectsFrom ns4:25047 ; + ns2:connectsTo ns4:73947 ; + ns2:hasMedium . + +ns4:38917 a ns2:Connection ; rdfs:label "38917" ; - ns1:cnx ns2:64731, - ns2:97222 ; - ns1:connectsAt ns2:64731, - ns2:97222 ; - ns1:connectsFrom ns2:96506 ; - ns1:connectsTo ns2:28911 ; - ns1:hasMedium . - -ns2:39361 a ns1:Connection ; + ns2:cnx ns4:64731, + ns4:97222 ; + ns2:connectsAt ns4:64731, + ns4:97222 ; + ns2:connectsFrom ns4:96506 ; + ns2:connectsTo ns4:28911 ; + ns2:hasMedium . + +ns4:39361 a ns2:Connection ; rdfs:label "39361" ; - ns1:cnx ns2:23378, - ns2:90686 ; - ns1:connectsAt ns2:23378, - ns2:90686 ; - ns1:connectsFrom ns2:93276 ; - ns1:connectsTo ns2:28911 ; - ns1:hasMedium . - -ns2:39524 a ns1:Connection ; + ns2:cnx ns4:23378, + ns4:90686 ; + ns2:connectsAt ns4:23378, + ns4:90686 ; + ns2:connectsFrom ns4:93276 ; + ns2:connectsTo ns4:28911 ; + ns2:hasMedium . + +ns4:39524 a ns2:Connection ; rdfs:label "39524" ; - ns1:cnx ns2:31093, - ns2:55877 ; - ns1:connectsAt ns2:31093, - ns2:55877 ; - ns1:connectsFrom ns2:37192 ; - ns1:connectsTo ns2:36176 ; - ns1:hasMedium . - -ns2:39723 a ns1:Connection ; + ns2:cnx ns4:31093, + ns4:55877 ; + ns2:connectsAt ns4:31093, + ns4:55877 ; + ns2:connectsFrom ns4:37192 ; + ns2:connectsTo ns4:36176 ; + ns2:hasMedium . + +ns4:39723 a ns2:Connection ; rdfs:label "39723" ; - ns1:cnx ns2:29636, - ns2:55942 ; - ns1:connectsAt ns2:29636, - ns2:55942 ; - ns1:connectsFrom ns2:22040 ; - ns1:connectsTo ns2:96809 ; - ns1:hasMedium . - -ns2:39985 a ns1:Connection ; + ns2:cnx ns4:29636, + ns4:55942 ; + ns2:connectsAt ns4:29636, + ns4:55942 ; + ns2:connectsFrom ns4:22040 ; + ns2:connectsTo ns4:96809 ; + ns2:hasMedium . + +ns4:39985 a ns2:Connection ; rdfs:label "39985" ; - ns1:cnx ns2:54319, - ns2:69089 ; - ns1:connectsAt ns2:54319, - ns2:69089 ; - ns1:connectsFrom ns2:19107 ; - ns1:connectsTo ns2:80276 ; - ns1:hasMedium . - -ns2:40374 a ns1:Connection ; + ns2:cnx ns4:54319, + ns4:69089 ; + ns2:connectsAt ns4:54319, + ns4:69089 ; + ns2:connectsFrom ns4:19107 ; + ns2:connectsTo ns4:80276 ; + ns2:hasMedium . + +ns4:40374 a ns2:Connection ; rdfs:label "40374" ; - ns1:cnx ns2:39678, - ns2:81895 ; - ns1:connectsAt ns2:39678, - ns2:81895 ; - ns1:connectsFrom ns2:19805 ; - ns1:connectsTo ns2:45441 ; - ns1:hasMedium . - -ns2:40409 a ns1:Connection ; + ns2:cnx ns4:39678, + ns4:81895 ; + ns2:connectsAt ns4:39678, + ns4:81895 ; + ns2:connectsFrom ns4:19805 ; + ns2:connectsTo ns4:45441 ; + ns2:hasMedium . + +ns4:40409 a ns2:Connection ; rdfs:label "40409" ; - ns1:cnx ns2:11879, - ns2:27363 ; - ns1:connectsAt ns2:11879, - ns2:27363 ; - ns1:connectsFrom ns2:06502 ; - ns1:connectsTo ns2:22732 ; - ns1:hasMedium . - -ns2:40887 a ns1:Connection ; + ns2:cnx ns4:11879, + ns4:27363 ; + ns2:connectsAt ns4:11879, + ns4:27363 ; + ns2:connectsFrom ns4:06502 ; + ns2:connectsTo ns4:22732 ; + ns2:hasMedium . + +ns4:40887 a ns2:Connection ; rdfs:label "40887" ; - ns1:cnx ns2:28452, - ns2:76954 ; - ns1:connectsAt ns2:28452, - ns2:76954 ; - ns1:connectsFrom ns2:21910 ; - ns1:connectsTo ns2:16343 ; - ns1:hasMedium . - -ns2:41128 a ns1:Connection ; + ns2:cnx ns4:28452, + ns4:76954 ; + ns2:connectsAt ns4:28452, + ns4:76954 ; + ns2:connectsFrom ns4:21910 ; + ns2:connectsTo ns4:16343 ; + ns2:hasMedium . + +ns4:41128 a ns2:Connection ; rdfs:label "41128" ; - ns1:cnx ns2:07961, - ns2:14475 ; - ns1:connectsAt ns2:07961, - ns2:14475 ; - ns1:connectsFrom ns2:15538 ; - ns1:connectsTo ns2:10814 ; - ns1:hasMedium . - -ns2:41382 a ns1:Connection ; + ns2:cnx ns4:07961, + ns4:14475 ; + ns2:connectsAt ns4:07961, + ns4:14475 ; + ns2:connectsFrom ns4:15538 ; + ns2:connectsTo ns4:10814 ; + ns2:hasMedium . + +ns4:41382 a ns2:Connection ; rdfs:label "41382" ; - ns1:cnx ns2:83074, - ns2:98522 ; - ns1:connectsAt ns2:83074, - ns2:98522 ; - ns1:connectsFrom ns2:74362 ; - ns1:connectsTo ns2:30030 ; - ns1:hasMedium . - -ns2:41561 a ns1:Connection ; + ns2:cnx ns4:83074, + ns4:98522 ; + ns2:connectsAt ns4:83074, + ns4:98522 ; + ns2:connectsFrom ns4:74362 ; + ns2:connectsTo ns4:30030 ; + ns2:hasMedium . + +ns4:41561 a ns2:Connection ; rdfs:label "41561" ; - ns1:cnx ns2:52638, - ns2:67748 ; - ns1:connectsAt ns2:52638, - ns2:67748 ; - ns1:connectsFrom ns2:61196 ; - ns1:connectsTo ns2:84040 ; - ns1:hasMedium . - -ns2:42045 a ns1:Connection ; + ns2:cnx ns4:52638, + ns4:67748 ; + ns2:connectsAt ns4:52638, + ns4:67748 ; + ns2:connectsFrom ns4:61196 ; + ns2:connectsTo ns4:84040 ; + ns2:hasMedium . + +ns4:42045 a ns2:Connection ; rdfs:label "42045" ; - ns1:cnx ns2:26374, - ns2:26452 ; - ns1:connectsAt ns2:26374, - ns2:26452 ; - ns1:connectsFrom ns2:70230 ; - ns1:connectsTo ns2:67388 ; - ns1:hasMedium . - -ns2:42054 a ns1:Connection ; + ns2:cnx ns4:26374, + ns4:26452 ; + ns2:connectsAt ns4:26374, + ns4:26452 ; + ns2:connectsFrom ns4:70230 ; + ns2:connectsTo ns4:67388 ; + ns2:hasMedium . + +ns4:42054 a ns2:Connection ; rdfs:label "42054" ; - ns1:cnx ns2:01718, - ns2:56747 ; - ns1:connectsAt ns2:01718, - ns2:56747 ; - ns1:connectsFrom ns2:97668 ; - ns1:connectsTo ns2:05175 ; - ns1:hasMedium . - -ns2:42081 a ns1:Connection ; + ns2:cnx ns4:01718, + ns4:56747 ; + ns2:connectsAt ns4:01718, + ns4:56747 ; + ns2:connectsFrom ns4:97668 ; + ns2:connectsTo ns4:05175 ; + ns2:hasMedium . + +ns4:42081 a ns2:Connection ; rdfs:label "42081" ; - ns1:cnx ns2:62233, - ns2:80482 ; - ns1:connectsAt ns2:62233, - ns2:80482 ; - ns1:connectsFrom ns2:49192 ; - ns1:connectsTo ns2:76100 ; - ns1:hasMedium . - -ns2:42481 a ns1:Connection ; + ns2:cnx ns4:62233, + ns4:80482 ; + ns2:connectsAt ns4:62233, + ns4:80482 ; + ns2:connectsFrom ns4:49192 ; + ns2:connectsTo ns4:76100 ; + ns2:hasMedium . + +ns4:42481 a ns2:Connection ; rdfs:label "42481" ; - ns1:cnx ns2:07708, - ns2:88207 ; - ns1:connectsAt ns2:07708, - ns2:88207 ; - ns1:connectsFrom ns2:42308 ; - ns1:connectsTo ns2:51853 ; - ns1:hasMedium . - -ns2:42650 a ns1:Connection ; + ns2:cnx ns4:07708, + ns4:88207 ; + ns2:connectsAt ns4:07708, + ns4:88207 ; + ns2:connectsFrom ns4:42308 ; + ns2:connectsTo ns4:51853 ; + ns2:hasMedium . + +ns4:42650 a ns2:Connection ; rdfs:label "42650" ; - ns1:cnx ns2:19181, - ns2:54602 ; - ns1:connectsAt ns2:19181, - ns2:54602 ; - ns1:connectsFrom ns2:42308 ; - ns1:connectsTo ns2:85453 ; - ns1:hasMedium . - -ns2:42653 a ns1:Connection ; + ns2:cnx ns4:19181, + ns4:54602 ; + ns2:connectsAt ns4:19181, + ns4:54602 ; + ns2:connectsFrom ns4:42308 ; + ns2:connectsTo ns4:85453 ; + ns2:hasMedium . + +ns4:42653 a ns2:Connection ; rdfs:label "42653" ; - ns1:cnx ns2:31018, - ns2:40147 ; - ns1:connectsAt ns2:31018, - ns2:40147 ; - ns1:connectsFrom ns2:18875 ; - ns1:connectsTo ns2:43967 ; - ns1:hasMedium . - -ns2:42654 a ns1:Connection ; + ns2:cnx ns4:31018, + ns4:40147 ; + ns2:connectsAt ns4:31018, + ns4:40147 ; + ns2:connectsFrom ns4:18875 ; + ns2:connectsTo ns4:43967 ; + ns2:hasMedium . + +ns4:42654 a ns2:Connection ; rdfs:label "42654" ; - ns1:cnx ns2:46181, - ns2:63046 ; - ns1:connectsAt ns2:46181, - ns2:63046 ; - ns1:connectsFrom ns2:62481 ; - ns1:connectsTo ns2:81183 ; - ns1:hasMedium . - -ns2:43211 a ns1:Connection ; + ns2:cnx ns4:46181, + ns4:63046 ; + ns2:connectsAt ns4:46181, + ns4:63046 ; + ns2:connectsFrom ns4:62481 ; + ns2:connectsTo ns4:81183 ; + ns2:hasMedium . + +ns4:43211 a ns2:Connection ; rdfs:label "43211" ; - ns1:cnx ns2:72525, - ns2:99287 ; - ns1:connectsAt ns2:72525, - ns2:99287 ; - ns1:connectsFrom ns2:88028 ; - ns1:connectsTo ns2:47956 ; - ns1:hasMedium . - -ns2:43608 a ns1:Connection ; + ns2:cnx ns4:72525, + ns4:99287 ; + ns2:connectsAt ns4:72525, + ns4:99287 ; + ns2:connectsFrom ns4:88028 ; + ns2:connectsTo ns4:47956 ; + ns2:hasMedium . + +ns4:43608 a ns2:Connection ; rdfs:label "43608" ; - ns1:cnx ns2:16636, - ns2:26456 ; - ns1:connectsAt ns2:16636, - ns2:26456 ; - ns1:connectsFrom ns2:08346 ; - ns1:connectsTo ns2:13461 ; - ns1:hasMedium . - -ns2:43934 a ns1:ObservableProperty, - ns1:PhysicalSpace, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:16636, + ns4:26456 ; + ns2:connectsAt ns4:16636, + ns4:26456 ; + ns2:connectsFrom ns4:08346 ; + ns2:connectsTo ns4:13461 ; + ns2:hasMedium . + +ns4:43934 a ns2:ObservableProperty, + ns2:PhysicalSpace, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:DifferentialStaticPressure ; rdfs:label "4686", "sa_press.DifferentialStaticPressure" ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . -ns2:45908 a ns1:Connection ; +ns4:45908 a ns2:Connection ; rdfs:label "45908" ; - ns1:cnx ns2:14171, - ns2:20269 ; - ns1:connectsAt ns2:14171, - ns2:20269 ; - ns1:connectsFrom ns2:50126 ; - ns1:connectsTo ns2:05101 ; - ns1:hasMedium . - -ns2:46331 a ns1:Connection ; + ns2:cnx ns4:14171, + ns4:20269 ; + ns2:connectsAt ns4:14171, + ns4:20269 ; + ns2:connectsFrom ns4:50126 ; + ns2:connectsTo ns4:05101 ; + ns2:hasMedium . + +ns4:46331 a ns2:Connection ; rdfs:label "46331" ; - ns1:cnx ns2:13246, - ns2:56624 ; - ns1:connectsAt ns2:13246, - ns2:56624 ; - ns1:connectsFrom ns2:74360 ; - ns1:connectsTo ns2:89752 ; - ns1:hasMedium . - -ns2:46825 a ns1:Connection ; + ns2:cnx ns4:13246, + ns4:56624 ; + ns2:connectsAt ns4:13246, + ns4:56624 ; + ns2:connectsFrom ns4:74360 ; + ns2:connectsTo ns4:89752 ; + ns2:hasMedium . + +ns4:46825 a ns2:Connection ; rdfs:label "46825" ; - ns1:cnx ns2:10678, - ns2:19877 ; - ns1:connectsAt ns2:10678, - ns2:19877 ; - ns1:connectsFrom ns2:78065 ; - ns1:connectsTo ns2:93276 ; - ns1:hasMedium . - -ns2:47009 a ns1:Connection ; + ns2:cnx ns4:10678, + ns4:19877 ; + ns2:connectsAt ns4:10678, + ns4:19877 ; + ns2:connectsFrom ns4:78065 ; + ns2:connectsTo ns4:93276 ; + ns2:hasMedium . + +ns4:47009 a ns2:Connection ; rdfs:label "47009" ; - ns1:cnx ns2:52909, - ns2:80679 ; - ns1:connectsAt ns2:52909, - ns2:80679 ; - ns1:connectsFrom ns2:63086 ; - ns1:connectsTo ns2:29499 ; - ns1:hasMedium . - -ns2:47474 a ns1:Connection ; + ns2:cnx ns4:52909, + ns4:80679 ; + ns2:connectsAt ns4:52909, + ns4:80679 ; + ns2:connectsFrom ns4:63086 ; + ns2:connectsTo ns4:29499 ; + ns2:hasMedium . + +ns4:47474 a ns2:Connection ; rdfs:label "47474" ; - ns1:cnx ns2:17687, - ns2:61520 ; - ns1:connectsAt ns2:17687, - ns2:61520 ; - ns1:connectsFrom ns2:50126 ; - ns1:connectsTo ns2:01399 ; - ns1:hasMedium . - -ns2:48548 a ns1:Connection ; + ns2:cnx ns4:17687, + ns4:61520 ; + ns2:connectsAt ns4:17687, + ns4:61520 ; + ns2:connectsFrom ns4:50126 ; + ns2:connectsTo ns4:01399 ; + ns2:hasMedium . + +ns4:48548 a ns2:Connection ; rdfs:label "48548" ; - ns1:cnx ns2:12321, - ns2:30170 ; - ns1:connectsAt ns2:12321, - ns2:30170 ; - ns1:connectsFrom ns2:06275 ; - ns1:connectsTo ns2:29807 ; - ns1:hasMedium . - -ns2:48815 a ns1:Connection ; + ns2:cnx ns4:12321, + ns4:30170 ; + ns2:connectsAt ns4:12321, + ns4:30170 ; + ns2:connectsFrom ns4:06275 ; + ns2:connectsTo ns4:29807 ; + ns2:hasMedium . + +ns4:48815 a ns2:Connection ; rdfs:label "48815" ; - ns1:cnx ns2:02332, - ns2:47249 ; - ns1:connectsAt ns2:02332, - ns2:47249 ; - ns1:connectsFrom ns2:05353 ; - ns1:connectsTo ns2:15332 ; - ns1:hasMedium . - -ns2:48919 a ns1:Connection ; + ns2:cnx ns4:02332, + ns4:47249 ; + ns2:connectsAt ns4:02332, + ns4:47249 ; + ns2:connectsFrom ns4:05353 ; + ns2:connectsTo ns4:15332 ; + ns2:hasMedium . + +ns4:48919 a ns2:Connection ; rdfs:label "48919" ; - ns1:cnx ns2:00287, - ns2:98697 ; - ns1:connectsAt ns2:00287, - ns2:98697 ; - ns1:connectsFrom ns2:09638 ; - ns1:connectsTo ns2:96315 ; - ns1:hasMedium . - -ns2:49364 a ns1:Connection ; + ns2:cnx ns4:00287, + ns4:98697 ; + ns2:connectsAt ns4:00287, + ns4:98697 ; + ns2:connectsFrom ns4:09638 ; + ns2:connectsTo ns4:96315 ; + ns2:hasMedium . + +ns4:49364 a ns2:Connection ; rdfs:label "49364" ; - ns1:cnx ns2:43000, - ns2:96248 ; - ns1:connectsAt ns2:43000, - ns2:96248 ; - ns1:connectsFrom ns2:94683 ; - ns1:connectsTo ns2:80065 ; - ns1:hasMedium . - -ns2:50261 a ns1:Connection ; + ns2:cnx ns4:43000, + ns4:96248 ; + ns2:connectsAt ns4:43000, + ns4:96248 ; + ns2:connectsFrom ns4:94683 ; + ns2:connectsTo ns4:80065 ; + ns2:hasMedium . + +ns4:50261 a ns2:Connection ; rdfs:label "50261" ; - ns1:cnx ns2:23625, - ns2:87461 ; - ns1:connectsAt ns2:23625, - ns2:87461 ; - ns1:connectsFrom ns2:83621 ; - ns1:connectsTo ns2:03365 ; - ns1:hasMedium . - -ns2:50484 a ns1:Connection ; + ns2:cnx ns4:23625, + ns4:87461 ; + ns2:connectsAt ns4:23625, + ns4:87461 ; + ns2:connectsFrom ns4:83621 ; + ns2:connectsTo ns4:03365 ; + ns2:hasMedium . + +ns4:50484 a ns2:Connection ; rdfs:label "50484" ; - ns1:cnx ns2:22726, - ns2:66888 ; - ns1:connectsAt ns2:22726, - ns2:66888 ; - ns1:connectsFrom ns2:33721 ; - ns1:connectsTo ns2:46019 ; - ns1:hasMedium . - -ns2:50742 a ns1:Connection ; + ns2:cnx ns4:22726, + ns4:66888 ; + ns2:connectsAt ns4:22726, + ns4:66888 ; + ns2:connectsFrom ns4:33721 ; + ns2:connectsTo ns4:46019 ; + ns2:hasMedium . + +ns4:50742 a ns2:Connection ; rdfs:label "50742" ; - ns1:cnx ns2:31977, - ns2:69790 ; - ns1:connectsAt ns2:31977, - ns2:69790 ; - ns1:connectsFrom ns2:01399 ; - ns1:connectsTo ns2:68534 ; - ns1:hasMedium . - -ns2:52537 a ns1:Connection ; + ns2:cnx ns4:31977, + ns4:69790 ; + ns2:connectsAt ns4:31977, + ns4:69790 ; + ns2:connectsFrom ns4:01399 ; + ns2:connectsTo ns4:68534 ; + ns2:hasMedium . + +ns4:52537 a ns2:Connection ; rdfs:label "52537" ; - ns1:cnx ns2:50319, - ns2:88169 ; - ns1:connectsAt ns2:50319, - ns2:88169 ; - ns1:connectsFrom ns2:35514 ; - ns1:connectsTo ns2:32837 ; - ns1:hasMedium . - -ns2:52944 a ns1:Connection ; + ns2:cnx ns4:50319, + ns4:88169 ; + ns2:connectsAt ns4:50319, + ns4:88169 ; + ns2:connectsFrom ns4:35514 ; + ns2:connectsTo ns4:32837 ; + ns2:hasMedium . + +ns4:52944 a ns2:Connection ; rdfs:label "52944" ; - ns1:cnx ns2:20563, - ns2:75031 ; - ns1:connectsAt ns2:20563, - ns2:75031 ; - ns1:connectsFrom ns2:42308 ; - ns1:connectsTo ns2:34533 ; - ns1:hasMedium . - -ns2:53271 a ns1:Connection ; + ns2:cnx ns4:20563, + ns4:75031 ; + ns2:connectsAt ns4:20563, + ns4:75031 ; + ns2:connectsFrom ns4:42308 ; + ns2:connectsTo ns4:34533 ; + ns2:hasMedium . + +ns4:53271 a ns2:Connection ; rdfs:label "53271" ; - ns1:cnx ns2:33657, - ns2:60332 ; - ns1:connectsAt ns2:33657, - ns2:60332 ; - ns1:connectsFrom ns2:13461 ; - ns1:connectsTo ns2:98159 ; - ns1:hasMedium . - -ns2:53655 a ns1:Connection ; + ns2:cnx ns4:33657, + ns4:60332 ; + ns2:connectsAt ns4:33657, + ns4:60332 ; + ns2:connectsFrom ns4:13461 ; + ns2:connectsTo ns4:98159 ; + ns2:hasMedium . + +ns4:53655 a ns2:Connection ; rdfs:label "53655" ; - ns1:cnx ns2:55180, - ns2:87151 ; - ns1:connectsAt ns2:55180, - ns2:87151 ; - ns1:connectsFrom ns2:77887 ; - ns1:connectsTo ns2:69111 ; - ns1:hasMedium . - -ns2:54326 a ns1:Connection ; + ns2:cnx ns4:55180, + ns4:87151 ; + ns2:connectsAt ns4:55180, + ns4:87151 ; + ns2:connectsFrom ns4:77887 ; + ns2:connectsTo ns4:69111 ; + ns2:hasMedium . + +ns4:54326 a ns2:Connection ; rdfs:label "54326" ; - ns1:cnx ns2:05982, - ns2:13280 ; - ns1:connectsAt ns2:05982, - ns2:13280 ; - ns1:connectsFrom ns2:52428 ; - ns1:connectsTo ns2:97668 ; - ns1:hasMedium . - -ns2:54382 a ns1:Connection ; + ns2:cnx ns4:05982, + ns4:13280 ; + ns2:connectsAt ns4:05982, + ns4:13280 ; + ns2:connectsFrom ns4:52428 ; + ns2:connectsTo ns4:97668 ; + ns2:hasMedium . + +ns4:54382 a ns2:Connection ; rdfs:label "54382" ; - ns1:cnx ns2:40402, - ns2:87860 ; - ns1:connectsAt ns2:40402, - ns2:87860 ; - ns1:connectsFrom ns2:94119 ; - ns1:connectsTo ns2:69111 ; - ns1:hasMedium . - -ns2:54863 a ns1:Connection ; + ns2:cnx ns4:40402, + ns4:87860 ; + ns2:connectsAt ns4:40402, + ns4:87860 ; + ns2:connectsFrom ns4:94119 ; + ns2:connectsTo ns4:69111 ; + ns2:hasMedium . + +ns4:54863 a ns2:Connection ; rdfs:label "54863" ; - ns1:cnx ns2:26208, - ns2:87387 ; - ns1:connectsAt ns2:26208, - ns2:87387 ; - ns1:connectsFrom ns2:62510 ; - ns1:connectsTo ns2:83428 ; - ns1:hasMedium . - -ns2:54936 a ns1:Connection ; + ns2:cnx ns4:26208, + ns4:87387 ; + ns2:connectsAt ns4:26208, + ns4:87387 ; + ns2:connectsFrom ns4:62510 ; + ns2:connectsTo ns4:83428 ; + ns2:hasMedium . + +ns4:54936 a ns2:Connection ; rdfs:label "54936" ; - ns1:cnx ns2:06081, - ns2:88792 ; - ns1:connectsAt ns2:06081, - ns2:88792 ; - ns1:connectsFrom ns2:50126 ; - ns1:connectsTo ns2:03724 ; - ns1:hasMedium . - -ns2:55174 a ns1:Connection ; + ns2:cnx ns4:06081, + ns4:88792 ; + ns2:connectsAt ns4:06081, + ns4:88792 ; + ns2:connectsFrom ns4:50126 ; + ns2:connectsTo ns4:03724 ; + ns2:hasMedium . + +ns4:55174 a ns2:Connection ; rdfs:label "55174" ; - ns1:cnx ns2:21534, - ns2:84668 ; - ns1:connectsAt ns2:21534, - ns2:84668 ; - ns1:connectsFrom ns2:18941 ; - ns1:connectsTo ns2:49064 ; - ns1:hasMedium . - -ns2:55685 a ns1:Connection ; + ns2:cnx ns4:21534, + ns4:84668 ; + ns2:connectsAt ns4:21534, + ns4:84668 ; + ns2:connectsFrom ns4:18941 ; + ns2:connectsTo ns4:49064 ; + ns2:hasMedium . + +ns4:55685 a ns2:Connection ; rdfs:label "55685" ; - ns1:cnx ns2:25549, - ns2:99413 ; - ns1:connectsAt ns2:25549, - ns2:99413 ; - ns1:connectsFrom ns2:26799 ; - ns1:connectsTo ns2:28911 ; - ns1:hasMedium . - -ns2:56341 a ns1:Connection ; + ns2:cnx ns4:25549, + ns4:99413 ; + ns2:connectsAt ns4:25549, + ns4:99413 ; + ns2:connectsFrom ns4:26799 ; + ns2:connectsTo ns4:28911 ; + ns2:hasMedium . + +ns4:56341 a ns2:Connection ; rdfs:label "56341" ; - ns1:cnx ns2:01882, - ns2:10261 ; - ns1:connectsAt ns2:01882, - ns2:10261 ; - ns1:connectsFrom ns2:53679 ; - ns1:connectsTo ns2:34392 ; - ns1:hasMedium . - -ns2:56375 a ns1:Connection ; + ns2:cnx ns4:01882, + ns4:10261 ; + ns2:connectsAt ns4:01882, + ns4:10261 ; + ns2:connectsFrom ns4:53679 ; + ns2:connectsTo ns4:34392 ; + ns2:hasMedium . + +ns4:56375 a ns2:Connection ; rdfs:label "56375" ; - ns1:cnx ns2:12218, - ns2:22663 ; - ns1:connectsAt ns2:12218, - ns2:22663 ; - ns1:connectsFrom ns2:80065 ; - ns1:connectsTo ns2:25140 ; - ns1:hasMedium . - -ns2:56445 a ns1:Connection ; + ns2:cnx ns4:12218, + ns4:22663 ; + ns2:connectsAt ns4:12218, + ns4:22663 ; + ns2:connectsFrom ns4:80065 ; + ns2:connectsTo ns4:25140 ; + ns2:hasMedium . + +ns4:56445 a ns2:Connection ; rdfs:label "56445" ; - ns1:cnx ns2:14065, - ns2:64302 ; - ns1:connectsAt ns2:14065, - ns2:64302 ; - ns1:connectsFrom ns2:79897 ; - ns1:connectsTo ns2:06502 ; - ns1:hasMedium . - -ns2:56473 a ns1:Connection ; + ns2:cnx ns4:14065, + ns4:64302 ; + ns2:connectsAt ns4:14065, + ns4:64302 ; + ns2:connectsFrom ns4:79897 ; + ns2:connectsTo ns4:06502 ; + ns2:hasMedium . + +ns4:56473 a ns2:Connection ; rdfs:label "56473" ; - ns1:cnx ns2:40617, - ns2:87516 ; - ns1:connectsAt ns2:40617, - ns2:87516 ; - ns1:connectsFrom ns2:92645 ; - ns1:connectsTo ns2:46019 ; - ns1:hasMedium . - -ns2:57596 a ns1:Connection ; + ns2:cnx ns4:40617, + ns4:87516 ; + ns2:connectsAt ns4:40617, + ns4:87516 ; + ns2:connectsFrom ns4:92645 ; + ns2:connectsTo ns4:46019 ; + ns2:hasMedium . + +ns4:57596 a ns2:Connection ; rdfs:label "57596" ; - ns1:cnx ns2:63557, - ns2:88535 ; - ns1:connectsAt ns2:63557, - ns2:88535 ; - ns1:connectsFrom ns2:00783 ; - ns1:connectsTo ns2:68166 ; - ns1:hasMedium . - -ns2:57605 a ns1:Connection ; + ns2:cnx ns4:63557, + ns4:88535 ; + ns2:connectsAt ns4:63557, + ns4:88535 ; + ns2:connectsFrom ns4:00783 ; + ns2:connectsTo ns4:68166 ; + ns2:hasMedium . + +ns4:57605 a ns2:Connection ; rdfs:label "57605" ; - ns1:cnx ns2:65665, - ns2:76342 ; - ns1:connectsAt ns2:65665, - ns2:76342 ; - ns1:connectsFrom ns2:91944 ; - ns1:connectsTo ns2:83890 ; - ns1:hasMedium . - -ns2:57735 a ns1:Connection ; + ns2:cnx ns4:65665, + ns4:76342 ; + ns2:connectsAt ns4:65665, + ns4:76342 ; + ns2:connectsFrom ns4:91944 ; + ns2:connectsTo ns4:83890 ; + ns2:hasMedium . + +ns4:57735 a ns2:Connection ; rdfs:label "57735" ; - ns1:cnx ns2:55520, - ns2:85482 ; - ns1:connectsAt ns2:55520, - ns2:85482 ; - ns1:connectsFrom ns2:76100 ; - ns1:connectsTo ns2:29599 ; - ns1:hasMedium . - -ns2:57979 a ns1:ConnectionPoint, - ns1:ObservableProperty, - ns1:OutletConnectionPoint, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:RefrigerantConnectionPoint, - ns4:DifferentialStaticPressure ; + ns2:cnx ns4:55520, + ns4:85482 ; + ns2:connectsAt ns4:55520, + ns4:85482 ; + ns2:connectsFrom ns4:76100 ; + ns2:connectsTo ns4:29599 ; + ns2:hasMedium . + +ns4:57979 a ns2:ConnectionPoint, + ns2:ObservableProperty, + ns2:OutletConnectionPoint, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:RefrigerantConnectionPoint, + ns3:DifferentialStaticPressure ; rdfs:label "cwc.refrigerantOutlet", "highPort.DifferentialStaticPressure" ; - ns1:cnx ns2:45817 ; - ns1:hasMedium ns1:Fluid-Refrigerant ; - ns1:hasProperty ns2:43932 ; - ns1:isConnectionPointOf ns2:45817 ; - ns1:ofMedium ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:57984 a ns1:Connection ; + ns2:cnx ns4:45817 ; + ns2:hasMedium ns2:Fluid-Refrigerant ; + ns2:hasProperty ns4:43932 ; + ns2:isConnectionPointOf ns4:45817 ; + ns2:ofMedium ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:57984 a ns2:Connection ; rdfs:label "57984" ; - ns1:cnx ns2:47494, - ns2:70362 ; - ns1:connectsAt ns2:47494, - ns2:70362 ; - ns1:connectsFrom ns2:93162 ; - ns1:connectsTo ns2:05175 ; - ns1:hasMedium . - -ns2:58341 a ns1:Connection ; + ns2:cnx ns4:47494, + ns4:70362 ; + ns2:connectsAt ns4:47494, + ns4:70362 ; + ns2:connectsFrom ns4:93162 ; + ns2:connectsTo ns4:05175 ; + ns2:hasMedium . + +ns4:58341 a ns2:Connection ; rdfs:label "58341" ; - ns1:cnx ns2:38344, - ns2:59934 ; - ns1:connectsAt ns2:38344, - ns2:59934 ; - ns1:connectsFrom ns2:06275 ; - ns1:connectsTo ns2:49192 ; - ns1:hasMedium . - -ns2:58412 a ns1:Connection ; + ns2:cnx ns4:38344, + ns4:59934 ; + ns2:connectsAt ns4:38344, + ns4:59934 ; + ns2:connectsFrom ns4:06275 ; + ns2:connectsTo ns4:49192 ; + ns2:hasMedium . + +ns4:58412 a ns2:Connection ; rdfs:label "58412" ; - ns1:cnx ns2:34889, - ns2:46736 ; - ns1:connectsAt ns2:34889, - ns2:46736 ; - ns1:connectsFrom ns2:46417 ; - ns1:connectsTo ns2:89915 ; - ns1:hasMedium . - -ns2:58818 a ns1:Connection ; + ns2:cnx ns4:34889, + ns4:46736 ; + ns2:connectsAt ns4:34889, + ns4:46736 ; + ns2:connectsFrom ns4:46417 ; + ns2:connectsTo ns4:89915 ; + ns2:hasMedium . + +ns4:58818 a ns2:Connection ; rdfs:label "58818" ; - ns1:cnx ns2:01014, - ns2:77736 ; - ns1:connectsAt ns2:01014, - ns2:77736 ; - ns1:connectsFrom ns2:73024 ; - ns1:connectsTo ns2:87632 ; - ns1:hasMedium . - -ns2:59512 a ns1:Connection ; + ns2:cnx ns4:01014, + ns4:77736 ; + ns2:connectsAt ns4:01014, + ns4:77736 ; + ns2:connectsFrom ns4:73024 ; + ns2:connectsTo ns4:87632 ; + ns2:hasMedium . + +ns4:59512 a ns2:Connection ; rdfs:label "59512" ; - ns1:cnx ns2:01697, - ns2:54486 ; - ns1:connectsAt ns2:01697, - ns2:54486 ; - ns1:connectsFrom ns2:58975 ; - ns1:connectsTo ns2:98159 ; - ns1:hasMedium . - -ns2:59800 a ns1:Connection ; + ns2:cnx ns4:01697, + ns4:54486 ; + ns2:connectsAt ns4:01697, + ns4:54486 ; + ns2:connectsFrom ns4:58975 ; + ns2:connectsTo ns4:98159 ; + ns2:hasMedium . + +ns4:59800 a ns2:Connection ; rdfs:label "59800" ; - ns1:cnx ns2:78283, - ns2:84896 ; - ns1:connectsAt ns2:78283, - ns2:84896 ; - ns1:connectsFrom ns2:06275 ; - ns1:connectsTo ns2:77070 ; - ns1:hasMedium . - -ns2:60029 a ns1:Connection ; + ns2:cnx ns4:78283, + ns4:84896 ; + ns2:connectsAt ns4:78283, + ns4:84896 ; + ns2:connectsFrom ns4:06275 ; + ns2:connectsTo ns4:77070 ; + ns2:hasMedium . + +ns4:60029 a ns2:Connection ; rdfs:label "60029" ; - ns1:cnx ns2:35242, - ns2:92871 ; - ns1:connectsAt ns2:35242, - ns2:92871 ; - ns1:connectsFrom ns2:77070 ; - ns1:connectsTo ns2:43278 ; - ns1:hasMedium . - -ns2:60631 a ns1:Connection ; + ns2:cnx ns4:35242, + ns4:92871 ; + ns2:connectsAt ns4:35242, + ns4:92871 ; + ns2:connectsFrom ns4:77070 ; + ns2:connectsTo ns4:43278 ; + ns2:hasMedium . + +ns4:60631 a ns2:Connection ; rdfs:label "60631" ; - ns1:cnx ns2:12539, - ns2:28196 ; - ns1:connectsAt ns2:12539, - ns2:28196 ; - ns1:connectsFrom ns2:52728 ; - ns1:connectsTo ns2:03254 ; - ns1:hasMedium . - -ns2:61128 a ns1:Connection ; + ns2:cnx ns4:12539, + ns4:28196 ; + ns2:connectsAt ns4:12539, + ns4:28196 ; + ns2:connectsFrom ns4:52728 ; + ns2:connectsTo ns4:03254 ; + ns2:hasMedium . + +ns4:61128 a ns2:Connection ; rdfs:label "61128" ; - ns1:cnx ns2:60006, - ns2:76232 ; - ns1:connectsAt ns2:60006, - ns2:76232 ; - ns1:connectsFrom ns2:20289 ; - ns1:connectsTo ns2:25067 ; - ns1:hasMedium . - -ns2:61849 a ns1:Connection ; + ns2:cnx ns4:60006, + ns4:76232 ; + ns2:connectsAt ns4:60006, + ns4:76232 ; + ns2:connectsFrom ns4:20289 ; + ns2:connectsTo ns4:25067 ; + ns2:hasMedium . + +ns4:61849 a ns2:Connection ; rdfs:label "61849" ; - ns1:cnx ns2:17598, - ns2:49951 ; - ns1:connectsAt ns2:17598, - ns2:49951 ; - ns1:connectsFrom ns2:45429 ; - ns1:connectsTo ns2:73972 ; - ns1:hasMedium . - -ns2:61942 a ns1:Connection ; + ns2:cnx ns4:17598, + ns4:49951 ; + ns2:connectsAt ns4:17598, + ns4:49951 ; + ns2:connectsFrom ns4:45429 ; + ns2:connectsTo ns4:73972 ; + ns2:hasMedium . + +ns4:61942 a ns2:Connection ; rdfs:label "61942" ; - ns1:cnx ns2:15991, - ns2:99388 ; - ns1:connectsAt ns2:15991, - ns2:99388 ; - ns1:connectsFrom ns2:88028 ; - ns1:connectsTo ns2:02070 ; - ns1:hasMedium . - -ns2:61966 a ns1:Connection ; + ns2:cnx ns4:15991, + ns4:99388 ; + ns2:connectsAt ns4:15991, + ns4:99388 ; + ns2:connectsFrom ns4:88028 ; + ns2:connectsTo ns4:02070 ; + ns2:hasMedium . + +ns4:61966 a ns2:Connection ; rdfs:label "61966" ; - ns1:cnx ns2:07756, - ns2:56119 ; - ns1:connectsAt ns2:07756, - ns2:56119 ; - ns1:connectsFrom ns2:12924 ; - ns1:connectsTo ns2:87782 ; - ns1:hasMedium . - -ns2:62479 a ns1:Connection ; + ns2:cnx ns4:07756, + ns4:56119 ; + ns2:connectsAt ns4:07756, + ns4:56119 ; + ns2:connectsFrom ns4:12924 ; + ns2:connectsTo ns4:87782 ; + ns2:hasMedium . + +ns4:62479 a ns2:Connection ; rdfs:label "62479" ; - ns1:cnx ns2:34957, - ns2:83796 ; - ns1:connectsAt ns2:34957, - ns2:83796 ; - ns1:connectsFrom ns2:10658 ; - ns1:connectsTo ns2:65374 ; - ns1:hasMedium . - -ns2:62707 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns4:AirConnectionPoint, - ns4:Percent ; + ns2:cnx ns4:34957, + ns4:83796 ; + ns2:connectsAt ns4:34957, + ns4:83796 ; + ns2:connectsFrom ns4:10658 ; + ns2:connectsTo ns4:65374 ; + ns2:hasMedium . + +ns4:62707 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns3:AirConnectionPoint, + ns3:Percent ; rdfs:label "iso_damper.airInlet", "position" ; - ns1:cnx ns2:00543, - ns2:81406 ; - ns1:connectsThrough ns2:00543 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:81406 ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:63083 a ns1:Connection ; + ns2:cnx ns4:00543, + ns4:81406 ; + ns2:connectsThrough ns4:00543 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:81406 ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:63083 a ns2:Connection ; rdfs:label "63083" ; - ns1:cnx ns2:38655, - ns2:51259 ; - ns1:connectsAt ns2:38655, - ns2:51259 ; - ns1:connectsFrom ns2:60688 ; - ns1:connectsTo ns2:70253 ; - ns1:hasMedium . - -ns2:63455 a ns1:Connection ; + ns2:cnx ns4:38655, + ns4:51259 ; + ns2:connectsAt ns4:38655, + ns4:51259 ; + ns2:connectsFrom ns4:60688 ; + ns2:connectsTo ns4:70253 ; + ns2:hasMedium . + +ns4:63455 a ns2:Connection ; rdfs:label "63455" ; - ns1:cnx ns2:50625, - ns2:61920 ; - ns1:connectsAt ns2:50625, - ns2:61920 ; - ns1:connectsFrom ns2:09900 ; - ns1:connectsTo ns2:39513 ; - ns1:hasMedium . - -ns2:63755 a ns1:Connection ; + ns2:cnx ns4:50625, + ns4:61920 ; + ns2:connectsAt ns4:50625, + ns4:61920 ; + ns2:connectsFrom ns4:09900 ; + ns2:connectsTo ns4:39513 ; + ns2:hasMedium . + +ns4:63755 a ns2:Connection ; rdfs:label "63755" ; - ns1:cnx ns2:08733, - ns2:82635 ; - ns1:connectsAt ns2:08733, - ns2:82635 ; - ns1:connectsFrom ns2:07924 ; - ns1:connectsTo ns2:83549 ; - ns1:hasMedium . - -ns2:64179 a ns1:Connection ; + ns2:cnx ns4:08733, + ns4:82635 ; + ns2:connectsAt ns4:08733, + ns4:82635 ; + ns2:connectsFrom ns4:07924 ; + ns2:connectsTo ns4:83549 ; + ns2:hasMedium . + +ns4:64179 a ns2:Connection ; rdfs:label "64179" ; - ns1:cnx ns2:33614, - ns2:41716 ; - ns1:connectsAt ns2:33614, - ns2:41716 ; - ns1:connectsFrom ns2:06275 ; - ns1:connectsTo ns2:27011 ; - ns1:hasMedium . - -ns2:64380 a ns1:Connection ; + ns2:cnx ns4:33614, + ns4:41716 ; + ns2:connectsAt ns4:33614, + ns4:41716 ; + ns2:connectsFrom ns4:06275 ; + ns2:connectsTo ns4:27011 ; + ns2:hasMedium . + +ns4:64380 a ns2:Connection ; rdfs:label "64380" ; - ns1:cnx ns2:29732, - ns2:64698 ; - ns1:connectsAt ns2:29732, - ns2:64698 ; - ns1:connectsFrom ns2:06275 ; - ns1:connectsTo ns2:15538 ; - ns1:hasMedium . - -ns2:64612 a ns1:Connection ; + ns2:cnx ns4:29732, + ns4:64698 ; + ns2:connectsAt ns4:29732, + ns4:64698 ; + ns2:connectsFrom ns4:06275 ; + ns2:connectsTo ns4:15538 ; + ns2:hasMedium . + +ns4:64612 a ns2:Connection ; rdfs:label "64612" ; - ns1:cnx ns2:37032, - ns2:80091 ; - ns1:connectsAt ns2:37032, - ns2:80091 ; - ns1:connectsFrom ns2:85409 ; - ns1:connectsTo ns2:60841 ; - ns1:hasMedium . - -ns2:65261 a ns1:Connection ; + ns2:cnx ns4:37032, + ns4:80091 ; + ns2:connectsAt ns4:37032, + ns4:80091 ; + ns2:connectsFrom ns4:85409 ; + ns2:connectsTo ns4:60841 ; + ns2:hasMedium . + +ns4:65261 a ns2:Connection ; rdfs:label "65261" ; - ns1:cnx ns2:92951, - ns2:93617 ; - ns1:connectsAt ns2:92951, - ns2:93617 ; - ns1:connectsFrom ns2:05971 ; - ns1:connectsTo ns2:83890 ; - ns1:hasMedium . - -ns2:65267 a ns1:Connection ; + ns2:cnx ns4:92951, + ns4:93617 ; + ns2:connectsAt ns4:92951, + ns4:93617 ; + ns2:connectsFrom ns4:05971 ; + ns2:connectsTo ns4:83890 ; + ns2:hasMedium . + +ns4:65267 a ns2:Connection ; rdfs:label "65267" ; - ns1:cnx ns2:69174, - ns2:85390 ; - ns1:connectsAt ns2:69174, - ns2:85390 ; - ns1:connectsFrom ns2:05101 ; - ns1:connectsTo ns2:46191 ; - ns1:hasMedium . - -ns2:66163 a ns1:Connection ; + ns2:cnx ns4:69174, + ns4:85390 ; + ns2:connectsAt ns4:69174, + ns4:85390 ; + ns2:connectsFrom ns4:05101 ; + ns2:connectsTo ns4:46191 ; + ns2:hasMedium . + +ns4:66163 a ns2:Connection ; rdfs:label "66163" ; - ns1:cnx ns2:12638, - ns2:88705 ; - ns1:connectsAt ns2:12638, - ns2:88705 ; - ns1:connectsFrom ns2:06275 ; - ns1:connectsTo ns2:09432 ; - ns1:hasMedium . - -ns2:66983 a ns1:Connection ; + ns2:cnx ns4:12638, + ns4:88705 ; + ns2:connectsAt ns4:12638, + ns4:88705 ; + ns2:connectsFrom ns4:06275 ; + ns2:connectsTo ns4:09432 ; + ns2:hasMedium . + +ns4:66983 a ns2:Connection ; rdfs:label "66983" ; - ns1:cnx ns2:06301, - ns2:89238 ; - ns1:connectsAt ns2:06301, - ns2:89238 ; - ns1:connectsFrom ns2:42308 ; - ns1:connectsTo ns2:37302 ; - ns1:hasMedium . - -ns2:67277 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06301, + ns4:89238 ; + ns2:connectsAt ns4:06301, + ns4:89238 ; + ns2:connectsFrom ns4:42308 ; + ns2:connectsTo ns4:37302 ; + ns2:hasMedium . + +ns4:67277 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_1.returnAirInlet" ; - ns1:cnx ns2:55672, - ns2:91912 ; - ns1:connectsThrough ns2:91912 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:55672 . + ns2:cnx ns4:55672, + ns4:91912 ; + ns2:connectsThrough ns4:91912 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:55672 . -ns2:67974 a ns1:Connection ; +ns4:67974 a ns2:Connection ; rdfs:label "67974" ; - ns1:cnx ns2:25836, - ns2:85905 ; - ns1:connectsAt ns2:25836, - ns2:85905 ; - ns1:connectsFrom ns2:71329 ; - ns1:connectsTo ns2:72185 ; - ns1:hasMedium . - -ns2:68106 a ns1:Connection ; + ns2:cnx ns4:25836, + ns4:85905 ; + ns2:connectsAt ns4:25836, + ns4:85905 ; + ns2:connectsFrom ns4:71329 ; + ns2:connectsTo ns4:72185 ; + ns2:hasMedium . + +ns4:68106 a ns2:Connection ; rdfs:label "68106" ; - ns1:cnx ns2:42823, - ns2:93389 ; - ns1:connectsAt ns2:42823, - ns2:93389 ; - ns1:connectsFrom ns2:73942 ; - ns1:connectsTo ns2:49614 ; - ns1:hasMedium . - -ns2:68940 a ns1:Connection ; + ns2:cnx ns4:42823, + ns4:93389 ; + ns2:connectsAt ns4:42823, + ns4:93389 ; + ns2:connectsFrom ns4:73942 ; + ns2:connectsTo ns4:49614 ; + ns2:hasMedium . + +ns4:68940 a ns2:Connection ; rdfs:label "68940" ; - ns1:cnx ns2:47087, - ns2:71533 ; - ns1:connectsAt ns2:47087, - ns2:71533 ; - ns1:connectsFrom ns2:58117 ; - ns1:connectsTo ns2:26040 ; - ns1:hasMedium . - -ns2:69130 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:47087, + ns4:71533 ; + ns2:connectsAt ns4:47087, + ns4:71533 ; + ns2:connectsFrom ns4:58117 ; + ns2:connectsTo ns4:26040 ; + ns2:hasMedium . + +ns4:69130 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_6.returnAirInlet" ; - ns1:cnx ns2:08315, - ns2:69576 ; - ns1:connectsThrough ns2:08315 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69576 . + ns2:cnx ns4:08315, + ns4:69576 ; + ns2:connectsThrough ns4:08315 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69576 . -ns2:69401 a ns1:Connection ; +ns4:69401 a ns2:Connection ; rdfs:label "69401" ; - ns1:cnx ns2:18449, - ns2:72880 ; - ns1:connectsAt ns2:18449, - ns2:72880 ; - ns1:connectsFrom ns2:03605 ; - ns1:connectsTo ns2:83890 ; - ns1:hasMedium . - -ns2:69442 a ns1:Connection ; + ns2:cnx ns4:18449, + ns4:72880 ; + ns2:connectsAt ns4:18449, + ns4:72880 ; + ns2:connectsFrom ns4:03605 ; + ns2:connectsTo ns4:83890 ; + ns2:hasMedium . + +ns4:69442 a ns2:Connection ; rdfs:label "69442" ; - ns1:cnx ns2:27305, - ns2:37818 ; - ns1:connectsAt ns2:27305, - ns2:37818 ; - ns1:connectsFrom ns2:81183 ; - ns1:connectsTo ns2:57501 ; - ns1:hasMedium . - -ns2:69810 a ns1:Connection ; + ns2:cnx ns4:27305, + ns4:37818 ; + ns2:connectsAt ns4:27305, + ns4:37818 ; + ns2:connectsFrom ns4:81183 ; + ns2:connectsTo ns4:57501 ; + ns2:hasMedium . + +ns4:69810 a ns2:Connection ; rdfs:label "69810" ; - ns1:cnx ns2:30707, - ns2:82356 ; - ns1:connectsAt ns2:30707, - ns2:82356 ; - ns1:connectsFrom ns2:91853 ; - ns1:connectsTo ns2:75582 ; - ns1:hasMedium . - -ns2:70319 a ns1:Connection ; + ns2:cnx ns4:30707, + ns4:82356 ; + ns2:connectsAt ns4:30707, + ns4:82356 ; + ns2:connectsFrom ns4:91853 ; + ns2:connectsTo ns4:75582 ; + ns2:hasMedium . + +ns4:70319 a ns2:Connection ; rdfs:label "70319" ; - ns1:cnx ns2:04784, - ns2:36302 ; - ns1:connectsAt ns2:04784, - ns2:36302 ; - ns1:connectsFrom ns2:05101 ; - ns1:connectsTo ns2:69011 ; - ns1:hasMedium . - -ns2:70337 a ns1:Connection ; + ns2:cnx ns4:04784, + ns4:36302 ; + ns2:connectsAt ns4:04784, + ns4:36302 ; + ns2:connectsFrom ns4:05101 ; + ns2:connectsTo ns4:69011 ; + ns2:hasMedium . + +ns4:70337 a ns2:Connection ; rdfs:label "70337" ; - ns1:cnx ns2:27741, - ns2:97098 ; - ns1:connectsAt ns2:27741, - ns2:97098 ; - ns1:connectsFrom ns2:10117 ; - ns1:connectsTo ns2:05353 ; - ns1:hasMedium . - -ns2:70445 a ns1:Connection ; + ns2:cnx ns4:27741, + ns4:97098 ; + ns2:connectsAt ns4:27741, + ns4:97098 ; + ns2:connectsFrom ns4:10117 ; + ns2:connectsTo ns4:05353 ; + ns2:hasMedium . + +ns4:70445 a ns2:Connection ; rdfs:label "70445" ; - ns1:cnx ns2:84309, - ns2:88748 ; - ns1:connectsAt ns2:84309, - ns2:88748 ; - ns1:connectsFrom ns2:02070 ; - ns1:connectsTo ns2:69136 ; - ns1:hasMedium . - -ns2:70668 a ns1:Connection ; + ns2:cnx ns4:84309, + ns4:88748 ; + ns2:connectsAt ns4:84309, + ns4:88748 ; + ns2:connectsFrom ns4:02070 ; + ns2:connectsTo ns4:69136 ; + ns2:hasMedium . + +ns4:70668 a ns2:Connection ; rdfs:label "70668" ; - ns1:cnx ns2:02007, - ns2:04462 ; - ns1:connectsAt ns2:02007, - ns2:04462 ; - ns1:connectsFrom ns2:05353 ; - ns1:connectsTo ns2:52428 ; - ns1:hasMedium . - -ns2:70952 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02007, + ns4:04462 ; + ns2:connectsAt ns4:02007, + ns4:04462 ; + ns2:connectsFrom ns4:05353 ; + ns2:connectsTo ns4:52428 ; + ns2:hasMedium . + +ns4:70952 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_0.supplyAirOutlet" ; - ns1:cnx ns2:62659, - ns2:67780 ; - ns1:connectsThrough ns2:62659 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:67780 . + ns2:cnx ns4:62659, + ns4:67780 ; + ns2:connectsThrough ns4:62659 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:67780 . -ns2:71209 a ns1:Connection ; +ns4:71209 a ns2:Connection ; rdfs:label "71209" ; - ns1:cnx ns2:20835, - ns2:27032 ; - ns1:connectsAt ns2:20835, - ns2:27032 ; - ns1:connectsFrom ns2:50126 ; - ns1:connectsTo ns2:07970 ; - ns1:hasMedium . - -ns2:71446 a ns1:Connection ; + ns2:cnx ns4:20835, + ns4:27032 ; + ns2:connectsAt ns4:20835, + ns4:27032 ; + ns2:connectsFrom ns4:50126 ; + ns2:connectsTo ns4:07970 ; + ns2:hasMedium . + +ns4:71446 a ns2:Connection ; rdfs:label "71446" ; - ns1:cnx ns2:35121, - ns2:97304 ; - ns1:connectsAt ns2:35121, - ns2:97304 ; - ns1:connectsFrom ns2:65125 ; - ns1:connectsTo ns2:54090 ; - ns1:hasMedium . - -ns2:71687 a ns1:Connection ; + ns2:cnx ns4:35121, + ns4:97304 ; + ns2:connectsAt ns4:35121, + ns4:97304 ; + ns2:connectsFrom ns4:65125 ; + ns2:connectsTo ns4:54090 ; + ns2:hasMedium . + +ns4:71687 a ns2:Connection ; rdfs:label "71687" ; - ns1:cnx ns2:36177, - ns2:86658 ; - ns1:connectsAt ns2:36177, - ns2:86658 ; - ns1:connectsFrom ns2:83890 ; - ns1:connectsTo ns2:98159 ; - ns1:hasMedium . - -ns2:71903 a ns1:Connection ; + ns2:cnx ns4:36177, + ns4:86658 ; + ns2:connectsAt ns4:36177, + ns4:86658 ; + ns2:connectsFrom ns4:83890 ; + ns2:connectsTo ns4:98159 ; + ns2:hasMedium . + +ns4:71903 a ns2:Connection ; rdfs:label "71903" ; - ns1:cnx ns2:16095, - ns2:81884 ; - ns1:connectsAt ns2:16095, - ns2:81884 ; - ns1:connectsFrom ns2:64318 ; - ns1:connectsTo ns2:09900 ; - ns1:hasMedium . - -ns2:71928 a ns1:Connection ; + ns2:cnx ns4:16095, + ns4:81884 ; + ns2:connectsAt ns4:16095, + ns4:81884 ; + ns2:connectsFrom ns4:64318 ; + ns2:connectsTo ns4:09900 ; + ns2:hasMedium . + +ns4:71928 a ns2:Connection ; rdfs:label "71928" ; - ns1:cnx ns2:32049, - ns2:56172 ; - ns1:connectsAt ns2:32049, - ns2:56172 ; - ns1:connectsFrom ns2:18693 ; - ns1:connectsTo ns2:98159 ; - ns1:hasMedium . - -ns2:72322 a ns1:Connection ; + ns2:cnx ns4:32049, + ns4:56172 ; + ns2:connectsAt ns4:32049, + ns4:56172 ; + ns2:connectsFrom ns4:18693 ; + ns2:connectsTo ns4:98159 ; + ns2:hasMedium . + +ns4:72322 a ns2:Connection ; rdfs:label "72322" ; - ns1:cnx ns2:41699, - ns2:97049 ; - ns1:connectsAt ns2:41699, - ns2:97049 ; - ns1:connectsFrom ns2:55654 ; - ns1:connectsTo ns2:69111 ; - ns1:hasMedium . - -ns2:73677 a ns1:Connection ; + ns2:cnx ns4:41699, + ns4:97049 ; + ns2:connectsAt ns4:41699, + ns4:97049 ; + ns2:connectsFrom ns4:55654 ; + ns2:connectsTo ns4:69111 ; + ns2:hasMedium . + +ns4:73677 a ns2:Connection ; rdfs:label "73677" ; - ns1:cnx ns2:33422, - ns2:61895 ; - ns1:connectsAt ns2:33422, - ns2:61895 ; - ns1:connectsFrom ns2:02533 ; - ns1:connectsTo ns2:93162 ; - ns1:hasMedium . - -ns2:73994 a ns1:Connection ; + ns2:cnx ns4:33422, + ns4:61895 ; + ns2:connectsAt ns4:33422, + ns4:61895 ; + ns2:connectsFrom ns4:02533 ; + ns2:connectsTo ns4:93162 ; + ns2:hasMedium . + +ns4:73994 a ns2:Connection ; rdfs:label "73994" ; - ns1:cnx ns2:25265, - ns2:44522 ; - ns1:connectsAt ns2:25265, - ns2:44522 ; - ns1:connectsFrom ns2:58953 ; - ns1:connectsTo ns2:05175 ; - ns1:hasMedium . - -ns2:74580 a ns1:Connection ; + ns2:cnx ns4:25265, + ns4:44522 ; + ns2:connectsAt ns4:25265, + ns4:44522 ; + ns2:connectsFrom ns4:58953 ; + ns2:connectsTo ns4:05175 ; + ns2:hasMedium . + +ns4:74580 a ns2:Connection ; rdfs:label "74580" ; - ns1:cnx ns2:28200, - ns2:97948 ; - ns1:connectsAt ns2:28200, - ns2:97948 ; - ns1:connectsFrom ns2:10117 ; - ns1:connectsTo ns2:65125 ; - ns1:hasMedium . - -ns2:74884 a ns1:Connection ; + ns2:cnx ns4:28200, + ns4:97948 ; + ns2:connectsAt ns4:28200, + ns4:97948 ; + ns2:connectsFrom ns4:10117 ; + ns2:connectsTo ns4:65125 ; + ns2:hasMedium . + +ns4:74884 a ns2:Connection ; rdfs:label "74884" ; - ns1:cnx ns2:44510, - ns2:60877 ; - ns1:connectsAt ns2:44510, - ns2:60877 ; - ns1:connectsFrom ns2:90778 ; - ns1:connectsTo ns2:09200 ; - ns1:hasMedium . - -ns2:75076 a ns1:Connection ; + ns2:cnx ns4:44510, + ns4:60877 ; + ns2:connectsAt ns4:44510, + ns4:60877 ; + ns2:connectsFrom ns4:90778 ; + ns2:connectsTo ns4:09200 ; + ns2:hasMedium . + +ns4:75076 a ns2:Connection ; rdfs:label "75076" ; - ns1:cnx ns2:35606, - ns2:72250 ; - ns1:connectsAt ns2:35606, - ns2:72250 ; - ns1:connectsFrom ns2:43278 ; - ns1:connectsTo ns2:92645 ; - ns1:hasMedium . - -ns2:75183 a ns1:Connection ; + ns2:cnx ns4:35606, + ns4:72250 ; + ns2:connectsAt ns4:35606, + ns4:72250 ; + ns2:connectsFrom ns4:43278 ; + ns2:connectsTo ns4:92645 ; + ns2:hasMedium . + +ns4:75183 a ns2:Connection ; rdfs:label "75183" ; - ns1:cnx ns2:85649, - ns2:92763 ; - ns1:connectsAt ns2:85649, - ns2:92763 ; - ns1:connectsFrom ns2:51238 ; - ns1:connectsTo ns2:73249 ; - ns1:hasMedium . - -ns2:75934 a ns1:Connection ; + ns2:cnx ns4:85649, + ns4:92763 ; + ns2:connectsAt ns4:85649, + ns4:92763 ; + ns2:connectsFrom ns4:51238 ; + ns2:connectsTo ns4:73249 ; + ns2:hasMedium . + +ns4:75934 a ns2:Connection ; rdfs:label "75934" ; - ns1:cnx ns2:59177, - ns2:88604 ; - ns1:connectsAt ns2:59177, - ns2:88604 ; - ns1:connectsFrom ns2:65381 ; - ns1:connectsTo ns2:26426 ; - ns1:hasMedium . - -ns2:76264 a ns1:Connection ; + ns2:cnx ns4:59177, + ns4:88604 ; + ns2:connectsAt ns4:59177, + ns4:88604 ; + ns2:connectsFrom ns4:65381 ; + ns2:connectsTo ns4:26426 ; + ns2:hasMedium . + +ns4:76264 a ns2:Connection ; rdfs:label "76264" ; - ns1:cnx ns2:70008, - ns2:81559 ; - ns1:connectsAt ns2:70008, - ns2:81559 ; - ns1:connectsFrom ns2:37302 ; - ns1:connectsTo ns2:77887 ; - ns1:hasMedium . - -ns2:77006 a ns1:Connection ; + ns2:cnx ns4:70008, + ns4:81559 ; + ns2:connectsAt ns4:70008, + ns4:81559 ; + ns2:connectsFrom ns4:37302 ; + ns2:connectsTo ns4:77887 ; + ns2:hasMedium . + +ns4:77006 a ns2:Connection ; rdfs:label "77006" ; - ns1:cnx ns2:07850, - ns2:16633 ; - ns1:connectsAt ns2:07850, - ns2:16633 ; - ns1:connectsFrom ns2:50126 ; - ns1:connectsTo ns2:02944 ; - ns1:hasMedium . - -ns2:77139 a ns1:Connection ; + ns2:cnx ns4:07850, + ns4:16633 ; + ns2:connectsAt ns4:07850, + ns4:16633 ; + ns2:connectsFrom ns4:50126 ; + ns2:connectsTo ns4:02944 ; + ns2:hasMedium . + +ns4:77139 a ns2:Connection ; rdfs:label "77139" ; - ns1:cnx ns2:58895, - ns2:66460 ; - ns1:connectsAt ns2:58895, - ns2:66460 ; - ns1:connectsFrom ns2:69136 ; - ns1:connectsTo ns2:83890 ; - ns1:hasMedium . - -ns2:77220 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:58895, + ns4:66460 ; + ns2:connectsAt ns4:58895, + ns4:66460 ; + ns2:connectsFrom ns4:69136 ; + ns2:connectsTo ns4:83890 ; + ns2:hasMedium . + +ns4:77220 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_5.supplyAirOutlet" ; - ns1:cnx ns2:11294, - ns2:69576 ; - ns1:connectsThrough ns2:11294 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69576 . + ns2:cnx ns4:11294, + ns4:69576 ; + ns2:connectsThrough ns4:11294 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69576 . -ns2:77406 a ns1:Connection ; +ns4:77406 a ns2:Connection ; rdfs:label "77406" ; - ns1:cnx ns2:61573, - ns2:84065 ; - ns1:connectsAt ns2:61573, - ns2:84065 ; - ns1:connectsFrom ns2:65779 ; - ns1:connectsTo ns2:77381 ; - ns1:hasMedium . - -ns2:77758 a ns1:Connection ; + ns2:cnx ns4:61573, + ns4:84065 ; + ns2:connectsAt ns4:61573, + ns4:84065 ; + ns2:connectsFrom ns4:65779 ; + ns2:connectsTo ns4:77381 ; + ns2:hasMedium . + +ns4:77758 a ns2:Connection ; rdfs:label "77758" ; - ns1:cnx ns2:09247, - ns2:31924 ; - ns1:connectsAt ns2:09247, - ns2:31924 ; - ns1:connectsFrom ns2:97321 ; - ns1:connectsTo ns2:16051 ; - ns1:hasMedium . - -ns2:78502 a ns1:Connection ; + ns2:cnx ns4:09247, + ns4:31924 ; + ns2:connectsAt ns4:09247, + ns4:31924 ; + ns2:connectsFrom ns4:97321 ; + ns2:connectsTo ns4:16051 ; + ns2:hasMedium . + +ns4:78502 a ns2:Connection ; rdfs:label "78502" ; - ns1:cnx ns2:20371, - ns2:99160 ; - ns1:connectsAt ns2:20371, - ns2:99160 ; - ns1:connectsFrom ns2:50418 ; - ns1:connectsTo ns2:69111 ; - ns1:hasMedium . - -ns2:79224 a ns1:Connection ; + ns2:cnx ns4:20371, + ns4:99160 ; + ns2:connectsAt ns4:20371, + ns4:99160 ; + ns2:connectsFrom ns4:50418 ; + ns2:connectsTo ns4:69111 ; + ns2:hasMedium . + +ns4:79224 a ns2:Connection ; rdfs:label "79224" ; - ns1:cnx ns2:08907, - ns2:11858 ; - ns1:connectsAt ns2:08907, - ns2:11858 ; - ns1:connectsFrom ns2:86650 ; - ns1:connectsTo ns2:74065 ; - ns1:hasMedium . - -ns2:80062 a ns1:Connection ; + ns2:cnx ns4:08907, + ns4:11858 ; + ns2:connectsAt ns4:08907, + ns4:11858 ; + ns2:connectsFrom ns4:86650 ; + ns2:connectsTo ns4:74065 ; + ns2:hasMedium . + +ns4:80062 a ns2:Connection ; rdfs:label "80062" ; - ns1:cnx ns2:26285, - ns2:55212 ; - ns1:connectsAt ns2:26285, - ns2:55212 ; - ns1:connectsFrom ns2:49965 ; - ns1:connectsTo ns2:09638 ; - ns1:hasMedium . - -ns2:80445 a ns1:Connection ; + ns2:cnx ns4:26285, + ns4:55212 ; + ns2:connectsAt ns4:26285, + ns4:55212 ; + ns2:connectsFrom ns4:49965 ; + ns2:connectsTo ns4:09638 ; + ns2:hasMedium . + +ns4:80445 a ns2:Connection ; rdfs:label "80445" ; - ns1:cnx ns2:49700, - ns2:81688 ; - ns1:connectsAt ns2:49700, - ns2:81688 ; - ns1:connectsFrom ns2:73972 ; - ns1:connectsTo ns2:74130 ; - ns1:hasMedium . - -ns2:80519 a ns1:Connection ; + ns2:cnx ns4:49700, + ns4:81688 ; + ns2:connectsAt ns4:49700, + ns4:81688 ; + ns2:connectsFrom ns4:73972 ; + ns2:connectsTo ns4:74130 ; + ns2:hasMedium . + +ns4:80519 a ns2:Connection ; rdfs:label "80519" ; - ns1:cnx ns2:38721, - ns2:73305 ; - ns1:connectsAt ns2:38721, - ns2:73305 ; - ns1:connectsFrom ns2:35720 ; - ns1:connectsTo ns2:09362 ; - ns1:hasMedium . - -ns2:80586 a ns1:Connection ; + ns2:cnx ns4:38721, + ns4:73305 ; + ns2:connectsAt ns4:38721, + ns4:73305 ; + ns2:connectsFrom ns4:35720 ; + ns2:connectsTo ns4:09362 ; + ns2:hasMedium . + +ns4:80586 a ns2:Connection ; rdfs:label "80586" ; - ns1:cnx ns2:23453, - ns2:42273 ; - ns1:connectsAt ns2:23453, - ns2:42273 ; - ns1:connectsFrom ns2:68534 ; - ns1:connectsTo ns2:93276 ; - ns1:hasMedium . - -ns2:81744 a ns1:Connection ; + ns2:cnx ns4:23453, + ns4:42273 ; + ns2:connectsAt ns4:23453, + ns4:42273 ; + ns2:connectsFrom ns4:68534 ; + ns2:connectsTo ns4:93276 ; + ns2:hasMedium . + +ns4:81744 a ns2:Connection ; rdfs:label "81744" ; - ns1:cnx ns2:09315, - ns2:53503 ; - ns1:connectsAt ns2:09315, - ns2:53503 ; - ns1:connectsFrom ns2:42308 ; - ns1:connectsTo ns2:25831 ; - ns1:hasMedium . - -ns2:82341 a ns1:Connection ; + ns2:cnx ns4:09315, + ns4:53503 ; + ns2:connectsAt ns4:09315, + ns4:53503 ; + ns2:connectsFrom ns4:42308 ; + ns2:connectsTo ns4:25831 ; + ns2:hasMedium . + +ns4:82341 a ns2:Connection ; rdfs:label "82341" ; - ns1:cnx ns2:03652, - ns2:42328 ; - ns1:connectsAt ns2:03652, - ns2:42328 ; - ns1:connectsFrom ns2:07544 ; - ns1:connectsTo ns2:91944 ; - ns1:hasMedium . - -ns2:82606 a ns1:Connection ; + ns2:cnx ns4:03652, + ns4:42328 ; + ns2:connectsAt ns4:03652, + ns4:42328 ; + ns2:connectsFrom ns4:07544 ; + ns2:connectsTo ns4:91944 ; + ns2:hasMedium . + +ns4:82606 a ns2:Connection ; rdfs:label "82606" ; - ns1:cnx ns2:34767, - ns2:60071 ; - ns1:connectsAt ns2:34767, - ns2:60071 ; - ns1:connectsFrom ns2:89915 ; - ns1:connectsTo ns2:62426 ; - ns1:hasMedium . - -ns2:82844 a ns1:Connection ; + ns2:cnx ns4:34767, + ns4:60071 ; + ns2:connectsAt ns4:34767, + ns4:60071 ; + ns2:connectsFrom ns4:89915 ; + ns2:connectsTo ns4:62426 ; + ns2:hasMedium . + +ns4:82844 a ns2:Connection ; rdfs:label "82844" ; - ns1:cnx ns2:42696, - ns2:48268 ; - ns1:connectsAt ns2:42696, - ns2:48268 ; - ns1:connectsFrom ns2:29807 ; - ns1:connectsTo ns2:23626 ; - ns1:hasMedium . - -ns2:82929 a ns1:Connection ; + ns2:cnx ns4:42696, + ns4:48268 ; + ns2:connectsAt ns4:42696, + ns4:48268 ; + ns2:connectsFrom ns4:29807 ; + ns2:connectsTo ns4:23626 ; + ns2:hasMedium . + +ns4:82929 a ns2:Connection ; rdfs:label "82929" ; - ns1:cnx ns2:36289, - ns2:61169 ; - ns1:connectsAt ns2:36289, - ns2:61169 ; - ns1:connectsFrom ns2:38529 ; - ns1:connectsTo ns2:31318 ; - ns1:hasMedium . - -ns2:83653 a ns1:Connection ; + ns2:cnx ns4:36289, + ns4:61169 ; + ns2:connectsAt ns4:36289, + ns4:61169 ; + ns2:connectsFrom ns4:38529 ; + ns2:connectsTo ns4:31318 ; + ns2:hasMedium . + +ns4:83653 a ns2:Connection ; rdfs:label "83653" ; - ns1:cnx ns2:54523, - ns2:77862 ; - ns1:connectsAt ns2:54523, - ns2:77862 ; - ns1:connectsFrom ns2:35505 ; - ns1:connectsTo ns2:54792 ; - ns1:hasMedium . - -ns2:83759 a ns1:Connection ; + ns2:cnx ns4:54523, + ns4:77862 ; + ns2:connectsAt ns4:54523, + ns4:77862 ; + ns2:connectsFrom ns4:35505 ; + ns2:connectsTo ns4:54792 ; + ns2:hasMedium . + +ns4:83759 a ns2:Connection ; rdfs:label "83759" ; - ns1:cnx ns2:22291, - ns2:76313 ; - ns1:connectsAt ns2:22291, - ns2:76313 ; - ns1:connectsFrom ns2:46019 ; - ns1:connectsTo ns2:93276 ; - ns1:hasMedium . - -ns2:83975 a ns1:Connection ; + ns2:cnx ns4:22291, + ns4:76313 ; + ns2:connectsAt ns4:22291, + ns4:76313 ; + ns2:connectsFrom ns4:46019 ; + ns2:connectsTo ns4:93276 ; + ns2:hasMedium . + +ns4:83975 a ns2:Connection ; rdfs:label "83975" ; - ns1:cnx ns2:31123, - ns2:98327 ; - ns1:connectsAt ns2:31123, - ns2:98327 ; - ns1:connectsFrom ns2:98609 ; - ns1:connectsTo ns2:93276 ; - ns1:hasMedium . - -ns2:84877 a ns1:Connection ; + ns2:cnx ns4:31123, + ns4:98327 ; + ns2:connectsAt ns4:31123, + ns4:98327 ; + ns2:connectsFrom ns4:98609 ; + ns2:connectsTo ns4:93276 ; + ns2:hasMedium . + +ns4:84877 a ns2:Connection ; rdfs:label "84877" ; - ns1:cnx ns2:15762, - ns2:66509 ; - ns1:connectsAt ns2:15762, - ns2:66509 ; - ns1:connectsFrom ns2:61647 ; - ns1:connectsTo ns2:24053 ; - ns1:hasMedium . - -ns2:85048 a ns1:Connection ; + ns2:cnx ns4:15762, + ns4:66509 ; + ns2:connectsAt ns4:15762, + ns4:66509 ; + ns2:connectsFrom ns4:61647 ; + ns2:connectsTo ns4:24053 ; + ns2:hasMedium . + +ns4:85048 a ns2:Connection ; rdfs:label "85048" ; - ns1:cnx ns2:59115, - ns2:87318 ; - ns1:connectsAt ns2:59115, - ns2:87318 ; - ns1:connectsFrom ns2:17912 ; - ns1:connectsTo ns2:07924 ; - ns1:hasMedium . - -ns2:85171 a ns1:Connection ; + ns2:cnx ns4:59115, + ns4:87318 ; + ns2:connectsAt ns4:59115, + ns4:87318 ; + ns2:connectsFrom ns4:17912 ; + ns2:connectsTo ns4:07924 ; + ns2:hasMedium . + +ns4:85171 a ns2:Connection ; rdfs:label "85171" ; - ns1:cnx ns2:00445, - ns2:52083 ; - ns1:connectsAt ns2:00445, - ns2:52083 ; - ns1:connectsFrom ns2:26040 ; - ns1:connectsTo ns2:28911 ; - ns1:hasMedium . - -ns2:85262 a ns1:Connection ; + ns2:cnx ns4:00445, + ns4:52083 ; + ns2:connectsAt ns4:00445, + ns4:52083 ; + ns2:connectsFrom ns4:26040 ; + ns2:connectsTo ns4:28911 ; + ns2:hasMedium . + +ns4:85262 a ns2:Connection ; rdfs:label "85262" ; - ns1:cnx ns2:15956, - ns2:55416 ; - ns1:connectsAt ns2:15956, - ns2:55416 ; - ns1:connectsFrom ns2:24559 ; - ns1:connectsTo ns2:04430 ; - ns1:hasMedium . - -ns2:85385 a ns1:Connection ; + ns2:cnx ns4:15956, + ns4:55416 ; + ns2:connectsAt ns4:15956, + ns4:55416 ; + ns2:connectsFrom ns4:24559 ; + ns2:connectsTo ns4:04430 ; + ns2:hasMedium . + +ns4:85385 a ns2:Connection ; rdfs:label "85385" ; - ns1:cnx ns2:47481, - ns2:87186 ; - ns1:connectsAt ns2:47481, - ns2:87186 ; - ns1:connectsFrom ns2:66843 ; - ns1:connectsTo ns2:46213 ; - ns1:hasMedium . - -ns2:85434 a ns1:Connection ; + ns2:cnx ns4:47481, + ns4:87186 ; + ns2:connectsAt ns4:47481, + ns4:87186 ; + ns2:connectsFrom ns4:66843 ; + ns2:connectsTo ns4:46213 ; + ns2:hasMedium . + +ns4:85434 a ns2:Connection ; rdfs:label "85434" ; - ns1:cnx ns2:30089, - ns2:44735 ; - ns1:connectsAt ns2:30089, - ns2:44735 ; - ns1:connectsFrom ns2:67388 ; - ns1:connectsTo ns2:34781 ; - ns1:hasMedium . - -ns2:85676 a ns1:Connection ; + ns2:cnx ns4:30089, + ns4:44735 ; + ns2:connectsAt ns4:30089, + ns4:44735 ; + ns2:connectsFrom ns4:67388 ; + ns2:connectsTo ns4:34781 ; + ns2:hasMedium . + +ns4:85676 a ns2:Connection ; rdfs:label "85676" ; - ns1:cnx ns2:16627, - ns2:32258 ; - ns1:connectsAt ns2:16627, - ns2:32258 ; - ns1:connectsFrom ns2:30312 ; - ns1:connectsTo ns2:65779 ; - ns1:hasMedium . - -ns2:85932 a ns1:Connection ; + ns2:cnx ns4:16627, + ns4:32258 ; + ns2:connectsAt ns4:16627, + ns4:32258 ; + ns2:connectsFrom ns4:30312 ; + ns2:connectsTo ns4:65779 ; + ns2:hasMedium . + +ns4:85932 a ns2:Connection ; rdfs:label "85932" ; - ns1:cnx ns2:33895, - ns2:79416 ; - ns1:connectsAt ns2:33895, - ns2:79416 ; - ns1:connectsFrom ns2:58411 ; - ns1:connectsTo ns2:43925 ; - ns1:hasMedium . - -ns2:86102 a ns1:Connection ; + ns2:cnx ns4:33895, + ns4:79416 ; + ns2:connectsAt ns4:33895, + ns4:79416 ; + ns2:connectsFrom ns4:58411 ; + ns2:connectsTo ns4:43925 ; + ns2:hasMedium . + +ns4:86102 a ns2:Connection ; rdfs:label "86102" ; - ns1:cnx ns2:23233, - ns2:73303 ; - ns1:connectsAt ns2:23233, - ns2:73303 ; - ns1:connectsFrom ns2:43841 ; - ns1:connectsTo ns2:05175 ; - ns1:hasMedium . - -ns2:86286 a ns1:Connection ; + ns2:cnx ns4:23233, + ns4:73303 ; + ns2:connectsAt ns4:23233, + ns4:73303 ; + ns2:connectsFrom ns4:43841 ; + ns2:connectsTo ns4:05175 ; + ns2:hasMedium . + +ns4:86286 a ns2:Connection ; rdfs:label "86286" ; - ns1:cnx ns2:11687, - ns2:79430 ; - ns1:connectsAt ns2:11687, - ns2:79430 ; - ns1:connectsFrom ns2:63334 ; - ns1:connectsTo ns2:28911 ; - ns1:hasMedium . - -ns2:86505 a ns1:Connection ; + ns2:cnx ns4:11687, + ns4:79430 ; + ns2:connectsAt ns4:11687, + ns4:79430 ; + ns2:connectsFrom ns4:63334 ; + ns2:connectsTo ns4:28911 ; + ns2:hasMedium . + +ns4:86505 a ns2:Connection ; rdfs:label "86505" ; - ns1:cnx ns2:02746, - ns2:81861 ; - ns1:connectsAt ns2:02746, - ns2:81861 ; - ns1:connectsFrom ns2:39604 ; - ns1:connectsTo ns2:38627 ; - ns1:hasMedium . - -ns2:86986 a ns1:Connection ; + ns2:cnx ns4:02746, + ns4:81861 ; + ns2:connectsAt ns4:02746, + ns4:81861 ; + ns2:connectsFrom ns4:39604 ; + ns2:connectsTo ns4:38627 ; + ns2:hasMedium . + +ns4:86986 a ns2:Connection ; rdfs:label "86986" ; - ns1:cnx ns2:09291, - ns2:12960 ; - ns1:connectsAt ns2:09291, - ns2:12960 ; - ns1:connectsFrom ns2:98159 ; - ns1:connectsTo ns2:05175 ; - ns1:hasMedium . - -ns2:87484 a ns1:Connection ; + ns2:cnx ns4:09291, + ns4:12960 ; + ns2:connectsAt ns4:09291, + ns4:12960 ; + ns2:connectsFrom ns4:98159 ; + ns2:connectsTo ns4:05175 ; + ns2:hasMedium . + +ns4:87484 a ns2:Connection ; rdfs:label "87484" ; - ns1:cnx ns2:40367, - ns2:82400 ; - ns1:connectsAt ns2:40367, - ns2:82400 ; - ns1:connectsFrom ns2:05353 ; - ns1:connectsTo ns2:02533 ; - ns1:hasMedium . - -ns2:87912 a ns1:Connection ; + ns2:cnx ns4:40367, + ns4:82400 ; + ns2:connectsAt ns4:40367, + ns4:82400 ; + ns2:connectsFrom ns4:05353 ; + ns2:connectsTo ns4:02533 ; + ns2:hasMedium . + +ns4:87912 a ns2:Connection ; rdfs:label "87912" ; - ns1:cnx ns2:06476, - ns2:29573 ; - ns1:connectsAt ns2:06476, - ns2:29573 ; - ns1:connectsFrom ns2:43967 ; - ns1:connectsTo ns2:69111 ; - ns1:hasMedium . - -ns2:88310 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns1:PhysicalSpace, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06476, + ns4:29573 ; + ns2:connectsAt ns4:06476, + ns4:29573 ; + ns2:connectsFrom ns4:43967 ; + ns2:connectsTo ns4:69111 ; + ns2:hasMedium . + +ns4:88310 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns2:PhysicalSpace, + ns3:AirConnectionPoint ; rdfs:label "8626", "fan.airOutlet" ; - ns1:cnx ns2:36725 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:36725 ; - ns1:mapsTo ns2:64683 . + ns2:cnx ns4:36725 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:36725 ; + ns2:mapsTo ns4:64683 . -ns2:88441 a ns1:Connection ; +ns4:88441 a ns2:Connection ; rdfs:label "88441" ; - ns1:cnx ns2:53343, - ns2:66606 ; - ns1:connectsAt ns2:53343, - ns2:66606 ; - ns1:connectsFrom ns2:50126 ; - ns1:connectsTo ns2:08701 ; - ns1:hasMedium . - -ns2:88574 a ns1:Connection ; + ns2:cnx ns4:53343, + ns4:66606 ; + ns2:connectsAt ns4:53343, + ns4:66606 ; + ns2:connectsFrom ns4:50126 ; + ns2:connectsTo ns4:08701 ; + ns2:hasMedium . + +ns4:88574 a ns2:Connection ; rdfs:label "88574" ; - ns1:cnx ns2:14639, - ns2:42074 ; - ns1:connectsAt ns2:14639, - ns2:42074 ; - ns1:connectsFrom ns2:50126 ; - ns1:connectsTo ns2:37324 ; - ns1:hasMedium . - -ns2:88844 a ns1:Connection ; + ns2:cnx ns4:14639, + ns4:42074 ; + ns2:connectsAt ns4:14639, + ns4:42074 ; + ns2:connectsFrom ns4:50126 ; + ns2:connectsTo ns4:37324 ; + ns2:hasMedium . + +ns4:88844 a ns2:Connection ; rdfs:label "88844" ; - ns1:cnx ns2:28695, - ns2:87432 ; - ns1:connectsAt ns2:28695, - ns2:87432 ; - ns1:connectsFrom ns2:60254 ; - ns1:connectsTo ns2:75732 ; - ns1:hasMedium . - -ns2:89082 a ns1:Connection ; + ns2:cnx ns4:28695, + ns4:87432 ; + ns2:connectsAt ns4:28695, + ns4:87432 ; + ns2:connectsFrom ns4:60254 ; + ns2:connectsTo ns4:75732 ; + ns2:hasMedium . + +ns4:89082 a ns2:Connection ; rdfs:label "89082" ; - ns1:cnx ns2:40865, - ns2:64683 ; - ns1:connectsAt ns2:40865, - ns2:64683 ; - ns1:connectsFrom ns2:41694 ; - ns1:connectsTo ns2:26799 ; - ns1:hasMedium . - -ns2:89750 a ns1:Connection ; + ns2:cnx ns4:40865, + ns4:64683 ; + ns2:connectsAt ns4:40865, + ns4:64683 ; + ns2:connectsFrom ns4:41694 ; + ns2:connectsTo ns4:26799 ; + ns2:hasMedium . + +ns4:89750 a ns2:Connection ; rdfs:label "89750" ; - ns1:cnx ns2:09379, - ns2:54971 ; - ns1:connectsAt ns2:09379, - ns2:54971 ; - ns1:connectsFrom ns2:88028 ; - ns1:connectsTo ns2:07544 ; - ns1:hasMedium . - -ns2:89919 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09379, + ns4:54971 ; + ns2:connectsAt ns4:09379, + ns4:54971 ; + ns2:connectsFrom ns4:88028 ; + ns2:connectsTo ns4:07544 ; + ns2:hasMedium . + +ns4:89919 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "RTU_3.supplyAirOutlet" ; - ns1:cnx ns2:30777, - ns2:55672 ; - ns1:connectsThrough ns2:30777 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:55672 . + ns2:cnx ns4:30777, + ns4:55672 ; + ns2:connectsThrough ns4:30777 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:55672 . -ns2:90552 a ns1:Connection ; +ns4:90552 a ns2:Connection ; rdfs:label "90552" ; - ns1:cnx ns2:11351, - ns2:88980 ; - ns1:connectsAt ns2:11351, - ns2:88980 ; - ns1:connectsFrom ns2:06594 ; - ns1:connectsTo ns2:74083 ; - ns1:hasMedium . - -ns2:90702 a ns1:Connection ; + ns2:cnx ns4:11351, + ns4:88980 ; + ns2:connectsAt ns4:11351, + ns4:88980 ; + ns2:connectsFrom ns4:06594 ; + ns2:connectsTo ns4:74083 ; + ns2:hasMedium . + +ns4:90702 a ns2:Connection ; rdfs:label "90702" ; - ns1:cnx ns2:55187, - ns2:60707 ; - ns1:connectsAt ns2:55187, - ns2:60707 ; - ns1:connectsFrom ns2:51343 ; - ns1:connectsTo ns2:73219 ; - ns1:hasMedium . - -ns2:90747 a ns1:Connection ; + ns2:cnx ns4:55187, + ns4:60707 ; + ns2:connectsAt ns4:55187, + ns4:60707 ; + ns2:connectsFrom ns4:51343 ; + ns2:connectsTo ns4:73219 ; + ns2:hasMedium . + +ns4:90747 a ns2:Connection ; rdfs:label "90747" ; - ns1:cnx ns2:09371, - ns2:52416 ; - ns1:connectsAt ns2:09371, - ns2:52416 ; - ns1:connectsFrom ns2:64887 ; - ns1:connectsTo ns2:19014 ; - ns1:hasMedium . - -ns2:90835 a ns1:Connection ; + ns2:cnx ns4:09371, + ns4:52416 ; + ns2:connectsAt ns4:09371, + ns4:52416 ; + ns2:connectsFrom ns4:64887 ; + ns2:connectsTo ns4:19014 ; + ns2:hasMedium . + +ns4:90835 a ns2:Connection ; rdfs:label "90835" ; - ns1:cnx ns2:43285, - ns2:67251 ; - ns1:connectsAt ns2:43285, - ns2:67251 ; - ns1:connectsFrom ns2:05353 ; - ns1:connectsTo ns2:86545 ; - ns1:hasMedium . - -ns2:91920 a ns1:Connection ; + ns2:cnx ns4:43285, + ns4:67251 ; + ns2:connectsAt ns4:43285, + ns4:67251 ; + ns2:connectsFrom ns4:05353 ; + ns2:connectsTo ns4:86545 ; + ns2:hasMedium . + +ns4:91920 a ns2:Connection ; rdfs:label "91920" ; - ns1:cnx ns2:20843, - ns2:24806 ; - ns1:connectsAt ns2:20843, - ns2:24806 ; - ns1:connectsFrom ns2:31261 ; - ns1:connectsTo ns2:44942 ; - ns1:hasMedium . - -ns2:92091 a ns1:Connection ; + ns2:cnx ns4:20843, + ns4:24806 ; + ns2:connectsAt ns4:20843, + ns4:24806 ; + ns2:connectsFrom ns4:31261 ; + ns2:connectsTo ns4:44942 ; + ns2:hasMedium . + +ns4:92091 a ns2:Connection ; rdfs:label "92091" ; - ns1:cnx ns2:76964, - ns2:85858 ; - ns1:connectsAt ns2:76964, - ns2:85858 ; - ns1:connectsFrom ns2:17361 ; - ns1:connectsTo ns2:55408 ; - ns1:hasMedium . - -ns2:92110 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:76964, + ns4:85858 ; + ns2:connectsAt ns4:76964, + ns4:85858 ; + ns2:connectsFrom ns4:17361 ; + ns2:connectsTo ns4:55408 ; + ns2:hasMedium . + +ns4:92110 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet" ; - ns1:cnx ns2:15477, - ns2:47806 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15477, - ns2:47806 ; - ns1:mapsTo ns2:14550, - ns2:53343 . - -ns2:92270 a ns1:Connection ; + ns2:cnx ns4:15477, + ns4:47806 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15477, + ns4:47806 ; + ns2:mapsTo ns4:14550, + ns4:53343 . + +ns4:92270 a ns2:Connection ; rdfs:label "92270" ; - ns1:cnx ns2:51197, - ns2:89973 ; - ns1:connectsAt ns2:51197, - ns2:89973 ; - ns1:connectsFrom ns2:04098 ; - ns1:connectsTo ns2:70764 ; - ns1:hasMedium . - -ns2:92535 a ns1:Connection ; + ns2:cnx ns4:51197, + ns4:89973 ; + ns2:connectsAt ns4:51197, + ns4:89973 ; + ns2:connectsFrom ns4:04098 ; + ns2:connectsTo ns4:70764 ; + ns2:hasMedium . + +ns4:92535 a ns2:Connection ; rdfs:label "92535" ; - ns1:cnx ns2:02517, - ns2:54539 ; - ns1:connectsAt ns2:02517, - ns2:54539 ; - ns1:connectsFrom ns2:15016 ; - ns1:connectsTo ns2:29599 ; - ns1:hasMedium . - -ns2:92766 a ns1:Connection ; + ns2:cnx ns4:02517, + ns4:54539 ; + ns2:connectsAt ns4:02517, + ns4:54539 ; + ns2:connectsFrom ns4:15016 ; + ns2:connectsTo ns4:29599 ; + ns2:hasMedium . + +ns4:92766 a ns2:Connection ; rdfs:label "92766" ; - ns1:cnx ns2:10430, - ns2:90577 ; - ns1:connectsAt ns2:10430, - ns2:90577 ; - ns1:connectsFrom ns2:25831 ; - ns1:connectsTo ns2:96232 ; - ns1:hasMedium . - -ns2:92921 a ns1:Connection ; + ns2:cnx ns4:10430, + ns4:90577 ; + ns2:connectsAt ns4:10430, + ns4:90577 ; + ns2:connectsFrom ns4:25831 ; + ns2:connectsTo ns4:96232 ; + ns2:hasMedium . + +ns4:92921 a ns2:Connection ; rdfs:label "92921" ; - ns1:cnx ns2:54268, - ns2:69029 ; - ns1:connectsAt ns2:54268, - ns2:69029 ; - ns1:connectsFrom ns2:83428 ; - ns1:connectsTo ns2:88253 ; - ns1:hasMedium . - -ns2:93128 a ns1:Connection ; + ns2:cnx ns4:54268, + ns4:69029 ; + ns2:connectsAt ns4:54268, + ns4:69029 ; + ns2:connectsFrom ns4:83428 ; + ns2:connectsTo ns4:88253 ; + ns2:hasMedium . + +ns4:93128 a ns2:Connection ; rdfs:label "93128" ; - ns1:cnx ns2:51164, - ns2:87645 ; - ns1:connectsAt ns2:51164, - ns2:87645 ; - ns1:connectsFrom ns2:10117 ; - ns1:connectsTo ns2:03707 ; - ns1:hasMedium . - -ns2:93499 a ns1:Connection ; + ns2:cnx ns4:51164, + ns4:87645 ; + ns2:connectsAt ns4:51164, + ns4:87645 ; + ns2:connectsFrom ns4:10117 ; + ns2:connectsTo ns4:03707 ; + ns2:hasMedium . + +ns4:93499 a ns2:Connection ; rdfs:label "93499" ; - ns1:cnx ns2:18857, - ns2:43081 ; - ns1:connectsAt ns2:18857, - ns2:43081 ; - ns1:connectsFrom ns2:75732 ; - ns1:connectsTo ns2:67542 ; - ns1:hasMedium . - -ns2:93889 a ns1:Connection ; + ns2:cnx ns4:18857, + ns4:43081 ; + ns2:connectsAt ns4:18857, + ns4:43081 ; + ns2:connectsFrom ns4:75732 ; + ns2:connectsTo ns4:67542 ; + ns2:hasMedium . + +ns4:93889 a ns2:Connection ; rdfs:label "93889" ; - ns1:cnx ns2:13428, - ns2:25532 ; - ns1:connectsAt ns2:13428, - ns2:25532 ; - ns1:connectsFrom ns2:77070 ; - ns1:connectsTo ns2:66742 ; - ns1:hasMedium . - -ns2:93913 a ns1:Connection ; + ns2:cnx ns4:13428, + ns4:25532 ; + ns2:connectsAt ns4:13428, + ns4:25532 ; + ns2:connectsFrom ns4:77070 ; + ns2:connectsTo ns4:66742 ; + ns2:hasMedium . + +ns4:93913 a ns2:Connection ; rdfs:label "93913" ; - ns1:cnx ns2:34277, - ns2:66260 ; - ns1:connectsAt ns2:34277, - ns2:66260 ; - ns1:connectsFrom ns2:74065 ; - ns1:connectsTo ns2:21736 ; - ns1:hasMedium . - -ns2:94342 a ns1:Connection ; + ns2:cnx ns4:34277, + ns4:66260 ; + ns2:connectsAt ns4:34277, + ns4:66260 ; + ns2:connectsFrom ns4:74065 ; + ns2:connectsTo ns4:21736 ; + ns2:hasMedium . + +ns4:94342 a ns2:Connection ; rdfs:label "94342" ; - ns1:cnx ns2:22976, - ns2:55679 ; - ns1:connectsAt ns2:22976, - ns2:55679 ; - ns1:connectsFrom ns2:15243 ; - ns1:connectsTo ns2:79420 ; - ns1:hasMedium . - -ns2:95073 a ns1:Connection ; + ns2:cnx ns4:22976, + ns4:55679 ; + ns2:connectsAt ns4:22976, + ns4:55679 ; + ns2:connectsFrom ns4:15243 ; + ns2:connectsTo ns4:79420 ; + ns2:hasMedium . + +ns4:95073 a ns2:Connection ; rdfs:label "95073" ; - ns1:cnx ns2:45401, - ns2:52697 ; - ns1:connectsAt ns2:45401, - ns2:52697 ; - ns1:connectsFrom ns2:05101 ; - ns1:connectsTo ns2:58117 ; - ns1:hasMedium . - -ns2:95463 a ns1:Connection ; + ns2:cnx ns4:45401, + ns4:52697 ; + ns2:connectsAt ns4:45401, + ns4:52697 ; + ns2:connectsFrom ns4:05101 ; + ns2:connectsTo ns4:58117 ; + ns2:hasMedium . + +ns4:95463 a ns2:Connection ; rdfs:label "95463" ; - ns1:cnx ns2:26283, - ns2:56530 ; - ns1:connectsAt ns2:26283, - ns2:56530 ; - ns1:connectsFrom ns2:96232 ; - ns1:connectsTo ns2:69111 ; - ns1:hasMedium . - -ns2:95827 a ns1:Connection ; + ns2:cnx ns4:26283, + ns4:56530 ; + ns2:connectsAt ns4:26283, + ns4:56530 ; + ns2:connectsFrom ns4:96232 ; + ns2:connectsTo ns4:69111 ; + ns2:hasMedium . + +ns4:95827 a ns2:Connection ; rdfs:label "95827" ; - ns1:cnx ns2:15996, - ns2:70442 ; - ns1:connectsAt ns2:15996, - ns2:70442 ; - ns1:connectsFrom ns2:45896 ; - ns1:connectsTo ns2:74360 ; - ns1:hasMedium . - -ns2:95914 a ns1:Connection ; + ns2:cnx ns4:15996, + ns4:70442 ; + ns2:connectsAt ns4:15996, + ns4:70442 ; + ns2:connectsFrom ns4:45896 ; + ns2:connectsTo ns4:74360 ; + ns2:hasMedium . + +ns4:95914 a ns2:Connection ; rdfs:label "95914" ; - ns1:cnx ns2:04219, - ns2:75350 ; - ns1:connectsAt ns2:04219, - ns2:75350 ; - ns1:connectsFrom ns2:05101 ; - ns1:connectsTo ns2:41694 ; - ns1:hasMedium . - -ns2:95932 a ns1:Connection ; + ns2:cnx ns4:04219, + ns4:75350 ; + ns2:connectsAt ns4:04219, + ns4:75350 ; + ns2:connectsFrom ns4:05101 ; + ns2:connectsTo ns4:41694 ; + ns2:hasMedium . + +ns4:95932 a ns2:Connection ; rdfs:label "95932" ; - ns1:cnx ns2:56136, - ns2:87692 ; - ns1:connectsAt ns2:56136, - ns2:87692 ; - ns1:connectsFrom ns2:12686 ; - ns1:connectsTo ns2:41545 ; - ns1:hasMedium . - -ns2:96446 a ns1:Connection ; + ns2:cnx ns4:56136, + ns4:87692 ; + ns2:connectsAt ns4:56136, + ns4:87692 ; + ns2:connectsFrom ns4:12686 ; + ns2:connectsTo ns4:41545 ; + ns2:hasMedium . + +ns4:96446 a ns2:Connection ; rdfs:label "96446" ; - ns1:cnx ns2:29476, - ns2:52029 ; - ns1:connectsAt ns2:29476, - ns2:52029 ; - ns1:connectsFrom ns2:80523 ; - ns1:connectsTo ns2:24416 ; - ns1:hasMedium . - -ns2:96615 a ns1:Connection ; + ns2:cnx ns4:29476, + ns4:52029 ; + ns2:connectsAt ns4:29476, + ns4:52029 ; + ns2:connectsFrom ns4:80523 ; + ns2:connectsTo ns4:24416 ; + ns2:hasMedium . + +ns4:96615 a ns2:Connection ; rdfs:label "96615" ; - ns1:cnx ns2:48493, - ns2:62873 ; - ns1:connectsAt ns2:48493, - ns2:62873 ; - ns1:connectsFrom ns2:56611 ; - ns1:connectsTo ns2:35514 ; - ns1:hasMedium . - -ns2:96963 a ns1:Connection ; + ns2:cnx ns4:48493, + ns4:62873 ; + ns2:connectsAt ns4:48493, + ns4:62873 ; + ns2:connectsFrom ns4:56611 ; + ns2:connectsTo ns4:35514 ; + ns2:hasMedium . + +ns4:96963 a ns2:Connection ; rdfs:label "96963" ; - ns1:cnx ns2:15209, - ns2:79140 ; - ns1:connectsAt ns2:15209, - ns2:79140 ; - ns1:connectsFrom ns2:12438 ; - ns1:connectsTo ns2:45992 ; - ns1:hasMedium . - -ns2:97029 a ns1:Connection ; + ns2:cnx ns4:15209, + ns4:79140 ; + ns2:connectsAt ns4:15209, + ns4:79140 ; + ns2:connectsFrom ns4:12438 ; + ns2:connectsTo ns4:45992 ; + ns2:hasMedium . + +ns4:97029 a ns2:Connection ; rdfs:label "97029" ; - ns1:cnx ns2:41197, - ns2:49121 ; - ns1:connectsAt ns2:41197, - ns2:49121 ; - ns1:connectsFrom ns2:77070 ; - ns1:connectsTo ns2:12403 ; - ns1:hasMedium . - -ns2:97215 a ns1:Connection ; + ns2:cnx ns4:41197, + ns4:49121 ; + ns2:connectsAt ns4:41197, + ns4:49121 ; + ns2:connectsFrom ns4:77070 ; + ns2:connectsTo ns4:12403 ; + ns2:hasMedium . + +ns4:97215 a ns2:Connection ; rdfs:label "97215" ; - ns1:cnx ns2:14968, - ns2:97435 ; - ns1:connectsAt ns2:14968, - ns2:97435 ; - ns1:connectsFrom ns2:44036 ; - ns1:connectsTo ns2:37324 ; - ns1:hasMedium . - -ns2:97276 a ns1:Connection ; + ns2:cnx ns4:14968, + ns4:97435 ; + ns2:connectsAt ns4:14968, + ns4:97435 ; + ns2:connectsFrom ns4:44036 ; + ns2:connectsTo ns4:37324 ; + ns2:hasMedium . + +ns4:97276 a ns2:Connection ; rdfs:label "97276" ; - ns1:cnx ns2:49391, - ns2:61099 ; - ns1:connectsAt ns2:49391, - ns2:61099 ; - ns1:connectsFrom ns2:16454 ; - ns1:connectsTo ns2:05175 ; - ns1:hasMedium . - -ns2:98060 a ns1:Connection ; + ns2:cnx ns4:49391, + ns4:61099 ; + ns2:connectsAt ns4:49391, + ns4:61099 ; + ns2:connectsFrom ns4:16454 ; + ns2:connectsTo ns4:05175 ; + ns2:hasMedium . + +ns4:98060 a ns2:Connection ; rdfs:label "98060" ; - ns1:cnx ns2:76440, - ns2:99249 ; - ns1:connectsAt ns2:76440, - ns2:99249 ; - ns1:connectsFrom ns2:65580 ; - ns1:connectsTo ns2:69111 ; - ns1:hasMedium . - -ns2:99042 a ns1:Connection ; + ns2:cnx ns4:76440, + ns4:99249 ; + ns2:connectsAt ns4:76440, + ns4:99249 ; + ns2:connectsFrom ns4:65580 ; + ns2:connectsTo ns4:69111 ; + ns2:hasMedium . + +ns4:99042 a ns2:Connection ; rdfs:label "99042" ; - ns1:cnx ns2:15408, - ns2:51809 ; - ns1:connectsAt ns2:15408, - ns2:51809 ; - ns1:connectsFrom ns2:46213 ; - ns1:connectsTo ns2:83890 ; - ns1:hasMedium . - -ns2:99057 a ns1:Connection ; + ns2:cnx ns4:15408, + ns4:51809 ; + ns2:connectsAt ns4:15408, + ns4:51809 ; + ns2:connectsFrom ns4:46213 ; + ns2:connectsTo ns4:83890 ; + ns2:hasMedium . + +ns4:99057 a ns2:Connection ; rdfs:label "99057" ; - ns1:cnx ns2:11126, - ns2:39247 ; - ns1:connectsAt ns2:11126, - ns2:39247 ; - ns1:connectsFrom ns2:88028 ; - ns1:connectsTo ns2:03055 ; - ns1:hasMedium . - -ns2:99824 a ns1:Connection ; + ns2:cnx ns4:11126, + ns4:39247 ; + ns2:connectsAt ns4:11126, + ns4:39247 ; + ns2:connectsFrom ns4:88028 ; + ns2:connectsTo ns4:03055 ; + ns2:hasMedium . + +ns4:99824 a ns2:Connection ; rdfs:label "99824" ; - ns1:cnx ns2:35388, - ns2:76009 ; - ns1:connectsAt ns2:35388, - ns2:76009 ; - ns1:connectsFrom ns2:13867 ; - ns1:connectsTo ns2:10658 ; - ns1:hasMedium . - -ns2:03503 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:35388, + ns4:76009 ; + ns2:connectsAt ns4:35388, + ns4:76009 ; + ns2:connectsFrom ns4:13867 ; + ns2:connectsTo ns4:10658 ; + ns2:hasMedium . + +ns4:03503 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "6-8.airOutlet" ; - ns1:cnx ns2:03707, - ns2:79414 ; - ns1:connectsThrough ns2:79414 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03707 . - -ns2:03860 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:03707, + ns4:79414 ; + ns2:connectsThrough ns4:79414 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03707 . + +ns4:03860 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:09793, - ns2:87105, - ns2:92683 ; - ns1:hasConnectionPoint ns2:09793, - ns2:87105, - ns2:92683 ; - ns4:airInlet ns2:87105 ; - ns4:airOutlet ns2:92683 ; + ns2:cnx ns4:09793, + ns4:87105, + ns4:92683 ; + ns2:hasConnectionPoint ns4:09793, + ns4:87105, + ns4:92683 ; + ns3:airInlet ns4:87105 ; + ns3:airOutlet ns4:92683 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:03990 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:03990 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:12117, - ns2:23464, - ns2:33243 ; - ns1:hasConnectionPoint ns2:12117, - ns2:23464, - ns2:33243 ; - ns4:airInlet ns2:12117 ; - ns4:airOutlet ns2:33243 ; + ns2:cnx ns4:12117, + ns4:23464, + ns4:33243 ; + ns2:hasConnectionPoint ns4:12117, + ns4:23464, + ns4:33243 ; + ns3:airInlet ns4:12117 ; + ns3:airOutlet ns4:33243 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:04282 a ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint, - ns1:OutletConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:04282 a ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint, + ns2:OutletConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "hw_coil.hotWaterOutlet", "supply_fan.electricalInlet" ; - ns1:cnx ns2:18941, - ns2:62740, - ns2:84040 ; - ns1:connectsThrough ns2:62740 ; - ns1:hasMedium , - ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:18941, - ns2:84040 . - -ns2:04462 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18941, + ns4:62740, + ns4:84040 ; + ns2:connectsThrough ns4:62740 ; + ns2:hasMedium , + ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:18941, + ns4:84040 . + +ns4:04462 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "9-2.airInlet" ; - ns1:cnx ns2:52428, - ns2:70668 ; - ns1:connectsThrough ns2:70668 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:52428 . - -ns2:04653 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:52428, + ns4:70668 ; + ns2:connectsThrough ns4:70668 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:52428 . + +ns4:04653 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-60.airOutlet" ; - ns1:cnx ns2:09432, - ns2:30616 ; - ns1:connectsThrough ns2:30616 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09432 . - -ns2:04784 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09432, + ns4:30616 ; + ns2:connectsThrough ns4:30616 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09432 . + +ns4:04784 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-2.airInlet" ; - ns1:cnx ns2:69011, - ns2:70319 ; - ns1:connectsThrough ns2:70319 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69011 . - -ns2:04901 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:69011, + ns4:70319 ; + ns2:connectsThrough ns4:70319 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69011 . + +ns4:04901 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "8-56.airInlet" ; - ns1:cnx ns2:08346, - ns2:18936 ; - ns1:connectsThrough ns2:18936 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:08346 . - -ns2:05910 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:08346, + ns4:18936 ; + ns2:connectsThrough ns4:18936 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:08346 . + +ns4:05910 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "6-08.airOutlet" ; - ns1:cnx ns2:25111, - ns2:85453 ; - ns1:connectsThrough ns2:25111 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:85453 . - -ns2:06299 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25111, + ns4:85453 ; + ns2:connectsThrough ns4:25111 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:85453 . + +ns4:06299 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-22.airInlet" ; - ns1:cnx ns2:02937, - ns2:36630 ; - ns1:connectsThrough ns2:36630 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:02937 . - -ns2:07024 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:02937, + ns4:36630 ; + ns2:connectsThrough ns4:36630 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:02937 . + +ns4:07024 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:29855, - ns2:35410, - ns2:42555 ; - ns1:hasConnectionPoint ns2:29855, - ns2:35410, - ns2:42555 ; - ns4:airInlet ns2:35410 ; - ns4:airOutlet ns2:42555 ; + ns2:cnx ns4:29855, + ns4:35410, + ns4:42555 ; + ns2:hasConnectionPoint ns4:29855, + ns4:35410, + ns4:42555 ; + ns3:airInlet ns4:35410 ; + ns3:airOutlet ns4:42555 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:07222 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:07222 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:04274, - ns2:47815, - ns2:75528 ; - ns1:hasConnectionPoint ns2:04274, - ns2:47815, - ns2:75528 ; - ns4:airInlet ns2:04274 ; - ns4:airOutlet ns2:75528 ; + ns2:cnx ns4:04274, + ns4:47815, + ns4:75528 ; + ns2:hasConnectionPoint ns4:04274, + ns4:47815, + ns4:75528 ; + ns3:airInlet ns4:04274 ; + ns3:airOutlet ns4:75528 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:07686 a ns1:Connection ; +ns4:07686 a ns2:Connection ; rdfs:label "07686" ; - ns1:cnx ns2:78724, - ns2:79414 ; - ns1:connectsAt ns2:78724, - ns2:79414 ; - ns1:connectsFrom ns2:92286 ; - ns1:connectsThrough ns2:79414 ; - ns1:connectsTo ns2:94119 ; - ns1:hasMedium . - -ns2:07850 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:78724, + ns4:79414 ; + ns2:connectsAt ns4:78724, + ns4:79414 ; + ns2:connectsFrom ns4:92286 ; + ns2:connectsThrough ns4:79414 ; + ns2:connectsTo ns4:94119 ; + ns2:hasMedium . + +ns4:07850 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-71.airInlet" ; - ns1:cnx ns2:02944, - ns2:77006 ; - ns1:connectsThrough ns2:77006 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:02944 . - -ns2:07961 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02944, + ns4:77006 ; + ns2:connectsThrough ns4:77006 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:02944 . + +ns4:07961 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-00.airOutlet" ; - ns1:cnx ns2:15538, - ns2:41128 ; - ns1:connectsThrough ns2:41128 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15538 . - -ns2:08495 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:15538, + ns4:41128 ; + ns2:connectsThrough ns4:41128 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15538 . + +ns4:08495 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:30387, - ns2:38470, - ns2:59507 ; - ns1:hasConnectionPoint ns2:30387, - ns2:38470, - ns2:59507 ; - ns4:airInlet ns2:59507 ; - ns4:airOutlet ns2:38470 ; + ns2:cnx ns4:30387, + ns4:38470, + ns4:59507 ; + ns2:hasConnectionPoint ns4:30387, + ns4:38470, + ns4:59507 ; + ns3:airInlet ns4:59507 ; + ns3:airOutlet ns4:38470 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:08874 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:08874 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-37.airInlet" ; - ns1:cnx ns2:18158, - ns2:31269 ; - ns1:connectsThrough ns2:18158 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:31269 . + ns2:cnx ns4:18158, + ns4:31269 ; + ns2:connectsThrough ns4:18158 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:31269 . -ns2:09278 a ns1:Connection ; +ns4:09278 a ns2:Connection ; rdfs:label "09278" ; - ns1:cnx ns2:36398, - ns2:57392 ; - ns1:connectsAt ns2:36398, - ns2:57392 ; - ns1:connectsFrom ns2:37324, - ns2:55408 ; - ns1:connectsTo ns2:93276 ; - ns1:hasMedium . - -ns2:09371 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns1:PhysicalSpace, - ns4:AirConnectionPoint ; + ns2:cnx ns4:36398, + ns4:57392 ; + ns2:connectsAt ns4:36398, + ns4:57392 ; + ns2:connectsFrom ns4:37324, + ns4:55408 ; + ns2:connectsTo ns4:93276 ; + ns2:hasMedium . + +ns4:09371 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns2:PhysicalSpace, + ns3:AirConnectionPoint ; rdfs:label "0600A", "hw_coil.airInlet" ; - ns1:cnx ns2:19014, - ns2:90747 ; - ns1:connectsThrough ns2:90747 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:19014 . - -ns2:09379 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:19014, + ns4:90747 ; + ns2:connectsThrough ns4:90747 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:19014 . + +ns4:09379 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-50D.airInlet" ; - ns1:cnx ns2:07544, - ns2:89750 ; - ns1:connectsThrough ns2:89750 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:07544 . - -ns2:09611 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:07544, + ns4:89750 ; + ns2:connectsThrough ns4:89750 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:07544 . + +ns4:09611 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:19464, - ns2:47785, - ns2:80160 ; - ns1:hasConnectionPoint ns2:19464, - ns2:47785, - ns2:80160 ; - ns4:airInlet ns2:19464 ; - ns4:airOutlet ns2:80160 ; + ns2:cnx ns4:19464, + ns4:47785, + ns4:80160 ; + ns2:hasConnectionPoint ns4:19464, + ns4:47785, + ns4:80160 ; + ns3:airInlet ns4:19464 ; + ns3:airOutlet ns4:80160 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:10168 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:10168 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "9-01.airInlet" ; - ns1:cnx ns2:04098, - ns2:20425 ; - ns1:connectsThrough ns2:20425 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:04098 . - -ns2:10430 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:04098, + ns4:20425 ; + ns2:connectsThrough ns4:20425 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:04098 . + +ns4:10430 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-92.airOutlet" ; - ns1:cnx ns2:25831, - ns2:92766 ; - ns1:connectsThrough ns2:92766 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25831 . - -ns2:10648 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25831, + ns4:92766 ; + ns2:connectsThrough ns4:92766 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25831 . + +ns4:10648 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-1.airOutlet" ; - ns1:cnx ns2:08701, - ns2:33343 ; - ns1:connectsThrough ns2:33343 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:08701 . - -ns2:10653 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:08701, + ns4:33343 ; + ns2:connectsThrough ns4:33343 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:08701 . + +ns4:10653 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "7-71B.airInlet" ; - ns1:cnx ns2:06073, - ns2:29115 ; - ns1:connectsThrough ns2:29115 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06073 . - -ns2:11099 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:06073, + ns4:29115 ; + ns2:connectsThrough ns4:29115 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06073 . + +ns4:11099 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:17966, - ns2:31729, - ns2:43263 ; - ns1:hasConnectionPoint ns2:17966, - ns2:31729, - ns2:43263 ; - ns4:airInlet ns2:31729 ; - ns4:airOutlet ns2:17966 ; + ns2:cnx ns4:17966, + ns4:31729, + ns4:43263 ; + ns2:hasConnectionPoint ns4:17966, + ns4:31729, + ns4:43263 ; + ns3:airInlet ns4:31729 ; + ns3:airOutlet ns4:17966 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:11126 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:11126 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "5-92A.airInlet" ; - ns1:cnx ns2:03055, - ns2:99057 ; - ns1:connectsThrough ns2:99057 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03055 . - -ns2:11513 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03055, + ns4:99057 ; + ns2:connectsThrough ns4:99057 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03055 . + +ns4:11513 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-20.airOutlet" ; - ns1:cnx ns2:02944, - ns2:25163 ; - ns1:connectsThrough ns2:25163 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:02944 . - -ns2:11879 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02944, + ns4:25163 ; + ns2:connectsThrough ns4:25163 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:02944 . + +ns4:11879 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:06502, - ns2:40409 ; - ns1:connectsThrough ns2:40409 ; - ns1:hasMedium ; - ns1:hasProperty ns2:12279, - ns2:43934 ; - ns1:isConnectionPointOf ns2:06502 . - -ns2:12321 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06502, + ns4:40409 ; + ns2:connectsThrough ns4:40409 ; + ns2:hasMedium ; + ns2:hasProperty ns4:12279, + ns4:43934 ; + ns2:isConnectionPointOf ns4:06502 . + +ns4:12321 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-79.airInlet" ; - ns1:cnx ns2:29807, - ns2:48548 ; - ns1:connectsThrough ns2:48548 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29807 . - -ns2:12553 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:29807, + ns4:48548 ; + ns2:connectsThrough ns4:48548 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29807 . + +ns4:12553 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:10659, - ns2:43351, - ns2:83087 ; - ns1:hasConnectionPoint ns2:10659, - ns2:43351, - ns2:83087 ; - ns4:airInlet ns2:43351 ; - ns4:airOutlet ns2:83087 ; + ns2:cnx ns4:10659, + ns4:43351, + ns4:83087 ; + ns2:hasConnectionPoint ns4:10659, + ns4:43351, + ns4:83087 ; + ns3:airInlet ns4:43351 ; + ns3:airOutlet ns4:83087 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:13280 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:13280 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "1-4.airOutlet" ; - ns1:cnx ns2:52428, - ns2:54326 ; - ns1:connectsThrough ns2:54326 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:52428 . - -ns2:13428 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:52428, + ns4:54326 ; + ns2:connectsThrough ns4:54326 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:52428 . + +ns4:13428 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-47.airInlet" ; - ns1:cnx ns2:66742, - ns2:93889 ; - ns1:connectsThrough ns2:93889 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:66742 . - -ns2:14490 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:66742, + ns4:93889 ; + ns2:connectsThrough ns4:93889 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:66742 . + +ns4:14490 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-56A.airInlet" ; - ns1:cnx ns2:28042, - ns2:60688 ; - ns1:connectsThrough ns2:28042 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:60688 . - -ns2:14550 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:28042, + ns4:60688 ; + ns2:connectsThrough ns4:28042 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:60688 . + +ns4:14550 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "5-51.airInlet" ; - ns1:cnx ns2:24336, - ns2:32876 ; - ns1:connectsThrough ns2:24336 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:32876 . + ns2:cnx ns4:24336, + ns4:32876 ; + ns2:connectsThrough ns4:24336 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:32876 . -ns2:15450 a ns1:Connection ; +ns4:15450 a ns2:Connection ; rdfs:label "15450" ; - ns1:cnx ns2:01128, - ns2:16174 ; - ns1:connectsAt ns2:01128, - ns2:16174 ; - ns1:connectsFrom ns2:23626, - ns2:29599, - ns2:77070 ; - ns1:connectsTo ns2:29599, - ns2:77070 ; - ns1:hasMedium . - -ns2:15464 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:01128, + ns4:16174 ; + ns2:connectsAt ns4:01128, + ns4:16174 ; + ns2:connectsFrom ns4:23626, + ns4:29599, + ns4:77070 ; + ns2:connectsTo ns4:29599, + ns4:77070 ; + ns2:hasMedium . + +ns4:15464 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:43950, - ns2:58231, - ns2:69116 ; - ns1:hasConnectionPoint ns2:43950, - ns2:58231, - ns2:69116 ; - ns4:airInlet ns2:58231 ; - ns4:airOutlet ns2:69116 ; + ns2:cnx ns4:43950, + ns4:58231, + ns4:69116 ; + ns2:hasConnectionPoint ns4:43950, + ns4:58231, + ns4:69116 ; + ns3:airInlet ns4:58231 ; + ns3:airOutlet ns4:69116 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:15477 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:15477 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:06938, - ns2:42536, - ns2:92110 ; - ns1:hasConnectionPoint ns2:06938, - ns2:42536, - ns2:92110 ; - ns4:airInlet ns2:92110 ; - ns4:airOutlet ns2:42536 ; + ns2:cnx ns4:06938, + ns4:42536, + ns4:92110 ; + ns2:hasConnectionPoint ns4:06938, + ns4:42536, + ns4:92110 ; + ns3:airInlet ns4:92110 ; + ns3:airOutlet ns4:42536 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:15762 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:15762 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-24.airOutlet" ; - ns1:cnx ns2:61647, - ns2:84877 ; - ns1:connectsThrough ns2:84877 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:61647 . - -ns2:17586 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:61647, + ns4:84877 ; + ns2:connectsThrough ns4:84877 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:61647 . + +ns4:17586 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:46914, - ns2:48959, - ns2:53666 ; - ns1:hasConnectionPoint ns2:46914, - ns2:48959, - ns2:53666 ; - ns4:airInlet ns2:53666 ; - ns4:airOutlet ns2:46914 ; + ns2:cnx ns4:46914, + ns4:48959, + ns4:53666 ; + ns2:hasConnectionPoint ns4:46914, + ns4:48959, + ns4:53666 ; + ns3:airInlet ns4:53666 ; + ns3:airOutlet ns4:46914 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:18055 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:18055 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:15051, - ns2:81250, - ns2:99918 ; - ns1:hasConnectionPoint ns2:15051, - ns2:81250, - ns2:99918 ; - ns4:airInlet ns2:99918 ; - ns4:airOutlet ns2:15051 ; + ns2:cnx ns4:15051, + ns4:81250, + ns4:99918 ; + ns2:hasConnectionPoint ns4:15051, + ns4:81250, + ns4:99918 ; + ns3:airInlet ns4:99918 ; + ns3:airOutlet ns4:15051 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:18118 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:18118 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:44640, - ns2:58533, - ns2:95013 ; - ns1:hasConnectionPoint ns2:44640, - ns2:58533, - ns2:95013 ; - ns4:airInlet ns2:58533 ; - ns4:airOutlet ns2:44640 ; + ns2:cnx ns4:44640, + ns4:58533, + ns4:95013 ; + ns2:hasConnectionPoint ns4:44640, + ns4:58533, + ns4:95013 ; + ns3:airInlet ns4:58533 ; + ns3:airOutlet ns4:44640 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:18193 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint, - ns4:InletZoneConnectionPoint, - ns4:ZoneConnectionPoint ; +ns4:18193 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint, + ns3:InletZoneConnectionPoint, + ns3:ZoneConnectionPoint ; rdfs:label "Floor_4.CoreZone.airInlet", "G-1A.zone.returnOutlet" ; - ns1:cnx ns2:25887, - ns2:90402 ; - ns1:connectsThrough ns2:25887 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:90402 . + ns2:cnx ns4:25887, + ns4:90402 ; + ns2:connectsThrough ns4:25887 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:90402 . -ns2:18895 a ns1:Connection ; +ns4:18895 a ns2:Connection ; rdfs:label "18895" ; - ns1:cnx ns2:21886, - ns2:35251 ; - ns1:connectsAt ns2:21886, - ns2:35251 ; - ns1:connectsFrom ns2:02937, - ns2:31318 ; - ns1:connectsTo ns2:69090 ; - ns1:hasMedium . - -ns2:19181 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:21886, + ns4:35251 ; + ns2:connectsAt ns4:21886, + ns4:35251 ; + ns2:connectsFrom ns4:02937, + ns4:31318 ; + ns2:connectsTo ns4:69090 ; + ns2:hasMedium . + +ns4:19181 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "8-21.airInlet" ; - ns1:cnx ns2:42650, - ns2:85453 ; - ns1:connectsThrough ns2:42650 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:85453 . - -ns2:19220 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:42650, + ns4:85453 ; + ns2:connectsThrough ns4:42650 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:85453 . + +ns4:19220 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:70209, - ns2:82815, - ns2:98135 ; - ns1:hasConnectionPoint ns2:70209, - ns2:82815, - ns2:98135 ; - ns4:airInlet ns2:70209 ; - ns4:airOutlet ns2:98135 ; + ns2:cnx ns4:70209, + ns4:82815, + ns4:98135 ; + ns2:hasConnectionPoint ns4:70209, + ns4:82815, + ns4:98135 ; + ns3:airInlet ns4:70209 ; + ns3:airOutlet ns4:98135 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:20835 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:20835 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-76.airInlet" ; - ns1:cnx ns2:07970, - ns2:71209 ; - ns1:connectsThrough ns2:71209 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:07970 . - -ns2:20861 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:07970, + ns4:71209 ; + ns2:connectsThrough ns4:71209 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:07970 . + +ns4:20861 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:17755, - ns2:27647, - ns2:59276 ; - ns1:hasConnectionPoint ns2:17755, - ns2:27647, - ns2:59276 ; - ns4:airInlet ns2:59276 ; - ns4:airOutlet ns2:17755 ; + ns2:cnx ns4:17755, + ns4:27647, + ns4:59276 ; + ns2:hasConnectionPoint ns4:17755, + ns4:27647, + ns4:59276 ; + ns3:airInlet ns4:59276 ; + ns3:airOutlet ns4:17755 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:22163 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:22163 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "1-58.airOutlet" ; - ns1:cnx ns2:07881, - ns2:32876 ; - ns1:connectsThrough ns2:07881 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:32876 . - -ns2:22976 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07881, + ns4:32876 ; + ns2:connectsThrough ns4:07881 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:32876 . + +ns4:22976 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "9-6A.airOutlet" ; - ns1:cnx ns2:15243, - ns2:94342 ; - ns1:connectsThrough ns2:94342 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15243 . - -ns2:23460 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15243, + ns4:94342 ; + ns2:connectsThrough ns4:94342 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15243 . + +ns4:23460 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-2.airInlet" ; - ns1:cnx ns2:07095, - ns2:88818 ; - ns1:connectsThrough ns2:07095 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88818 . + ns2:cnx ns4:07095, + ns4:88818 ; + ns2:connectsThrough ns4:07095 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88818 . -ns2:24336 a ns1:Connection ; +ns4:24336 a ns2:Connection ; rdfs:label "24336" ; - ns1:cnx ns2:14550, - ns2:35561 ; - ns1:connectsAt ns2:14550, - ns2:35561 ; - ns1:connectsFrom ns2:10117, - ns2:88028 ; - ns1:connectsTo ns2:32876 ; - ns1:hasMedium . - -ns2:24344 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:14550, + ns4:35561 ; + ns2:connectsAt ns4:14550, + ns4:35561 ; + ns2:connectsFrom ns4:10117, + ns4:88028 ; + ns2:connectsTo ns4:32876 ; + ns2:hasMedium . + +ns4:24344 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:33880, - ns2:40757, - ns2:44503 ; - ns1:hasConnectionPoint ns2:33880, - ns2:40757, - ns2:44503 ; - ns4:airInlet ns2:33880 ; - ns4:airOutlet ns2:44503 ; + ns2:cnx ns4:33880, + ns4:40757, + ns4:44503 ; + ns2:hasConnectionPoint ns4:33880, + ns4:40757, + ns4:44503 ; + ns3:airInlet ns4:33880 ; + ns3:airOutlet ns4:44503 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:25291 a ns1:Connection ; +ns4:25291 a ns2:Connection ; rdfs:label "25291" ; - ns1:cnx ns2:35561, - ns2:68202 ; - ns1:connectsAt ns2:35561, - ns2:68202 ; - ns1:connectsFrom ns2:10117, - ns2:88028 ; - ns1:connectsTo ns2:12924 ; - ns1:hasMedium . - -ns2:26091 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:35561, + ns4:68202 ; + ns2:connectsAt ns4:35561, + ns4:68202 ; + ns2:connectsFrom ns4:10117, + ns4:88028 ; + ns2:connectsTo ns4:12924 ; + ns2:hasMedium . + +ns4:26091 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-27.airOutlet" ; - ns1:cnx ns2:08108, - ns2:66742 ; - ns1:connectsThrough ns2:08108 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:66742 . - -ns2:26456 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:08108, + ns4:66742 ; + ns2:connectsThrough ns4:08108 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:66742 . + +ns4:26456 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-74.airOutlet" ; - ns1:cnx ns2:08346, - ns2:43608 ; - ns1:connectsThrough ns2:43608 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:08346 . + ns2:cnx ns4:08346, + ns4:43608 ; + ns2:connectsThrough ns4:43608 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:08346 . -ns2:27115 a ns1:Connection ; +ns4:27115 a ns2:Connection ; rdfs:label "27115" ; - ns1:cnx ns2:36398, - ns2:89481 ; - ns1:connectsAt ns2:36398, - ns2:89481 ; - ns1:connectsFrom ns2:37324, - ns2:55408 ; - ns1:connectsTo ns2:44133 ; - ns1:hasMedium . - -ns2:27223 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:36398, + ns4:89481 ; + ns2:connectsAt ns4:36398, + ns4:89481 ; + ns2:connectsFrom ns4:37324, + ns4:55408 ; + ns2:connectsTo ns4:44133 ; + ns2:hasMedium . + +ns4:27223 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "8-2.airInlet" ; - ns1:cnx ns2:06962, - ns2:29089 ; - ns1:connectsThrough ns2:29089 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06962 . - -ns2:28200 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06962, + ns4:29089 ; + ns2:connectsThrough ns4:29089 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06962 . + +ns4:28200 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-82A.airInlet" ; - ns1:cnx ns2:65125, - ns2:74580 ; - ns1:connectsThrough ns2:74580 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65125 . - -ns2:29634 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:65125, + ns4:74580 ; + ns2:connectsThrough ns4:74580 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65125 . + +ns4:29634 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "9-88.airInlet" ; - ns1:cnx ns2:29892, - ns2:92286 ; - ns1:connectsThrough ns2:29892 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:92286 . - -ns2:29732 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:29892, + ns4:92286 ; + ns2:connectsThrough ns4:29892 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:92286 . + +ns4:29732 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-11.airInlet" ; - ns1:cnx ns2:15538, - ns2:64380 ; - ns1:connectsThrough ns2:64380 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15538 . - -ns2:30054 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15538, + ns4:64380 ; + ns2:connectsThrough ns4:64380 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15538 . + +ns4:30054 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-5.airOutlet" ; - ns1:cnx ns2:03724, - ns2:30117 ; - ns1:connectsThrough ns2:30117 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03724 . - -ns2:31018 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03724, + ns4:30117 ; + ns2:connectsThrough ns4:30117 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03724 . + +ns4:31018 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "7-26.airOutlet" ; - ns1:cnx ns2:18875, - ns2:42653 ; - ns1:connectsThrough ns2:42653 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18875 . - -ns2:31863 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:18875, + ns4:42653 ; + ns2:connectsThrough ns4:42653 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18875 . + +ns4:31863 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-98.airInlet" ; - ns1:cnx ns2:47927, - ns2:83621 ; - ns1:connectsThrough ns2:47927 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83621 . - -ns2:31947 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:47927, + ns4:83621 ; + ns2:connectsThrough ns4:47927 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83621 . + +ns4:31947 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:40314, - ns2:58620, - ns2:73637 ; - ns1:hasConnectionPoint ns2:40314, - ns2:58620, - ns2:73637 ; - ns4:airInlet ns2:40314 ; - ns4:airOutlet ns2:58620 ; + ns2:cnx ns4:40314, + ns4:58620, + ns4:73637 ; + ns2:hasConnectionPoint ns4:40314, + ns4:58620, + ns4:73637 ; + ns3:airInlet ns4:40314 ; + ns3:airOutlet ns4:58620 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:32493 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:32493 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:27895, - ns2:37622, - ns2:78883 ; - ns1:hasConnectionPoint ns2:27895, - ns2:37622, - ns2:78883 ; - ns4:airInlet ns2:78883 ; - ns4:airOutlet ns2:37622 ; + ns2:cnx ns4:27895, + ns4:37622, + ns4:78883 ; + ns2:hasConnectionPoint ns4:27895, + ns4:37622, + ns4:78883 ; + ns3:airInlet ns4:78883 ; + ns3:airOutlet ns4:37622 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:33422 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:33422 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "6-8.airOutlet" ; - ns1:cnx ns2:02533, - ns2:73677 ; - ns1:connectsThrough ns2:73677 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:02533 . + ns2:cnx ns4:02533, + ns4:73677 ; + ns2:connectsThrough ns4:73677 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:02533 . -ns2:33562 a ns1:Connection ; +ns4:33562 a ns2:Connection ; rdfs:label "33562" ; - ns1:cnx ns2:17322, - ns2:38633 ; - ns1:connectsAt ns2:17322, - ns2:38633 ; - ns1:connectsFrom ns2:44036, - ns2:84040 ; - ns1:connectsTo ns2:44036, - ns2:46019, - ns2:84040 ; - ns1:hasMedium . - -ns2:34134 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:17322, + ns4:38633 ; + ns2:connectsAt ns4:17322, + ns4:38633 ; + ns2:connectsFrom ns4:44036, + ns4:84040 ; + ns2:connectsTo ns4:44036, + ns4:46019, + ns4:84040 ; + ns2:hasMedium . + +ns4:34134 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:06861, - ns2:33010, - ns2:52038 ; - ns1:hasConnectionPoint ns2:06861, - ns2:33010, - ns2:52038 ; - ns4:airInlet ns2:06861 ; - ns4:airOutlet ns2:33010 ; + ns2:cnx ns4:06861, + ns4:33010, + ns4:52038 ; + ns2:hasConnectionPoint ns4:06861, + ns4:33010, + ns4:52038 ; + ns3:airInlet ns4:06861 ; + ns3:airOutlet ns4:33010 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:35121 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:35121 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "6-32A.airOutlet" ; - ns1:cnx ns2:65125, - ns2:71446 ; - ns1:connectsThrough ns2:71446 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:65125 . - -ns2:35242 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:65125, + ns4:71446 ; + ns2:connectsThrough ns4:71446 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:65125 . + +ns4:35242 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-96.airInlet" ; - ns1:cnx ns2:43278, - ns2:60029 ; - ns1:connectsThrough ns2:60029 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:43278 . - -ns2:35606 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:43278, + ns4:60029 ; + ns2:connectsThrough ns4:60029 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:43278 . + +ns4:35606 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-05.airOutlet" ; - ns1:cnx ns2:43278, - ns2:75076 ; - ns1:connectsThrough ns2:75076 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:43278 . + ns2:cnx ns4:43278, + ns4:75076 ; + ns2:connectsThrough ns4:75076 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:43278 . -ns2:36630 a ns1:Connection ; +ns4:36630 a ns2:Connection ; rdfs:label "36630" ; - ns1:cnx ns2:01128, - ns2:06299 ; - ns1:connectsAt ns2:01128, - ns2:06299 ; - ns1:connectsFrom ns2:29599, - ns2:77070 ; - ns1:connectsTo ns2:02937, - ns2:29599, - ns2:77070 ; - ns1:hasMedium . - -ns2:36725 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:01128, + ns4:06299 ; + ns2:connectsAt ns4:01128, + ns4:06299 ; + ns2:connectsFrom ns4:29599, + ns4:77070 ; + ns2:connectsTo ns4:02937, + ns4:29599, + ns4:77070 ; + ns2:hasMedium . + +ns4:36725 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:06902, - ns2:88310, - ns2:94078 ; - ns1:hasConnectionPoint ns2:06902, - ns2:88310, - ns2:94078 ; - ns4:airInlet ns2:94078 ; - ns4:airOutlet ns2:88310 ; + ns2:cnx ns4:06902, + ns4:88310, + ns4:94078 ; + ns2:hasConnectionPoint ns4:06902, + ns4:88310, + ns4:94078 ; + ns3:airInlet ns4:94078 ; + ns3:airOutlet ns4:88310 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:37038 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:37038 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:02440, - ns2:45172, - ns2:95531 ; - ns1:hasConnectionPoint ns2:02440, - ns2:45172, - ns2:95531 ; - ns4:airInlet ns2:45172 ; - ns4:airOutlet ns2:02440 ; + ns2:cnx ns4:02440, + ns4:45172, + ns4:95531 ; + ns2:hasConnectionPoint ns4:02440, + ns4:45172, + ns4:95531 ; + ns3:airInlet ns4:45172 ; + ns3:airOutlet ns4:02440 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:38344 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:38344 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-01.airInlet" ; - ns1:cnx ns2:49192, - ns2:58341 ; - ns1:connectsThrough ns2:58341 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:49192 . - -ns2:38655 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:49192, + ns4:58341 ; + ns2:connectsThrough ns4:58341 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:49192 . + +ns4:38655 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-61A.airOutlet" ; - ns1:cnx ns2:60688, - ns2:63083 ; - ns1:connectsThrough ns2:63083 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:60688 . - -ns2:40053 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:60688, + ns4:63083 ; + ns2:connectsThrough ns4:63083 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:60688 . + +ns4:40053 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-60.airInlet" ; - ns1:cnx ns2:34554, - ns2:35720 ; - ns1:connectsThrough ns2:34554 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:35720 . - -ns2:40300 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34554, + ns4:35720 ; + ns2:connectsThrough ns4:34554 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:35720 . + +ns4:40300 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-8.airOutlet" ; - ns1:cnx ns2:15332, - ns2:19094 ; - ns1:connectsThrough ns2:19094 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15332 . - -ns2:40636 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15332, + ns4:19094 ; + ns2:connectsThrough ns4:19094 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15332 . + +ns4:40636 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "0-8.airInlet" ; - ns1:cnx ns2:07591, - ns2:63086 ; - ns1:connectsThrough ns2:07591 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:63086 . - -ns2:40974 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:07591, + ns4:63086 ; + ns2:connectsThrough ns4:07591 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:63086 . + +ns4:40974 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:13564, - ns2:19989, - ns2:33560 ; - ns1:hasConnectionPoint ns2:13564, - ns2:19989, - ns2:33560 ; - ns4:airInlet ns2:13564 ; - ns4:airOutlet ns2:19989 ; + ns2:cnx ns4:13564, + ns4:19989, + ns4:33560 ; + ns2:hasConnectionPoint ns4:13564, + ns4:19989, + ns4:33560 ; + ns3:airInlet ns4:13564 ; + ns3:airOutlet ns4:19989 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:41716 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:41716 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-41.airInlet" ; - ns1:cnx ns2:27011, - ns2:64179 ; - ns1:connectsThrough ns2:64179 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:27011 . - -ns2:41868 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:27011, + ns4:64179 ; + ns2:connectsThrough ns4:64179 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:27011 . + +ns4:41868 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-01.airOutlet" ; - ns1:cnx ns2:25047, - ns2:38300 ; - ns1:connectsThrough ns2:38300 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25047 . - -ns2:42328 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:25047, + ns4:38300 ; + ns2:connectsThrough ns4:38300 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25047 . + +ns4:42328 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-48D.airOutlet" ; - ns1:cnx ns2:07544, - ns2:82341 ; - ns1:connectsThrough ns2:82341 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:07544 . - -ns2:42696 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07544, + ns4:82341 ; + ns2:connectsThrough ns4:82341 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:07544 . + +ns4:42696 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-15.airOutlet" ; - ns1:cnx ns2:29807, - ns2:82844 ; - ns1:connectsThrough ns2:82844 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29807 . - -ns2:43285 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:29807, + ns4:82844 ; + ns2:connectsThrough ns4:82844 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29807 . + +ns4:43285 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-9.airInlet" ; - ns1:cnx ns2:86545, - ns2:90835 ; - ns1:connectsThrough ns2:90835 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:86545 . + ns2:cnx ns4:86545, + ns4:90835 ; + ns2:connectsThrough ns4:90835 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:86545 . -ns2:44139 a ns1:Connection ; +ns4:44139 a ns2:Connection ; rdfs:label "44139" ; - ns1:cnx ns2:29599, - ns2:51721 ; - ns1:connectsAt ns2:29599, - ns2:51721 ; - ns1:connectsFrom ns2:14119 ; - ns1:connectsTo ns2:77251 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29599 . - -ns2:44403 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:29599, + ns4:51721 ; + ns2:connectsAt ns4:29599, + ns4:51721 ; + ns2:connectsFrom ns4:14119 ; + ns2:connectsTo ns4:77251 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29599 . + +ns4:44403 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-3.airOutlet" ; - ns1:cnx ns2:21481, - ns2:77743 ; - ns1:connectsThrough ns2:21481 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77743 . - -ns2:45050 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:21481, + ns4:77743 ; + ns2:connectsThrough ns4:21481 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77743 . + +ns4:45050 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:05363, - ns2:50235, - ns2:58281 ; - ns1:hasConnectionPoint ns2:05363, - ns2:50235, - ns2:58281 ; - ns4:airInlet ns2:05363 ; - ns4:airOutlet ns2:50235 ; + ns2:cnx ns4:05363, + ns4:50235, + ns4:58281 ; + ns2:hasConnectionPoint ns4:05363, + ns4:50235, + ns4:58281 ; + ns3:airInlet ns4:05363 ; + ns3:airOutlet ns4:50235 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:46293 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:46293 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:36274, - ns2:92085, - ns2:98452 ; - ns1:hasConnectionPoint ns2:36274, - ns2:92085, - ns2:98452 ; - ns4:airInlet ns2:98452 ; - ns4:airOutlet ns2:36274 ; + ns2:cnx ns4:36274, + ns4:92085, + ns4:98452 ; + ns2:hasConnectionPoint ns4:36274, + ns4:92085, + ns4:98452 ; + ns3:airInlet ns4:98452 ; + ns3:airOutlet ns4:36274 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:46761 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:46761 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "9-46.airInlet" ; - ns1:cnx ns2:66843, - ns2:97655 ; - ns1:connectsThrough ns2:97655 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:66843 . - -ns2:47087 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:66843, + ns4:97655 ; + ns2:connectsThrough ns4:97655 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:66843 . + +ns4:47087 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-4.airOutlet" ; - ns1:cnx ns2:58117, - ns2:68940 ; - ns1:connectsThrough ns2:68940 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58117 . - -ns2:47249 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:58117, + ns4:68940 ; + ns2:connectsThrough ns4:68940 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58117 . + +ns4:47249 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "0-8.airInlet" ; - ns1:cnx ns2:15332, - ns2:48815 ; - ns1:connectsThrough ns2:48815 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15332 . - -ns2:47481 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15332, + ns4:48815 ; + ns2:connectsThrough ns4:48815 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15332 . + +ns4:47481 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "8-89.airOutlet" ; - ns1:cnx ns2:66843, - ns2:85385 ; - ns1:connectsThrough ns2:85385 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:66843 . - -ns2:47806 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:66843, + ns4:85385 ; + ns2:connectsThrough ns4:85385 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:66843 . + +ns4:47806 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:47376, - ns2:68836, - ns2:92110 ; - ns1:hasConnectionPoint ns2:47376, - ns2:68836, - ns2:92110 ; - ns4:airInlet ns2:92110 ; - ns4:airOutlet ns2:47376 ; + ns2:cnx ns4:47376, + ns4:68836, + ns4:92110 ; + ns2:hasConnectionPoint ns4:47376, + ns4:68836, + ns4:92110 ; + ns3:airInlet ns4:92110 ; + ns3:airOutlet ns4:47376 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:47927 a ns1:Connection ; +ns4:47927 a ns2:Connection ; rdfs:label "47927" ; - ns1:cnx ns2:07924, - ns2:31863 ; - ns1:connectsAt ns2:07924, - ns2:31863 ; - ns1:connectsFrom ns2:06275 ; - ns1:connectsTo ns2:83621 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:07924 . - -ns2:48021 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07924, + ns4:31863 ; + ns2:connectsAt ns4:07924, + ns4:31863 ; + ns2:connectsFrom ns4:06275 ; + ns2:connectsTo ns4:83621 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:07924 . + +ns4:48021 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-13.airOutlet" ; - ns1:cnx ns2:31269, - ns2:31562 ; - ns1:connectsThrough ns2:31562 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:31269 . - -ns2:48597 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:31269, + ns4:31562 ; + ns2:connectsThrough ns4:31562 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:31269 . + +ns4:48597 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "1-57.airOutlet" ; - ns1:cnx ns2:32220, - ns2:47956 ; - ns1:connectsThrough ns2:32220 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:47956 . - -ns2:49121 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:32220, + ns4:47956 ; + ns2:connectsThrough ns4:32220 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:47956 . + +ns4:49121 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-9A.airInlet" ; - ns1:cnx ns2:12403, - ns2:97029 ; - ns1:connectsThrough ns2:97029 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12403 . - -ns2:49336 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:12403, + ns4:97029 ; + ns2:connectsThrough ns4:97029 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12403 . + +ns4:49336 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-82.airInlet" ; - ns1:cnx ns2:12423, - ns2:61647 ; - ns1:connectsThrough ns2:12423 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:61647 . - -ns2:50935 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:12423, + ns4:61647 ; + ns2:connectsThrough ns4:12423 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:61647 . + +ns4:50935 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:26555, - ns2:28576, - ns2:39217 ; - ns1:hasConnectionPoint ns2:26555, - ns2:28576, - ns2:39217 ; - ns4:airInlet ns2:28576 ; - ns4:airOutlet ns2:39217 ; + ns2:cnx ns4:26555, + ns4:28576, + ns4:39217 ; + ns2:hasConnectionPoint ns4:26555, + ns4:28576, + ns4:39217 ; + ns3:airInlet ns4:28576 ; + ns3:airOutlet ns4:39217 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:51164 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:51164 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "6-8.airInlet" ; - ns1:cnx ns2:03707, - ns2:93128 ; - ns1:connectsThrough ns2:93128 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03707 . - -ns2:51197 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:03707, + ns4:93128 ; + ns2:connectsThrough ns4:93128 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03707 . + +ns4:51197 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "9-17.airOutlet" ; - ns1:cnx ns2:04098, - ns2:92270 ; - ns1:connectsThrough ns2:92270 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:04098 . - -ns2:51893 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:04098, + ns4:92270 ; + ns2:connectsThrough ns4:92270 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:04098 . + +ns4:51893 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:38293, - ns2:40470, - ns2:96390 ; - ns1:hasConnectionPoint ns2:38293, - ns2:40470, - ns2:96390 ; - ns4:airInlet ns2:40470 ; - ns4:airOutlet ns2:96390 ; + ns2:cnx ns4:38293, + ns4:40470, + ns4:96390 ; + ns2:hasConnectionPoint ns4:38293, + ns4:40470, + ns4:96390 ; + ns3:airInlet ns4:40470 ; + ns3:airOutlet ns4:96390 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:52697 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:52697 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-3.airInlet" ; - ns1:cnx ns2:58117, - ns2:95073 ; - ns1:connectsThrough ns2:95073 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:58117 . - -ns2:52909 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:58117, + ns4:95073 ; + ns2:connectsThrough ns4:95073 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:58117 . + +ns4:52909 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "5-1.airOutlet" ; - ns1:cnx ns2:47009, - ns2:63086 ; - ns1:connectsThrough ns2:47009 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:63086 . - -ns2:53089 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:47009, + ns4:63086 ; + ns2:connectsThrough ns4:47009 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:63086 . + +ns4:53089 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:03307, - ns2:59359, - ns2:84395 ; - ns1:hasConnectionPoint ns2:03307, - ns2:59359, - ns2:84395 ; - ns4:airInlet ns2:84395 ; - ns4:airOutlet ns2:59359 ; + ns2:cnx ns4:03307, + ns4:59359, + ns4:84395 ; + ns2:hasConnectionPoint ns4:03307, + ns4:59359, + ns4:84395 ; + ns3:airInlet ns4:84395 ; + ns3:airOutlet ns4:59359 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:53343 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:53343 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-0.airInlet" ; - ns1:cnx ns2:08701, - ns2:88441 ; - ns1:connectsThrough ns2:88441 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:08701 . - -ns2:53503 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:08701, + ns4:88441 ; + ns2:connectsThrough ns4:88441 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:08701 . + +ns4:53503 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "1-42.airInlet" ; - ns1:cnx ns2:25831, - ns2:81744 ; - ns1:connectsThrough ns2:81744 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25831 . - -ns2:54050 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:25831, + ns4:81744 ; + ns2:connectsThrough ns4:81744 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25831 . + +ns4:54050 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:16279, - ns2:27409, - ns2:70830 ; - ns1:hasConnectionPoint ns2:16279, - ns2:27409, - ns2:70830 ; - ns4:airInlet ns2:16279 ; - ns4:airOutlet ns2:27409 ; + ns2:cnx ns4:16279, + ns4:27409, + ns4:70830 ; + ns2:hasConnectionPoint ns4:16279, + ns4:27409, + ns4:70830 ; + ns3:airInlet ns4:16279 ; + ns3:airOutlet ns4:27409 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:54708 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:54708 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:19941, - ns2:71570, - ns2:96385 ; - ns1:hasConnectionPoint ns2:19941, - ns2:71570, - ns2:96385 ; - ns4:airInlet ns2:71570 ; - ns4:airOutlet ns2:96385 ; + ns2:cnx ns4:19941, + ns4:71570, + ns4:96385 ; + ns2:hasConnectionPoint ns4:19941, + ns4:71570, + ns4:96385 ; + ns3:airInlet ns4:71570 ; + ns3:airOutlet ns4:96385 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:55198 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:55198 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:41034, - ns2:79626, - ns2:94734 ; - ns1:hasConnectionPoint ns2:41034, - ns2:79626, - ns2:94734 ; - ns4:airInlet ns2:41034 ; - ns4:airOutlet ns2:79626 ; + ns2:cnx ns4:41034, + ns4:79626, + ns4:94734 ; + ns2:hasConnectionPoint ns4:41034, + ns4:79626, + ns4:94734 ; + ns3:airInlet ns4:41034 ; + ns3:airOutlet ns4:79626 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:55916 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:55916 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-29.airOutlet" ; - ns1:cnx ns2:06559, - ns2:95765 ; - ns1:connectsThrough ns2:06559 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:95765 . - -ns2:55951 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:06559, + ns4:95765 ; + ns2:connectsThrough ns4:06559 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:95765 . + +ns4:55951 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:09479, - ns2:13434, - ns2:49869 ; - ns1:hasConnectionPoint ns2:09479, - ns2:13434, - ns2:49869 ; - ns4:airInlet ns2:13434 ; - ns4:airOutlet ns2:09479 ; + ns2:cnx ns4:09479, + ns4:13434, + ns4:49869 ; + ns2:hasConnectionPoint ns4:09479, + ns4:13434, + ns4:49869 ; + ns3:airInlet ns4:13434 ; + ns3:airOutlet ns4:09479 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:56119 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:56119 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-83.airOutlet" ; - ns1:cnx ns2:12924, - ns2:61966 ; - ns1:connectsThrough ns2:61966 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12924 . - -ns2:57017 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:12924, + ns4:61966 ; + ns2:connectsThrough ns4:61966 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12924 . + +ns4:57017 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:17862, - ns2:40072, - ns2:41291 ; - ns1:hasConnectionPoint ns2:17862, - ns2:40072, - ns2:41291 ; - ns4:airInlet ns2:41291 ; - ns4:airOutlet ns2:40072 ; + ns2:cnx ns4:17862, + ns4:40072, + ns4:41291 ; + ns2:hasConnectionPoint ns4:17862, + ns4:40072, + ns4:41291 ; + ns3:airInlet ns4:41291 ; + ns3:airOutlet ns4:40072 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:57180 a ns1:Connection ; +ns4:57180 a ns2:Connection ; rdfs:label "57180" ; - ns1:cnx ns2:34986, - ns2:52219 ; - ns1:connectsAt ns2:34986, - ns2:52219 ; - ns1:connectsFrom ns2:85645 ; - ns1:connectsThrough ns2:34986 ; - ns1:connectsTo ns2:46907 ; - ns1:hasMedium . - -ns2:57804 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:34986, + ns4:52219 ; + ns2:connectsAt ns4:34986, + ns4:52219 ; + ns2:connectsFrom ns4:85645 ; + ns2:connectsThrough ns4:34986 ; + ns2:connectsTo ns4:46907 ; + ns2:hasMedium . + +ns4:57804 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "9-47B.airOutlet" ; - ns1:cnx ns2:06073, - ns2:17729 ; - ns1:connectsThrough ns2:17729 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06073 . - -ns2:59158 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:06073, + ns4:17729 ; + ns2:connectsThrough ns4:17729 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06073 . + +ns4:59158 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:15049, - ns2:47104, - ns2:60170 ; - ns1:hasConnectionPoint ns2:15049, - ns2:47104, - ns2:60170 ; - ns4:airInlet ns2:60170 ; - ns4:airOutlet ns2:47104 ; + ns2:cnx ns4:15049, + ns4:47104, + ns4:60170 ; + ns2:hasConnectionPoint ns4:15049, + ns4:47104, + ns4:60170 ; + ns3:airInlet ns4:60170 ; + ns3:airOutlet ns4:47104 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:60124 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:60124 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:00543, - ns2:46907 ; - ns1:connectsThrough ns2:00543 ; - ns1:hasMedium ; - ns1:hasProperty ns2:14807, - ns2:84974 ; - ns1:isConnectionPointOf ns2:46907 . - -ns2:61520 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:00543, + ns4:46907 ; + ns2:connectsThrough ns4:00543 ; + ns2:hasMedium ; + ns2:hasProperty ns4:14807, + ns4:84974 ; + ns2:isConnectionPointOf ns4:46907 . + +ns4:61520 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-01B.airInlet" ; - ns1:cnx ns2:01399, - ns2:47474 ; - ns1:connectsThrough ns2:47474 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:01399 . - -ns2:62233 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:01399, + ns4:47474 ; + ns2:connectsThrough ns4:47474 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:01399 . + +ns4:62233 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-58.airOutlet" ; - ns1:cnx ns2:42081, - ns2:49192 ; - ns1:connectsThrough ns2:42081 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:49192 . + ns2:cnx ns4:42081, + ns4:49192 ; + ns2:connectsThrough ns4:42081 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:49192 . -ns2:62740 a ns1:Connection ; +ns4:62740 a ns2:Connection ; rdfs:label "62740" ; - ns1:cnx ns2:04282, - ns2:94541 ; - ns1:connectsAt ns2:04282, - ns2:94541 ; - ns1:connectsFrom ns2:18941, - ns2:84040 ; - ns1:connectsTo ns2:04913, - ns2:18941, - ns2:84040 ; - ns1:hasMedium . - -ns2:62855 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:04282, + ns4:94541 ; + ns2:connectsAt ns4:04282, + ns4:94541 ; + ns2:connectsFrom ns4:18941, + ns4:84040 ; + ns2:connectsTo ns4:04913, + ns4:18941, + ns4:84040 ; + ns2:hasMedium . + +ns4:62855 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:05895, - ns2:85241, - ns2:85847 ; - ns1:hasConnectionPoint ns2:05895, - ns2:85241, - ns2:85847 ; - ns4:airInlet ns2:85847 ; - ns4:airOutlet ns2:85241 ; + ns2:cnx ns4:05895, + ns4:85241, + ns4:85847 ; + ns2:hasConnectionPoint ns4:05895, + ns4:85241, + ns4:85847 ; + ns3:airInlet ns4:85847 ; + ns3:airOutlet ns4:85241 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:63543 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:63543 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:19702, - ns2:40842, - ns2:46031 ; - ns1:hasConnectionPoint ns2:19702, - ns2:40842, - ns2:46031 ; - ns4:airInlet ns2:40842 ; - ns4:airOutlet ns2:46031 ; + ns2:cnx ns4:19702, + ns4:40842, + ns4:46031 ; + ns2:hasConnectionPoint ns4:19702, + ns4:40842, + ns4:46031 ; + ns3:airInlet ns4:40842 ; + ns3:airOutlet ns4:46031 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:63848 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:63848 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:11624, - ns2:83407 ; - ns1:connectsThrough ns2:83407 ; - ns1:hasMedium ; - ns1:hasProperty ns2:05076, - ns2:85492 ; - ns1:isConnectionPointOf ns2:11624 . - -ns2:64361 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:11624, + ns4:83407 ; + ns2:connectsThrough ns4:83407 ; + ns2:hasMedium ; + ns2:hasProperty ns4:05076, + ns4:85492 ; + ns2:isConnectionPointOf ns4:11624 . + +ns4:64361 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-58.airInlet" ; - ns1:cnx ns2:25047, - ns2:69552 ; - ns1:connectsThrough ns2:69552 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:25047 . - -ns2:64435 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:25047, + ns4:69552 ; + ns2:connectsThrough ns4:69552 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:25047 . + +ns4:64435 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:13364, - ns2:47847, - ns2:65843 ; - ns1:hasConnectionPoint ns2:13364, - ns2:47847, - ns2:65843 ; - ns4:airInlet ns2:65843 ; - ns4:airOutlet ns2:13364 ; + ns2:cnx ns4:13364, + ns4:47847, + ns4:65843 ; + ns2:hasConnectionPoint ns4:13364, + ns4:47847, + ns4:65843 ; + ns3:airInlet ns4:65843 ; + ns3:airOutlet ns4:13364 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:64683 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:64683 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-4.airOutlet" ; - ns1:cnx ns2:41694, - ns2:89082 ; - ns1:connectsThrough ns2:89082 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:41694 . - -ns2:65987 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:41694, + ns4:89082 ; + ns2:connectsThrough ns4:89082 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:41694 . + +ns4:65987 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "3-3A.airInlet" ; - ns1:cnx ns2:15243, - ns2:24415 ; - ns1:connectsThrough ns2:24415 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15243 . - -ns2:68202 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15243, + ns4:24415 ; + ns2:connectsThrough ns4:24415 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15243 . + +ns4:68202 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "5-14.airInlet" ; - ns1:cnx ns2:12924, - ns2:25291 ; - ns1:connectsThrough ns2:25291 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12924 . - -ns2:68285 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:12924, + ns4:25291 ; + ns2:connectsThrough ns4:25291 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12924 . + +ns4:68285 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "7-7.airOutlet" ; - ns1:cnx ns2:06962, - ns2:08368 ; - ns1:connectsThrough ns2:08368 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:06962 . - -ns2:68474 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:06962, + ns4:08368 ; + ns2:connectsThrough ns4:08368 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:06962 . + +ns4:68474 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:02043, - ns2:37405, - ns2:39112 ; - ns1:hasConnectionPoint ns2:02043, - ns2:37405, - ns2:39112 ; - ns4:airInlet ns2:02043 ; - ns4:airOutlet ns2:37405 ; + ns2:cnx ns4:02043, + ns4:37405, + ns4:39112 ; + ns2:hasConnectionPoint ns4:02043, + ns4:37405, + ns4:39112 ; + ns3:airInlet ns4:02043 ; + ns3:airOutlet ns4:37405 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:69044 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:69044 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:46374, - ns2:62608, - ns2:96356 ; - ns1:hasConnectionPoint ns2:46374, - ns2:62608, - ns2:96356 ; - ns4:airInlet ns2:62608 ; - ns4:airOutlet ns2:46374 ; + ns2:cnx ns4:46374, + ns4:62608, + ns4:96356 ; + ns2:hasConnectionPoint ns4:46374, + ns4:62608, + ns4:96356 ; + ns3:airInlet ns4:62608 ; + ns3:airOutlet ns4:46374 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:69373 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:69373 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "6-6.airOutlet" ; - ns1:cnx ns2:04668, - ns2:86545 ; - ns1:connectsThrough ns2:04668 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:86545 . - -ns2:69790 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:04668, + ns4:86545 ; + ns2:connectsThrough ns4:04668 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:86545 . + +ns4:69790 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-95B.airOutlet" ; - ns1:cnx ns2:01399, - ns2:50742 ; - ns1:connectsThrough ns2:50742 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:01399 . - -ns2:70623 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:01399, + ns4:50742 ; + ns2:connectsThrough ns4:50742 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:01399 . + +ns4:70623 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-54.airOutlet" ; - ns1:cnx ns2:07970, - ns2:29739 ; - ns1:connectsThrough ns2:29739 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:07970 . - -ns2:73305 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07970, + ns4:29739 ; + ns2:connectsThrough ns4:29739 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:07970 . + +ns4:73305 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-44.airOutlet" ; - ns1:cnx ns2:35720, - ns2:80519 ; - ns1:connectsThrough ns2:80519 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:35720 . - -ns2:74699 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:35720, + ns4:80519 ; + ns2:connectsThrough ns4:80519 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:35720 . + +ns4:74699 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:31859, - ns2:34690, - ns2:35334 ; - ns1:hasConnectionPoint ns2:31859, - ns2:34690, - ns2:35334 ; - ns4:airInlet ns2:31859 ; - ns4:airOutlet ns2:34690 ; + ns2:cnx ns4:31859, + ns4:34690, + ns4:35334 ; + ns2:hasConnectionPoint ns4:31859, + ns4:34690, + ns4:35334 ; + ns3:airInlet ns4:31859 ; + ns3:airOutlet ns4:34690 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:75104 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:75104 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:02500, - ns2:06056, - ns2:93343 ; - ns1:hasConnectionPoint ns2:02500, - ns2:06056, - ns2:93343 ; - ns4:airInlet ns2:02500 ; - ns4:airOutlet ns2:06056 ; + ns2:cnx ns4:02500, + ns4:06056, + ns4:93343 ; + ns2:hasConnectionPoint ns4:02500, + ns4:06056, + ns4:93343 ; + ns3:airInlet ns4:02500 ; + ns3:airOutlet ns4:06056 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:75350 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:75350 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-7.airInlet" ; - ns1:cnx ns2:41694, - ns2:95914 ; - ns1:connectsThrough ns2:95914 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:41694 . - -ns2:76708 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:41694, + ns4:95914 ; + ns2:connectsThrough ns4:95914 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:41694 . + +ns4:76708 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:01192, - ns2:73149, - ns2:93766 ; - ns1:hasConnectionPoint ns2:01192, - ns2:73149, - ns2:93766 ; - ns4:airInlet ns2:93766 ; - ns4:airOutlet ns2:01192 ; + ns2:cnx ns4:01192, + ns4:73149, + ns4:93766 ; + ns2:hasConnectionPoint ns4:01192, + ns4:73149, + ns4:93766 ; + ns3:airInlet ns4:93766 ; + ns3:airOutlet ns4:01192 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:76728 a ns1:Connection ; +ns4:76728 a ns2:Connection ; rdfs:label "76728" ; - ns1:cnx ns2:35251, - ns2:43202 ; - ns1:connectsAt ns2:35251, - ns2:43202 ; - ns1:connectsFrom ns2:02937, - ns2:31318 ; - ns1:connectsTo ns2:54082 ; - ns1:hasMedium . - -ns2:77276 a ns1:Connection ; + ns2:cnx ns4:35251, + ns4:43202 ; + ns2:connectsAt ns4:35251, + ns4:43202 ; + ns2:connectsFrom ns4:02937, + ns4:31318 ; + ns2:connectsTo ns4:54082 ; + ns2:hasMedium . + +ns4:77276 a ns2:Connection ; rdfs:label "77276" ; - ns1:cnx ns2:55213, - ns2:73704 ; - ns1:connectsAt ns2:55213, - ns2:73704 ; - ns1:connectsFrom ns2:68166 ; - ns1:connectsTo ns2:15067, - ns2:83428 ; - ns1:hasMedium . - -ns2:77457 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:55213, + ns4:73704 ; + ns2:connectsAt ns4:55213, + ns4:73704 ; + ns2:connectsFrom ns4:68166 ; + ns2:connectsTo ns4:15067, + ns4:83428 ; + ns2:hasMedium . + +ns4:77457 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:06718, - ns2:54553, - ns2:65207 ; - ns1:hasConnectionPoint ns2:06718, - ns2:54553, - ns2:65207 ; - ns4:airInlet ns2:54553 ; - ns4:airOutlet ns2:65207 ; + ns2:cnx ns4:06718, + ns4:54553, + ns4:65207 ; + ns2:hasConnectionPoint ns4:06718, + ns4:54553, + ns4:65207 ; + ns3:airInlet ns4:54553 ; + ns3:airOutlet ns4:65207 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:78531 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:78531 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-7.airInlet" ; - ns1:cnx ns2:70045, - ns2:77743 ; - ns1:connectsThrough ns2:70045 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77743 . + ns2:cnx ns4:70045, + ns4:77743 ; + ns2:connectsThrough ns4:70045 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77743 . -ns2:79346 a ns1:Connection ; +ns4:79346 a ns2:Connection ; rdfs:label "79346" ; - ns1:cnx ns2:57368, - ns2:95885 ; - ns1:connectsAt ns2:57368, - ns2:95885 ; - ns1:connectsFrom ns2:58251 ; - ns1:connectsTo ns2:34355, - ns2:97321 ; - ns1:hasMedium . - -ns2:79665 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:57368, + ns4:95885 ; + ns2:connectsAt ns4:57368, + ns4:95885 ; + ns2:connectsFrom ns4:58251 ; + ns2:connectsTo ns4:34355, + ns4:97321 ; + ns2:hasMedium . + +ns4:79665 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:51907, - ns2:82856, - ns2:97025 ; - ns1:hasConnectionPoint ns2:51907, - ns2:82856, - ns2:97025 ; - ns4:airInlet ns2:97025 ; - ns4:airOutlet ns2:82856 ; + ns2:cnx ns4:51907, + ns4:82856, + ns4:97025 ; + ns2:hasConnectionPoint ns4:51907, + ns4:82856, + ns4:97025 ; + ns3:airInlet ns4:97025 ; + ns3:airOutlet ns4:82856 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:81532 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:81532 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-2.airOutlet" ; - ns1:cnx ns2:26376, - ns2:46191 ; - ns1:connectsThrough ns2:26376 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46191 . - -ns2:81559 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:26376, + ns4:46191 ; + ns2:connectsThrough ns4:26376 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46191 . + +ns4:81559 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-96.airOutlet" ; - ns1:cnx ns2:37302, - ns2:76264 ; - ns1:connectsThrough ns2:76264 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:37302 . - -ns2:82400 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37302, + ns4:76264 ; + ns2:connectsThrough ns4:76264 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:37302 . + +ns4:82400 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "8-4.airInlet" ; - ns1:cnx ns2:02533, - ns2:87484 ; - ns1:connectsThrough ns2:87484 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:02533 . - -ns2:82635 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02533, + ns4:87484 ; + ns2:connectsThrough ns4:87484 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:02533 . + +ns4:82635 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airOutlet" ; - ns1:cnx ns2:07924, - ns2:63755 ; - ns1:connectsThrough ns2:63755 ; - ns1:hasMedium ; - ns1:hasProperty ns2:08570, - ns2:75833 ; - ns1:isConnectionPointOf ns2:07924 . - -ns2:83065 a ns1:Connection ; + ns2:cnx ns4:07924, + ns4:63755 ; + ns2:connectsThrough ns4:63755 ; + ns2:hasMedium ; + ns2:hasProperty ns4:08570, + ns4:75833 ; + ns2:isConnectionPointOf ns4:07924 . + +ns4:83065 a ns2:Connection ; rdfs:label "83065" ; - ns1:cnx ns2:72478, - ns2:97655 ; - ns1:connectsAt ns2:72478, - ns2:97655 ; - ns1:connectsFrom ns2:05353 ; - ns1:connectsThrough ns2:97655 ; - ns1:connectsTo ns2:97674 ; - ns1:hasMedium . - -ns2:83407 a ns1:Connection, - ns1:PhysicalSpace ; + ns2:cnx ns4:72478, + ns4:97655 ; + ns2:connectsAt ns4:72478, + ns4:97655 ; + ns2:connectsFrom ns4:05353 ; + ns2:connectsThrough ns4:97655 ; + ns2:connectsTo ns4:97674 ; + ns2:hasMedium . + +ns4:83407 a ns2:Connection, + ns2:PhysicalSpace ; rdfs:label "8120P" ; - ns1:cnx ns2:55505, - ns2:63848 ; - ns1:connectsAt ns2:55505, - ns2:63848 ; - ns1:connectsFrom ns2:11624 ; - ns1:connectsTo ns2:00808 ; - ns1:hasMedium . - -ns2:84309 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:55505, + ns4:63848 ; + ns2:connectsAt ns4:55505, + ns4:63848 ; + ns2:connectsFrom ns4:11624 ; + ns2:connectsTo ns4:00808 ; + ns2:hasMedium . + +ns4:84309 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "0-12B.airOutlet" ; - ns1:cnx ns2:02070, - ns2:70445 ; - ns1:connectsThrough ns2:70445 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:02070 . - -ns2:85390 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02070, + ns4:70445 ; + ns2:connectsThrough ns4:70445 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:02070 . + +ns4:85390 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-3.airInlet" ; - ns1:cnx ns2:46191, - ns2:65267 ; - ns1:connectsThrough ns2:65267 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46191 . - -ns2:86998 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:46191, + ns4:65267 ; + ns2:connectsThrough ns4:65267 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46191 . + +ns4:86998 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:03382, - ns2:07175, - ns2:92494 ; - ns1:hasConnectionPoint ns2:03382, - ns2:07175, - ns2:92494 ; - ns4:airInlet ns2:03382 ; - ns4:airOutlet ns2:07175 ; + ns2:cnx ns4:03382, + ns4:07175, + ns4:92494 ; + ns2:hasConnectionPoint ns4:03382, + ns4:07175, + ns4:92494 ; + ns3:airInlet ns4:03382 ; + ns3:airOutlet ns4:07175 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:87461 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:87461 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-49.airOutlet" ; - ns1:cnx ns2:50261, - ns2:83621 ; - ns1:connectsThrough ns2:50261 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83621 . - -ns2:88705 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:50261, + ns4:83621 ; + ns2:connectsThrough ns4:50261 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83621 . + +ns4:88705 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-99.airInlet" ; - ns1:cnx ns2:09432, - ns2:66163 ; - ns1:connectsThrough ns2:66163 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:09432 . - -ns2:89238 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:09432, + ns4:66163 ; + ns2:connectsThrough ns4:66163 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:09432 . + +ns4:89238 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "1-51.airInlet" ; - ns1:cnx ns2:37302, - ns2:66983 ; - ns1:connectsThrough ns2:66983 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:37302 . - -ns2:89654 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:37302, + ns4:66983 ; + ns2:connectsThrough ns4:66983 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:37302 . + +ns4:89654 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "8-43.airInlet" ; - ns1:cnx ns2:07051, - ns2:18875 ; - ns1:connectsThrough ns2:07051 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:18875 . - -ns2:92322 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:07051, + ns4:18875 ; + ns2:connectsThrough ns4:07051 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:18875 . + +ns4:92322 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-8A.airOutlet" ; - ns1:cnx ns2:12403, - ns2:16382 ; - ns1:connectsThrough ns2:16382 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:12403 . - -ns2:92407 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:12403, + ns4:16382 ; + ns2:connectsThrough ns4:16382 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:12403 . + +ns4:92407 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:49337, - ns2:84420, - ns2:90604 ; - ns1:hasConnectionPoint ns2:49337, - ns2:84420, - ns2:90604 ; - ns4:airInlet ns2:90604 ; - ns4:airOutlet ns2:49337 ; + ns2:cnx ns4:49337, + ns4:84420, + ns4:90604 ; + ns2:hasConnectionPoint ns4:49337, + ns4:84420, + ns4:90604 ; + ns3:airInlet ns4:90604 ; + ns3:airOutlet ns4:49337 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:93231 a ns1:ActuatableProperty, - ns1:ConnectionPoint, - ns1:EnumerableProperty, - ns1:EnumeratedActuatableProperty, - ns1:InletConnectionPoint, - ns1:Property, - ns4:AirConnectionPoint ; +ns4:93231 a ns2:ActuatableProperty, + ns2:ConnectionPoint, + ns2:EnumerableProperty, + ns2:EnumeratedActuatableProperty, + ns2:InletConnectionPoint, + ns2:Property, + ns3:AirConnectionPoint ; rdfs:label "pre_filter.airInlet" ; - ns1:cnx ns2:15718, - ns2:42750 ; - ns1:connectsThrough ns2:42750 ; - ns1:hasEnumerationKind ns1:EnumerationKind-OnOff ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:15718 . - -ns2:94165 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:15718, + ns4:42750 ; + ns2:connectsThrough ns4:42750 ; + ns2:hasEnumerationKind ns2:EnumerationKind-OnOff ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:15718 . + +ns4:94165 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-2.airOutlet" ; - ns1:cnx ns2:12364, - ns2:69011 ; - ns1:connectsThrough ns2:12364 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:69011 . - -ns2:96546 a ns1:Connection, - ns1:PhysicalSpace ; + ns2:cnx ns4:12364, + ns4:69011 ; + ns2:connectsThrough ns4:12364 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:69011 . + +ns4:96546 a ns2:Connection, + ns2:PhysicalSpace ; rdfs:label "3018F" ; - ns1:cnx ns2:22612, - ns2:50969 ; - ns1:connectsAt ns2:22612, - ns2:50969 ; - ns1:connectsFrom ns2:25067 ; - ns1:connectsTo ns2:37899 ; - ns1:hasMedium . - -ns2:97030 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:22612, + ns4:50969 ; + ns2:connectsAt ns4:22612, + ns4:50969 ; + ns2:connectsFrom ns4:25067 ; + ns2:connectsTo ns4:37899 ; + ns2:hasMedium . + +ns4:97030 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:13038, - ns2:85384, - ns2:86202 ; - ns1:hasConnectionPoint ns2:13038, - ns2:85384, - ns2:86202 ; - ns4:airInlet ns2:85384 ; - ns4:airOutlet ns2:13038 ; + ns2:cnx ns4:13038, + ns4:85384, + ns4:86202 ; + ns2:hasConnectionPoint ns4:13038, + ns4:85384, + ns4:86202 ; + ns3:airInlet ns4:85384 ; + ns3:airOutlet ns4:13038 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:97033 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:97033 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:03898, - ns2:73870, - ns2:88293 ; - ns1:hasConnectionPoint ns2:03898, - ns2:73870, - ns2:88293 ; - ns4:airInlet ns2:03898 ; - ns4:airOutlet ns2:73870 ; + ns2:cnx ns4:03898, + ns4:73870, + ns4:88293 ; + ns2:hasConnectionPoint ns4:03898, + ns4:73870, + ns4:88293 ; + ns3:airInlet ns4:03898 ; + ns3:airOutlet ns4:73870 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:97393 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:97393 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-4.airOutlet" ; - ns1:cnx ns2:05888, - ns2:88818 ; - ns1:connectsThrough ns2:05888 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:88818 . - -ns2:97458 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05888, + ns4:88818 ; + ns2:connectsThrough ns4:05888 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:88818 . + +ns4:97458 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "G-21.airOutlet" ; - ns1:cnx ns2:27011, - ns2:34910 ; - ns1:connectsThrough ns2:34910 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:27011 . - -ns2:98308 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:27011, + ns4:34910 ; + ns2:connectsThrough ns4:34910 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:27011 . + +ns4:98308 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "0-17.airOutlet" ; - ns1:cnx ns2:16401, - ns2:34533 ; - ns1:connectsThrough ns2:16401 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34533 . - -ns2:99209 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16401, + ns4:34533 ; + ns2:connectsThrough ns4:16401 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34533 . + +ns4:99209 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-3.airOutlet" ; - ns1:cnx ns2:16890, - ns2:97674 ; - ns1:connectsThrough ns2:16890 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97674 . - -ns2:99287 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:16890, + ns4:97674 ; + ns2:connectsThrough ns4:16890 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97674 . + +ns4:99287 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-98.airInlet" ; - ns1:cnx ns2:43211, - ns2:47956 ; - ns1:connectsThrough ns2:43211 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:47956 . - -ns2:99388 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:43211, + ns4:47956 ; + ns2:connectsThrough ns4:43211 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:47956 . + +ns4:99388 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "1-58B.airInlet" ; - ns1:cnx ns2:02070, - ns2:61942 ; - ns1:connectsThrough ns2:61942 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:02070 . - -ns2:99455 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02070, + ns4:61942 ; + ns2:connectsThrough ns4:61942 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:02070 . + +ns4:99455 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-05.airInlet" ; - ns1:cnx ns2:09596, - ns2:95765 ; - ns1:connectsThrough ns2:09596 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:95765 . - -ns2:99976 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:09596, + ns4:95765 ; + ns2:connectsThrough ns4:09596 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:95765 . + +ns4:99976 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:32040, - ns2:38290, - ns2:94875 ; - ns1:hasConnectionPoint ns2:32040, - ns2:38290, - ns2:94875 ; - ns4:airInlet ns2:38290 ; - ns4:airOutlet ns2:32040 ; + ns2:cnx ns4:32040, + ns4:38290, + ns4:94875 ; + ns2:hasConnectionPoint ns4:32040, + ns4:38290, + ns4:94875 ; + ns3:airInlet ns4:38290 ; + ns3:airOutlet ns4:32040 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:00808 a ns1:Connectable, - ns1:Damper, - ns1:Equipment ; +ns4:00808 a ns2:Connectable, + ns2:Damper, + ns2:Equipment ; rdfs:label "iso_damper" ; - ns1:cnx ns2:03929, - ns2:55505 ; - ns1:connected ns2:11624 ; - ns1:connectedFrom ns2:11624 ; - ns1:connectedThrough ns2:83407 ; - ns1:hasConnectionPoint ns2:03929, - ns2:55505 ; - ns4:airInlet ns2:55505 ; - ns4:airOutlet ns2:03929 ; + ns2:cnx ns4:03929, + ns4:55505 ; + ns2:connected ns4:11624 ; + ns2:connectedFrom ns4:11624 ; + ns2:connectedThrough ns4:83407 ; + ns2:hasConnectionPoint ns4:03929, + ns4:55505 ; + ns3:airInlet ns4:55505 ; + ns3:airOutlet ns4:03929 ; rdfs:comment "iso_damper" . -ns2:01128 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:01128 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "01128" ; - ns1:cnx ns2:15450, - ns2:29599, - ns2:36630, - ns2:77070 ; - ns1:connectsThrough ns2:15450, - ns2:36630 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:29599, - ns2:77070 . - -ns2:03999 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:15450, + ns4:29599, + ns4:36630, + ns4:77070 ; + ns2:connectsThrough ns4:15450, + ns4:36630 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:29599, + ns4:77070 . + +ns4:03999 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:22687, - ns2:36713, - ns2:58953 ; - ns1:hasConnectionPoint ns2:22687, - ns2:36713, - ns2:58953 ; - ns1:isConnectionPointOf ns2:58953 ; - ns4:airInlet ns2:22687 ; - ns4:airOutlet ns2:58953 ; + ns2:cnx ns4:22687, + ns4:36713, + ns4:58953 ; + ns2:hasConnectionPoint ns4:22687, + ns4:36713, + ns4:58953 ; + ns2:isConnectionPointOf ns4:58953 ; + ns3:airInlet ns4:22687 ; + ns3:airOutlet ns4:58953 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:04201 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:04201 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "5-87.airOutlet" ; - ns1:cnx ns2:06115, - ns2:51853 ; - ns1:connectsThrough ns2:06115, - ns2:51853 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:51853 . - -ns2:06081 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns1:PhysicalSpace, - ns4:AirConnectionPoint ; + ns2:cnx ns4:06115, + ns4:51853 ; + ns2:connectsThrough ns4:06115, + ns4:51853 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:51853 . + +ns4:06081 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns2:PhysicalSpace, + ns3:AirConnectionPoint ; rdfs:label "1304", "G-5.airInlet" ; - ns1:cnx ns2:03724, - ns2:54936 ; - ns1:connectsThrough ns2:54936 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03724 . - -ns2:14119 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; + ns2:cnx ns4:03724, + ns4:54936 ; + ns2:connectsThrough ns4:54936 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03724 . + +ns4:14119 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "oa_damper" ; - ns1:cnx ns2:18751, - ns2:51721 ; - ns1:connected ns2:77251 ; - ns1:connectedThrough ns2:44139 ; - ns1:connectedTo ns2:77251 ; - ns1:hasConnectionPoint ns2:18751, - ns2:51721 ; - ns1:hasProperty ns2:79838, - ns2:84590 ; - ns2:positionCommand ns2:79838 ; - ns2:positionFeedback ns2:84590 ; - ns4:airInlet ns2:18751 ; - ns4:airOutlet ns2:51721 ; + ns2:cnx ns4:18751, + ns4:51721 ; + ns2:connected ns4:77251 ; + ns2:connectedThrough ns4:44139 ; + ns2:connectedTo ns4:77251 ; + ns2:hasConnectionPoint ns4:18751, + ns4:51721 ; + ns2:hasProperty ns4:79838, + ns4:84590 ; + ns4:positionCommand ns4:79838 ; + ns4:positionFeedback ns4:84590 ; + ns3:airInlet ns4:18751 ; + ns3:airOutlet ns4:51721 ; rdfs:comment "outside_air_damper" . -ns2:17322 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:17322 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "Floor_1.CoreZone.core_space_7.airOutlet", "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:33562, - ns2:44036, - ns2:84040 ; - ns1:connectsThrough ns2:33562 ; - ns1:hasMedium , + ns2:cnx ns4:33562, + ns4:44036, + ns4:84040 ; + ns2:connectsThrough ns4:33562 ; + ns2:hasMedium , ; - ns1:isConnectionPointOf ns2:44036, - ns2:84040 . + ns2:isConnectionPointOf ns4:44036, + ns4:84040 . -ns2:22732 a ns1:Connectable, - ns1:Damper, - ns1:Equipment ; +ns4:22732 a ns2:Connectable, + ns2:Damper, + ns2:Equipment ; rdfs:label "iso_damper" ; - ns1:cnx ns2:27363, - ns2:61821 ; - ns1:connected ns2:06502 ; - ns1:connectedFrom ns2:06502 ; - ns1:connectedThrough ns2:40409 ; - ns1:hasConnectionPoint ns2:27363, - ns2:61821 ; - ns4:airInlet ns2:27363 ; - ns4:airOutlet ns2:61821 ; + ns2:cnx ns4:27363, + ns4:61821 ; + ns2:connected ns4:06502 ; + ns2:connectedFrom ns4:06502 ; + ns2:connectedThrough ns4:40409 ; + ns2:hasConnectionPoint ns4:27363, + ns4:61821 ; + ns3:airInlet ns4:27363 ; + ns3:airOutlet ns4:61821 ; rdfs:comment "iso_damper" . -ns2:30993 a ns1:Connection, - ns1:PhysicalSpace ; +ns4:30993 a ns2:Connection, + ns2:PhysicalSpace ; rdfs:label "9251E" ; - ns1:cnx ns2:00617, - ns2:22932 ; - ns1:connectsAt ns2:00617, - ns2:22932 ; - ns1:connectsFrom ns2:05342 ; - ns1:connectsTo ns2:87570 ; - ns1:hasMedium . - -ns2:35505 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; + ns2:cnx ns4:00617, + ns4:22932 ; + ns2:connectsAt ns4:00617, + ns4:22932 ; + ns2:connectsFrom ns4:05342 ; + ns2:connectsTo ns4:87570 ; + ns2:hasMedium . + +ns4:35505 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "oa_damper" ; - ns1:cnx ns2:04041, - ns2:77862 ; - ns1:connected ns2:54792 ; - ns1:connectedThrough ns2:83653 ; - ns1:connectedTo ns2:54792 ; - ns1:hasConnectionPoint ns2:04041, - ns2:77862 ; - ns1:hasProperty ns2:27001, - ns2:56226 ; - ns2:positionCommand ns2:56226 ; - ns2:positionFeedback ns2:27001 ; - ns4:airInlet ns2:04041 ; - ns4:airOutlet ns2:77862 ; + ns2:cnx ns4:04041, + ns4:77862 ; + ns2:connected ns4:54792 ; + ns2:connectedThrough ns4:83653 ; + ns2:connectedTo ns4:54792 ; + ns2:hasConnectionPoint ns4:04041, + ns4:77862 ; + ns2:hasProperty ns4:27001, + ns4:56226 ; + ns4:positionCommand ns4:56226 ; + ns4:positionFeedback ns4:27001 ; + ns3:airInlet ns4:04041 ; + ns3:airOutlet ns4:77862 ; rdfs:comment "outside_air_damper" . -ns2:35561 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:35561 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "35561" ; - ns1:cnx ns2:10117, - ns2:24336, - ns2:25291, - ns2:88028 ; - ns1:connectsThrough ns2:24336, - ns2:25291 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:10117, - ns2:88028 . - -ns2:51238 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; + ns2:cnx ns4:10117, + ns4:24336, + ns4:25291, + ns4:88028 ; + ns2:connectsThrough ns4:24336, + ns4:25291 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:10117, + ns4:88028 . + +ns4:51238 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "oa_damper" ; - ns1:cnx ns2:68313, - ns2:85649 ; - ns1:connected ns2:73249 ; - ns1:connectedThrough ns2:75183 ; - ns1:connectedTo ns2:73249 ; - ns1:hasConnectionPoint ns2:68313, - ns2:85649 ; - ns1:hasProperty ns2:07438, - ns2:27323 ; - ns2:positionCommand ns2:07438 ; - ns2:positionFeedback ns2:27323 ; - ns4:airInlet ns2:68313 ; - ns4:airOutlet ns2:85649 ; + ns2:cnx ns4:68313, + ns4:85649 ; + ns2:connected ns4:73249 ; + ns2:connectedThrough ns4:75183 ; + ns2:connectedTo ns4:73249 ; + ns2:hasConnectionPoint ns4:68313, + ns4:85649 ; + ns2:hasProperty ns4:07438, + ns4:27323 ; + ns4:positionCommand ns4:07438 ; + ns4:positionFeedback ns4:27323 ; + ns3:airInlet ns4:68313 ; + ns3:airOutlet ns4:85649 ; rdfs:comment "outside_air_damper" . -ns2:53679 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; +ns4:53679 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "oa_damper" ; - ns1:cnx ns2:01882, - ns2:34128 ; - ns1:connected ns2:34392 ; - ns1:connectedThrough ns2:56341 ; - ns1:connectedTo ns2:34392 ; - ns1:hasConnectionPoint ns2:01882, - ns2:34128 ; - ns1:hasProperty ns2:22925, - ns2:73168 ; - ns2:positionCommand ns2:73168 ; - ns2:positionFeedback ns2:22925 ; - ns4:airInlet ns2:34128 ; - ns4:airOutlet ns2:01882 ; + ns2:cnx ns4:01882, + ns4:34128 ; + ns2:connected ns4:34392 ; + ns2:connectedThrough ns4:56341 ; + ns2:connectedTo ns4:34392 ; + ns2:hasConnectionPoint ns4:01882, + ns4:34128 ; + ns2:hasProperty ns4:22925, + ns4:73168 ; + ns4:positionCommand ns4:73168 ; + ns4:positionFeedback ns4:22925 ; + ns3:airInlet ns4:34128 ; + ns3:airOutlet ns4:01882 ; rdfs:comment "outside_air_damper" . -ns2:56887 a ns1:Connection ; +ns4:56887 a ns2:Connection ; rdfs:label "56887" ; - ns1:cnx ns2:97969, - ns2:98539 ; - ns1:connectsAt ns2:97969, - ns2:98539 ; - ns1:connectsFrom ns2:03055 ; - ns1:connectsTo ns2:05971 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97969, - ns2:98539 . - -ns2:57368 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:97969, + ns4:98539 ; + ns2:connectsAt ns4:97969, + ns4:98539 ; + ns2:connectsFrom ns4:03055 ; + ns2:connectsTo ns4:05971 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97969, + ns4:98539 . + +ns4:57368 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "fan.airInlet", "hw_coil.airInlet" ; - ns1:cnx ns2:34355, - ns2:79346, - ns2:97321 ; - ns1:connectsThrough ns2:79346 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34355, - ns2:97321 ; - ns1:mapsTo ns2:06299 . - -ns2:73704 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:HotWaterConnectionPoint, - ns4:WaterConnectionPoint ; + ns2:cnx ns4:34355, + ns4:79346, + ns4:97321 ; + ns2:connectsThrough ns4:79346 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34355, + ns4:97321 ; + ns2:mapsTo ns4:06299 . + +ns4:73704 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:HotWaterConnectionPoint, + ns3:WaterConnectionPoint ; rdfs:label "hw_coil.hotWaterInlet", "hw_valve.waterInlet" ; - ns1:cnx ns2:15067, - ns2:77276, - ns2:83428 ; - ns1:connectsThrough ns2:77276 ; - ns1:hasMedium , + ns2:cnx ns4:15067, + ns4:77276, + ns4:83428 ; + ns2:connectsThrough ns4:77276 ; + ns2:hasMedium , ; - ns1:isConnectionPointOf ns2:15067, - ns2:83428 . + ns2:isConnectionPointOf ns4:15067, + ns4:83428 . -ns2:75966 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:75966 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:48091, - ns2:54585, - ns2:87421 ; - ns1:hasConnectionPoint ns2:48091, - ns2:54585, - ns2:87421 ; - ns1:isConnectionPointOf ns2:87421 ; - ns4:airInlet ns2:48091 ; - ns4:airOutlet ns2:87421 ; + ns2:cnx ns4:48091, + ns4:54585, + ns4:87421 ; + ns2:hasConnectionPoint ns4:48091, + ns4:54585, + ns4:87421 ; + ns2:isConnectionPointOf ns4:87421 ; + ns3:airInlet ns4:48091 ; + ns3:airOutlet ns4:87421 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:81406 a ns1:Connectable, - ns1:Damper, - ns1:Equipment ; +ns4:81406 a ns2:Connectable, + ns2:Damper, + ns2:Equipment ; rdfs:label "iso_damper" ; - ns1:cnx ns2:36453, - ns2:62707 ; - ns1:connected ns2:46907 ; - ns1:connectedFrom ns2:46907 ; - ns1:connectedThrough ns2:00543 ; - ns1:hasConnectionPoint ns2:36453, - ns2:62707 ; - ns4:airInlet ns2:62707 ; - ns4:airOutlet ns2:36453 ; + ns2:cnx ns4:36453, + ns4:62707 ; + ns2:connected ns4:46907 ; + ns2:connectedFrom ns4:46907 ; + ns2:connectedThrough ns4:00543 ; + ns2:hasConnectionPoint ns4:36453, + ns4:62707 ; + ns3:airInlet ns4:62707 ; + ns3:airOutlet ns4:36453 ; rdfs:comment "iso_damper" . -ns2:83549 a ns1:Connectable, - ns1:Damper, - ns1:Equipment ; +ns4:83549 a ns2:Connectable, + ns2:Damper, + ns2:Equipment ; rdfs:label "iso_damper" ; - ns1:cnx ns2:08733, - ns2:72960 ; - ns1:connected ns2:07924 ; - ns1:connectedFrom ns2:07924 ; - ns1:connectedThrough ns2:63755 ; - ns1:hasConnectionPoint ns2:08733, - ns2:72960 ; - ns4:airInlet ns2:08733 ; - ns4:airOutlet ns2:72960 ; + ns2:cnx ns4:08733, + ns4:72960 ; + ns2:connected ns4:07924 ; + ns2:connectedFrom ns4:07924 ; + ns2:connectedThrough ns4:63755 ; + ns2:hasConnectionPoint ns4:08733, + ns4:72960 ; + ns3:airInlet ns4:08733 ; + ns3:airOutlet ns4:72960 ; rdfs:comment "iso_damper" . -ns2:86007 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; +ns4:86007 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:09848, - ns2:59407, - ns2:69552 ; - ns1:connectsThrough ns2:69552 ; - ns1:hasConnectionPoint ns2:09848, - ns2:59407, - ns2:69552 ; - ns4:airInlet ns2:59407 ; - ns4:airOutlet ns2:09848 ; + ns2:cnx ns4:09848, + ns4:59407, + ns4:69552 ; + ns2:connectsThrough ns4:69552 ; + ns2:hasConnectionPoint ns4:09848, + ns4:59407, + ns4:69552 ; + ns3:airInlet ns4:59407 ; + ns3:airOutlet ns4:09848 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:88207 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:88207 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "5-10.airInlet" ; - ns1:cnx ns2:42481, - ns2:51853 ; - ns1:connectsThrough ns2:42481, - ns2:51853 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:51853 . - -ns2:02277 a ns1:Connection, - ns1:PhysicalSpace ; + ns2:cnx ns4:42481, + ns4:51853 ; + ns2:connectsThrough ns4:42481, + ns4:51853 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:51853 . + +ns4:02277 a ns2:Connection, + ns2:PhysicalSpace ; rdfs:label "6503B" ; - ns1:cnx ns2:78608, - ns2:89815 ; - ns1:connectsAt ns2:78608, - ns2:89815 ; - ns1:connectsFrom ns2:68016 ; - ns1:connectsTo ns2:80838 ; - ns1:hasMedium . - -ns2:08315 a ns1:Connection ; + ns2:cnx ns4:78608, + ns4:89815 ; + ns2:connectsAt ns4:78608, + ns4:89815 ; + ns2:connectsFrom ns4:68016 ; + ns2:connectsTo ns4:80838 ; + ns2:hasMedium . + +ns4:08315 a ns2:Connection ; rdfs:label "RTU_5.return_air" ; - ns1:cnx ns2:18531, - ns2:54692, - ns2:69130 ; - ns1:connectsAt ns2:18531, - ns2:54692, - ns2:69130 ; - ns1:connectsFrom ns2:93276, - ns2:98159 ; - ns1:connectsTo ns2:69576 ; - ns1:hasMedium . - -ns2:11125 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; + ns2:cnx ns4:18531, + ns4:54692, + ns4:69130 ; + ns2:connectsAt ns4:18531, + ns4:54692, + ns4:69130 ; + ns2:connectsFrom ns4:93276, + ns4:98159 ; + ns2:connectsTo ns4:69576 ; + ns2:hasMedium . + +ns4:11125 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "ea_damper" ; - ns1:cnx ns2:09442, - ns2:20014 ; - ns1:connected ns2:18339, - ns2:51341 ; - ns1:connectedFrom ns2:18339 ; - ns1:connectedThrough ns2:36823 ; - ns1:hasConnectionPoint ns2:09442, - ns2:20014 ; - ns1:hasProperty ns2:17906, - ns2:27765 ; - ns1:hasRole ns1:Role-Exhaust ; - ns2:positionCommand ns2:27765 ; - ns2:positionFeedback ns2:17906 ; - ns4:airInlet ns2:09442 ; - ns4:airOutlet ns2:20014 ; + ns2:cnx ns4:09442, + ns4:20014 ; + ns2:connected ns4:18339, + ns4:51341 ; + ns2:connectedFrom ns4:18339 ; + ns2:connectedThrough ns4:36823 ; + ns2:hasConnectionPoint ns4:09442, + ns4:20014 ; + ns2:hasProperty ns4:17906, + ns4:27765 ; + ns2:hasRole ns2:Role-Exhaust ; + ns4:positionCommand ns4:27765 ; + ns4:positionFeedback ns4:17906 ; + ns3:airInlet ns4:09442 ; + ns3:airOutlet ns4:20014 ; rdfs:comment "exhaust_air_damper" . -ns2:11294 a ns1:Connection ; +ns4:11294 a ns2:Connection ; rdfs:label "RTU_8.supply_air" ; - ns1:cnx ns2:04646, - ns2:25319, - ns2:77220 ; - ns1:connectsAt ns2:04646, - ns2:25319, - ns2:77220 ; - ns1:connectsFrom ns2:69576 ; - ns1:connectsTo ns2:10117, - ns2:50126 ; - ns1:hasMedium . - -ns2:15832 a ns1:Connection ; + ns2:cnx ns4:04646, + ns4:25319, + ns4:77220 ; + ns2:connectsAt ns4:04646, + ns4:25319, + ns4:77220 ; + ns2:connectsFrom ns4:69576 ; + ns2:connectsTo ns4:10117, + ns4:50126 ; + ns2:hasMedium . + +ns4:15832 a ns2:Connection ; rdfs:label "RTU_9.chilled_air" ; - ns1:cnx ns2:05873, - ns2:62103, - ns2:80383 ; - ns1:connectsAt ns2:05873, - ns2:62103, - ns2:80383 ; - ns1:connectsFrom ns2:47395, - ns2:92197 ; - ns1:connectsTo ns2:17912 ; - ns1:hasMedium . - -ns2:20563 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns1:PhysicalSpace, - ns4:AirConnectionPoint ; + ns2:cnx ns4:05873, + ns4:62103, + ns4:80383 ; + ns2:connectsAt ns4:05873, + ns4:62103, + ns4:80383 ; + ns2:connectsFrom ns4:47395, + ns4:92197 ; + ns2:connectsTo ns4:17912 ; + ns2:hasMedium . + +ns4:20563 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns2:PhysicalSpace, + ns3:AirConnectionPoint ; rdfs:label "2-30.airInlet", "4452A" ; - ns1:cnx ns2:34533, - ns2:52944 ; - ns1:connectsThrough ns2:52944 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:34533 . + ns2:cnx ns4:34533, + ns4:52944 ; + ns2:connectsThrough ns4:52944 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:34533 . -ns2:21343 a ns1:Connection ; +ns4:21343 a ns2:Connection ; rdfs:label "RTU_5.prefilter_air" ; - ns1:cnx ns2:15204, - ns2:69394, - ns2:70423 ; - ns1:connectsAt ns2:15204, - ns2:69394, - ns2:70423 ; - ns1:connectsFrom ns2:84053 ; - ns1:connectsTo ns2:45817, - ns2:57522 ; - ns1:hasMedium . - -ns2:25082 a ns1:Connection ; + ns2:cnx ns4:15204, + ns4:69394, + ns4:70423 ; + ns2:connectsAt ns4:15204, + ns4:69394, + ns4:70423 ; + ns2:connectsFrom ns4:84053 ; + ns2:connectsTo ns4:45817, + ns4:57522 ; + ns2:hasMedium . + +ns4:25082 a ns2:Connection ; rdfs:label "RTU_1.supply_air" ; - ns1:cnx ns2:21587, - ns2:30223, - ns2:47100 ; - ns1:connectsAt ns2:21587, - ns2:30223, - ns2:47100 ; - ns1:connectsFrom ns2:05785 ; - ns1:connectsTo ns2:06275, - ns2:42308 ; - ns1:hasMedium . - -ns2:26559 a ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint, - ns4:HotWaterConnectionPoint ; + ns2:cnx ns4:21587, + ns4:30223, + ns4:47100 ; + ns2:connectsAt ns4:21587, + ns4:30223, + ns4:47100 ; + ns2:connectsFrom ns4:05785 ; + ns2:connectsTo ns4:06275, + ns4:42308 ; + ns2:hasMedium . + +ns4:26559 a ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "RTU_9.returnAirInlet", "hw_coil.hotWaterInlet" ; - ns1:cnx ns2:05785, - ns2:68886, - ns2:97787 ; - ns1:connectsThrough ns2:97787 ; - ns1:hasMedium , + ns2:cnx ns4:05785, + ns4:68886, + ns4:97787 ; + ns2:connectsThrough ns4:97787 ; + ns2:hasMedium , ; - ns1:isConnectionPointOf ns2:05785, - ns2:68886 . + ns2:isConnectionPointOf ns4:05785, + ns4:68886 . -ns2:30777 a ns1:Connection ; +ns4:30777 a ns2:Connection ; rdfs:label "RTU_2.supply_air" ; - ns1:cnx ns2:08292, - ns2:30900, - ns2:89919 ; - ns1:connectsAt ns2:08292, - ns2:30900, - ns2:89919 ; - ns1:connectsFrom ns2:55672 ; - ns1:connectsTo ns2:77070, - ns2:88028 ; - ns1:hasMedium . - -ns2:40562 a ns1:Connection ; + ns2:cnx ns4:08292, + ns4:30900, + ns4:89919 ; + ns2:connectsAt ns4:08292, + ns4:30900, + ns4:89919 ; + ns2:connectsFrom ns4:55672 ; + ns2:connectsTo ns4:77070, + ns4:88028 ; + ns2:hasMedium . + +ns4:40562 a ns2:Connection ; rdfs:label "RTU_2.prefilter_air" ; - ns1:cnx ns2:14012, - ns2:14994, - ns2:40727 ; - ns1:connectsAt ns2:14012, - ns2:14994, - ns2:40727 ; - ns1:connectsFrom ns2:64314 ; - ns1:connectsTo ns2:58489, - ns2:92865 ; - ns1:hasMedium . - -ns2:42612 a ns1:Connection ; + ns2:cnx ns4:14012, + ns4:14994, + ns4:40727 ; + ns2:connectsAt ns4:14012, + ns4:14994, + ns4:40727 ; + ns2:connectsFrom ns4:64314 ; + ns2:connectsTo ns4:58489, + ns4:92865 ; + ns2:hasMedium . + +ns4:42612 a ns2:Connection ; rdfs:label "RTU_4.chilled_air" ; - ns1:cnx ns2:44137, - ns2:64177, - ns2:73777 ; - ns1:connectsAt ns2:44137, - ns2:64177, - ns2:73777 ; - ns1:connectsFrom ns2:57776, - ns2:62986 ; - ns1:connectsTo ns2:61372 ; - ns1:hasMedium . - -ns2:48176 a ns1:Connection ; + ns2:cnx ns4:44137, + ns4:64177, + ns4:73777 ; + ns2:connectsAt ns4:44137, + ns4:64177, + ns4:73777 ; + ns2:connectsFrom ns4:57776, + ns4:62986 ; + ns2:connectsTo ns4:61372 ; + ns2:hasMedium . + +ns4:48176 a ns2:Connection ; rdfs:label "RTU_8.chilled_air" ; - ns1:cnx ns2:20866, - ns2:40095, - ns2:55013 ; - ns1:connectsAt ns2:20866, - ns2:40095, - ns2:55013 ; - ns1:connectsFrom ns2:45817, - ns2:57522 ; - ns1:connectsTo ns2:79897 ; - ns1:hasMedium . - -ns2:49730 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; + ns2:cnx ns4:20866, + ns4:40095, + ns4:55013 ; + ns2:connectsAt ns4:20866, + ns4:40095, + ns4:55013 ; + ns2:connectsFrom ns4:45817, + ns4:57522 ; + ns2:connectsTo ns4:79897 ; + ns2:hasMedium . + +ns4:49730 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "ea_damper" ; - ns1:cnx ns2:49369, - ns2:89999 ; - ns1:connected ns2:31173, - ns2:34927 ; - ns1:connectedFrom ns2:34927 ; - ns1:connectedThrough ns2:90476 ; - ns1:hasConnectionPoint ns2:49369, - ns2:89999 ; - ns1:hasProperty ns2:12129, - ns2:17615 ; - ns1:hasRole ns1:Role-Exhaust ; - ns2:positionCommand ns2:12129 ; - ns2:positionFeedback ns2:17615 ; - ns4:airInlet ns2:89999 ; - ns4:airOutlet ns2:49369 ; + ns2:cnx ns4:49369, + ns4:89999 ; + ns2:connected ns4:31173, + ns4:34927 ; + ns2:connectedFrom ns4:34927 ; + ns2:connectedThrough ns4:90476 ; + ns2:hasConnectionPoint ns4:49369, + ns4:89999 ; + ns2:hasProperty ns4:12129, + ns4:17615 ; + ns2:hasRole ns2:Role-Exhaust ; + ns4:positionCommand ns4:12129 ; + ns4:positionFeedback ns4:17615 ; + ns3:airInlet ns4:89999 ; + ns3:airOutlet ns4:49369 ; rdfs:comment "exhaust_air_damper" . -ns2:52992 a ns1:Connection ; +ns4:52992 a ns2:Connection ; rdfs:label "RTU_0.chilled_air" ; - ns1:cnx ns2:12002, - ns2:14188, - ns2:27827 ; - ns1:connectsAt ns2:12002, - ns2:14188, - ns2:27827 ; - ns1:connectsFrom ns2:58489, - ns2:92865 ; - ns1:connectsTo ns2:85645 ; - ns1:hasMedium . - -ns2:54185 a ns1:Connection ; + ns2:cnx ns4:12002, + ns4:14188, + ns4:27827 ; + ns2:connectsAt ns4:12002, + ns4:14188, + ns4:27827 ; + ns2:connectsFrom ns4:58489, + ns4:92865 ; + ns2:connectsTo ns4:85645 ; + ns2:hasMedium . + +ns4:54185 a ns2:Connection ; rdfs:label "RTU_8.prefilter_air" ; - ns1:cnx ns2:23310, - ns2:41833, - ns2:49498 ; - ns1:connectsAt ns2:23310, - ns2:41833, - ns2:49498 ; - ns1:connectsFrom ns2:07660 ; - ns1:connectsTo ns2:47395, - ns2:92197 ; - ns1:hasMedium . - -ns2:56948 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; + ns2:cnx ns4:23310, + ns4:41833, + ns4:49498 ; + ns2:connectsAt ns4:23310, + ns4:41833, + ns4:49498 ; + ns2:connectsFrom ns4:07660 ; + ns2:connectsTo ns4:47395, + ns4:92197 ; + ns2:hasMedium . + +ns4:56948 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "ea_damper" ; - ns1:cnx ns2:40109, - ns2:75434 ; - ns1:connected ns2:43438, - ns2:87637 ; - ns1:connectedFrom ns2:43438 ; - ns1:connectedThrough ns2:51136 ; - ns1:hasConnectionPoint ns2:40109, - ns2:75434 ; - ns1:hasProperty ns2:05937, - ns2:06517 ; - ns1:hasRole ns1:Role-Exhaust ; - ns2:positionCommand ns2:06517 ; - ns2:positionFeedback ns2:05937 ; - ns4:airInlet ns2:75434 ; - ns4:airOutlet ns2:40109 ; + ns2:cnx ns4:40109, + ns4:75434 ; + ns2:connected ns4:43438, + ns4:87637 ; + ns2:connectedFrom ns4:43438 ; + ns2:connectedThrough ns4:51136 ; + ns2:hasConnectionPoint ns4:40109, + ns4:75434 ; + ns2:hasProperty ns4:05937, + ns4:06517 ; + ns2:hasRole ns2:Role-Exhaust ; + ns4:positionCommand ns4:06517 ; + ns4:positionFeedback ns4:05937 ; + ns3:airInlet ns4:75434 ; + ns3:airOutlet ns4:40109 ; rdfs:comment "exhaust_air_damper" . -ns2:62659 a ns1:Connection ; +ns4:62659 a ns2:Connection ; rdfs:label "RTU_7.supply_air" ; - ns1:cnx ns2:02029, - ns2:70952, - ns2:96338 ; - ns1:connectsAt ns2:02029, - ns2:70952, - ns2:96338 ; - ns1:connectsFrom ns2:67780 ; - ns1:connectsTo ns2:05101, - ns2:05353 ; - ns1:hasMedium . - -ns2:64731 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns1:PhysicalSpace, - ns4:AirConnectionPoint ; + ns2:cnx ns4:02029, + ns4:70952, + ns4:96338 ; + ns2:connectsAt ns4:02029, + ns4:70952, + ns4:96338 ; + ns2:connectsFrom ns4:67780 ; + ns2:connectsTo ns4:05101, + ns4:05353 ; + ns2:hasMedium . + +ns4:64731 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns2:PhysicalSpace, + ns3:AirConnectionPoint ; rdfs:label "1672", "G-4.zone.returnOutlet" ; - ns1:cnx ns2:38917, - ns2:96506 ; - ns1:connectsThrough ns2:38917 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:96506 . - -ns2:69552 a ns1:Connection, - ns1:ConnectionPoint, - ns1:ElectricalConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:38917, + ns4:96506 ; + ns2:connectsThrough ns4:38917 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:96506 . + +ns4:69552 a ns2:Connection, + ns2:ConnectionPoint, + ns2:ElectricalConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "fan.electricalInlet" ; - ns1:cnx ns2:11204, - ns2:64361, - ns2:86007 ; - ns1:connectsAt ns2:11204, - ns2:64361, - ns2:86007 ; - ns1:connectsFrom ns2:06275 ; - ns1:connectsTo ns2:25047 ; - ns1:hasMedium , - ns1:Electro-Magnetic-Electricity ; - ns1:isConnectionPointOf ns2:86007 . - -ns2:78087 a ns1:Connection ; + ns2:cnx ns4:11204, + ns4:64361, + ns4:86007 ; + ns2:connectsAt ns4:11204, + ns4:64361, + ns4:86007 ; + ns2:connectsFrom ns4:06275 ; + ns2:connectsTo ns4:25047 ; + ns2:hasMedium , + ns2:Electro-Magnetic-Electricity ; + ns2:isConnectionPointOf ns4:86007 . + +ns4:78087 a ns2:Connection ; rdfs:label "RTU_8.return_air" ; - ns1:cnx ns2:01874, - ns2:02583, - ns2:27784 ; - ns1:connectsAt ns2:01874, - ns2:02583, - ns2:27784 ; - ns1:connectsFrom ns2:05175, - ns2:28911 ; - ns1:connectsTo ns2:67780 ; - ns1:hasMedium . - -ns2:00783 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:01874, + ns4:02583, + ns4:27784 ; + ns2:connectsAt ns4:01874, + ns4:02583, + ns4:27784 ; + ns2:connectsFrom ns4:05175, + ns4:28911 ; + ns2:connectsTo ns4:67780 ; + ns2:hasMedium . + +ns4:00783 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:63557, - ns2:66976, - ns2:82026 ; - ns1:connected ns2:68166 ; - ns1:connectedThrough ns2:57596 ; - ns1:connectedTo ns2:68166 ; - ns1:hasConnectionPoint ns2:63557, - ns2:66976, - ns2:82026 ; - ns1:hasProperty ns2:09921, - ns2:12022 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:12022 ; - ns2:speedFeedback ns2:09921 ; - ns4:airInlet ns2:82026 ; - ns4:airOutlet ns2:63557 ; + ns2:cnx ns4:63557, + ns4:66976, + ns4:82026 ; + ns2:connected ns4:68166 ; + ns2:connectedThrough ns4:57596 ; + ns2:connectedTo ns4:68166 ; + ns2:hasConnectionPoint ns4:63557, + ns4:66976, + ns4:82026 ; + ns2:hasProperty ns4:09921, + ns4:12022 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:12022 ; + ns4:speedFeedback ns4:09921 ; + ns3:airInlet ns4:82026 ; + ns3:airOutlet ns4:63557 ; rdfs:comment "supply_fan" . -ns2:01399 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:01399 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-60B" ; - ns1:cnx ns2:61520, - ns2:69790 ; - ns1:connected ns2:50126, - ns2:68534 ; - ns1:connectedFrom ns2:50126 ; - ns1:connectedThrough ns2:47474, - ns2:50742 ; - ns1:connectedTo ns2:68534 ; - ns1:contains ns2:49614, - ns2:56753, - ns2:59158, - ns2:73942 ; - ns1:hasConnectionPoint ns2:61520, - ns2:69790 ; - ns1:hasProperty ns2:28017, - ns2:60982 ; - ns2:airInlet ns2:61520 ; - ns2:airOutlet ns2:69790 . - -ns2:02070 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:61520, + ns4:69790 ; + ns2:connected ns4:50126, + ns4:68534 ; + ns2:connectedFrom ns4:50126 ; + ns2:connectedThrough ns4:47474, + ns4:50742 ; + ns2:connectedTo ns4:68534 ; + ns2:contains ns4:49614, + ns4:56753, + ns4:59158, + ns4:73942 ; + ns2:hasConnectionPoint ns4:61520, + ns4:69790 ; + ns2:hasProperty ns4:28017, + ns4:60982 ; + ns4:airInlet ns4:61520 ; + ns4:airOutlet ns4:69790 . + +ns4:02070 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "6-57B" ; - ns1:cnx ns2:84309, - ns2:99388 ; - ns1:connected ns2:69136, - ns2:88028 ; - ns1:connectedFrom ns2:88028 ; - ns1:connectedThrough ns2:61942, - ns2:70445 ; - ns1:connectedTo ns2:69136 ; - ns1:contains ns2:12438, - ns2:25674, - ns2:45992, - ns2:54708 ; - ns1:hasConnectionPoint ns2:84309, - ns2:99388 ; - ns1:hasProperty ns2:39127, - ns2:46033 ; - ns2:airInlet ns2:99388 ; - ns2:airOutlet ns2:84309 . - -ns2:02533 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:84309, + ns4:99388 ; + ns2:connected ns4:69136, + ns4:88028 ; + ns2:connectedFrom ns4:88028 ; + ns2:connectedThrough ns4:61942, + ns4:70445 ; + ns2:connectedTo ns4:69136 ; + ns2:contains ns4:12438, + ns4:25674, + ns4:45992, + ns4:54708 ; + ns2:hasConnectionPoint ns4:84309, + ns4:99388 ; + ns2:hasProperty ns4:39127, + ns4:46033 ; + ns4:airInlet ns4:99388 ; + ns4:airOutlet ns4:84309 . + +ns4:02533 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "4-9" ; - ns1:cnx ns2:33422, - ns2:82400 ; - ns1:connected ns2:05353, - ns2:93162 ; - ns1:connectedFrom ns2:05353 ; - ns1:connectedThrough ns2:73677, - ns2:87484 ; - ns1:connectedTo ns2:93162 ; - ns1:contains ns2:34134, - ns2:38627, - ns2:39604, - ns2:53221 ; - ns1:hasConnectionPoint ns2:33422, - ns2:82400 ; - ns1:hasProperty ns2:04802, - ns2:75459 ; - ns2:airInlet ns2:82400 ; - ns2:airOutlet ns2:33422 . - -ns2:02590 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:33422, + ns4:82400 ; + ns2:connected ns4:05353, + ns4:93162 ; + ns2:connectedFrom ns4:05353 ; + ns2:connectedThrough ns4:73677, + ns4:87484 ; + ns2:connectedTo ns4:93162 ; + ns2:contains ns4:34134, + ns4:38627, + ns4:39604, + ns4:53221 ; + ns2:hasConnectionPoint ns4:33422, + ns4:82400 ; + ns2:hasProperty ns4:04802, + ns4:75459 ; + ns4:airInlet ns4:82400 ; + ns4:airOutlet ns4:33422 . + +ns4:02590 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:53636, - ns2:61223, - ns2:67453 ; - ns1:connected ns2:72185 ; - ns1:connectedFrom ns2:72185 ; - ns1:connectedThrough ns2:37548 ; - ns1:hasConnectionPoint ns2:53636, - ns2:61223, - ns2:67453 ; - ns1:hasProperty ns2:41415, - ns2:66844 ; - ns4:linkageInlet ns2:61223 ; - ns4:waterInlet ns2:53636 ; - ns4:waterOutlet ns2:67453 ; + ns2:cnx ns4:53636, + ns4:61223, + ns4:67453 ; + ns2:connected ns4:72185 ; + ns2:connectedFrom ns4:72185 ; + ns2:connectedThrough ns4:37548 ; + ns2:hasConnectionPoint ns4:53636, + ns4:61223, + ns4:67453 ; + ns2:hasProperty ns4:41415, + ns4:66844 ; + ns3:linkageInlet ns4:61223 ; + ns3:waterInlet ns4:53636 ; + ns3:waterOutlet ns4:67453 ; rdfs:comment "hw_valve" . -ns2:02944 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:02944 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-68" ; - ns1:cnx ns2:07850, - ns2:11513 ; - ns1:connected ns2:50126, - ns2:78065 ; - ns1:connectedFrom ns2:50126 ; - ns1:connectedThrough ns2:25163, - ns2:77006 ; - ns1:connectedTo ns2:78065 ; - ns1:contains ns2:10658, - ns2:11099, - ns2:13867, - ns2:65374 ; - ns1:hasConnectionPoint ns2:07850, - ns2:11513 ; - ns1:hasProperty ns2:41388, - ns2:98153 ; - ns2:airInlet ns2:07850 ; - ns2:airOutlet ns2:11513 . - -ns2:03707 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:07850, + ns4:11513 ; + ns2:connected ns4:50126, + ns4:78065 ; + ns2:connectedFrom ns4:50126 ; + ns2:connectedThrough ns4:25163, + ns4:77006 ; + ns2:connectedTo ns4:78065 ; + ns2:contains ns4:10658, + ns4:11099, + ns4:13867, + ns4:65374 ; + ns2:hasConnectionPoint ns4:07850, + ns4:11513 ; + ns2:hasProperty ns4:41388, + ns4:98153 ; + ns4:airInlet ns4:07850 ; + ns4:airOutlet ns4:11513 . + +ns4:03707 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "7-6" ; - ns1:cnx ns2:03503, - ns2:51164 ; - ns1:connected ns2:10117, - ns2:58975 ; - ns1:connectedFrom ns2:10117 ; - ns1:connectedThrough ns2:79414, - ns2:93128 ; - ns1:connectedTo ns2:58975 ; - ns1:contains ns2:22040, - ns2:64435, - ns2:80730, - ns2:96809 ; - ns1:hasConnectionPoint ns2:03503, - ns2:51164 ; - ns1:hasProperty ns2:19137, - ns2:47769 ; - ns2:airInlet ns2:51164 ; - ns2:airOutlet ns2:03503 . - -ns2:03724 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:03503, + ns4:51164 ; + ns2:connected ns4:10117, + ns4:58975 ; + ns2:connectedFrom ns4:10117 ; + ns2:connectedThrough ns4:79414, + ns4:93128 ; + ns2:connectedTo ns4:58975 ; + ns2:contains ns4:22040, + ns4:64435, + ns4:80730, + ns4:96809 ; + ns2:hasConnectionPoint ns4:03503, + ns4:51164 ; + ns2:hasProperty ns4:19137, + ns4:47769 ; + ns4:airInlet ns4:51164 ; + ns4:airOutlet ns4:03503 . + +ns4:03724 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-8" ; - ns1:cnx ns2:06081, - ns2:30054 ; - ns1:connected ns2:47830, - ns2:50126 ; - ns1:connectedFrom ns2:50126 ; - ns1:connectedThrough ns2:30117, - ns2:54936 ; - ns1:connectedTo ns2:47830 ; - ns1:contains ns2:09900, - ns2:39513, - ns2:62855, - ns2:64318 ; - ns1:hasConnectionPoint ns2:06081, - ns2:30054 ; - ns1:hasProperty ns2:18527, - ns2:73917 ; - ns2:airInlet ns2:06081 ; - ns2:airOutlet ns2:30054 . - -ns2:04098 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:06081, + ns4:30054 ; + ns2:connected ns4:47830, + ns4:50126 ; + ns2:connectedFrom ns4:50126 ; + ns2:connectedThrough ns4:30117, + ns4:54936 ; + ns2:connectedTo ns4:47830 ; + ns2:contains ns4:09900, + ns4:39513, + ns4:62855, + ns4:64318 ; + ns2:hasConnectionPoint ns4:06081, + ns4:30054 ; + ns2:hasProperty ns4:18527, + ns4:73917 ; + ns4:airInlet ns4:06081 ; + ns4:airOutlet ns4:30054 . + +ns4:04098 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "5-66" ; - ns1:cnx ns2:10168, - ns2:51197 ; - ns1:connected ns2:70764, - ns2:88028 ; - ns1:connectedFrom ns2:88028 ; - ns1:connectedThrough ns2:20425, - ns2:92270 ; - ns1:connectedTo ns2:70764 ; - ns1:contains ns2:03999, - ns2:12418, - ns2:68886, - ns2:85916 ; - ns1:hasConnectionPoint ns2:10168, - ns2:51197 ; - ns1:hasProperty ns2:03036, - ns2:73096 ; - ns2:airInlet ns2:10168 ; - ns2:airOutlet ns2:51197 . - -ns2:05619 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:10168, + ns4:51197 ; + ns2:connected ns4:70764, + ns4:88028 ; + ns2:connectedFrom ns4:88028 ; + ns2:connectedThrough ns4:20425, + ns4:92270 ; + ns2:connectedTo ns4:70764 ; + ns2:contains ns4:03999, + ns4:12418, + ns4:68886, + ns4:85916 ; + ns2:hasConnectionPoint ns4:10168, + ns4:51197 ; + ns2:hasProperty ns4:03036, + ns4:73096 ; + ns4:airInlet ns4:10168 ; + ns4:airOutlet ns4:51197 . + +ns4:05619 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:00459, - ns2:53775, - ns2:96327 ; - ns1:connected ns2:19014 ; - ns1:connectedFrom ns2:19014 ; - ns1:connectedThrough ns2:24513 ; - ns1:hasConnectionPoint ns2:00459, - ns2:53775, - ns2:96327 ; - ns1:hasProperty ns2:94145, - ns2:98042 ; - ns4:linkageInlet ns2:96327 ; - ns4:waterInlet ns2:00459 ; - ns4:waterOutlet ns2:53775 ; + ns2:cnx ns4:00459, + ns4:53775, + ns4:96327 ; + ns2:connected ns4:19014 ; + ns2:connectedFrom ns4:19014 ; + ns2:connectedThrough ns4:24513 ; + ns2:hasConnectionPoint ns4:00459, + ns4:53775, + ns4:96327 ; + ns2:hasProperty ns4:94145, + ns4:98042 ; + ns3:linkageInlet ns4:96327 ; + ns3:waterInlet ns4:00459 ; + ns3:waterOutlet ns4:53775 ; rdfs:comment "hw_valve" . -ns2:06073 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:06073 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "8-37B" ; - ns1:cnx ns2:10653, - ns2:57804 ; - ns1:connected ns2:01240, - ns2:10117 ; - ns1:connectedFrom ns2:10117 ; - ns1:connectedThrough ns2:17729, - ns2:29115 ; - ns1:connectedTo ns2:01240 ; - ns1:contains ns2:15464, - ns2:68140, - ns2:79114, - ns2:80693 ; - ns1:hasConnectionPoint ns2:10653, - ns2:57804 ; - ns1:hasProperty ns2:15860, - ns2:73382 ; - ns2:airInlet ns2:10653 ; - ns2:airOutlet ns2:57804 . - -ns2:06962 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:10653, + ns4:57804 ; + ns2:connected ns4:01240, + ns4:10117 ; + ns2:connectedFrom ns4:10117 ; + ns2:connectedThrough ns4:17729, + ns4:29115 ; + ns2:connectedTo ns4:01240 ; + ns2:contains ns4:15464, + ns4:68140, + ns4:79114, + ns4:80693 ; + ns2:hasConnectionPoint ns4:10653, + ns4:57804 ; + ns2:hasProperty ns4:15860, + ns4:73382 ; + ns4:airInlet ns4:10653 ; + ns4:airOutlet ns4:57804 . + +ns4:06962 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "3-3" ; - ns1:cnx ns2:27223, - ns2:68285 ; - ns1:connected ns2:05353, - ns2:16454 ; - ns1:connectedFrom ns2:05353 ; - ns1:connectedThrough ns2:08368, - ns2:29089 ; - ns1:connectedTo ns2:16454 ; - ns1:contains ns2:09611, - ns2:73024, - ns2:87632, - ns2:95090 ; - ns1:hasConnectionPoint ns2:27223, - ns2:68285 ; - ns1:hasProperty ns2:47461, - ns2:51617 ; - ns2:airInlet ns2:27223 ; - ns2:airOutlet ns2:68285 . - -ns2:07544 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:27223, + ns4:68285 ; + ns2:connected ns4:05353, + ns4:16454 ; + ns2:connectedFrom ns4:05353 ; + ns2:connectedThrough ns4:08368, + ns4:29089 ; + ns2:connectedTo ns4:16454 ; + ns2:contains ns4:09611, + ns4:73024, + ns4:87632, + ns4:95090 ; + ns2:hasConnectionPoint ns4:27223, + ns4:68285 ; + ns2:hasProperty ns4:47461, + ns4:51617 ; + ns4:airInlet ns4:27223 ; + ns4:airOutlet ns4:68285 . + +ns4:07544 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "5-23D" ; - ns1:cnx ns2:09379, - ns2:42328 ; - ns1:connected ns2:88028, - ns2:91944 ; - ns1:connectedFrom ns2:88028 ; - ns1:connectedThrough ns2:82341, - ns2:89750 ; - ns1:connectedTo ns2:91944 ; - ns1:contains ns2:05619, - ns2:19014, - ns2:64887, - ns2:86007 ; - ns1:hasConnectionPoint ns2:09379, - ns2:42328 ; - ns1:hasProperty ns2:85360, - ns2:97697 ; - ns2:airInlet ns2:09379 ; - ns2:airOutlet ns2:42328 . - -ns2:07970 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:09379, + ns4:42328 ; + ns2:connected ns4:88028, + ns4:91944 ; + ns2:connectedFrom ns4:88028 ; + ns2:connectedThrough ns4:82341, + ns4:89750 ; + ns2:connectedTo ns4:91944 ; + ns2:contains ns4:05619, + ns4:19014, + ns4:64887, + ns4:86007 ; + ns2:hasConnectionPoint ns4:09379, + ns4:42328 ; + ns2:hasProperty ns4:85360, + ns4:97697 ; + ns4:airInlet ns4:09379 ; + ns4:airOutlet ns4:42328 . + +ns4:07970 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-40" ; - ns1:cnx ns2:20835, - ns2:70623 ; - ns1:connected ns2:50126, - ns2:98609 ; - ns1:connectedFrom ns2:50126 ; - ns1:connectedThrough ns2:29739, - ns2:71209 ; - ns1:connectedTo ns2:98609 ; - ns1:contains ns2:34781, - ns2:67388, - ns2:70230, - ns2:99976 ; - ns1:hasConnectionPoint ns2:20835, - ns2:70623 ; - ns1:hasProperty ns2:03631, - ns2:09214 ; - ns2:airInlet ns2:20835 ; - ns2:airOutlet ns2:70623 . - -ns2:08346 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:20835, + ns4:70623 ; + ns2:connected ns4:50126, + ns4:98609 ; + ns2:connectedFrom ns4:50126 ; + ns2:connectedThrough ns4:29739, + ns4:71209 ; + ns2:connectedTo ns4:98609 ; + ns2:contains ns4:34781, + ns4:67388, + ns4:70230, + ns4:99976 ; + ns2:hasConnectionPoint ns4:20835, + ns4:70623 ; + ns2:hasProperty ns4:03631, + ns4:09214 ; + ns4:airInlet ns4:20835 ; + ns4:airOutlet ns4:70623 . + +ns4:08346 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "4-97" ; - ns1:cnx ns2:04901, - ns2:26456 ; - ns1:connected ns2:10117, - ns2:13461 ; - ns1:connectedFrom ns2:10117 ; - ns1:connectedThrough ns2:18936, - ns2:43608 ; - ns1:connectedTo ns2:13461 ; - ns1:contains ns2:54101, - ns2:63295, - ns2:68474, - ns2:68951 ; - ns1:hasConnectionPoint ns2:04901, - ns2:26456 ; - ns1:hasProperty ns2:09070, - ns2:26969 ; - ns2:airInlet ns2:04901 ; - ns2:airOutlet ns2:26456 . - -ns2:08701 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:04901, + ns4:26456 ; + ns2:connected ns4:10117, + ns4:13461 ; + ns2:connectedFrom ns4:10117 ; + ns2:connectedThrough ns4:18936, + ns4:43608 ; + ns2:connectedTo ns4:13461 ; + ns2:contains ns4:54101, + ns4:63295, + ns4:68474, + ns4:68951 ; + ns2:hasConnectionPoint ns4:04901, + ns4:26456 ; + ns2:hasProperty ns4:09070, + ns4:26969 ; + ns4:airInlet ns4:04901 ; + ns4:airOutlet ns4:26456 . + +ns4:08701 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-2" ; - ns1:cnx ns2:10648, - ns2:53343 ; - ns1:connected ns2:50126, - ns2:69415 ; - ns1:connectedFrom ns2:50126 ; - ns1:connectedThrough ns2:33343, - ns2:88441 ; - ns1:connectedTo ns2:69415 ; - ns1:contains ns2:15477, - ns2:26427, - ns2:75582, - ns2:91853 ; - ns1:hasConnectionPoint ns2:10648, - ns2:53343 ; - ns1:hasProperty ns2:51996, - ns2:61786 ; - ns2:airInlet ns2:53343 ; - ns2:airOutlet ns2:10648 . - -ns2:09160 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:10648, + ns4:53343 ; + ns2:connected ns4:50126, + ns4:69415 ; + ns2:connectedFrom ns4:50126 ; + ns2:connectedThrough ns4:33343, + ns4:88441 ; + ns2:connectedTo ns4:69415 ; + ns2:contains ns4:15477, + ns4:26427, + ns4:75582, + ns4:91853 ; + ns2:hasConnectionPoint ns4:10648, + ns4:53343 ; + ns2:hasProperty ns4:51996, + ns4:61786 ; + ns4:airInlet ns4:53343 ; + ns4:airOutlet ns4:10648 . + +ns4:09160 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:74168, - ns2:85928, - ns2:95939 ; - ns1:connected ns2:31261 ; - ns1:connectedThrough ns2:30584 ; - ns1:connectedTo ns2:31261 ; - ns1:hasConnectionPoint ns2:74168, - ns2:85928, - ns2:95939 ; - ns1:hasProperty ns2:02628, - ns2:47428 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:47428 ; - ns2:speedFeedback ns2:02628 ; - ns4:airInlet ns2:85928 ; - ns4:airOutlet ns2:95939 ; + ns2:cnx ns4:74168, + ns4:85928, + ns4:95939 ; + ns2:connected ns4:31261 ; + ns2:connectedThrough ns4:30584 ; + ns2:connectedTo ns4:31261 ; + ns2:hasConnectionPoint ns4:74168, + ns4:85928, + ns4:95939 ; + ns2:hasProperty ns4:02628, + ns4:47428 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:47428 ; + ns4:speedFeedback ns4:02628 ; + ns3:airInlet ns4:85928 ; + ns3:airOutlet ns4:95939 ; rdfs:comment "supply_fan" . -ns2:09432 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:09432 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-60" ; - ns1:cnx ns2:04653, - ns2:88705 ; - ns1:connected ns2:06275, - ns2:15016 ; - ns1:connectedFrom ns2:06275 ; - ns1:connectedThrough ns2:30616, - ns2:66163 ; - ns1:connectedTo ns2:15016 ; - ns1:contains ns2:19107, - ns2:62383, - ns2:80276, - ns2:97033 ; - ns1:hasConnectionPoint ns2:04653, - ns2:88705 ; - ns1:hasProperty ns2:62715, - ns2:75613 ; - ns2:airInlet ns2:88705 ; - ns2:airOutlet ns2:04653 . - -ns2:12403 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:04653, + ns4:88705 ; + ns2:connected ns4:06275, + ns4:15016 ; + ns2:connectedFrom ns4:06275 ; + ns2:connectedThrough ns4:30616, + ns4:66163 ; + ns2:connectedTo ns4:15016 ; + ns2:contains ns4:19107, + ns4:62383, + ns4:80276, + ns4:97033 ; + ns2:hasConnectionPoint ns4:04653, + ns4:88705 ; + ns2:hasProperty ns4:62715, + ns4:75613 ; + ns4:airInlet ns4:88705 ; + ns4:airOutlet ns4:04653 . + +ns4:12403 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-3A" ; - ns1:cnx ns2:49121, - ns2:92322 ; - ns1:connected ns2:77070, - ns2:90402 ; - ns1:connectedFrom ns2:77070 ; - ns1:connectedThrough ns2:16382, - ns2:97029 ; - ns1:connectedTo ns2:90402 ; - ns1:contains ns2:04913, - ns2:55198, - ns2:61196, - ns2:84040 ; - ns1:hasConnectionPoint ns2:49121, - ns2:92322 ; - ns1:hasProperty ns2:27901, - ns2:81897 ; - ns2:airInlet ns2:49121 ; - ns2:airOutlet ns2:92322 . - -ns2:12418 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:49121, + ns4:92322 ; + ns2:connected ns4:77070, + ns4:90402 ; + ns2:connectedFrom ns4:77070 ; + ns2:connectedThrough ns4:16382, + ns4:97029 ; + ns2:connectedTo ns4:90402 ; + ns2:contains ns4:04913, + ns4:55198, + ns4:61196, + ns4:84040 ; + ns2:hasConnectionPoint ns4:49121, + ns4:92322 ; + ns2:hasProperty ns4:27901, + ns4:81897 ; + ns4:airInlet ns4:49121 ; + ns4:airOutlet ns4:92322 . + +ns4:12418 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:02800, - ns2:89063, - ns2:93084 ; - ns1:connected ns2:68886 ; - ns1:connectedThrough ns2:35841 ; - ns1:connectedTo ns2:68886 ; - ns1:hasConnectionPoint ns2:02800, - ns2:89063, - ns2:93084 ; - ns1:hasProperty ns2:14478, - ns2:64383 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:64383 ; - ns2:speedFeedback ns2:14478 ; - ns4:airInlet ns2:02800 ; - ns4:airOutlet ns2:89063 ; + ns2:cnx ns4:02800, + ns4:89063, + ns4:93084 ; + ns2:connected ns4:68886 ; + ns2:connectedThrough ns4:35841 ; + ns2:connectedTo ns4:68886 ; + ns2:hasConnectionPoint ns4:02800, + ns4:89063, + ns4:93084 ; + ns2:hasProperty ns4:14478, + ns4:64383 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:64383 ; + ns4:speedFeedback ns4:14478 ; + ns3:airInlet ns4:02800 ; + ns3:airOutlet ns4:89063 ; rdfs:comment "supply_fan" . -ns2:12438 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:12438 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:15209, - ns2:29207, - ns2:44875 ; - ns1:connected ns2:45992 ; - ns1:connectedThrough ns2:96963 ; - ns1:connectedTo ns2:45992 ; - ns1:hasConnectionPoint ns2:15209, - ns2:29207, - ns2:44875 ; - ns1:hasProperty ns2:29193, - ns2:99500 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:99500 ; - ns2:speedFeedback ns2:29193 ; - ns4:airInlet ns2:44875 ; - ns4:airOutlet ns2:15209 ; + ns2:cnx ns4:15209, + ns4:29207, + ns4:44875 ; + ns2:connected ns4:45992 ; + ns2:connectedThrough ns4:96963 ; + ns2:connectedTo ns4:45992 ; + ns2:hasConnectionPoint ns4:15209, + ns4:29207, + ns4:44875 ; + ns2:hasProperty ns4:29193, + ns4:99500 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:99500 ; + ns4:speedFeedback ns4:29193 ; + ns3:airInlet ns4:44875 ; + ns3:airOutlet ns4:15209 ; rdfs:comment "supply_fan" . -ns2:13590 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:13590 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:21028, - ns2:26025, - ns2:92902 ; - ns1:connected ns2:84620 ; - ns1:connectedThrough ns2:23324 ; - ns1:connectedTo ns2:84620 ; - ns1:hasConnectionPoint ns2:21028, - ns2:26025, - ns2:92902 ; - ns1:hasProperty ns2:18790, - ns2:67320 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:18790 ; - ns2:speedFeedback ns2:67320 ; - ns4:airInlet ns2:92902 ; - ns4:airOutlet ns2:21028 ; + ns2:cnx ns4:21028, + ns4:26025, + ns4:92902 ; + ns2:connected ns4:84620 ; + ns2:connectedThrough ns4:23324 ; + ns2:connectedTo ns4:84620 ; + ns2:hasConnectionPoint ns4:21028, + ns4:26025, + ns4:92902 ; + ns2:hasProperty ns4:18790, + ns4:67320 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:18790 ; + ns4:speedFeedback ns4:67320 ; + ns3:airInlet ns4:92902 ; + ns3:airOutlet ns4:21028 ; rdfs:comment "supply_fan" . -ns2:13867 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:13867 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:11473, - ns2:35388, - ns2:58036 ; - ns1:connected ns2:10658 ; - ns1:connectedThrough ns2:99824 ; - ns1:connectedTo ns2:10658 ; - ns1:hasConnectionPoint ns2:11473, - ns2:35388, - ns2:58036 ; - ns1:hasProperty ns2:20812, - ns2:35096 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:35096 ; - ns2:speedFeedback ns2:20812 ; - ns4:airInlet ns2:11473 ; - ns4:airOutlet ns2:35388 ; + ns2:cnx ns4:11473, + ns4:35388, + ns4:58036 ; + ns2:connected ns4:10658 ; + ns2:connectedThrough ns4:99824 ; + ns2:connectedTo ns4:10658 ; + ns2:hasConnectionPoint ns4:11473, + ns4:35388, + ns4:58036 ; + ns2:hasProperty ns4:20812, + ns4:35096 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:35096 ; + ns4:speedFeedback ns4:20812 ; + ns3:airInlet ns4:11473 ; + ns3:airOutlet ns4:35388 ; rdfs:comment "supply_fan" . -ns2:15243 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:15243 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "0-0A" ; - ns1:cnx ns2:22976, - ns2:65987 ; - ns1:connected ns2:79420, - ns2:88028 ; - ns1:connectedFrom ns2:88028 ; - ns1:connectedThrough ns2:24415, - ns2:94342 ; - ns1:connectedTo ns2:79420 ; - ns1:contains ns2:16343, - ns2:21910, - ns2:60462, - ns2:75966 ; - ns1:hasConnectionPoint ns2:22976, - ns2:65987 ; - ns1:hasProperty ns2:06899, - ns2:54247 ; - ns2:airInlet ns2:65987 ; - ns2:airOutlet ns2:22976 . - -ns2:15332 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:22976, + ns4:65987 ; + ns2:connected ns4:79420, + ns4:88028 ; + ns2:connectedFrom ns4:88028 ; + ns2:connectedThrough ns4:24415, + ns4:94342 ; + ns2:connectedTo ns4:79420 ; + ns2:contains ns4:16343, + ns4:21910, + ns4:60462, + ns4:75966 ; + ns2:hasConnectionPoint ns4:22976, + ns4:65987 ; + ns2:hasProperty ns4:06899, + ns4:54247 ; + ns4:airInlet ns4:65987 ; + ns4:airOutlet ns4:22976 . + +ns4:15332 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "4-5" ; - ns1:cnx ns2:40300, - ns2:47249 ; - ns1:connected ns2:05353, - ns2:43841 ; - ns1:connectedFrom ns2:05353 ; - ns1:connectedThrough ns2:19094, - ns2:48815 ; - ns1:connectedTo ns2:43841 ; - ns1:contains ns2:03254, - ns2:52728, - ns2:54463, - ns2:77457 ; - ns1:hasConnectionPoint ns2:40300, - ns2:47249 ; - ns1:hasProperty ns2:65088, - ns2:88395 ; - ns2:airInlet ns2:47249 ; - ns2:airOutlet ns2:40300 . - -ns2:15538 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:40300, + ns4:47249 ; + ns2:connected ns4:05353, + ns4:43841 ; + ns2:connectedFrom ns4:05353 ; + ns2:connectedThrough ns4:19094, + ns4:48815 ; + ns2:connectedTo ns4:43841 ; + ns2:contains ns4:03254, + ns4:52728, + ns4:54463, + ns4:77457 ; + ns2:hasConnectionPoint ns4:40300, + ns4:47249 ; + ns2:hasProperty ns4:65088, + ns4:88395 ; + ns4:airInlet ns4:47249 ; + ns4:airOutlet ns4:40300 . + +ns4:15538 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-48" ; - ns1:cnx ns2:07961, - ns2:29732 ; - ns1:connected ns2:06275, - ns2:10814 ; - ns1:connectedFrom ns2:06275 ; - ns1:connectedThrough ns2:41128, - ns2:64380 ; - ns1:connectedTo ns2:10814 ; - ns1:contains ns2:26426, - ns2:51893, - ns2:65015, - ns2:65381 ; - ns1:hasConnectionPoint ns2:07961, - ns2:29732 ; - ns1:hasProperty ns2:64552, - ns2:68703 ; - ns2:airInlet ns2:29732 ; - ns2:airOutlet ns2:07961 . - -ns2:16051 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:07961, + ns4:29732 ; + ns2:connected ns4:06275, + ns4:10814 ; + ns2:connectedFrom ns4:06275 ; + ns2:connectedThrough ns4:41128, + ns4:64380 ; + ns2:connectedTo ns4:10814 ; + ns2:contains ns4:26426, + ns4:51893, + ns4:65015, + ns4:65381 ; + ns2:hasConnectionPoint ns4:07961, + ns4:29732 ; + ns2:hasProperty ns4:64552, + ns4:68703 ; + ns4:airInlet ns4:29732 ; + ns4:airOutlet ns4:07961 . + +ns4:16051 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:04231, - ns2:31924, - ns2:33944 ; - ns1:connected ns2:97321 ; - ns1:connectedFrom ns2:97321 ; - ns1:connectedThrough ns2:77758 ; - ns1:hasConnectionPoint ns2:04231, - ns2:31924, - ns2:33944 ; - ns1:hasProperty ns2:13581, - ns2:84716 ; - ns4:linkageInlet ns2:04231 ; - ns4:waterInlet ns2:31924 ; - ns4:waterOutlet ns2:33944 ; + ns2:cnx ns4:04231, + ns4:31924, + ns4:33944 ; + ns2:connected ns4:97321 ; + ns2:connectedFrom ns4:97321 ; + ns2:connectedThrough ns4:77758 ; + ns2:hasConnectionPoint ns4:04231, + ns4:31924, + ns4:33944 ; + ns2:hasProperty ns4:13581, + ns4:84716 ; + ns3:linkageInlet ns4:04231 ; + ns3:waterInlet ns4:31924 ; + ns3:waterOutlet ns4:33944 ; rdfs:comment "hw_valve" . -ns2:17361 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:17361 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:56272, - ns2:61077, - ns2:85858 ; - ns1:connected ns2:55408 ; - ns1:connectedThrough ns2:92091 ; - ns1:connectedTo ns2:55408 ; - ns1:hasConnectionPoint ns2:56272, - ns2:61077, - ns2:85858 ; - ns1:hasProperty ns2:46632, - ns2:82091 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:46632 ; - ns2:speedFeedback ns2:82091 ; - ns4:airInlet ns2:56272 ; - ns4:airOutlet ns2:85858 ; + ns2:cnx ns4:56272, + ns4:61077, + ns4:85858 ; + ns2:connected ns4:55408 ; + ns2:connectedThrough ns4:92091 ; + ns2:connectedTo ns4:55408 ; + ns2:hasConnectionPoint ns4:56272, + ns4:61077, + ns4:85858 ; + ns2:hasProperty ns4:46632, + ns4:82091 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:46632 ; + ns4:speedFeedback ns4:82091 ; + ns3:airInlet ns4:56272 ; + ns3:airOutlet ns4:85858 ; rdfs:comment "supply_fan" . -ns2:18875 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:18875 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "3-47" ; - ns1:cnx ns2:31018, - ns2:89654 ; - ns1:connected ns2:42308, - ns2:43967 ; - ns1:connectedFrom ns2:42308 ; - ns1:connectedThrough ns2:07051, - ns2:42653 ; - ns1:connectedTo ns2:43967 ; - ns1:contains ns2:17586, - ns2:68016, - ns2:79421, - ns2:80838 ; - ns1:hasConnectionPoint ns2:31018, - ns2:89654 ; - ns1:hasProperty ns2:72380, - ns2:75984 ; - ns2:airInlet ns2:89654 ; - ns2:airOutlet ns2:31018 . - -ns2:20289 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:31018, + ns4:89654 ; + ns2:connected ns4:42308, + ns4:43967 ; + ns2:connectedFrom ns4:42308 ; + ns2:connectedThrough ns4:07051, + ns4:42653 ; + ns2:connectedTo ns4:43967 ; + ns2:contains ns4:17586, + ns4:68016, + ns4:79421, + ns4:80838 ; + ns2:hasConnectionPoint ns4:31018, + ns4:89654 ; + ns2:hasProperty ns4:72380, + ns4:75984 ; + ns4:airInlet ns4:89654 ; + ns4:airOutlet ns4:31018 . + +ns4:20289 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:20005, - ns2:31628, - ns2:76232 ; - ns1:connected ns2:25067 ; - ns1:connectedThrough ns2:61128 ; - ns1:connectedTo ns2:25067 ; - ns1:hasConnectionPoint ns2:20005, - ns2:31628, - ns2:76232 ; - ns1:hasProperty ns2:82137, - ns2:95123 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:82137 ; - ns2:speedFeedback ns2:95123 ; - ns4:airInlet ns2:31628 ; - ns4:airOutlet ns2:76232 ; + ns2:cnx ns4:20005, + ns4:31628, + ns4:76232 ; + ns2:connected ns4:25067 ; + ns2:connectedThrough ns4:61128 ; + ns2:connectedTo ns4:25067 ; + ns2:hasConnectionPoint ns4:20005, + ns4:31628, + ns4:76232 ; + ns2:hasProperty ns4:82137, + ns4:95123 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:82137 ; + ns4:speedFeedback ns4:95123 ; + ns3:airInlet ns4:31628 ; + ns3:airOutlet ns4:76232 ; rdfs:comment "supply_fan" . -ns2:21736 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:21736 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:00254, - ns2:34277, - ns2:83506 ; - ns1:connected ns2:74065 ; - ns1:connectedFrom ns2:74065 ; - ns1:connectedThrough ns2:93913 ; - ns1:hasConnectionPoint ns2:00254, - ns2:34277, - ns2:83506 ; - ns1:hasProperty ns2:18240, - ns2:43192 ; - ns4:linkageInlet ns2:83506 ; - ns4:waterInlet ns2:34277 ; - ns4:waterOutlet ns2:00254 ; + ns2:cnx ns4:00254, + ns4:34277, + ns4:83506 ; + ns2:connected ns4:74065 ; + ns2:connectedFrom ns4:74065 ; + ns2:connectedThrough ns4:93913 ; + ns2:hasConnectionPoint ns4:00254, + ns4:34277, + ns4:83506 ; + ns2:hasProperty ns4:18240, + ns4:43192 ; + ns3:linkageInlet ns4:83506 ; + ns3:waterInlet ns4:34277 ; + ns3:waterOutlet ns4:00254 ; rdfs:comment "hw_valve" . -ns2:21910 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:21910 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:01601, - ns2:28452, - ns2:58810 ; - ns1:connected ns2:16343 ; - ns1:connectedThrough ns2:40887 ; - ns1:connectedTo ns2:16343 ; - ns1:hasConnectionPoint ns2:01601, - ns2:28452, - ns2:58810 ; - ns1:hasProperty ns2:18809, - ns2:78672 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:78672 ; - ns2:speedFeedback ns2:18809 ; - ns4:airInlet ns2:58810 ; - ns4:airOutlet ns2:28452 ; + ns2:cnx ns4:01601, + ns4:28452, + ns4:58810 ; + ns2:connected ns4:16343 ; + ns2:connectedThrough ns4:40887 ; + ns2:connectedTo ns4:16343 ; + ns2:hasConnectionPoint ns4:01601, + ns4:28452, + ns4:58810 ; + ns2:hasProperty ns4:18809, + ns4:78672 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:78672 ; + ns4:speedFeedback ns4:18809 ; + ns3:airInlet ns4:58810 ; + ns3:airOutlet ns4:28452 ; rdfs:comment "supply_fan" . -ns2:23392 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:23392 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:48637, - ns2:78426, - ns2:98301 ; - ns1:connected ns2:73219 ; - ns1:connectedFrom ns2:73219 ; - ns1:connectedThrough ns2:39389 ; - ns1:hasConnectionPoint ns2:48637, - ns2:78426, - ns2:98301 ; - ns1:hasProperty ns2:17117, - ns2:18968 ; - ns4:linkageInlet ns2:98301 ; - ns4:waterInlet ns2:78426 ; - ns4:waterOutlet ns2:48637 ; + ns2:cnx ns4:48637, + ns4:78426, + ns4:98301 ; + ns2:connected ns4:73219 ; + ns2:connectedFrom ns4:73219 ; + ns2:connectedThrough ns4:39389 ; + ns2:hasConnectionPoint ns4:48637, + ns4:78426, + ns4:98301 ; + ns2:hasProperty ns4:17117, + ns4:18968 ; + ns3:linkageInlet ns4:98301 ; + ns3:waterInlet ns4:78426 ; + ns3:waterOutlet ns4:48637 ; rdfs:comment "hw_valve" . -ns2:24002 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:24002 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:18032, - ns2:78658, - ns2:98635 ; - ns1:connected ns2:58411 ; - ns1:connectedThrough ns2:02809 ; - ns1:connectedTo ns2:58411 ; - ns1:hasConnectionPoint ns2:18032, - ns2:78658, - ns2:98635 ; - ns1:hasProperty ns2:68575, - ns2:80112 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:68575 ; - ns2:speedFeedback ns2:80112 ; - ns4:airInlet ns2:78658 ; - ns4:airOutlet ns2:18032 ; + ns2:cnx ns4:18032, + ns4:78658, + ns4:98635 ; + ns2:connected ns4:58411 ; + ns2:connectedThrough ns4:02809 ; + ns2:connectedTo ns4:58411 ; + ns2:hasConnectionPoint ns4:18032, + ns4:78658, + ns4:98635 ; + ns2:hasProperty ns4:68575, + ns4:80112 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:68575 ; + ns4:speedFeedback ns4:80112 ; + ns3:airInlet ns4:78658 ; + ns3:airOutlet ns4:18032 ; rdfs:comment "supply_fan" . -ns2:24559 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:24559 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:04879, - ns2:17179, - ns2:55416 ; - ns1:connected ns2:04430 ; - ns1:connectedThrough ns2:85262 ; - ns1:connectedTo ns2:04430 ; - ns1:hasConnectionPoint ns2:04879, - ns2:17179, - ns2:55416 ; - ns1:hasProperty ns2:75346, - ns2:92333 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:92333 ; - ns2:speedFeedback ns2:75346 ; - ns4:airInlet ns2:17179 ; - ns4:airOutlet ns2:55416 ; + ns2:cnx ns4:04879, + ns4:17179, + ns4:55416 ; + ns2:connected ns4:04430 ; + ns2:connectedThrough ns4:85262 ; + ns2:connectedTo ns4:04430 ; + ns2:hasConnectionPoint ns4:04879, + ns4:17179, + ns4:55416 ; + ns2:hasProperty ns4:75346, + ns4:92333 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:92333 ; + ns4:speedFeedback ns4:75346 ; + ns3:airInlet ns4:17179 ; + ns3:airOutlet ns4:55416 ; rdfs:comment "supply_fan" . -ns2:25047 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:25047 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-96" ; - ns1:cnx ns2:41868, - ns2:64361 ; - ns1:connected ns2:06275, - ns2:73947 ; - ns1:connectedFrom ns2:06275 ; - ns1:connectedThrough ns2:38300, - ns2:69552 ; - ns1:connectedTo ns2:73947 ; - ns1:contains ns2:13590, - ns2:30657, - ns2:84620, - ns2:92407 ; - ns1:hasConnectionPoint ns2:41868, - ns2:64361 ; - ns1:hasProperty ns2:23963, - ns2:50397 ; - ns2:airInlet ns2:64361 ; - ns2:airOutlet ns2:41868 . - -ns2:25140 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:41868, + ns4:64361 ; + ns2:connected ns4:06275, + ns4:73947 ; + ns2:connectedFrom ns4:06275 ; + ns2:connectedThrough ns4:38300, + ns4:69552 ; + ns2:connectedTo ns4:73947 ; + ns2:contains ns4:13590, + ns4:30657, + ns4:84620, + ns4:92407 ; + ns2:hasConnectionPoint ns4:41868, + ns4:64361 ; + ns2:hasProperty ns4:23963, + ns4:50397 ; + ns4:airInlet ns4:64361 ; + ns4:airOutlet ns4:41868 . + +ns4:25140 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:12218, - ns2:49917, - ns2:58061 ; - ns1:connected ns2:80065 ; - ns1:connectedFrom ns2:80065 ; - ns1:connectedThrough ns2:56375 ; - ns1:hasConnectionPoint ns2:12218, - ns2:49917, - ns2:58061 ; - ns1:hasProperty ns2:42574, - ns2:96135 ; - ns4:linkageInlet ns2:49917 ; - ns4:waterInlet ns2:12218 ; - ns4:waterOutlet ns2:58061 ; + ns2:cnx ns4:12218, + ns4:49917, + ns4:58061 ; + ns2:connected ns4:80065 ; + ns2:connectedFrom ns4:80065 ; + ns2:connectedThrough ns4:56375 ; + ns2:hasConnectionPoint ns4:12218, + ns4:49917, + ns4:58061 ; + ns2:hasProperty ns4:42574, + ns4:96135 ; + ns3:linkageInlet ns4:49917 ; + ns3:waterInlet ns4:12218 ; + ns3:waterOutlet ns4:58061 ; rdfs:comment "hw_valve" . -ns2:25200 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:25200 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:01637, - ns2:22290, - ns2:63590 ; - ns1:connected ns2:19805 ; - ns1:connectedThrough ns2:30148 ; - ns1:connectedTo ns2:19805 ; - ns1:hasConnectionPoint ns2:01637, - ns2:22290, - ns2:63590 ; - ns1:hasProperty ns2:45025, - ns2:90417 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:90417 ; - ns2:speedFeedback ns2:45025 ; - ns4:airInlet ns2:63590 ; - ns4:airOutlet ns2:22290 ; + ns2:cnx ns4:01637, + ns4:22290, + ns4:63590 ; + ns2:connected ns4:19805 ; + ns2:connectedThrough ns4:30148 ; + ns2:connectedTo ns4:19805 ; + ns2:hasConnectionPoint ns4:01637, + ns4:22290, + ns4:63590 ; + ns2:hasProperty ns4:45025, + ns4:90417 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:90417 ; + ns4:speedFeedback ns4:45025 ; + ns3:airInlet ns4:63590 ; + ns3:airOutlet ns4:22290 ; rdfs:comment "supply_fan" . -ns2:25613 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:25613 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:38883, - ns2:54882, - ns2:86381 ; - ns1:connected ns2:73674 ; - ns1:connectedFrom ns2:73674 ; - ns1:connectedThrough ns2:36241 ; - ns1:hasConnectionPoint ns2:38883, - ns2:54882, - ns2:86381 ; - ns1:hasProperty ns2:17784, - ns2:69109 ; - ns4:linkageInlet ns2:38883 ; - ns4:waterInlet ns2:54882 ; - ns4:waterOutlet ns2:86381 ; + ns2:cnx ns4:38883, + ns4:54882, + ns4:86381 ; + ns2:connected ns4:73674 ; + ns2:connectedFrom ns4:73674 ; + ns2:connectedThrough ns4:36241 ; + ns2:hasConnectionPoint ns4:38883, + ns4:54882, + ns4:86381 ; + ns2:hasProperty ns4:17784, + ns4:69109 ; + ns3:linkageInlet ns4:38883 ; + ns3:waterInlet ns4:54882 ; + ns3:waterOutlet ns4:86381 ; rdfs:comment "hw_valve" . -ns2:25674 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:25674 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:53581, - ns2:66752, - ns2:90868 ; - ns1:connected ns2:45992 ; - ns1:connectedFrom ns2:45992 ; - ns1:connectedThrough ns2:20991 ; - ns1:hasConnectionPoint ns2:53581, - ns2:66752, - ns2:90868 ; - ns1:hasProperty ns2:56565, - ns2:86734 ; - ns4:linkageInlet ns2:53581 ; - ns4:waterInlet ns2:90868 ; - ns4:waterOutlet ns2:66752 ; + ns2:cnx ns4:53581, + ns4:66752, + ns4:90868 ; + ns2:connected ns4:45992 ; + ns2:connectedFrom ns4:45992 ; + ns2:connectedThrough ns4:20991 ; + ns2:hasConnectionPoint ns4:53581, + ns4:66752, + ns4:90868 ; + ns2:hasProperty ns4:56565, + ns4:86734 ; + ns3:linkageInlet ns4:53581 ; + ns3:waterInlet ns4:90868 ; + ns3:waterOutlet ns4:66752 ; rdfs:comment "hw_valve" . -ns2:25831 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:25831 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "3-82" ; - ns1:cnx ns2:10430, - ns2:53503 ; - ns1:connected ns2:42308, - ns2:96232 ; - ns1:connectedFrom ns2:42308 ; - ns1:connectedThrough ns2:81744, - ns2:92766 ; - ns1:connectedTo ns2:96232 ; - ns1:contains ns2:18055, - ns2:57501, - ns2:62481, - ns2:81183 ; - ns1:hasConnectionPoint ns2:10430, - ns2:53503 ; - ns1:hasProperty ns2:68175, - ns2:88541 ; - ns2:airInlet ns2:53503 ; - ns2:airOutlet ns2:10430 . - -ns2:26426 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:10430, + ns4:53503 ; + ns2:connected ns4:42308, + ns4:96232 ; + ns2:connectedFrom ns4:42308 ; + ns2:connectedThrough ns4:81744, + ns4:92766 ; + ns2:connectedTo ns4:96232 ; + ns2:contains ns4:18055, + ns4:57501, + ns4:62481, + ns4:81183 ; + ns2:hasConnectionPoint ns4:10430, + ns4:53503 ; + ns2:hasProperty ns4:68175, + ns4:88541 ; + ns4:airInlet ns4:53503 ; + ns4:airOutlet ns4:10430 . + +ns4:26426 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:24866, - ns2:59177, - ns2:67696 ; - ns1:connected ns2:65381 ; - ns1:connectedFrom ns2:65381 ; - ns1:connectedThrough ns2:75934 ; - ns1:hasConnectionPoint ns2:24866, - ns2:59177, - ns2:67696 ; - ns1:hasProperty ns2:02861, - ns2:99412 ; - ns4:linkageInlet ns2:24866 ; - ns4:waterInlet ns2:59177 ; - ns4:waterOutlet ns2:67696 ; + ns2:cnx ns4:24866, + ns4:59177, + ns4:67696 ; + ns2:connected ns4:65381 ; + ns2:connectedFrom ns4:65381 ; + ns2:connectedThrough ns4:75934 ; + ns2:hasConnectionPoint ns4:24866, + ns4:59177, + ns4:67696 ; + ns2:hasProperty ns4:02861, + ns4:99412 ; + ns3:linkageInlet ns4:24866 ; + ns3:waterInlet ns4:59177 ; + ns3:waterOutlet ns4:67696 ; rdfs:comment "hw_valve" . -ns2:26427 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:26427 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:09753, - ns2:23308, - ns2:50637 ; - ns1:connected ns2:91853 ; - ns1:connectedThrough ns2:03023 ; - ns1:connectedTo ns2:91853 ; - ns1:hasConnectionPoint ns2:09753, - ns2:23308, - ns2:50637 ; - ns1:hasProperty ns2:22628, - ns2:88428 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:88428 ; - ns2:speedFeedback ns2:22628 ; - ns4:airInlet ns2:23308 ; - ns4:airOutlet ns2:09753 ; + ns2:cnx ns4:09753, + ns4:23308, + ns4:50637 ; + ns2:connected ns4:91853 ; + ns2:connectedThrough ns4:03023 ; + ns2:connectedTo ns4:91853 ; + ns2:hasConnectionPoint ns4:09753, + ns4:23308, + ns4:50637 ; + ns2:hasProperty ns4:22628, + ns4:88428 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:88428 ; + ns4:speedFeedback ns4:22628 ; + ns3:airInlet ns4:23308 ; + ns3:airOutlet ns4:09753 ; rdfs:comment "supply_fan" . -ns2:27011 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:27011 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-33" ; - ns1:cnx ns2:41716, - ns2:97458 ; - ns1:connected ns2:06275, - ns2:45421 ; - ns1:connectedFrom ns2:06275 ; - ns1:connectedThrough ns2:34910, - ns2:64179 ; - ns1:connectedTo ns2:45421 ; - ns1:contains ns2:30030, - ns2:70120, - ns2:74362, - ns2:75104 ; - ns1:hasConnectionPoint ns2:41716, - ns2:97458 ; - ns1:hasProperty ns2:31095, - ns2:84011 ; - ns2:airInlet ns2:41716 ; - ns2:airOutlet ns2:97458 . - -ns2:29807 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:41716, + ns4:97458 ; + ns2:connected ns4:06275, + ns4:45421 ; + ns2:connectedFrom ns4:06275 ; + ns2:connectedThrough ns4:34910, + ns4:64179 ; + ns2:connectedTo ns4:45421 ; + ns2:contains ns4:30030, + ns4:70120, + ns4:74362, + ns4:75104 ; + ns2:hasConnectionPoint ns4:41716, + ns4:97458 ; + ns2:hasProperty ns4:31095, + ns4:84011 ; + ns4:airInlet ns4:41716 ; + ns4:airOutlet ns4:97458 . + +ns4:29807 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-75" ; - ns1:cnx ns2:12321, - ns2:42696 ; - ns1:connected ns2:06275, - ns2:23626 ; - ns1:connectedFrom ns2:06275 ; - ns1:connectedThrough ns2:48548, - ns2:82844 ; - ns1:connectedTo ns2:23626 ; - ns1:contains ns2:03990, - ns2:30312, - ns2:65779, - ns2:77381 ; - ns1:hasConnectionPoint ns2:12321, - ns2:42696 ; - ns1:hasProperty ns2:29612, - ns2:50365 ; - ns2:airInlet ns2:12321 ; - ns2:airOutlet ns2:42696 . - -ns2:30312 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:12321, + ns4:42696 ; + ns2:connected ns4:06275, + ns4:23626 ; + ns2:connectedFrom ns4:06275 ; + ns2:connectedThrough ns4:48548, + ns4:82844 ; + ns2:connectedTo ns4:23626 ; + ns2:contains ns4:03990, + ns4:30312, + ns4:65779, + ns4:77381 ; + ns2:hasConnectionPoint ns4:12321, + ns4:42696 ; + ns2:hasProperty ns4:29612, + ns4:50365 ; + ns4:airInlet ns4:12321 ; + ns4:airOutlet ns4:42696 . + +ns4:30312 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:30397, - ns2:32258, - ns2:61181 ; - ns1:connected ns2:65779 ; - ns1:connectedThrough ns2:85676 ; - ns1:connectedTo ns2:65779 ; - ns1:hasConnectionPoint ns2:30397, - ns2:32258, - ns2:61181 ; - ns1:hasProperty ns2:85874, - ns2:97092 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:85874 ; - ns2:speedFeedback ns2:97092 ; - ns4:airInlet ns2:61181 ; - ns4:airOutlet ns2:32258 ; + ns2:cnx ns4:30397, + ns4:32258, + ns4:61181 ; + ns2:connected ns4:65779 ; + ns2:connectedThrough ns4:85676 ; + ns2:connectedTo ns4:65779 ; + ns2:hasConnectionPoint ns4:30397, + ns4:32258, + ns4:61181 ; + ns2:hasProperty ns4:85874, + ns4:97092 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:85874 ; + ns4:speedFeedback ns4:97092 ; + ns3:airInlet ns4:61181 ; + ns3:airOutlet ns4:32258 ; rdfs:comment "supply_fan" . -ns2:30657 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:30657 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:11167, - ns2:48116, - ns2:77489 ; - ns1:connected ns2:84620 ; - ns1:connectedFrom ns2:84620 ; - ns1:connectedThrough ns2:35508 ; - ns1:hasConnectionPoint ns2:11167, - ns2:48116, - ns2:77489 ; - ns1:hasProperty ns2:48946, - ns2:91822 ; - ns4:linkageInlet ns2:48116 ; - ns4:waterInlet ns2:11167 ; - ns4:waterOutlet ns2:77489 ; + ns2:cnx ns4:11167, + ns4:48116, + ns4:77489 ; + ns2:connected ns4:84620 ; + ns2:connectedFrom ns4:84620 ; + ns2:connectedThrough ns4:35508 ; + ns2:hasConnectionPoint ns4:11167, + ns4:48116, + ns4:77489 ; + ns2:hasProperty ns4:48946, + ns4:91822 ; + ns3:linkageInlet ns4:48116 ; + ns3:waterInlet ns4:11167 ; + ns3:waterOutlet ns4:77489 ; rdfs:comment "hw_valve" . -ns2:31269 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:31269 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-44" ; - ns1:cnx ns2:08874, - ns2:48021 ; - ns1:connected ns2:50126, - ns2:67586 ; - ns1:connectedFrom ns2:50126 ; - ns1:connectedThrough ns2:18158, - ns2:31562 ; - ns1:connectedTo ns2:67586 ; - ns1:contains ns2:19220, - ns2:32837, - ns2:35514, - ns2:56611 ; - ns1:hasConnectionPoint ns2:08874, - ns2:48021 ; - ns1:hasProperty ns2:80723, - ns2:88324 ; - ns2:airInlet ns2:08874 ; - ns2:airOutlet ns2:48021 . - -ns2:32837 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:08874, + ns4:48021 ; + ns2:connected ns4:50126, + ns4:67586 ; + ns2:connectedFrom ns4:50126 ; + ns2:connectedThrough ns4:18158, + ns4:31562 ; + ns2:connectedTo ns4:67586 ; + ns2:contains ns4:19220, + ns4:32837, + ns4:35514, + ns4:56611 ; + ns2:hasConnectionPoint ns4:08874, + ns4:48021 ; + ns2:hasProperty ns4:80723, + ns4:88324 ; + ns4:airInlet ns4:08874 ; + ns4:airOutlet ns4:48021 . + +ns4:32837 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:49323, - ns2:57702, - ns2:88169 ; - ns1:connected ns2:35514 ; - ns1:connectedFrom ns2:35514 ; - ns1:connectedThrough ns2:52537 ; - ns1:hasConnectionPoint ns2:49323, - ns2:57702, - ns2:88169 ; - ns1:hasProperty ns2:40793, - ns2:50996 ; - ns4:linkageInlet ns2:57702 ; - ns4:waterInlet ns2:88169 ; - ns4:waterOutlet ns2:49323 ; + ns2:cnx ns4:49323, + ns4:57702, + ns4:88169 ; + ns2:connected ns4:35514 ; + ns2:connectedFrom ns4:35514 ; + ns2:connectedThrough ns4:52537 ; + ns2:hasConnectionPoint ns4:49323, + ns4:57702, + ns4:88169 ; + ns2:hasProperty ns4:40793, + ns4:50996 ; + ns3:linkageInlet ns4:57702 ; + ns3:waterInlet ns4:88169 ; + ns3:waterOutlet ns4:49323 ; rdfs:comment "hw_valve" . -ns2:32904 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:32904 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:18999, - ns2:83422, - ns2:92566 ; - ns1:connected ns2:24416 ; - ns1:connectedFrom ns2:24416 ; - ns1:connectedThrough ns2:12353 ; - ns1:hasConnectionPoint ns2:18999, - ns2:83422, - ns2:92566 ; - ns1:hasProperty ns2:47472, - ns2:92661 ; - ns4:linkageInlet ns2:83422 ; - ns4:waterInlet ns2:18999 ; - ns4:waterOutlet ns2:92566 ; + ns2:cnx ns4:18999, + ns4:83422, + ns4:92566 ; + ns2:connected ns4:24416 ; + ns2:connectedFrom ns4:24416 ; + ns2:connectedThrough ns4:12353 ; + ns2:hasConnectionPoint ns4:18999, + ns4:83422, + ns4:92566 ; + ns2:hasProperty ns4:47472, + ns4:92661 ; + ns3:linkageInlet ns4:83422 ; + ns3:waterInlet ns4:18999 ; + ns3:waterOutlet ns4:92566 ; rdfs:comment "hw_valve" . -ns2:34533 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:34533 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "3-78" ; - ns1:cnx ns2:20563, - ns2:98308 ; - ns1:connected ns2:42308, - ns2:55654 ; - ns1:connectedFrom ns2:42308 ; - ns1:connectedThrough ns2:16401, - ns2:52944 ; - ns1:connectedTo ns2:55654 ; - ns1:contains ns2:07222, - ns2:09160, - ns2:31261, - ns2:44942 ; - ns1:hasConnectionPoint ns2:20563, - ns2:98308 ; - ns1:hasProperty ns2:14150, - ns2:52496 ; - ns2:airInlet ns2:20563 ; - ns2:airOutlet ns2:98308 . - -ns2:34781 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:20563, + ns4:98308 ; + ns2:connected ns4:42308, + ns4:55654 ; + ns2:connectedFrom ns4:42308 ; + ns2:connectedThrough ns4:16401, + ns4:52944 ; + ns2:connectedTo ns4:55654 ; + ns2:contains ns4:07222, + ns4:09160, + ns4:31261, + ns4:44942 ; + ns2:hasConnectionPoint ns4:20563, + ns4:98308 ; + ns2:hasProperty ns4:14150, + ns4:52496 ; + ns4:airInlet ns4:20563 ; + ns4:airOutlet ns4:98308 . + +ns4:34781 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:16884, - ns2:30089, - ns2:40685 ; - ns1:connected ns2:67388 ; - ns1:connectedFrom ns2:67388 ; - ns1:connectedThrough ns2:85434 ; - ns1:hasConnectionPoint ns2:16884, - ns2:30089, - ns2:40685 ; - ns1:hasProperty ns2:57607, - ns2:97887 ; - ns4:linkageInlet ns2:40685 ; - ns4:waterInlet ns2:30089 ; - ns4:waterOutlet ns2:16884 ; + ns2:cnx ns4:16884, + ns4:30089, + ns4:40685 ; + ns2:connected ns4:67388 ; + ns2:connectedFrom ns4:67388 ; + ns2:connectedThrough ns4:85434 ; + ns2:hasConnectionPoint ns4:16884, + ns4:30089, + ns4:40685 ; + ns2:hasProperty ns4:57607, + ns4:97887 ; + ns3:linkageInlet ns4:40685 ; + ns3:waterInlet ns4:30089 ; + ns3:waterOutlet ns4:16884 ; rdfs:comment "hw_valve" . -ns2:35720 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:35720 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-42" ; - ns1:cnx ns2:40053, - ns2:73305 ; - ns1:connected ns2:09362, - ns2:77070 ; - ns1:connectedFrom ns2:77070 ; - ns1:connectedThrough ns2:34554, - ns2:80519 ; - ns1:connectedTo ns2:09362 ; - ns1:contains ns2:18118, - ns2:25613, - ns2:73674, - ns2:82262 ; - ns1:hasConnectionPoint ns2:40053, - ns2:73305 ; - ns1:hasProperty ns2:49227, - ns2:95345 ; - ns2:airInlet ns2:40053 ; - ns2:airOutlet ns2:73305 . - -ns2:36176 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:40053, + ns4:73305 ; + ns2:connected ns4:09362, + ns4:77070 ; + ns2:connectedFrom ns4:77070 ; + ns2:connectedThrough ns4:34554, + ns4:80519 ; + ns2:connectedTo ns4:09362 ; + ns2:contains ns4:18118, + ns4:25613, + ns4:73674, + ns4:82262 ; + ns2:hasConnectionPoint ns4:40053, + ns4:73305 ; + ns2:hasProperty ns4:49227, + ns4:95345 ; + ns4:airInlet ns4:40053 ; + ns4:airOutlet ns4:73305 . + +ns4:36176 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:11303, - ns2:36831, - ns2:55877 ; - ns1:connected ns2:37192 ; - ns1:connectedFrom ns2:37192 ; - ns1:connectedThrough ns2:39524 ; - ns1:hasConnectionPoint ns2:11303, - ns2:36831, - ns2:55877 ; - ns1:hasProperty ns2:44224, - ns2:79837 ; - ns4:linkageInlet ns2:36831 ; - ns4:waterInlet ns2:55877 ; - ns4:waterOutlet ns2:11303 ; + ns2:cnx ns4:11303, + ns4:36831, + ns4:55877 ; + ns2:connected ns4:37192 ; + ns2:connectedFrom ns4:37192 ; + ns2:connectedThrough ns4:39524 ; + ns2:hasConnectionPoint ns4:11303, + ns4:36831, + ns4:55877 ; + ns2:hasProperty ns4:44224, + ns4:79837 ; + ns3:linkageInlet ns4:36831 ; + ns3:waterInlet ns4:55877 ; + ns3:waterOutlet ns4:11303 ; rdfs:comment "hw_valve" . -ns2:36398 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:36398 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "Floor_7.CoreZone.core_space_8.airOutlet", "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:09278, - ns2:27115, - ns2:37324, - ns2:55408 ; - ns1:connectsThrough ns2:09278, - ns2:27115 ; - ns1:hasMedium , + ns2:cnx ns4:09278, + ns4:27115, + ns4:37324, + ns4:55408 ; + ns2:connectsThrough ns4:09278, + ns4:27115 ; + ns2:hasMedium , ; - ns1:isConnectionPointOf ns2:37324, - ns2:55408 . + ns2:isConnectionPointOf ns4:37324, + ns4:55408 . -ns2:36633 a ns1:Connection ; +ns4:36633 a ns2:Connection ; rdfs:label "RTU_9.mixed_air" ; - ns1:cnx ns2:27497, - ns2:27792, - ns2:44513 ; - ns1:connectsAt ns2:27497, - ns2:27792, - ns2:44513 ; - ns1:connectsFrom ns2:39848, - ns2:77251 ; - ns1:connectsTo ns2:84053 ; - ns1:hasMedium ; - ns1:hasProperty ns2:79229 . - -ns2:37302 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:27497, + ns4:27792, + ns4:44513 ; + ns2:connectsAt ns4:27497, + ns4:27792, + ns4:44513 ; + ns2:connectsFrom ns4:39848, + ns4:77251 ; + ns2:connectsTo ns4:84053 ; + ns2:hasMedium ; + ns2:hasProperty ns4:79229 . + +ns4:37302 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "2-82" ; - ns1:cnx ns2:81559, - ns2:89238 ; - ns1:connected ns2:42308, - ns2:77887 ; - ns1:connectedFrom ns2:42308 ; - ns1:connectedThrough ns2:66983, - ns2:76264 ; - ns1:connectedTo ns2:77887 ; - ns1:contains ns2:07024, - ns2:18941, - ns2:49064, - ns2:72337 ; - ns1:hasConnectionPoint ns2:81559, - ns2:89238 ; - ns1:hasProperty ns2:52402, - ns2:83945 ; - ns2:airInlet ns2:89238 ; - ns2:airOutlet ns2:81559 . - -ns2:37899 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:81559, + ns4:89238 ; + ns2:connected ns4:42308, + ns4:77887 ; + ns2:connectedFrom ns4:42308 ; + ns2:connectedThrough ns4:66983, + ns4:76264 ; + ns2:connectedTo ns4:77887 ; + ns2:contains ns4:07024, + ns4:18941, + ns4:49064, + ns4:72337 ; + ns2:hasConnectionPoint ns4:81559, + ns4:89238 ; + ns2:hasProperty ns4:52402, + ns4:83945 ; + ns4:airInlet ns4:89238 ; + ns4:airOutlet ns4:81559 . + +ns4:37899 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:47011, - ns2:50969, - ns2:66422 ; - ns1:connected ns2:25067 ; - ns1:connectedFrom ns2:25067 ; - ns1:connectedThrough ns2:96546 ; - ns1:hasConnectionPoint ns2:47011, - ns2:50969, - ns2:66422 ; - ns1:hasProperty ns2:49103, - ns2:54675 ; - ns4:linkageInlet ns2:66422 ; - ns4:waterInlet ns2:50969 ; - ns4:waterOutlet ns2:47011 ; + ns2:cnx ns4:47011, + ns4:50969, + ns4:66422 ; + ns2:connected ns4:25067 ; + ns2:connectedFrom ns4:25067 ; + ns2:connectedThrough ns4:96546 ; + ns2:hasConnectionPoint ns4:47011, + ns4:50969, + ns4:66422 ; + ns2:hasProperty ns4:49103, + ns4:54675 ; + ns3:linkageInlet ns4:66422 ; + ns3:waterInlet ns4:50969 ; + ns3:waterOutlet ns4:47011 ; rdfs:comment "hw_valve" . -ns2:38529 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:38529 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:44005, - ns2:61169, - ns2:71478 ; - ns1:connected ns2:31318 ; - ns1:connectedThrough ns2:82929 ; - ns1:connectedTo ns2:31318 ; - ns1:hasConnectionPoint ns2:44005, - ns2:61169, - ns2:71478 ; - ns1:hasProperty ns2:53154, - ns2:55134 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:53154 ; - ns2:speedFeedback ns2:55134 ; - ns4:airInlet ns2:71478 ; - ns4:airOutlet ns2:61169 ; + ns2:cnx ns4:44005, + ns4:61169, + ns4:71478 ; + ns2:connected ns4:31318 ; + ns2:connectedThrough ns4:82929 ; + ns2:connectedTo ns4:31318 ; + ns2:hasConnectionPoint ns4:44005, + ns4:61169, + ns4:71478 ; + ns2:hasProperty ns4:53154, + ns4:55134 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:53154 ; + ns4:speedFeedback ns4:55134 ; + ns3:airInlet ns4:71478 ; + ns3:airOutlet ns4:61169 ; rdfs:comment "supply_fan" . -ns2:39513 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:39513 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:10922, - ns2:61920, - ns2:72100 ; - ns1:connected ns2:09900 ; - ns1:connectedFrom ns2:09900 ; - ns1:connectedThrough ns2:63455 ; - ns1:hasConnectionPoint ns2:10922, - ns2:61920, - ns2:72100 ; - ns1:hasProperty ns2:50714, - ns2:93455 ; - ns4:linkageInlet ns2:72100 ; - ns4:waterInlet ns2:61920 ; - ns4:waterOutlet ns2:10922 ; + ns2:cnx ns4:10922, + ns4:61920, + ns4:72100 ; + ns2:connected ns4:09900 ; + ns2:connectedFrom ns4:09900 ; + ns2:connectedThrough ns4:63455 ; + ns2:hasConnectionPoint ns4:10922, + ns4:61920, + ns4:72100 ; + ns2:hasProperty ns4:50714, + ns4:93455 ; + ns3:linkageInlet ns4:72100 ; + ns3:waterInlet ns4:61920 ; + ns3:waterOutlet ns4:10922 ; rdfs:comment "hw_valve" . -ns2:39604 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:39604 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:02746, - ns2:22936, - ns2:95718 ; - ns1:connected ns2:38627 ; - ns1:connectedThrough ns2:86505 ; - ns1:connectedTo ns2:38627 ; - ns1:hasConnectionPoint ns2:02746, - ns2:22936, - ns2:95718 ; - ns1:hasProperty ns2:29282, - ns2:82850 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:29282 ; - ns2:speedFeedback ns2:82850 ; - ns4:airInlet ns2:95718 ; - ns4:airOutlet ns2:02746 ; + ns2:cnx ns4:02746, + ns4:22936, + ns4:95718 ; + ns2:connected ns4:38627 ; + ns2:connectedThrough ns4:86505 ; + ns2:connectedTo ns4:38627 ; + ns2:hasConnectionPoint ns4:02746, + ns4:22936, + ns4:95718 ; + ns2:hasProperty ns4:29282, + ns4:82850 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:29282 ; + ns4:speedFeedback ns4:82850 ; + ns3:airInlet ns4:95718 ; + ns3:airOutlet ns4:02746 ; rdfs:comment "supply_fan" . -ns2:41545 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:41545 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:40177, - ns2:56136, - ns2:75197 ; - ns1:connected ns2:12686 ; - ns1:connectedFrom ns2:12686 ; - ns1:connectedThrough ns2:95932 ; - ns1:hasConnectionPoint ns2:40177, - ns2:56136, - ns2:75197 ; - ns1:hasProperty ns2:38901, - ns2:46561 ; - ns4:linkageInlet ns2:75197 ; - ns4:waterInlet ns2:56136 ; - ns4:waterOutlet ns2:40177 ; + ns2:cnx ns4:40177, + ns4:56136, + ns4:75197 ; + ns2:connected ns4:12686 ; + ns2:connectedFrom ns4:12686 ; + ns2:connectedThrough ns4:95932 ; + ns2:hasConnectionPoint ns4:40177, + ns4:56136, + ns4:75197 ; + ns2:hasProperty ns4:38901, + ns4:46561 ; + ns3:linkageInlet ns4:75197 ; + ns3:waterInlet ns4:56136 ; + ns3:waterOutlet ns4:40177 ; rdfs:comment "hw_valve" . -ns2:41694 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:41694 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-6" ; - ns1:cnx ns2:64683, - ns2:75350 ; - ns1:connected ns2:05101, - ns2:26799 ; - ns1:connectedFrom ns2:05101 ; - ns1:connectedThrough ns2:89082, - ns2:95914 ; - ns1:connectedTo ns2:26799 ; - ns1:contains ns2:36725, - ns2:45429, - ns2:73972, - ns2:74130 ; - ns1:hasConnectionPoint ns2:64683, - ns2:75350 ; - ns1:hasProperty ns2:10224, - ns2:94002 ; - ns2:airInlet ns2:75350 ; - ns2:airOutlet ns2:64683 . - -ns2:42750 a ns1:Connection ; + ns2:cnx ns4:64683, + ns4:75350 ; + ns2:connected ns4:05101, + ns4:26799 ; + ns2:connectedFrom ns4:05101 ; + ns2:connectedThrough ns4:89082, + ns4:95914 ; + ns2:connectedTo ns4:26799 ; + ns2:contains ns4:36725, + ns4:45429, + ns4:73972, + ns4:74130 ; + ns2:hasConnectionPoint ns4:64683, + ns4:75350 ; + ns2:hasProperty ns4:10224, + ns4:94002 ; + ns4:airInlet ns4:75350 ; + ns4:airOutlet ns4:64683 . + +ns4:42750 a ns2:Connection ; rdfs:label "RTU_9.mixed_air" ; - ns1:cnx ns2:35174, - ns2:43692, - ns2:93231 ; - ns1:connectsAt ns2:35174, - ns2:43692, - ns2:93231 ; - ns1:connectsFrom ns2:51341, - ns2:54792 ; - ns1:connectsTo ns2:15718 ; - ns1:hasMedium ; - ns1:hasProperty ns2:45283 . - -ns2:43278 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:35174, + ns4:43692, + ns4:93231 ; + ns2:connectsAt ns4:35174, + ns4:43692, + ns4:93231 ; + ns2:connectsFrom ns4:51341, + ns4:54792 ; + ns2:connectsTo ns4:15718 ; + ns2:hasMedium ; + ns2:hasProperty ns4:45283 . + +ns4:43278 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-07" ; - ns1:cnx ns2:35242, - ns2:35606 ; - ns1:connected ns2:77070, - ns2:92645 ; - ns1:connectedFrom ns2:77070 ; - ns1:connectedThrough ns2:60029, - ns2:75076 ; - ns1:connectedTo ns2:92645 ; - ns1:contains ns2:08495, - ns2:23392, - ns2:51343, - ns2:73219 ; - ns1:hasConnectionPoint ns2:35242, - ns2:35606 ; - ns1:hasProperty ns2:07452, - ns2:21241 ; - ns2:airInlet ns2:35242 ; - ns2:airOutlet ns2:35606 . - -ns2:43925 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:35242, + ns4:35606 ; + ns2:connected ns4:77070, + ns4:92645 ; + ns2:connectedFrom ns4:77070 ; + ns2:connectedThrough ns4:60029, + ns4:75076 ; + ns2:connectedTo ns4:92645 ; + ns2:contains ns4:08495, + ns4:23392, + ns4:51343, + ns4:73219 ; + ns2:hasConnectionPoint ns4:35242, + ns4:35606 ; + ns2:hasProperty ns4:07452, + ns4:21241 ; + ns4:airInlet ns4:35242 ; + ns4:airOutlet ns4:35606 . + +ns4:43925 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:20926, - ns2:21453, - ns2:79416 ; - ns1:connected ns2:58411 ; - ns1:connectedFrom ns2:58411 ; - ns1:connectedThrough ns2:85932 ; - ns1:hasConnectionPoint ns2:20926, - ns2:21453, - ns2:79416 ; - ns1:hasProperty ns2:03003, - ns2:38396 ; - ns4:linkageInlet ns2:21453 ; - ns4:waterInlet ns2:79416 ; - ns4:waterOutlet ns2:20926 ; + ns2:cnx ns4:20926, + ns4:21453, + ns4:79416 ; + ns2:connected ns4:58411 ; + ns2:connectedFrom ns4:58411 ; + ns2:connectedThrough ns4:85932 ; + ns2:hasConnectionPoint ns4:20926, + ns4:21453, + ns4:79416 ; + ns2:hasProperty ns4:03003, + ns4:38396 ; + ns3:linkageInlet ns4:21453 ; + ns3:waterInlet ns4:79416 ; + ns3:waterOutlet ns4:20926 ; rdfs:comment "hw_valve" . -ns2:44594 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:44594 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:01401, - ns2:40609, - ns2:68832 ; - ns1:connected ns2:37192 ; - ns1:connectedThrough ns2:21333 ; - ns1:connectedTo ns2:37192 ; - ns1:hasConnectionPoint ns2:01401, - ns2:40609, - ns2:68832 ; - ns1:hasProperty ns2:56560, - ns2:91594 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:56560 ; - ns2:speedFeedback ns2:91594 ; - ns4:airInlet ns2:40609 ; - ns4:airOutlet ns2:01401 ; + ns2:cnx ns4:01401, + ns4:40609, + ns4:68832 ; + ns2:connected ns4:37192 ; + ns2:connectedThrough ns4:21333 ; + ns2:connectedTo ns4:37192 ; + ns2:hasConnectionPoint ns4:01401, + ns4:40609, + ns4:68832 ; + ns2:hasProperty ns4:56560, + ns4:91594 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:56560 ; + ns4:speedFeedback ns4:91594 ; + ns3:airInlet ns4:40609 ; + ns3:airOutlet ns4:01401 ; rdfs:comment "supply_fan" . -ns2:44942 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:44942 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:24806, - ns2:54550, - ns2:63092 ; - ns1:connected ns2:31261 ; - ns1:connectedFrom ns2:31261 ; - ns1:connectedThrough ns2:91920 ; - ns1:hasConnectionPoint ns2:24806, - ns2:54550, - ns2:63092 ; - ns1:hasProperty ns2:01864, - ns2:47111 ; - ns4:linkageInlet ns2:63092 ; - ns4:waterInlet ns2:24806 ; - ns4:waterOutlet ns2:54550 ; + ns2:cnx ns4:24806, + ns4:54550, + ns4:63092 ; + ns2:connected ns4:31261 ; + ns2:connectedFrom ns4:31261 ; + ns2:connectedThrough ns4:91920 ; + ns2:hasConnectionPoint ns4:24806, + ns4:54550, + ns4:63092 ; + ns2:hasProperty ns4:01864, + ns4:47111 ; + ns3:linkageInlet ns4:63092 ; + ns3:waterInlet ns4:24806 ; + ns3:waterOutlet ns4:54550 ; rdfs:comment "hw_valve" . -ns2:45429 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:45429 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:17598, - ns2:32630, - ns2:64215 ; - ns1:connected ns2:73972 ; - ns1:connectedThrough ns2:61849 ; - ns1:connectedTo ns2:73972 ; - ns1:hasConnectionPoint ns2:17598, - ns2:32630, - ns2:64215 ; - ns1:hasProperty ns2:27550, - ns2:63074 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:63074 ; - ns2:speedFeedback ns2:27550 ; - ns4:airInlet ns2:32630 ; - ns4:airOutlet ns2:17598 ; + ns2:cnx ns4:17598, + ns4:32630, + ns4:64215 ; + ns2:connected ns4:73972 ; + ns2:connectedThrough ns4:61849 ; + ns2:connectedTo ns4:73972 ; + ns2:hasConnectionPoint ns4:17598, + ns4:32630, + ns4:64215 ; + ns2:hasProperty ns4:27550, + ns4:63074 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:63074 ; + ns4:speedFeedback ns4:27550 ; + ns3:airInlet ns4:32630 ; + ns3:airOutlet ns4:17598 ; rdfs:comment "supply_fan" . -ns2:45441 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:45441 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:39678, - ns2:55188, - ns2:82709 ; - ns1:connected ns2:19805 ; - ns1:connectedFrom ns2:19805 ; - ns1:connectedThrough ns2:40374 ; - ns1:hasConnectionPoint ns2:39678, - ns2:55188, - ns2:82709 ; - ns1:hasProperty ns2:50178, - ns2:82184 ; - ns4:linkageInlet ns2:55188 ; - ns4:waterInlet ns2:39678 ; - ns4:waterOutlet ns2:82709 ; + ns2:cnx ns4:39678, + ns4:55188, + ns4:82709 ; + ns2:connected ns4:19805 ; + ns2:connectedFrom ns4:19805 ; + ns2:connectedThrough ns4:40374 ; + ns2:hasConnectionPoint ns4:39678, + ns4:55188, + ns4:82709 ; + ns2:hasProperty ns4:50178, + ns4:82184 ; + ns3:linkageInlet ns4:55188 ; + ns3:waterInlet ns4:39678 ; + ns3:waterOutlet ns4:82709 ; rdfs:comment "hw_valve" . -ns2:45896 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:45896 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:30593, - ns2:40462, - ns2:70442 ; - ns1:connected ns2:74360 ; - ns1:connectedThrough ns2:95827 ; - ns1:connectedTo ns2:74360 ; - ns1:hasConnectionPoint ns2:30593, - ns2:40462, - ns2:70442 ; - ns1:hasProperty ns2:13051, - ns2:97141 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:97141 ; - ns2:speedFeedback ns2:13051 ; - ns4:airInlet ns2:30593 ; - ns4:airOutlet ns2:70442 ; + ns2:cnx ns4:30593, + ns4:40462, + ns4:70442 ; + ns2:connected ns4:74360 ; + ns2:connectedThrough ns4:95827 ; + ns2:connectedTo ns4:74360 ; + ns2:hasConnectionPoint ns4:30593, + ns4:40462, + ns4:70442 ; + ns2:hasProperty ns4:13051, + ns4:97141 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:97141 ; + ns4:speedFeedback ns4:13051 ; + ns3:airInlet ns4:30593 ; + ns3:airOutlet ns4:70442 ; rdfs:comment "supply_fan" . -ns2:45991 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:45991 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:47059, - ns2:76425, - ns2:91161 ; - ns1:connected ns2:85409 ; - ns1:connectedThrough ns2:81633 ; - ns1:connectedTo ns2:85409 ; - ns1:hasConnectionPoint ns2:47059, - ns2:76425, - ns2:91161 ; - ns1:hasProperty ns2:17862, - ns2:49578 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:17862 ; - ns2:speedFeedback ns2:49578 ; - ns4:airInlet ns2:76425 ; - ns4:airOutlet ns2:47059 ; + ns2:cnx ns4:47059, + ns4:76425, + ns4:91161 ; + ns2:connected ns4:85409 ; + ns2:connectedThrough ns4:81633 ; + ns2:connectedTo ns4:85409 ; + ns2:hasConnectionPoint ns4:47059, + ns4:76425, + ns4:91161 ; + ns2:hasProperty ns4:17862, + ns4:49578 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:17862 ; + ns4:speedFeedback ns4:49578 ; + ns3:airInlet ns4:76425 ; + ns3:airOutlet ns4:47059 ; rdfs:comment "supply_fan" . -ns2:46191 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:46191 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-2" ; - ns1:cnx ns2:81532, - ns2:85390 ; - ns1:connected ns2:05101, - ns2:63334 ; - ns1:connectedFrom ns2:05101 ; - ns1:connectedThrough ns2:26376, - ns2:65267 ; - ns1:connectedTo ns2:63334 ; - ns1:contains ns2:12686, - ns2:24344, - ns2:41545, - ns2:66562 ; - ns1:hasConnectionPoint ns2:81532, - ns2:85390 ; - ns1:hasProperty ns2:03772, - ns2:82063 ; - ns2:airInlet ns2:85390 ; - ns2:airOutlet ns2:81532 . - -ns2:46417 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:81532, + ns4:85390 ; + ns2:connected ns4:05101, + ns4:63334 ; + ns2:connectedFrom ns4:05101 ; + ns2:connectedThrough ns4:26376, + ns4:65267 ; + ns2:connectedTo ns4:63334 ; + ns2:contains ns4:12686, + ns4:24344, + ns4:41545, + ns4:66562 ; + ns2:hasConnectionPoint ns4:81532, + ns4:85390 ; + ns2:hasProperty ns4:03772, + ns4:82063 ; + ns4:airInlet ns4:85390 ; + ns4:airOutlet ns4:81532 . + +ns4:46417 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:46736, - ns2:57442, - ns2:59084 ; - ns1:connected ns2:89915 ; - ns1:connectedThrough ns2:58412 ; - ns1:connectedTo ns2:89915 ; - ns1:hasConnectionPoint ns2:46736, - ns2:57442, - ns2:59084 ; - ns1:hasProperty ns2:03299, - ns2:97037 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:97037 ; - ns2:speedFeedback ns2:03299 ; - ns4:airInlet ns2:57442 ; - ns4:airOutlet ns2:46736 ; + ns2:cnx ns4:46736, + ns4:57442, + ns4:59084 ; + ns2:connected ns4:89915 ; + ns2:connectedThrough ns4:58412 ; + ns2:connectedTo ns4:89915 ; + ns2:hasConnectionPoint ns4:46736, + ns4:57442, + ns4:59084 ; + ns2:hasProperty ns4:03299, + ns4:97037 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:97037 ; + ns4:speedFeedback ns4:03299 ; + ns3:airInlet ns4:57442 ; + ns3:airOutlet ns4:46736 ; rdfs:comment "supply_fan" . -ns2:47956 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:47956 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "2-01" ; - ns1:cnx ns2:48597, - ns2:99287 ; - ns1:connected ns2:83378, - ns2:88028 ; - ns1:connectedFrom ns2:88028 ; - ns1:connectedThrough ns2:32220, - ns2:43211 ; - ns1:connectedTo ns2:83378 ; - ns1:contains ns2:21736, - ns2:74065, - ns2:76708, - ns2:86650 ; - ns1:hasConnectionPoint ns2:48597, - ns2:99287 ; - ns1:hasProperty ns2:02216, - ns2:73810 ; - ns2:airInlet ns2:99287 ; - ns2:airOutlet ns2:48597 . - -ns2:49192 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:48597, + ns4:99287 ; + ns2:connected ns4:83378, + ns4:88028 ; + ns2:connectedFrom ns4:88028 ; + ns2:connectedThrough ns4:32220, + ns4:43211 ; + ns2:connectedTo ns4:83378 ; + ns2:contains ns4:21736, + ns4:74065, + ns4:76708, + ns4:86650 ; + ns2:hasConnectionPoint ns4:48597, + ns4:99287 ; + ns2:hasProperty ns4:02216, + ns4:73810 ; + ns4:airInlet ns4:99287 ; + ns4:airOutlet ns4:48597 . + +ns4:49192 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-00" ; - ns1:cnx ns2:38344, - ns2:62233 ; - ns1:connected ns2:06275, - ns2:76100 ; - ns1:connectedFrom ns2:06275 ; - ns1:connectedThrough ns2:42081, - ns2:58341 ; - ns1:connectedTo ns2:76100 ; - ns1:contains ns2:24416, - ns2:32904, - ns2:53089, - ns2:80523 ; - ns1:hasConnectionPoint ns2:38344, - ns2:62233 ; - ns1:hasProperty ns2:61489, - ns2:89000 ; - ns2:airInlet ns2:38344 ; - ns2:airOutlet ns2:62233 . - -ns2:49965 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:38344, + ns4:62233 ; + ns2:connected ns4:06275, + ns4:76100 ; + ns2:connectedFrom ns4:06275 ; + ns2:connectedThrough ns4:42081, + ns4:58341 ; + ns2:connectedTo ns4:76100 ; + ns2:contains ns4:24416, + ns4:32904, + ns4:53089, + ns4:80523 ; + ns2:hasConnectionPoint ns4:38344, + ns4:62233 ; + ns2:hasProperty ns4:61489, + ns4:89000 ; + ns4:airInlet ns4:38344 ; + ns4:airOutlet ns4:62233 . + +ns4:49965 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:26285, - ns2:66100, - ns2:96291 ; - ns1:connected ns2:09638 ; - ns1:connectedThrough ns2:80062 ; - ns1:connectedTo ns2:09638 ; - ns1:hasConnectionPoint ns2:26285, - ns2:66100, - ns2:96291 ; - ns1:hasProperty ns2:04712, - ns2:92192 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:92192 ; - ns2:speedFeedback ns2:04712 ; - ns4:airInlet ns2:96291 ; - ns4:airOutlet ns2:26285 ; + ns2:cnx ns4:26285, + ns4:66100, + ns4:96291 ; + ns2:connected ns4:09638 ; + ns2:connectedThrough ns4:80062 ; + ns2:connectedTo ns4:09638 ; + ns2:hasConnectionPoint ns4:26285, + ns4:66100, + ns4:96291 ; + ns2:hasProperty ns4:04712, + ns4:92192 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:92192 ; + ns4:speedFeedback ns4:04712 ; + ns3:airInlet ns4:96291 ; + ns3:airOutlet ns4:26285 ; rdfs:comment "supply_fan" . -ns2:51343 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:51343 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:33889, - ns2:45669, - ns2:55187 ; - ns1:connected ns2:73219 ; - ns1:connectedThrough ns2:90702 ; - ns1:connectedTo ns2:73219 ; - ns1:hasConnectionPoint ns2:33889, - ns2:45669, - ns2:55187 ; - ns1:hasProperty ns2:43459, - ns2:46167 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:46167 ; - ns2:speedFeedback ns2:43459 ; - ns4:airInlet ns2:33889 ; - ns4:airOutlet ns2:55187 ; + ns2:cnx ns4:33889, + ns4:45669, + ns4:55187 ; + ns2:connected ns4:73219 ; + ns2:connectedThrough ns4:90702 ; + ns2:connectedTo ns4:73219 ; + ns2:hasConnectionPoint ns4:33889, + ns4:45669, + ns4:55187 ; + ns2:hasProperty ns4:43459, + ns4:46167 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:46167 ; + ns4:speedFeedback ns4:43459 ; + ns3:airInlet ns4:33889 ; + ns3:airOutlet ns4:55187 ; rdfs:comment "supply_fan" . -ns2:52428 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:52428 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "7-7" ; - ns1:cnx ns2:04462, - ns2:13280 ; - ns1:connected ns2:05353, - ns2:97668 ; - ns1:connectedFrom ns2:05353 ; - ns1:connectedThrough ns2:54326, - ns2:70668 ; - ns1:connectedTo ns2:97668 ; - ns1:contains ns2:06594, - ns2:74083, - ns2:82619, - ns2:97969 ; - ns1:hasConnectionPoint ns2:04462, - ns2:13280 ; - ns1:hasProperty ns2:18059, - ns2:29008 ; - ns2:airInlet ns2:04462 ; - ns2:airOutlet ns2:13280 . - -ns2:52728 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:04462, + ns4:13280 ; + ns2:connected ns4:05353, + ns4:97668 ; + ns2:connectedFrom ns4:05353 ; + ns2:connectedThrough ns4:54326, + ns4:70668 ; + ns2:connectedTo ns4:97668 ; + ns2:contains ns4:06594, + ns4:74083, + ns4:82619, + ns4:97969 ; + ns2:hasConnectionPoint ns4:04462, + ns4:13280 ; + ns2:hasProperty ns4:18059, + ns4:29008 ; + ns4:airInlet ns4:04462 ; + ns4:airOutlet ns4:13280 . + +ns4:52728 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:12539, - ns2:83154, - ns2:89548 ; - ns1:connected ns2:03254 ; - ns1:connectedThrough ns2:60631 ; - ns1:connectedTo ns2:03254 ; - ns1:hasConnectionPoint ns2:12539, - ns2:83154, - ns2:89548 ; - ns1:hasProperty ns2:83836, - ns2:90604 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:90604 ; - ns2:speedFeedback ns2:83836 ; - ns4:airInlet ns2:83154 ; - ns4:airOutlet ns2:12539 ; + ns2:cnx ns4:12539, + ns4:83154, + ns4:89548 ; + ns2:connected ns4:03254 ; + ns2:connectedThrough ns4:60631 ; + ns2:connectedTo ns4:03254 ; + ns2:hasConnectionPoint ns4:12539, + ns4:83154, + ns4:89548 ; + ns2:hasProperty ns4:83836, + ns4:90604 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:90604 ; + ns4:speedFeedback ns4:83836 ; + ns3:airInlet ns4:83154 ; + ns3:airOutlet ns4:12539 ; rdfs:comment "supply_fan" . -ns2:52918 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:52918 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:81189, - ns2:84297, - ns2:95216 ; - ns1:connected ns2:18099 ; - ns1:connectedFrom ns2:18099 ; - ns1:connectedThrough ns2:33969 ; - ns1:hasConnectionPoint ns2:81189, - ns2:84297, - ns2:95216 ; - ns1:hasProperty ns2:47226, - ns2:67299 ; - ns4:linkageInlet ns2:84297 ; - ns4:waterInlet ns2:81189 ; - ns4:waterOutlet ns2:95216 ; + ns2:cnx ns4:81189, + ns4:84297, + ns4:95216 ; + ns2:connected ns4:18099 ; + ns2:connectedFrom ns4:18099 ; + ns2:connectedThrough ns4:33969 ; + ns2:hasConnectionPoint ns4:81189, + ns4:84297, + ns4:95216 ; + ns2:hasProperty ns4:47226, + ns4:67299 ; + ns3:linkageInlet ns4:84297 ; + ns3:waterInlet ns4:81189 ; + ns3:waterOutlet ns4:95216 ; rdfs:comment "hw_valve" . -ns2:53221 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:53221 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:10484, - ns2:31907, - ns2:57087 ; - ns1:connected ns2:38627 ; - ns1:connectedFrom ns2:38627 ; - ns1:connectedThrough ns2:26803 ; - ns1:hasConnectionPoint ns2:10484, - ns2:31907, - ns2:57087 ; - ns1:hasProperty ns2:07056, - ns2:54033 ; - ns4:linkageInlet ns2:57087 ; - ns4:waterInlet ns2:10484 ; - ns4:waterOutlet ns2:31907 ; + ns2:cnx ns4:10484, + ns4:31907, + ns4:57087 ; + ns2:connected ns4:38627 ; + ns2:connectedFrom ns4:38627 ; + ns2:connectedThrough ns4:26803 ; + ns2:hasConnectionPoint ns4:10484, + ns4:31907, + ns4:57087 ; + ns2:hasProperty ns4:07056, + ns4:54033 ; + ns3:linkageInlet ns4:57087 ; + ns3:waterInlet ns4:10484 ; + ns3:waterOutlet ns4:31907 ; rdfs:comment "hw_valve" . -ns2:54101 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:54101 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:53092, - ns2:57751, - ns2:65991 ; - ns1:connected ns2:68951 ; - ns1:connectedFrom ns2:68951 ; - ns1:connectedThrough ns2:16657 ; - ns1:hasConnectionPoint ns2:53092, - ns2:57751, - ns2:65991 ; - ns1:hasProperty ns2:05172, - ns2:20184 ; - ns4:linkageInlet ns2:65991 ; - ns4:waterInlet ns2:57751 ; - ns4:waterOutlet ns2:53092 ; + ns2:cnx ns4:53092, + ns4:57751, + ns4:65991 ; + ns2:connected ns4:68951 ; + ns2:connectedFrom ns4:68951 ; + ns2:connectedThrough ns4:16657 ; + ns2:hasConnectionPoint ns4:53092, + ns4:57751, + ns4:65991 ; + ns2:hasProperty ns4:05172, + ns4:20184 ; + ns3:linkageInlet ns4:65991 ; + ns3:waterInlet ns4:57751 ; + ns3:waterOutlet ns4:53092 ; rdfs:comment "hw_valve" . -ns2:54463 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:54463 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:30599, - ns2:63214, - ns2:87585 ; - ns1:connected ns2:03254 ; - ns1:connectedFrom ns2:03254 ; - ns1:connectedThrough ns2:01094 ; - ns1:hasConnectionPoint ns2:30599, - ns2:63214, - ns2:87585 ; - ns1:hasProperty ns2:74322, - ns2:99336 ; - ns4:linkageInlet ns2:63214 ; - ns4:waterInlet ns2:30599 ; - ns4:waterOutlet ns2:87585 ; + ns2:cnx ns4:30599, + ns4:63214, + ns4:87585 ; + ns2:connected ns4:03254 ; + ns2:connectedFrom ns4:03254 ; + ns2:connectedThrough ns4:01094 ; + ns2:hasConnectionPoint ns4:30599, + ns4:63214, + ns4:87585 ; + ns2:hasProperty ns4:74322, + ns4:99336 ; + ns3:linkageInlet ns4:63214 ; + ns3:waterInlet ns4:30599 ; + ns3:waterOutlet ns4:87585 ; rdfs:comment "hw_valve" . -ns2:55046 a ns1:Connection ; +ns4:55046 a ns2:Connection ; rdfs:label "RTU_7.mixed_air" ; - ns1:cnx ns2:02651, - ns2:14007, - ns2:65082 ; - ns1:connectsAt ns2:02651, - ns2:14007, - ns2:65082 ; - ns1:connectsFrom ns2:73249, - ns2:87637 ; - ns1:connectsTo ns2:07660 ; - ns1:hasMedium ; - ns1:hasProperty ns2:48697 . - -ns2:56611 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:02651, + ns4:14007, + ns4:65082 ; + ns2:connectsAt ns4:02651, + ns4:14007, + ns4:65082 ; + ns2:connectsFrom ns4:73249, + ns4:87637 ; + ns2:connectsTo ns4:07660 ; + ns2:hasMedium ; + ns2:hasProperty ns4:48697 . + +ns4:56611 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:56886, - ns2:62873, - ns2:81762 ; - ns1:connected ns2:35514 ; - ns1:connectedThrough ns2:96615 ; - ns1:connectedTo ns2:35514 ; - ns1:hasConnectionPoint ns2:56886, - ns2:62873, - ns2:81762 ; - ns1:hasProperty ns2:28855, - ns2:42767 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:42767 ; - ns2:speedFeedback ns2:28855 ; - ns4:airInlet ns2:56886 ; - ns4:airOutlet ns2:62873 ; + ns2:cnx ns4:56886, + ns4:62873, + ns4:81762 ; + ns2:connected ns4:35514 ; + ns2:connectedThrough ns4:96615 ; + ns2:connectedTo ns4:35514 ; + ns2:hasConnectionPoint ns4:56886, + ns4:62873, + ns4:81762 ; + ns2:hasProperty ns4:28855, + ns4:42767 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:42767 ; + ns4:speedFeedback ns4:28855 ; + ns3:airInlet ns4:56886 ; + ns3:airOutlet ns4:62873 ; rdfs:comment "supply_fan" . -ns2:56753 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:56753 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:11860, - ns2:49767, - ns2:59156 ; - ns1:connected ns2:49614 ; - ns1:connectedFrom ns2:49614 ; - ns1:connectedThrough ns2:34379 ; - ns1:hasConnectionPoint ns2:11860, - ns2:49767, - ns2:59156 ; - ns1:hasProperty ns2:33570, - ns2:47278 ; - ns4:linkageInlet ns2:11860 ; - ns4:waterInlet ns2:49767 ; - ns4:waterOutlet ns2:59156 ; + ns2:cnx ns4:11860, + ns4:49767, + ns4:59156 ; + ns2:connected ns4:49614 ; + ns2:connectedFrom ns4:49614 ; + ns2:connectedThrough ns4:34379 ; + ns2:hasConnectionPoint ns4:11860, + ns4:49767, + ns4:59156 ; + ns2:hasProperty ns4:33570, + ns4:47278 ; + ns3:linkageInlet ns4:11860 ; + ns3:waterInlet ns4:49767 ; + ns3:waterOutlet ns4:59156 ; rdfs:comment "hw_valve" . -ns2:57148 a ns1:Connection ; +ns4:57148 a ns2:Connection ; rdfs:label "RTU_5.prefilter_air" ; - ns1:cnx ns2:39389, - ns2:77207, - ns2:93088 ; - ns1:connectsAt ns2:39389, - ns2:77207, - ns2:93088 ; - ns1:connectsFrom ns2:15718 ; - ns1:connectsThrough ns2:39389 ; - ns1:connectsTo ns2:57776, - ns2:62986 ; - ns1:hasMedium . - -ns2:58117 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:39389, + ns4:77207, + ns4:93088 ; + ns2:connectsAt ns4:39389, + ns4:77207, + ns4:93088 ; + ns2:connectsFrom ns4:15718 ; + ns2:connectsThrough ns4:39389 ; + ns2:connectsTo ns4:57776, + ns4:62986 ; + ns2:hasMedium . + +ns4:58117 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-9" ; - ns1:cnx ns2:47087, - ns2:52697 ; - ns1:connected ns2:05101, - ns2:26040 ; - ns1:connectedFrom ns2:05101 ; - ns1:connectedThrough ns2:68940, - ns2:95073 ; - ns1:connectedTo ns2:26040 ; - ns1:contains ns2:16051, - ns2:46293, - ns2:58251, - ns2:97321 ; - ns1:hasConnectionPoint ns2:47087, - ns2:52697 ; - ns1:hasProperty ns2:20149, - ns2:95629 ; - ns2:airInlet ns2:52697 ; - ns2:airOutlet ns2:47087 . - -ns2:60254 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:47087, + ns4:52697 ; + ns2:connected ns4:05101, + ns4:26040 ; + ns2:connectedFrom ns4:05101 ; + ns2:connectedThrough ns4:68940, + ns4:95073 ; + ns2:connectedTo ns4:26040 ; + ns2:contains ns4:16051, + ns4:46293, + ns4:58251, + ns4:97321 ; + ns2:hasConnectionPoint ns4:47087, + ns4:52697 ; + ns2:hasProperty ns4:20149, + ns4:95629 ; + ns4:airInlet ns4:52697 ; + ns4:airOutlet ns4:47087 . + +ns4:60254 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:03206, - ns2:29173, - ns2:87432 ; - ns1:connected ns2:75732 ; - ns1:connectedThrough ns2:88844 ; - ns1:connectedTo ns2:75732 ; - ns1:hasConnectionPoint ns2:03206, - ns2:29173, - ns2:87432 ; - ns1:hasProperty ns2:45606, - ns2:96052 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:45606 ; - ns2:speedFeedback ns2:96052 ; - ns4:airInlet ns2:03206 ; - ns4:airOutlet ns2:87432 ; + ns2:cnx ns4:03206, + ns4:29173, + ns4:87432 ; + ns2:connected ns4:75732 ; + ns2:connectedThrough ns4:88844 ; + ns2:connectedTo ns4:75732 ; + ns2:hasConnectionPoint ns4:03206, + ns4:29173, + ns4:87432 ; + ns2:hasProperty ns4:45606, + ns4:96052 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:45606 ; + ns4:speedFeedback ns4:96052 ; + ns3:airInlet ns4:03206 ; + ns3:airOutlet ns4:87432 ; rdfs:comment "supply_fan" . -ns2:60462 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:60462 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:06948, - ns2:30894, - ns2:91176 ; - ns1:connected ns2:16343 ; - ns1:connectedFrom ns2:16343 ; - ns1:connectedThrough ns2:04028 ; - ns1:hasConnectionPoint ns2:06948, - ns2:30894, - ns2:91176 ; - ns1:hasProperty ns2:46438, - ns2:47881 ; - ns4:linkageInlet ns2:91176 ; - ns4:waterInlet ns2:30894 ; - ns4:waterOutlet ns2:06948 ; + ns2:cnx ns4:06948, + ns4:30894, + ns4:91176 ; + ns2:connected ns4:16343 ; + ns2:connectedFrom ns4:16343 ; + ns2:connectedThrough ns4:04028 ; + ns2:hasConnectionPoint ns4:06948, + ns4:30894, + ns4:91176 ; + ns2:hasProperty ns4:46438, + ns4:47881 ; + ns3:linkageInlet ns4:91176 ; + ns3:waterInlet ns4:30894 ; + ns3:waterOutlet ns4:06948 ; rdfs:comment "hw_valve" . -ns2:60688 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:60688 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-02A" ; - ns1:cnx ns2:14490, - ns2:38655 ; - ns1:connected ns2:50126, - ns2:70253 ; - ns1:connectedFrom ns2:50126 ; - ns1:connectedThrough ns2:28042, - ns2:63083 ; - ns1:connectedTo ns2:70253 ; - ns1:contains ns2:20861, - ns2:31318, - ns2:38529, - ns2:54082 ; - ns1:hasConnectionPoint ns2:14490, - ns2:38655 ; - ns1:hasProperty ns2:34111, - ns2:91664 ; - ns2:airInlet ns2:14490 ; - ns2:airOutlet ns2:38655 . - -ns2:60841 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:14490, + ns4:38655 ; + ns2:connected ns4:50126, + ns4:70253 ; + ns2:connectedFrom ns4:50126 ; + ns2:connectedThrough ns4:28042, + ns4:63083 ; + ns2:connectedTo ns4:70253 ; + ns2:contains ns4:20861, + ns4:31318, + ns4:38529, + ns4:54082 ; + ns2:hasConnectionPoint ns4:14490, + ns4:38655 ; + ns2:hasProperty ns4:34111, + ns4:91664 ; + ns4:airInlet ns4:14490 ; + ns4:airOutlet ns4:38655 . + +ns4:60841 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:15903, - ns2:53835, - ns2:80091 ; - ns1:connected ns2:85409 ; - ns1:connectedFrom ns2:85409 ; - ns1:connectedThrough ns2:64612 ; - ns1:hasConnectionPoint ns2:15903, - ns2:53835, - ns2:80091 ; - ns1:hasProperty ns2:49221, - ns2:76771 ; - ns4:linkageInlet ns2:15903 ; - ns4:waterInlet ns2:80091 ; - ns4:waterOutlet ns2:53835 ; + ns2:cnx ns4:15903, + ns4:53835, + ns4:80091 ; + ns2:connected ns4:85409 ; + ns2:connectedFrom ns4:85409 ; + ns2:connectedThrough ns4:64612 ; + ns2:hasConnectionPoint ns4:15903, + ns4:53835, + ns4:80091 ; + ns2:hasProperty ns4:49221, + ns4:76771 ; + ns3:linkageInlet ns4:15903 ; + ns3:waterInlet ns4:80091 ; + ns3:waterOutlet ns4:53835 ; rdfs:comment "hw_valve" . -ns2:61196 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:61196 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:52638, - ns2:56547, - ns2:85011 ; - ns1:connected ns2:84040 ; - ns1:connectedThrough ns2:41561 ; - ns1:connectedTo ns2:84040 ; - ns1:hasConnectionPoint ns2:52638, - ns2:56547, - ns2:85011 ; - ns1:hasProperty ns2:11945, - ns2:37850 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:37850 ; - ns2:speedFeedback ns2:11945 ; - ns4:airInlet ns2:56547 ; - ns4:airOutlet ns2:52638 ; + ns2:cnx ns4:52638, + ns4:56547, + ns4:85011 ; + ns2:connected ns4:84040 ; + ns2:connectedThrough ns4:41561 ; + ns2:connectedTo ns4:84040 ; + ns2:hasConnectionPoint ns4:52638, + ns4:56547, + ns4:85011 ; + ns2:hasProperty ns4:11945, + ns4:37850 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:37850 ; + ns4:speedFeedback ns4:11945 ; + ns3:airInlet ns4:56547 ; + ns3:airOutlet ns4:52638 ; rdfs:comment "supply_fan" . -ns2:61647 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:61647 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-66" ; - ns1:cnx ns2:15762, - ns2:49336 ; - ns1:connected ns2:24053, - ns2:77070 ; - ns1:connectedFrom ns2:77070 ; - ns1:connectedThrough ns2:12423, - ns2:84877 ; - ns1:connectedTo ns2:24053 ; - ns1:contains ns2:32493, - ns2:46417, - ns2:62426, - ns2:89915 ; - ns1:hasConnectionPoint ns2:15762, - ns2:49336 ; - ns1:hasProperty ns2:04912, - ns2:30152 ; - ns2:airInlet ns2:49336 ; - ns2:airOutlet ns2:15762 . - -ns2:62383 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:15762, + ns4:49336 ; + ns2:connected ns4:24053, + ns4:77070 ; + ns2:connectedFrom ns4:77070 ; + ns2:connectedThrough ns4:12423, + ns4:84877 ; + ns2:connectedTo ns4:24053 ; + ns2:contains ns4:32493, + ns4:46417, + ns4:62426, + ns4:89915 ; + ns2:hasConnectionPoint ns4:15762, + ns4:49336 ; + ns2:hasProperty ns4:04912, + ns4:30152 ; + ns4:airInlet ns4:49336 ; + ns4:airOutlet ns4:15762 . + +ns4:62383 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:14620, - ns2:64347, - ns2:86877 ; - ns1:connected ns2:19107 ; - ns1:connectedThrough ns2:09852 ; - ns1:connectedTo ns2:19107 ; - ns1:hasConnectionPoint ns2:14620, - ns2:64347, - ns2:86877 ; - ns1:hasProperty ns2:77627, - ns2:92560 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:92560 ; - ns2:speedFeedback ns2:77627 ; - ns4:airInlet ns2:86877 ; - ns4:airOutlet ns2:64347 ; + ns2:cnx ns4:14620, + ns4:64347, + ns4:86877 ; + ns2:connected ns4:19107 ; + ns2:connectedThrough ns4:09852 ; + ns2:connectedTo ns4:19107 ; + ns2:hasConnectionPoint ns4:14620, + ns4:64347, + ns4:86877 ; + ns2:hasProperty ns4:77627, + ns4:92560 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:92560 ; + ns4:speedFeedback ns4:77627 ; + ns3:airInlet ns4:86877 ; + ns3:airOutlet ns4:64347 ; rdfs:comment "supply_fan" . -ns2:62426 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:62426 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:34767, - ns2:45108, - ns2:72199 ; - ns1:connected ns2:89915 ; - ns1:connectedFrom ns2:89915 ; - ns1:connectedThrough ns2:82606 ; - ns1:hasConnectionPoint ns2:34767, - ns2:45108, - ns2:72199 ; - ns1:hasProperty ns2:53531, - ns2:71501 ; - ns4:linkageInlet ns2:45108 ; - ns4:waterInlet ns2:34767 ; - ns4:waterOutlet ns2:72199 ; + ns2:cnx ns4:34767, + ns4:45108, + ns4:72199 ; + ns2:connected ns4:89915 ; + ns2:connectedFrom ns4:89915 ; + ns2:connectedThrough ns4:82606 ; + ns2:hasConnectionPoint ns4:34767, + ns4:45108, + ns4:72199 ; + ns2:hasProperty ns4:53531, + ns4:71501 ; + ns3:linkageInlet ns4:45108 ; + ns3:waterInlet ns4:34767 ; + ns3:waterOutlet ns4:72199 ; rdfs:comment "hw_valve" . -ns2:62481 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:62481 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:08265, - ns2:46181, - ns2:99477 ; - ns1:connected ns2:81183 ; - ns1:connectedThrough ns2:42654 ; - ns1:connectedTo ns2:81183 ; - ns1:hasConnectionPoint ns2:08265, - ns2:46181, - ns2:99477 ; - ns1:hasProperty ns2:01690, - ns2:33218 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:33218 ; - ns2:speedFeedback ns2:01690 ; - ns4:airInlet ns2:99477 ; - ns4:airOutlet ns2:46181 ; + ns2:cnx ns4:08265, + ns4:46181, + ns4:99477 ; + ns2:connected ns4:81183 ; + ns2:connectedThrough ns4:42654 ; + ns2:connectedTo ns4:81183 ; + ns2:hasConnectionPoint ns4:08265, + ns4:46181, + ns4:99477 ; + ns2:hasProperty ns4:01690, + ns4:33218 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:33218 ; + ns4:speedFeedback ns4:01690 ; + ns3:airInlet ns4:99477 ; + ns3:airOutlet ns4:46181 ; rdfs:comment "supply_fan" . -ns2:62510 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:62510 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:32620, - ns2:80775, - ns2:87387 ; - ns1:connected ns2:83428 ; - ns1:connectedThrough ns2:54863 ; - ns1:connectedTo ns2:83428 ; - ns1:hasConnectionPoint ns2:32620, - ns2:80775, - ns2:87387 ; - ns1:hasProperty ns2:01782, - ns2:71674 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:71674 ; - ns2:speedFeedback ns2:01782 ; - ns4:airInlet ns2:80775 ; - ns4:airOutlet ns2:87387 ; + ns2:cnx ns4:32620, + ns4:80775, + ns4:87387 ; + ns2:connected ns4:83428 ; + ns2:connectedThrough ns4:54863 ; + ns2:connectedTo ns4:83428 ; + ns2:hasConnectionPoint ns4:32620, + ns4:80775, + ns4:87387 ; + ns2:hasProperty ns4:01782, + ns4:71674 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:71674 ; + ns4:speedFeedback ns4:01782 ; + ns3:airInlet ns4:80775 ; + ns3:airOutlet ns4:87387 ; rdfs:comment "supply_fan" . -ns2:63086 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:63086 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "8-1" ; - ns1:cnx ns2:40636, - ns2:52909 ; - ns1:connected ns2:10117, - ns2:29499 ; - ns1:connectedFrom ns2:10117 ; - ns1:connectedThrough ns2:07591, - ns2:47009 ; - ns1:connectedTo ns2:29499 ; - ns1:contains ns2:04430, - ns2:24559, - ns2:69044, - ns2:73323 ; - ns1:hasConnectionPoint ns2:40636, - ns2:52909 ; - ns1:hasProperty ns2:29935, - ns2:32144 ; - ns2:airInlet ns2:40636 ; - ns2:airOutlet ns2:52909 . - -ns2:64318 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:40636, + ns4:52909 ; + ns2:connected ns4:10117, + ns4:29499 ; + ns2:connectedFrom ns4:10117 ; + ns2:connectedThrough ns4:07591, + ns4:47009 ; + ns2:connectedTo ns4:29499 ; + ns2:contains ns4:04430, + ns4:24559, + ns4:69044, + ns4:73323 ; + ns2:hasConnectionPoint ns4:40636, + ns4:52909 ; + ns2:hasProperty ns4:29935, + ns4:32144 ; + ns4:airInlet ns4:40636 ; + ns4:airOutlet ns4:52909 . + +ns4:64318 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:29692, - ns2:81884, - ns2:94561 ; - ns1:connected ns2:09900 ; - ns1:connectedThrough ns2:71903 ; - ns1:connectedTo ns2:09900 ; - ns1:hasConnectionPoint ns2:29692, - ns2:81884, - ns2:94561 ; - ns1:hasProperty ns2:77830, - ns2:99527 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:99527 ; - ns2:speedFeedback ns2:77830 ; - ns4:airInlet ns2:29692 ; - ns4:airOutlet ns2:81884 ; + ns2:cnx ns4:29692, + ns4:81884, + ns4:94561 ; + ns2:connected ns4:09900 ; + ns2:connectedThrough ns4:71903 ; + ns2:connectedTo ns4:09900 ; + ns2:hasConnectionPoint ns4:29692, + ns4:81884, + ns4:94561 ; + ns2:hasProperty ns4:77830, + ns4:99527 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:99527 ; + ns4:speedFeedback ns4:77830 ; + ns3:airInlet ns4:29692 ; + ns3:airOutlet ns4:81884 ; rdfs:comment "supply_fan" . -ns2:64887 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:64887 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:52416, - ns2:61357, - ns2:68284 ; - ns1:connected ns2:19014 ; - ns1:connectedThrough ns2:90747 ; - ns1:connectedTo ns2:19014 ; - ns1:hasConnectionPoint ns2:52416, - ns2:61357, - ns2:68284 ; - ns1:hasProperty ns2:14024, - ns2:19198 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:14024 ; - ns2:speedFeedback ns2:19198 ; - ns4:airInlet ns2:61357 ; - ns4:airOutlet ns2:52416 ; + ns2:cnx ns4:52416, + ns4:61357, + ns4:68284 ; + ns2:connected ns4:19014 ; + ns2:connectedThrough ns4:90747 ; + ns2:connectedTo ns4:19014 ; + ns2:hasConnectionPoint ns4:52416, + ns4:61357, + ns4:68284 ; + ns2:hasProperty ns4:14024, + ns4:19198 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:14024 ; + ns4:speedFeedback ns4:19198 ; + ns3:airInlet ns4:61357 ; + ns3:airOutlet ns4:52416 ; rdfs:comment "supply_fan" . -ns2:65015 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:65015 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:09384, - ns2:35611, - ns2:76054 ; - ns1:connected ns2:65381 ; - ns1:connectedThrough ns2:15386 ; - ns1:connectedTo ns2:65381 ; - ns1:hasConnectionPoint ns2:09384, - ns2:35611, - ns2:76054 ; - ns1:hasProperty ns2:62183, - ns2:99615 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:62183 ; - ns2:speedFeedback ns2:99615 ; - ns4:airInlet ns2:35611 ; - ns4:airOutlet ns2:76054 ; + ns2:cnx ns4:09384, + ns4:35611, + ns4:76054 ; + ns2:connected ns4:65381 ; + ns2:connectedThrough ns4:15386 ; + ns2:connectedTo ns4:65381 ; + ns2:hasConnectionPoint ns4:09384, + ns4:35611, + ns4:76054 ; + ns2:hasProperty ns4:62183, + ns4:99615 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:62183 ; + ns4:speedFeedback ns4:99615 ; + ns3:airInlet ns4:35611 ; + ns3:airOutlet ns4:76054 ; rdfs:comment "supply_fan" . -ns2:65125 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:65125 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "2-44A" ; - ns1:cnx ns2:28200, - ns2:35121 ; - ns1:connected ns2:10117, - ns2:54090 ; - ns1:connectedFrom ns2:10117 ; - ns1:connectedThrough ns2:71446, - ns2:74580 ; - ns1:connectedTo ns2:54090 ; - ns1:contains ns2:09200, - ns2:57017, - ns2:87421, - ns2:90778 ; - ns1:hasConnectionPoint ns2:28200, - ns2:35121 ; - ns1:hasProperty ns2:46589, - ns2:85710 ; - ns2:airInlet ns2:28200 ; - ns2:airOutlet ns2:35121 . - -ns2:65206 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:28200, + ns4:35121 ; + ns2:connected ns4:10117, + ns4:54090 ; + ns2:connectedFrom ns4:10117 ; + ns2:connectedThrough ns4:71446, + ns4:74580 ; + ns2:connectedTo ns4:54090 ; + ns2:contains ns4:09200, + ns4:57017, + ns4:87421, + ns4:90778 ; + ns2:hasConnectionPoint ns4:28200, + ns4:35121 ; + ns2:hasProperty ns4:46589, + ns4:85710 ; + ns4:airInlet ns4:28200 ; + ns4:airOutlet ns4:35121 . + +ns4:65206 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:17434, - ns2:50224, - ns2:55442 ; - ns1:connected ns2:05062 ; - ns1:connectedFrom ns2:05062 ; - ns1:connectedThrough ns2:32445 ; - ns1:hasConnectionPoint ns2:17434, - ns2:50224, - ns2:55442 ; - ns1:hasProperty ns2:12857, - ns2:98463 ; - ns4:linkageInlet ns2:55442 ; - ns4:waterInlet ns2:50224 ; - ns4:waterOutlet ns2:17434 ; + ns2:cnx ns4:17434, + ns4:50224, + ns4:55442 ; + ns2:connected ns4:05062 ; + ns2:connectedFrom ns4:05062 ; + ns2:connectedThrough ns4:32445 ; + ns2:hasConnectionPoint ns4:17434, + ns4:50224, + ns4:55442 ; + ns2:hasProperty ns4:12857, + ns4:98463 ; + ns3:linkageInlet ns4:55442 ; + ns3:waterInlet ns4:50224 ; + ns3:waterOutlet ns4:17434 ; rdfs:comment "hw_valve" . -ns2:65374 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:65374 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:32468, - ns2:34957, - ns2:70321 ; - ns1:connected ns2:10658 ; - ns1:connectedFrom ns2:10658 ; - ns1:connectedThrough ns2:62479 ; - ns1:hasConnectionPoint ns2:32468, - ns2:34957, - ns2:70321 ; - ns1:hasProperty ns2:66736, - ns2:91175 ; - ns4:linkageInlet ns2:70321 ; - ns4:waterInlet ns2:34957 ; - ns4:waterOutlet ns2:32468 ; + ns2:cnx ns4:32468, + ns4:34957, + ns4:70321 ; + ns2:connected ns4:10658 ; + ns2:connectedFrom ns4:10658 ; + ns2:connectedThrough ns4:62479 ; + ns2:hasConnectionPoint ns4:32468, + ns4:34957, + ns4:70321 ; + ns2:hasProperty ns4:66736, + ns4:91175 ; + ns3:linkageInlet ns4:70321 ; + ns3:waterInlet ns4:34957 ; + ns3:waterOutlet ns4:32468 ; rdfs:comment "hw_valve" . -ns2:66562 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:66562 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:00196, - ns2:50805, - ns2:88895 ; - ns1:connected ns2:12686 ; - ns1:connectedThrough ns2:08808 ; - ns1:connectedTo ns2:12686 ; - ns1:hasConnectionPoint ns2:00196, - ns2:50805, - ns2:88895 ; - ns1:hasProperty ns2:88211, - ns2:94737 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:94737 ; - ns2:speedFeedback ns2:88211 ; - ns4:airInlet ns2:50805 ; - ns4:airOutlet ns2:88895 ; + ns2:cnx ns4:00196, + ns4:50805, + ns4:88895 ; + ns2:connected ns4:12686 ; + ns2:connectedThrough ns4:08808 ; + ns2:connectedTo ns4:12686 ; + ns2:hasConnectionPoint ns4:00196, + ns4:50805, + ns4:88895 ; + ns2:hasProperty ns4:88211, + ns4:94737 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:94737 ; + ns4:speedFeedback ns4:88211 ; + ns3:airInlet ns4:50805 ; + ns3:airOutlet ns4:88895 ; rdfs:comment "supply_fan" . -ns2:66742 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:66742 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-65" ; - ns1:cnx ns2:13428, - ns2:26091 ; - ns1:connected ns2:33721, - ns2:77070 ; - ns1:connectedFrom ns2:77070 ; - ns1:connectedThrough ns2:08108, - ns2:93889 ; - ns1:connectedTo ns2:33721 ; - ns1:contains ns2:45896, - ns2:55951, - ns2:74360, - ns2:89752 ; - ns1:hasConnectionPoint ns2:13428, - ns2:26091 ; - ns1:hasProperty ns2:76434, - ns2:86189 ; - ns2:airInlet ns2:13428 ; - ns2:airOutlet ns2:26091 . - -ns2:66843 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:13428, + ns4:26091 ; + ns2:connected ns4:33721, + ns4:77070 ; + ns2:connectedFrom ns4:77070 ; + ns2:connectedThrough ns4:08108, + ns4:93889 ; + ns2:connectedTo ns4:33721 ; + ns2:contains ns4:45896, + ns4:55951, + ns4:74360, + ns4:89752 ; + ns2:hasConnectionPoint ns4:13428, + ns4:26091 ; + ns2:hasProperty ns4:76434, + ns4:86189 ; + ns4:airInlet ns4:13428 ; + ns4:airOutlet ns4:26091 . + +ns4:66843 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "2-92" ; - ns1:cnx ns2:46761, - ns2:47481 ; - ns1:connected ns2:46213, - ns2:88028 ; - ns1:connectedFrom ns2:88028 ; - ns1:connectedThrough ns2:85385, - ns2:97655 ; - ns1:connectedTo ns2:46213 ; - ns1:contains ns2:09638, - ns2:49965, - ns2:96315, - ns2:97030 ; - ns1:hasConnectionPoint ns2:46761, - ns2:47481 ; - ns1:hasProperty ns2:22465, - ns2:30133 ; - ns2:airInlet ns2:46761 ; - ns2:airOutlet ns2:47481 . - -ns2:67542 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:46761, + ns4:47481 ; + ns2:connected ns4:46213, + ns4:88028 ; + ns2:connectedFrom ns4:88028 ; + ns2:connectedThrough ns4:85385, + ns4:97655 ; + ns2:connectedTo ns4:46213 ; + ns2:contains ns4:09638, + ns4:49965, + ns4:96315, + ns4:97030 ; + ns2:hasConnectionPoint ns4:46761, + ns4:47481 ; + ns2:hasProperty ns4:22465, + ns4:30133 ; + ns4:airInlet ns4:46761 ; + ns4:airOutlet ns4:47481 . + +ns4:67542 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:18857, - ns2:43983, - ns2:83786 ; - ns1:connected ns2:75732 ; - ns1:connectedFrom ns2:75732 ; - ns1:connectedThrough ns2:93499 ; - ns1:hasConnectionPoint ns2:18857, - ns2:43983, - ns2:83786 ; - ns1:hasProperty ns2:24605, - ns2:45824 ; - ns4:linkageInlet ns2:43983 ; - ns4:waterInlet ns2:18857 ; - ns4:waterOutlet ns2:83786 ; + ns2:cnx ns4:18857, + ns4:43983, + ns4:83786 ; + ns2:connected ns4:75732 ; + ns2:connectedFrom ns4:75732 ; + ns2:connectedThrough ns4:93499 ; + ns2:hasConnectionPoint ns4:18857, + ns4:43983, + ns4:83786 ; + ns2:hasProperty ns4:24605, + ns4:45824 ; + ns3:linkageInlet ns4:43983 ; + ns3:waterInlet ns4:18857 ; + ns3:waterOutlet ns4:83786 ; rdfs:comment "hw_valve" . -ns2:68140 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:68140 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:08710, - ns2:53962, - ns2:57974 ; - ns1:connected ns2:80693 ; - ns1:connectedFrom ns2:80693 ; - ns1:connectedThrough ns2:25347 ; - ns1:hasConnectionPoint ns2:08710, - ns2:53962, - ns2:57974 ; - ns1:hasProperty ns2:03867, - ns2:58448 ; - ns4:linkageInlet ns2:57974 ; - ns4:waterInlet ns2:53962 ; - ns4:waterOutlet ns2:08710 ; + ns2:cnx ns4:08710, + ns4:53962, + ns4:57974 ; + ns2:connected ns4:80693 ; + ns2:connectedFrom ns4:80693 ; + ns2:connectedThrough ns4:25347 ; + ns2:hasConnectionPoint ns4:08710, + ns4:53962, + ns4:57974 ; + ns2:hasProperty ns4:03867, + ns4:58448 ; + ns3:linkageInlet ns4:57974 ; + ns3:waterInlet ns4:53962 ; + ns3:waterOutlet ns4:08710 ; rdfs:comment "hw_valve" . -ns2:69011 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:69011 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-6" ; - ns1:cnx ns2:04784, - ns2:94165 ; - ns1:connected ns2:05101, - ns2:80151 ; - ns1:connectedFrom ns2:05101 ; - ns1:connectedThrough ns2:12364, - ns2:70319 ; - ns1:connectedTo ns2:80151 ; - ns1:contains ns2:17361, - ns2:40974, - ns2:44133, - ns2:55408 ; - ns1:hasConnectionPoint ns2:04784, - ns2:94165 ; - ns1:hasProperty ns2:24636, - ns2:71776 ; - ns2:airInlet ns2:04784 ; - ns2:airOutlet ns2:94165 . - -ns2:70045 a , - ns1:Connection, - ns1:ConnectionPoint, - ns1:InletConnectionPoint ; + ns2:cnx ns4:04784, + ns4:94165 ; + ns2:connected ns4:05101, + ns4:80151 ; + ns2:connectedFrom ns4:05101 ; + ns2:connectedThrough ns4:12364, + ns4:70319 ; + ns2:connectedTo ns4:80151 ; + ns2:contains ns4:17361, + ns4:40974, + ns4:44133, + ns4:55408 ; + ns2:hasConnectionPoint ns4:04784, + ns4:94165 ; + ns2:hasProperty ns4:24636, + ns4:71776 ; + ns4:airInlet ns4:04784 ; + ns4:airOutlet ns4:94165 . + +ns4:70045 a , + ns2:Connection, + ns2:ConnectionPoint, + ns2:InletConnectionPoint ; rdfs:label "hw_valve.linkageInlet" ; - ns1:cnx ns2:57501, - ns2:60850, - ns2:78531 ; - ns1:connectsAt ns2:57501, - ns2:60850, - ns2:78531 ; - ns1:connectsFrom ns2:05101 ; - ns1:connectsTo ns2:77743 ; - ns1:hasMedium , + ns2:cnx ns4:57501, + ns4:60850, + ns4:78531 ; + ns2:connectsAt ns4:57501, + ns4:60850, + ns4:78531 ; + ns2:connectsFrom ns4:05101 ; + ns2:connectsTo ns4:77743 ; + ns2:hasMedium , ; - ns1:isConnectionPointOf ns2:57501 . + ns2:isConnectionPointOf ns4:57501 . -ns2:70120 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:70120 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:31603, - ns2:52037, - ns2:71075 ; - ns1:connected ns2:30030 ; - ns1:connectedFrom ns2:30030 ; - ns1:connectedThrough ns2:37718 ; - ns1:hasConnectionPoint ns2:31603, - ns2:52037, - ns2:71075 ; - ns1:hasProperty ns2:13702, - ns2:86848 ; - ns4:linkageInlet ns2:31603 ; - ns4:waterInlet ns2:71075 ; - ns4:waterOutlet ns2:52037 ; + ns2:cnx ns4:31603, + ns4:52037, + ns4:71075 ; + ns2:connected ns4:30030 ; + ns2:connectedFrom ns4:30030 ; + ns2:connectedThrough ns4:37718 ; + ns2:hasConnectionPoint ns4:31603, + ns4:52037, + ns4:71075 ; + ns2:hasProperty ns4:13702, + ns4:86848 ; + ns3:linkageInlet ns4:31603 ; + ns3:waterInlet ns4:71075 ; + ns3:waterOutlet ns4:52037 ; rdfs:comment "hw_valve" . -ns2:70230 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:70230 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:14000, - ns2:26374, - ns2:93328 ; - ns1:connected ns2:67388 ; - ns1:connectedThrough ns2:42045 ; - ns1:connectedTo ns2:67388 ; - ns1:hasConnectionPoint ns2:14000, - ns2:26374, - ns2:93328 ; - ns1:hasProperty ns2:30310, - ns2:65146 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:65146 ; - ns2:speedFeedback ns2:30310 ; - ns4:airInlet ns2:93328 ; - ns4:airOutlet ns2:26374 ; + ns2:cnx ns4:14000, + ns4:26374, + ns4:93328 ; + ns2:connected ns4:67388 ; + ns2:connectedThrough ns4:42045 ; + ns2:connectedTo ns4:67388 ; + ns2:hasConnectionPoint ns4:14000, + ns4:26374, + ns4:93328 ; + ns2:hasProperty ns4:30310, + ns4:65146 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:65146 ; + ns4:speedFeedback ns4:30310 ; + ns3:airInlet ns4:93328 ; + ns3:airOutlet ns4:26374 ; rdfs:comment "supply_fan" . -ns2:71025 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:71025 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:24339, - ns2:51911, - ns2:87772 ; - ns1:connected ns2:05062 ; - ns1:connectedThrough ns2:07119 ; - ns1:connectedTo ns2:05062 ; - ns1:hasConnectionPoint ns2:24339, - ns2:51911, - ns2:87772 ; - ns1:hasProperty ns2:72594, - ns2:90615 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:90615 ; - ns2:speedFeedback ns2:72594 ; - ns4:airInlet ns2:51911 ; - ns4:airOutlet ns2:24339 ; + ns2:cnx ns4:24339, + ns4:51911, + ns4:87772 ; + ns2:connected ns4:05062 ; + ns2:connectedThrough ns4:07119 ; + ns2:connectedTo ns4:05062 ; + ns2:hasConnectionPoint ns4:24339, + ns4:51911, + ns4:87772 ; + ns2:hasProperty ns4:72594, + ns4:90615 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:90615 ; + ns4:speedFeedback ns4:72594 ; + ns3:airInlet ns4:51911 ; + ns3:airOutlet ns4:24339 ; rdfs:comment "supply_fan" . -ns2:71329 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:71329 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:06591, - ns2:85905, - ns2:88163 ; - ns1:connected ns2:72185 ; - ns1:connectedThrough ns2:67974 ; - ns1:connectedTo ns2:72185 ; - ns1:hasConnectionPoint ns2:06591, - ns2:85905, - ns2:88163 ; - ns1:hasProperty ns2:45370, - ns2:50826 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:50826 ; - ns2:speedFeedback ns2:45370 ; - ns4:airInlet ns2:06591 ; - ns4:airOutlet ns2:85905 ; + ns2:cnx ns4:06591, + ns4:85905, + ns4:88163 ; + ns2:connected ns4:72185 ; + ns2:connectedThrough ns4:67974 ; + ns2:connectedTo ns4:72185 ; + ns2:hasConnectionPoint ns4:06591, + ns4:85905, + ns4:88163 ; + ns2:hasProperty ns4:45370, + ns4:50826 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:50826 ; + ns4:speedFeedback ns4:45370 ; + ns3:airInlet ns4:06591 ; + ns3:airOutlet ns4:85905 ; rdfs:comment "supply_fan" . -ns2:72337 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:72337 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:22389, - ns2:57861, - ns2:84103 ; - ns1:connected ns2:49064 ; - ns1:connectedFrom ns2:49064 ; - ns1:connectedThrough ns2:25284 ; - ns1:hasConnectionPoint ns2:22389, - ns2:57861, - ns2:84103 ; - ns1:hasProperty ns2:55772, - ns2:75363 ; - ns4:linkageInlet ns2:57861 ; - ns4:waterInlet ns2:84103 ; - ns4:waterOutlet ns2:22389 ; + ns2:cnx ns4:22389, + ns4:57861, + ns4:84103 ; + ns2:connected ns4:49064 ; + ns2:connectedFrom ns4:49064 ; + ns2:connectedThrough ns4:25284 ; + ns2:hasConnectionPoint ns4:22389, + ns4:57861, + ns4:84103 ; + ns2:hasProperty ns4:55772, + ns4:75363 ; + ns3:linkageInlet ns4:57861 ; + ns3:waterInlet ns4:84103 ; + ns3:waterOutlet ns4:22389 ; rdfs:comment "hw_valve" . -ns2:73024 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:73024 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:01014, - ns2:12821, - ns2:26023 ; - ns1:connected ns2:87632 ; - ns1:connectedThrough ns2:58818 ; - ns1:connectedTo ns2:87632 ; - ns1:hasConnectionPoint ns2:01014, - ns2:12821, - ns2:26023 ; - ns1:hasProperty ns2:12520, - ns2:41789 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:12520 ; - ns2:speedFeedback ns2:41789 ; - ns4:airInlet ns2:26023 ; - ns4:airOutlet ns2:01014 ; + ns2:cnx ns4:01014, + ns4:12821, + ns4:26023 ; + ns2:connected ns4:87632 ; + ns2:connectedThrough ns4:58818 ; + ns2:connectedTo ns4:87632 ; + ns2:hasConnectionPoint ns4:01014, + ns4:12821, + ns4:26023 ; + ns2:hasProperty ns4:12520, + ns4:41789 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:12520 ; + ns4:speedFeedback ns4:41789 ; + ns3:airInlet ns4:26023 ; + ns3:airOutlet ns4:01014 ; rdfs:comment "supply_fan" . -ns2:73323 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:73323 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:80488, - ns2:83463, - ns2:97401 ; - ns1:connected ns2:04430 ; - ns1:connectedFrom ns2:04430 ; - ns1:connectedThrough ns2:33619 ; - ns1:hasConnectionPoint ns2:80488, - ns2:83463, - ns2:97401 ; - ns1:hasProperty ns2:08607, - ns2:83476 ; - ns4:linkageInlet ns2:97401 ; - ns4:waterInlet ns2:83463 ; - ns4:waterOutlet ns2:80488 ; + ns2:cnx ns4:80488, + ns4:83463, + ns4:97401 ; + ns2:connected ns4:04430 ; + ns2:connectedFrom ns4:04430 ; + ns2:connectedThrough ns4:33619 ; + ns2:hasConnectionPoint ns4:80488, + ns4:83463, + ns4:97401 ; + ns2:hasProperty ns4:08607, + ns4:83476 ; + ns3:linkageInlet ns4:97401 ; + ns3:waterInlet ns4:83463 ; + ns3:waterOutlet ns4:80488 ; rdfs:comment "hw_valve" . -ns2:73942 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:73942 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:16604, - ns2:32847, - ns2:42823 ; - ns1:connected ns2:49614 ; - ns1:connectedThrough ns2:68106 ; - ns1:connectedTo ns2:49614 ; - ns1:hasConnectionPoint ns2:16604, - ns2:32847, - ns2:42823 ; - ns1:hasProperty ns2:60897, - ns2:62880 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:62880 ; - ns2:speedFeedback ns2:60897 ; - ns4:airInlet ns2:32847 ; - ns4:airOutlet ns2:42823 ; + ns2:cnx ns4:16604, + ns4:32847, + ns4:42823 ; + ns2:connected ns4:49614 ; + ns2:connectedThrough ns4:68106 ; + ns2:connectedTo ns4:49614 ; + ns2:hasConnectionPoint ns4:16604, + ns4:32847, + ns4:42823 ; + ns2:hasProperty ns4:60897, + ns4:62880 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:62880 ; + ns4:speedFeedback ns4:60897 ; + ns3:airInlet ns4:32847 ; + ns3:airOutlet ns4:42823 ; rdfs:comment "supply_fan" . -ns2:74083 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:74083 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:11351, - ns2:59125, - ns2:64164 ; - ns1:connected ns2:06594 ; - ns1:connectedFrom ns2:06594 ; - ns1:connectedThrough ns2:90552 ; - ns1:hasConnectionPoint ns2:11351, - ns2:59125, - ns2:64164 ; - ns1:hasProperty ns2:51451, - ns2:91638 ; - ns4:linkageInlet ns2:59125 ; - ns4:waterInlet ns2:11351 ; - ns4:waterOutlet ns2:64164 ; + ns2:cnx ns4:11351, + ns4:59125, + ns4:64164 ; + ns2:connected ns4:06594 ; + ns2:connectedFrom ns4:06594 ; + ns2:connectedThrough ns4:90552 ; + ns2:hasConnectionPoint ns4:11351, + ns4:59125, + ns4:64164 ; + ns2:hasProperty ns4:51451, + ns4:91638 ; + ns3:linkageInlet ns4:59125 ; + ns3:waterInlet ns4:11351 ; + ns3:waterOutlet ns4:64164 ; rdfs:comment "hw_valve" . -ns2:74130 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:74130 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:10923, - ns2:30613, - ns2:81688 ; - ns1:connected ns2:73972 ; - ns1:connectedFrom ns2:73972 ; - ns1:connectedThrough ns2:80445 ; - ns1:hasConnectionPoint ns2:10923, - ns2:30613, - ns2:81688 ; - ns1:hasProperty ns2:58761, - ns2:62707 ; - ns4:linkageInlet ns2:10923 ; - ns4:waterInlet ns2:81688 ; - ns4:waterOutlet ns2:30613 ; + ns2:cnx ns4:10923, + ns4:30613, + ns4:81688 ; + ns2:connected ns4:73972 ; + ns2:connectedFrom ns4:73972 ; + ns2:connectedThrough ns4:80445 ; + ns2:hasConnectionPoint ns4:10923, + ns4:30613, + ns4:81688 ; + ns2:hasProperty ns4:58761, + ns4:62707 ; + ns3:linkageInlet ns4:10923 ; + ns3:waterInlet ns4:81688 ; + ns3:waterOutlet ns4:30613 ; rdfs:comment "hw_valve" . -ns2:74362 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:74362 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:11589, - ns2:83074, - ns2:91585 ; - ns1:connected ns2:30030 ; - ns1:connectedThrough ns2:41382 ; - ns1:connectedTo ns2:30030 ; - ns1:hasConnectionPoint ns2:11589, - ns2:83074, - ns2:91585 ; - ns1:hasProperty ns2:21833, - ns2:74255 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:74255 ; - ns2:speedFeedback ns2:21833 ; - ns4:airInlet ns2:11589 ; - ns4:airOutlet ns2:83074 ; + ns2:cnx ns4:11589, + ns4:83074, + ns4:91585 ; + ns2:connected ns4:30030 ; + ns2:connectedThrough ns4:41382 ; + ns2:connectedTo ns4:30030 ; + ns2:hasConnectionPoint ns4:11589, + ns4:83074, + ns4:91585 ; + ns2:hasProperty ns4:21833, + ns4:74255 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:74255 ; + ns4:speedFeedback ns4:21833 ; + ns3:airInlet ns4:11589 ; + ns3:airOutlet ns4:83074 ; rdfs:comment "supply_fan" . -ns2:75582 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:75582 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:25174, - ns2:30707, - ns2:72014 ; - ns1:connected ns2:91853 ; - ns1:connectedFrom ns2:91853 ; - ns1:connectedThrough ns2:69810 ; - ns1:hasConnectionPoint ns2:25174, - ns2:30707, - ns2:72014 ; - ns1:hasProperty ns2:31684, - ns2:55411 ; - ns4:linkageInlet ns2:72014 ; - ns4:waterInlet ns2:30707 ; - ns4:waterOutlet ns2:25174 ; + ns2:cnx ns4:25174, + ns4:30707, + ns4:72014 ; + ns2:connected ns4:91853 ; + ns2:connectedFrom ns4:91853 ; + ns2:connectedThrough ns4:69810 ; + ns2:hasConnectionPoint ns4:25174, + ns4:30707, + ns4:72014 ; + ns2:hasProperty ns4:31684, + ns4:55411 ; + ns3:linkageInlet ns4:72014 ; + ns3:waterInlet ns4:30707 ; + ns3:waterOutlet ns4:25174 ; rdfs:comment "hw_valve" . -ns2:77211 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:77211 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:45385, - ns2:48567, - ns2:87816 ; - ns1:connected ns2:05342 ; - ns1:connectedThrough ns2:24574 ; - ns1:connectedTo ns2:05342 ; - ns1:hasConnectionPoint ns2:45385, - ns2:48567, - ns2:87816 ; - ns1:hasProperty ns2:75678, - ns2:99759 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:99759 ; - ns2:speedFeedback ns2:75678 ; - ns4:airInlet ns2:48567 ; - ns4:airOutlet ns2:45385 ; + ns2:cnx ns4:45385, + ns4:48567, + ns4:87816 ; + ns2:connected ns4:05342 ; + ns2:connectedThrough ns4:24574 ; + ns2:connectedTo ns4:05342 ; + ns2:hasConnectionPoint ns4:45385, + ns4:48567, + ns4:87816 ; + ns2:hasProperty ns4:75678, + ns4:99759 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:99759 ; + ns4:speedFeedback ns4:75678 ; + ns3:airInlet ns4:48567 ; + ns3:airOutlet ns4:45385 ; rdfs:comment "supply_fan" . -ns2:77381 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:77381 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:41978, - ns2:52809, - ns2:84065 ; - ns1:connected ns2:65779 ; - ns1:connectedFrom ns2:65779 ; - ns1:connectedThrough ns2:77406 ; - ns1:hasConnectionPoint ns2:41978, - ns2:52809, - ns2:84065 ; - ns1:hasProperty ns2:54181, - ns2:96089 ; - ns4:linkageInlet ns2:41978 ; - ns4:waterInlet ns2:84065 ; - ns4:waterOutlet ns2:52809 ; + ns2:cnx ns4:41978, + ns4:52809, + ns4:84065 ; + ns2:connected ns4:65779 ; + ns2:connectedFrom ns4:65779 ; + ns2:connectedThrough ns4:77406 ; + ns2:hasConnectionPoint ns4:41978, + ns4:52809, + ns4:84065 ; + ns2:hasProperty ns4:54181, + ns4:96089 ; + ns3:linkageInlet ns4:41978 ; + ns3:waterInlet ns4:84065 ; + ns3:waterOutlet ns4:52809 ; rdfs:comment "hw_valve" . -ns2:77743 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:77743 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-9" ; - ns1:cnx ns2:44403, - ns2:78531 ; - ns1:connected ns2:05101, - ns2:12692 ; - ns1:connectedFrom ns2:05101 ; - ns1:connectedThrough ns2:21481, - ns2:70045 ; - ns1:connectedTo ns2:12692 ; - ns1:contains ns2:05342, - ns2:37038, - ns2:77211, - ns2:87570 ; - ns1:hasConnectionPoint ns2:44403, - ns2:78531 ; - ns1:hasProperty ns2:21295, - ns2:71091 ; - ns2:airInlet ns2:78531 ; - ns2:airOutlet ns2:44403 . - -ns2:79114 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:44403, + ns4:78531 ; + ns2:connected ns4:05101, + ns4:12692 ; + ns2:connectedFrom ns4:05101 ; + ns2:connectedThrough ns4:21481, + ns4:70045 ; + ns2:connectedTo ns4:12692 ; + ns2:contains ns4:05342, + ns4:37038, + ns4:77211, + ns4:87570 ; + ns2:hasConnectionPoint ns4:44403, + ns4:78531 ; + ns2:hasProperty ns4:21295, + ns4:71091 ; + ns4:airInlet ns4:78531 ; + ns4:airOutlet ns4:44403 . + +ns4:79114 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:15763, - ns2:32500, - ns2:63209 ; - ns1:connected ns2:80693 ; - ns1:connectedThrough ns2:29667 ; - ns1:connectedTo ns2:80693 ; - ns1:hasConnectionPoint ns2:15763, - ns2:32500, - ns2:63209 ; - ns1:hasProperty ns2:21133, - ns2:62952 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:21133 ; - ns2:speedFeedback ns2:62952 ; - ns4:airInlet ns2:15763 ; - ns4:airOutlet ns2:32500 ; + ns2:cnx ns4:15763, + ns4:32500, + ns4:63209 ; + ns2:connected ns4:80693 ; + ns2:connectedThrough ns4:29667 ; + ns2:connectedTo ns4:80693 ; + ns2:hasConnectionPoint ns4:15763, + ns4:32500, + ns4:63209 ; + ns2:hasProperty ns4:21133, + ns4:62952 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:21133 ; + ns4:speedFeedback ns4:62952 ; + ns3:airInlet ns4:15763 ; + ns3:airOutlet ns4:32500 ; rdfs:comment "supply_fan" . -ns2:79421 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:79421 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:04045, - ns2:44650, - ns2:89839 ; - ns1:connected ns2:68016 ; - ns1:connectedThrough ns2:08470 ; - ns1:connectedTo ns2:68016 ; - ns1:hasConnectionPoint ns2:04045, - ns2:44650, - ns2:89839 ; - ns1:hasProperty ns2:02610, - ns2:96937 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:02610 ; - ns2:speedFeedback ns2:96937 ; - ns4:airInlet ns2:44650 ; - ns4:airOutlet ns2:89839 ; + ns2:cnx ns4:04045, + ns4:44650, + ns4:89839 ; + ns2:connected ns4:68016 ; + ns2:connectedThrough ns4:08470 ; + ns2:connectedTo ns4:68016 ; + ns2:hasConnectionPoint ns4:04045, + ns4:44650, + ns4:89839 ; + ns2:hasProperty ns4:02610, + ns4:96937 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:02610 ; + ns4:speedFeedback ns4:96937 ; + ns3:airInlet ns4:44650 ; + ns3:airOutlet ns4:89839 ; rdfs:comment "supply_fan" . -ns2:80276 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:80276 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:55020, - ns2:69089, - ns2:98230 ; - ns1:connected ns2:19107 ; - ns1:connectedFrom ns2:19107 ; - ns1:connectedThrough ns2:39985 ; - ns1:hasConnectionPoint ns2:55020, - ns2:69089, - ns2:98230 ; - ns1:hasProperty ns2:09309, - ns2:45963 ; - ns4:linkageInlet ns2:98230 ; - ns4:waterInlet ns2:69089 ; - ns4:waterOutlet ns2:55020 ; + ns2:cnx ns4:55020, + ns4:69089, + ns4:98230 ; + ns2:connected ns4:19107 ; + ns2:connectedFrom ns4:19107 ; + ns2:connectedThrough ns4:39985 ; + ns2:hasConnectionPoint ns4:55020, + ns4:69089, + ns4:98230 ; + ns2:hasProperty ns4:09309, + ns4:45963 ; + ns3:linkageInlet ns4:98230 ; + ns3:waterInlet ns4:69089 ; + ns3:waterOutlet ns4:55020 ; rdfs:comment "hw_valve" . -ns2:80380 a ns1:Connection ; +ns4:80380 a ns2:Connection ; rdfs:label "RTU_6.mixed_air" ; - ns1:cnx ns2:27154, - ns2:63823, - ns2:75105 ; - ns1:connectsAt ns2:27154, - ns2:63823, - ns2:75105 ; - ns1:connectsFrom ns2:31173, - ns2:34392 ; - ns1:connectsTo ns2:64314 ; - ns1:hasMedium ; - ns1:hasProperty ns2:71498 . - -ns2:80523 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:27154, + ns4:63823, + ns4:75105 ; + ns2:connectsAt ns4:27154, + ns4:63823, + ns4:75105 ; + ns2:connectsFrom ns4:31173, + ns4:34392 ; + ns2:connectsTo ns4:64314 ; + ns2:hasMedium ; + ns2:hasProperty ns4:71498 . + +ns4:80523 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:29476, - ns2:50027, - ns2:61722 ; - ns1:connected ns2:24416 ; - ns1:connectedThrough ns2:96446 ; - ns1:connectedTo ns2:24416 ; - ns1:hasConnectionPoint ns2:29476, - ns2:50027, - ns2:61722 ; - ns1:hasProperty ns2:17307, - ns2:69235 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:69235 ; - ns2:speedFeedback ns2:17307 ; - ns4:airInlet ns2:50027 ; - ns4:airOutlet ns2:29476 ; + ns2:cnx ns4:29476, + ns4:50027, + ns4:61722 ; + ns2:connected ns4:24416 ; + ns2:connectedThrough ns4:96446 ; + ns2:connectedTo ns4:24416 ; + ns2:hasConnectionPoint ns4:29476, + ns4:50027, + ns4:61722 ; + ns2:hasProperty ns4:17307, + ns4:69235 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:69235 ; + ns4:speedFeedback ns4:17307 ; + ns3:airInlet ns4:50027 ; + ns3:airOutlet ns4:29476 ; rdfs:comment "supply_fan" . -ns2:80730 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:80730 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:27088, - ns2:39866, - ns2:78472 ; - ns1:connected ns2:22040 ; - ns1:connectedThrough ns2:30816 ; - ns1:connectedTo ns2:22040 ; - ns1:hasConnectionPoint ns2:27088, - ns2:39866, - ns2:78472 ; - ns1:hasProperty ns2:56337, - ns2:68747 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:56337 ; - ns2:speedFeedback ns2:68747 ; - ns4:airInlet ns2:78472 ; - ns4:airOutlet ns2:27088 ; + ns2:cnx ns4:27088, + ns4:39866, + ns4:78472 ; + ns2:connected ns4:22040 ; + ns2:connectedThrough ns4:30816 ; + ns2:connectedTo ns4:22040 ; + ns2:hasConnectionPoint ns4:27088, + ns4:39866, + ns4:78472 ; + ns2:hasProperty ns4:56337, + ns4:68747 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:56337 ; + ns4:speedFeedback ns4:68747 ; + ns3:airInlet ns4:78472 ; + ns3:airOutlet ns4:27088 ; rdfs:comment "supply_fan" . -ns2:80838 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:80838 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:39780, - ns2:44848, - ns2:89815 ; - ns1:connected ns2:68016 ; - ns1:connectedFrom ns2:68016 ; - ns1:connectedThrough ns2:02277 ; - ns1:hasConnectionPoint ns2:39780, - ns2:44848, - ns2:89815 ; - ns1:hasProperty ns2:07190, - ns2:67316 ; - ns4:linkageInlet ns2:44848 ; - ns4:waterInlet ns2:89815 ; - ns4:waterOutlet ns2:39780 ; + ns2:cnx ns4:39780, + ns4:44848, + ns4:89815 ; + ns2:connected ns4:68016 ; + ns2:connectedFrom ns4:68016 ; + ns2:connectedThrough ns4:02277 ; + ns2:hasConnectionPoint ns4:39780, + ns4:44848, + ns4:89815 ; + ns2:hasProperty ns4:07190, + ns4:67316 ; + ns3:linkageInlet ns4:44848 ; + ns3:waterInlet ns4:89815 ; + ns3:waterOutlet ns4:39780 ; rdfs:comment "hw_valve" . -ns2:82262 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:82262 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:29250, - ns2:33702, - ns2:72299 ; - ns1:connected ns2:73674 ; - ns1:connectedThrough ns2:26783 ; - ns1:connectedTo ns2:73674 ; - ns1:hasConnectionPoint ns2:29250, - ns2:33702, - ns2:72299 ; - ns1:hasProperty ns2:37019, - ns2:76702 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:76702 ; - ns2:speedFeedback ns2:37019 ; - ns4:airInlet ns2:33702 ; - ns4:airOutlet ns2:72299 ; + ns2:cnx ns4:29250, + ns4:33702, + ns4:72299 ; + ns2:connected ns4:73674 ; + ns2:connectedThrough ns4:26783 ; + ns2:connectedTo ns4:73674 ; + ns2:hasConnectionPoint ns4:29250, + ns4:33702, + ns4:72299 ; + ns2:hasProperty ns4:37019, + ns4:76702 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:76702 ; + ns4:speedFeedback ns4:37019 ; + ns3:airInlet ns4:33702 ; + ns3:airOutlet ns4:72299 ; rdfs:comment "supply_fan" . -ns2:82619 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:82619 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:75587, - ns2:87263, - ns2:88730 ; - ns1:connected ns2:06594 ; - ns1:connectedThrough ns2:02075 ; - ns1:connectedTo ns2:06594 ; - ns1:hasConnectionPoint ns2:75587, - ns2:87263, - ns2:88730 ; - ns1:hasProperty ns2:29799, - ns2:65988 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:65988 ; - ns2:speedFeedback ns2:29799 ; - ns4:airInlet ns2:75587 ; - ns4:airOutlet ns2:87263 ; + ns2:cnx ns4:75587, + ns4:87263, + ns4:88730 ; + ns2:connected ns4:06594 ; + ns2:connectedThrough ns4:02075 ; + ns2:connectedTo ns4:06594 ; + ns2:hasConnectionPoint ns4:75587, + ns4:87263, + ns4:88730 ; + ns2:hasProperty ns4:29799, + ns4:65988 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:65988 ; + ns4:speedFeedback ns4:29799 ; + ns3:airInlet ns4:75587 ; + ns3:airOutlet ns4:87263 ; rdfs:comment "supply_fan" . -ns2:83621 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:83621 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-40" ; - ns1:cnx ns2:31863, - ns2:87461 ; - ns1:connected ns2:03365, - ns2:06275 ; - ns1:connectedFrom ns2:06275 ; - ns1:connectedThrough ns2:47927, - ns2:50261 ; - ns1:connectedTo ns2:03365 ; - ns1:contains ns2:03860, - ns2:24002, - ns2:43925, - ns2:58411 ; - ns1:hasConnectionPoint ns2:31863, - ns2:87461 ; - ns1:hasProperty ns2:38087, - ns2:40721 ; - ns2:airInlet ns2:31863 ; - ns2:airOutlet ns2:87461 . - -ns2:84250 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:31863, + ns4:87461 ; + ns2:connected ns4:03365, + ns4:06275 ; + ns2:connectedFrom ns4:06275 ; + ns2:connectedThrough ns4:47927, + ns4:50261 ; + ns2:connectedTo ns4:03365 ; + ns2:contains ns4:03860, + ns4:24002, + ns4:43925, + ns4:58411 ; + ns2:hasConnectionPoint ns4:31863, + ns4:87461 ; + ns2:hasProperty ns4:38087, + ns4:40721 ; + ns4:airInlet ns4:31863 ; + ns4:airOutlet ns4:87461 . + +ns4:84250 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:12778, - ns2:36099, - ns2:94772 ; - ns1:connected ns2:18099 ; - ns1:connectedThrough ns2:24250 ; - ns1:connectedTo ns2:18099 ; - ns1:hasConnectionPoint ns2:12778, - ns2:36099, - ns2:94772 ; - ns1:hasProperty ns2:53829, - ns2:80750 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:53829 ; - ns2:speedFeedback ns2:80750 ; - ns4:airInlet ns2:36099 ; - ns4:airOutlet ns2:12778 ; + ns2:cnx ns4:12778, + ns4:36099, + ns4:94772 ; + ns2:connected ns4:18099 ; + ns2:connectedThrough ns4:24250 ; + ns2:connectedTo ns4:18099 ; + ns2:hasConnectionPoint ns4:12778, + ns4:36099, + ns4:94772 ; + ns2:hasProperty ns4:53829, + ns4:80750 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:53829 ; + ns4:speedFeedback ns4:80750 ; + ns3:airInlet ns4:36099 ; + ns3:airOutlet ns4:12778 ; rdfs:comment "supply_fan" . -ns2:85453 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:85453 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "7-14" ; - ns1:cnx ns2:05910, - ns2:19181 ; - ns1:connected ns2:42308, - ns2:50418 ; - ns1:connectedFrom ns2:42308 ; - ns1:connectedThrough ns2:25111, - ns2:42650 ; - ns1:connectedTo ns2:50418 ; - ns1:contains ns2:60254, - ns2:63543, - ns2:67542, - ns2:75732 ; - ns1:hasConnectionPoint ns2:05910, - ns2:19181 ; - ns1:hasProperty ns2:41330, - ns2:63747 ; - ns2:airInlet ns2:19181 ; - ns2:airOutlet ns2:05910 . - -ns2:85916 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:05910, + ns4:19181 ; + ns2:connected ns4:42308, + ns4:50418 ; + ns2:connectedFrom ns4:42308 ; + ns2:connectedThrough ns4:25111, + ns4:42650 ; + ns2:connectedTo ns4:50418 ; + ns2:contains ns4:60254, + ns4:63543, + ns4:67542, + ns4:75732 ; + ns2:hasConnectionPoint ns4:05910, + ns4:19181 ; + ns2:hasProperty ns4:41330, + ns4:63747 ; + ns4:airInlet ns4:19181 ; + ns4:airOutlet ns4:05910 . + +ns4:85916 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:07755, - ns2:11279, - ns2:51689 ; - ns1:connected ns2:68886 ; - ns1:connectedFrom ns2:68886 ; - ns1:connectedThrough ns2:21542 ; - ns1:hasConnectionPoint ns2:07755, - ns2:11279, - ns2:51689 ; - ns1:hasProperty ns2:59768, - ns2:69502 ; - ns4:linkageInlet ns2:11279 ; - ns4:waterInlet ns2:51689 ; - ns4:waterOutlet ns2:07755 ; + ns2:cnx ns4:07755, + ns4:11279, + ns4:51689 ; + ns2:connected ns4:68886 ; + ns2:connectedFrom ns4:68886 ; + ns2:connectedThrough ns4:21542 ; + ns2:hasConnectionPoint ns4:07755, + ns4:11279, + ns4:51689 ; + ns2:hasProperty ns4:59768, + ns4:69502 ; + ns3:linkageInlet ns4:11279 ; + ns3:waterInlet ns4:51689 ; + ns3:waterOutlet ns4:07755 ; rdfs:comment "hw_valve" . -ns2:86545 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:86545 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "5-1" ; - ns1:cnx ns2:43285, - ns2:69373 ; - ns1:connected ns2:05353, - ns2:58953 ; - ns1:connectedFrom ns2:05353 ; - ns1:connectedThrough ns2:04668, - ns2:90835 ; - ns1:connectedTo ns2:58953 ; - ns1:contains ns2:19805, - ns2:25200, - ns2:45441, - ns2:86998 ; - ns1:hasConnectionPoint ns2:43285, - ns2:69373 ; - ns1:hasProperty ns2:00778, - ns2:81613 ; - ns2:airInlet ns2:43285 ; - ns2:airOutlet ns2:69373 . - -ns2:86650 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:43285, + ns4:69373 ; + ns2:connected ns4:05353, + ns4:58953 ; + ns2:connectedFrom ns4:05353 ; + ns2:connectedThrough ns4:04668, + ns4:90835 ; + ns2:connectedTo ns4:58953 ; + ns2:contains ns4:19805, + ns4:25200, + ns4:45441, + ns4:86998 ; + ns2:hasConnectionPoint ns4:43285, + ns4:69373 ; + ns2:hasProperty ns4:00778, + ns4:81613 ; + ns4:airInlet ns4:43285 ; + ns4:airOutlet ns4:69373 . + +ns4:86650 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:11858, - ns2:13583, - ns2:38144 ; - ns1:connected ns2:74065 ; - ns1:connectedThrough ns2:79224 ; - ns1:connectedTo ns2:74065 ; - ns1:hasConnectionPoint ns2:11858, - ns2:13583, - ns2:38144 ; - ns1:hasProperty ns2:09473, - ns2:51141 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:51141 ; - ns2:speedFeedback ns2:09473 ; - ns4:airInlet ns2:13583 ; - ns4:airOutlet ns2:11858 ; + ns2:cnx ns4:11858, + ns4:13583, + ns4:38144 ; + ns2:connected ns4:74065 ; + ns2:connectedThrough ns4:79224 ; + ns2:connectedTo ns4:74065 ; + ns2:hasConnectionPoint ns4:11858, + ns4:13583, + ns4:38144 ; + ns2:hasProperty ns4:09473, + ns4:51141 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:51141 ; + ns4:speedFeedback ns4:09473 ; + ns3:airInlet ns4:13583 ; + ns3:airOutlet ns4:11858 ; rdfs:comment "supply_fan" . -ns2:87570 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:87570 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:00617, - ns2:42854, - ns2:82891 ; - ns1:connected ns2:05342 ; - ns1:connectedFrom ns2:05342 ; - ns1:connectedThrough ns2:30993 ; - ns1:hasConnectionPoint ns2:00617, - ns2:42854, - ns2:82891 ; - ns1:hasProperty ns2:46809, - ns2:81911 ; - ns4:linkageInlet ns2:82891 ; - ns4:waterInlet ns2:00617 ; - ns4:waterOutlet ns2:42854 ; + ns2:cnx ns4:00617, + ns4:42854, + ns4:82891 ; + ns2:connected ns4:05342 ; + ns2:connectedFrom ns4:05342 ; + ns2:connectedThrough ns4:30993 ; + ns2:hasConnectionPoint ns4:00617, + ns4:42854, + ns4:82891 ; + ns2:hasProperty ns4:46809, + ns4:81911 ; + ns3:linkageInlet ns4:82891 ; + ns3:waterInlet ns4:00617 ; + ns3:waterOutlet ns4:42854 ; rdfs:comment "hw_valve" . -ns2:88253 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:88253 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:00022, - ns2:54268, - ns2:73143 ; - ns1:connected ns2:83428 ; - ns1:connectedFrom ns2:83428 ; - ns1:connectedThrough ns2:92921 ; - ns1:hasConnectionPoint ns2:00022, - ns2:54268, - ns2:73143 ; - ns1:hasProperty ns2:34672, - ns2:94817 ; - ns4:linkageInlet ns2:73143 ; - ns4:waterInlet ns2:54268 ; - ns4:waterOutlet ns2:00022 ; + ns2:cnx ns4:00022, + ns4:54268, + ns4:73143 ; + ns2:connected ns4:83428 ; + ns2:connectedFrom ns4:83428 ; + ns2:connectedThrough ns4:92921 ; + ns2:hasConnectionPoint ns4:00022, + ns4:54268, + ns4:73143 ; + ns2:hasProperty ns4:34672, + ns4:94817 ; + ns3:linkageInlet ns4:73143 ; + ns3:waterInlet ns4:54268 ; + ns3:waterOutlet ns4:00022 ; rdfs:comment "hw_valve" . -ns2:89752 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:89752 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:02387, - ns2:13246, - ns2:26037 ; - ns1:connected ns2:74360 ; - ns1:connectedFrom ns2:74360 ; - ns1:connectedThrough ns2:46331 ; - ns1:hasConnectionPoint ns2:02387, - ns2:13246, - ns2:26037 ; - ns1:hasProperty ns2:33088, - ns2:88057 ; - ns4:linkageInlet ns2:26037 ; - ns4:waterInlet ns2:13246 ; - ns4:waterOutlet ns2:02387 ; + ns2:cnx ns4:02387, + ns4:13246, + ns4:26037 ; + ns2:connected ns4:74360 ; + ns2:connectedFrom ns4:74360 ; + ns2:connectedThrough ns4:46331 ; + ns2:hasConnectionPoint ns4:02387, + ns4:13246, + ns4:26037 ; + ns2:hasProperty ns4:33088, + ns4:88057 ; + ns3:linkageInlet ns4:26037 ; + ns3:waterInlet ns4:13246 ; + ns3:waterOutlet ns4:02387 ; rdfs:comment "hw_valve" . -ns2:90778 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:90778 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:44510, - ns2:46836, - ns2:89781 ; - ns1:connected ns2:09200 ; - ns1:connectedThrough ns2:74884 ; - ns1:connectedTo ns2:09200 ; - ns1:hasConnectionPoint ns2:44510, - ns2:46836, - ns2:89781 ; - ns1:hasProperty ns2:79228, - ns2:88818 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:79228 ; - ns2:speedFeedback ns2:88818 ; - ns4:airInlet ns2:46836 ; - ns4:airOutlet ns2:44510 ; + ns2:cnx ns4:44510, + ns4:46836, + ns4:89781 ; + ns2:connected ns4:09200 ; + ns2:connectedThrough ns4:74884 ; + ns2:connectedTo ns4:09200 ; + ns2:hasConnectionPoint ns4:44510, + ns4:46836, + ns4:89781 ; + ns2:hasProperty ns4:79228, + ns4:88818 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:79228 ; + ns4:speedFeedback ns4:88818 ; + ns3:airInlet ns4:46836 ; + ns3:airOutlet ns4:44510 ; rdfs:comment "supply_fan" . -ns2:91912 a ns1:Connection ; +ns4:91912 a ns2:Connection ; rdfs:label "RTU_7.return_air" ; - ns1:cnx ns2:66490, - ns2:67277, - ns2:81633 ; - ns1:connectsAt ns2:66490, - ns2:67277, - ns2:81633 ; - ns1:connectsFrom ns2:46019, - ns2:83890 ; - ns1:connectsThrough ns2:81633 ; - ns1:connectsTo ns2:55672 ; - ns1:hasMedium . - -ns2:94683 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:66490, + ns4:67277, + ns4:81633 ; + ns2:connectsAt ns4:66490, + ns4:67277, + ns4:81633 ; + ns2:connectsFrom ns4:46019, + ns4:83890 ; + ns2:connectsThrough ns4:81633 ; + ns2:connectsTo ns4:55672 ; + ns2:hasMedium . + +ns4:94683 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:43000, - ns2:90440, - ns2:92617 ; - ns1:connected ns2:80065 ; - ns1:connectedThrough ns2:49364 ; - ns1:connectedTo ns2:80065 ; - ns1:hasConnectionPoint ns2:43000, - ns2:90440, - ns2:92617 ; - ns1:hasProperty ns2:42459, - ns2:84875 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:42459 ; - ns2:speedFeedback ns2:84875 ; - ns4:airInlet ns2:92617 ; - ns4:airOutlet ns2:43000 ; + ns2:cnx ns4:43000, + ns4:90440, + ns4:92617 ; + ns2:connected ns4:80065 ; + ns2:connectedThrough ns4:49364 ; + ns2:connectedTo ns4:80065 ; + ns2:hasConnectionPoint ns4:43000, + ns4:90440, + ns4:92617 ; + ns2:hasProperty ns4:42459, + ns4:84875 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:42459 ; + ns4:speedFeedback ns4:84875 ; + ns3:airInlet ns4:92617 ; + ns3:airOutlet ns4:43000 ; rdfs:comment "supply_fan" . -ns2:95090 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:95090 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:08953, - ns2:77513, - ns2:85834 ; - ns1:connected ns2:87632 ; - ns1:connectedFrom ns2:87632 ; - ns1:connectedThrough ns2:13472 ; - ns1:hasConnectionPoint ns2:08953, - ns2:77513, - ns2:85834 ; - ns1:hasProperty ns2:42182, - ns2:60625 ; - ns4:linkageInlet ns2:08953 ; - ns4:waterInlet ns2:77513 ; - ns4:waterOutlet ns2:85834 ; + ns2:cnx ns4:08953, + ns4:77513, + ns4:85834 ; + ns2:connected ns4:87632 ; + ns2:connectedFrom ns4:87632 ; + ns2:connectedThrough ns4:13472 ; + ns2:hasConnectionPoint ns4:08953, + ns4:77513, + ns4:85834 ; + ns2:hasProperty ns4:42182, + ns4:60625 ; + ns3:linkageInlet ns4:08953 ; + ns3:waterInlet ns4:77513 ; + ns3:waterOutlet ns4:85834 ; rdfs:comment "hw_valve" . -ns2:95765 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:95765 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "6-98" ; - ns1:cnx ns2:55916, - ns2:99455 ; - ns1:connected ns2:13344, - ns2:88028 ; - ns1:connectedFrom ns2:88028 ; - ns1:connectedThrough ns2:06559, - ns2:09596 ; - ns1:connectedTo ns2:13344 ; - ns1:contains ns2:25140, - ns2:45050, - ns2:80065, - ns2:94683 ; - ns1:hasConnectionPoint ns2:55916, - ns2:99455 ; - ns1:hasProperty ns2:22267, - ns2:26069 ; - ns2:airInlet ns2:99455 ; - ns2:airOutlet ns2:55916 . - -ns2:96315 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:55916, + ns4:99455 ; + ns2:connected ns4:13344, + ns4:88028 ; + ns2:connectedFrom ns4:88028 ; + ns2:connectedThrough ns4:06559, + ns4:09596 ; + ns2:connectedTo ns4:13344 ; + ns2:contains ns4:25140, + ns4:45050, + ns4:80065, + ns4:94683 ; + ns2:hasConnectionPoint ns4:55916, + ns4:99455 ; + ns2:hasProperty ns4:22267, + ns4:26069 ; + ns4:airInlet ns4:99455 ; + ns4:airOutlet ns4:55916 . + +ns4:96315 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:04798, - ns2:27490, - ns2:98697 ; - ns1:connected ns2:09638 ; - ns1:connectedFrom ns2:09638 ; - ns1:connectedThrough ns2:48919 ; - ns1:hasConnectionPoint ns2:04798, - ns2:27490, - ns2:98697 ; - ns1:hasProperty ns2:57110, - ns2:97130 ; - ns4:linkageInlet ns2:04798 ; - ns4:waterInlet ns2:98697 ; - ns4:waterOutlet ns2:27490 ; + ns2:cnx ns4:04798, + ns4:27490, + ns4:98697 ; + ns2:connected ns4:09638 ; + ns2:connectedFrom ns4:09638 ; + ns2:connectedThrough ns4:48919 ; + ns2:hasConnectionPoint ns4:04798, + ns4:27490, + ns4:98697 ; + ns2:hasProperty ns4:57110, + ns4:97130 ; + ns3:linkageInlet ns4:04798 ; + ns3:waterInlet ns4:98697 ; + ns3:waterOutlet ns4:27490 ; rdfs:comment "hw_valve" . -ns2:96809 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:96809 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:14626, - ns2:29636, - ns2:44830 ; - ns1:connected ns2:22040 ; - ns1:connectedFrom ns2:22040 ; - ns1:connectedThrough ns2:39723 ; - ns1:hasConnectionPoint ns2:14626, - ns2:29636, - ns2:44830 ; - ns1:hasProperty ns2:34354, - ns2:82662 ; - ns4:linkageInlet ns2:14626 ; - ns4:waterInlet ns2:29636 ; - ns4:waterOutlet ns2:44830 ; + ns2:cnx ns4:14626, + ns4:29636, + ns4:44830 ; + ns2:connected ns4:22040 ; + ns2:connectedFrom ns4:22040 ; + ns2:connectedThrough ns4:39723 ; + ns2:hasConnectionPoint ns4:14626, + ns4:29636, + ns4:44830 ; + ns2:hasProperty ns4:34354, + ns4:82662 ; + ns3:linkageInlet ns4:14626 ; + ns3:waterInlet ns4:29636 ; + ns3:waterOutlet ns4:44830 ; rdfs:comment "hw_valve" . -ns2:97787 a ns1:Connection ; +ns4:97787 a ns2:Connection ; rdfs:label "RTU_9.return_air" ; - ns1:cnx ns2:26559, - ns2:49432, - ns2:58482 ; - ns1:connectsAt ns2:26559, - ns2:49432, - ns2:58482 ; - ns1:connectsFrom ns2:29599, - ns2:69111 ; - ns1:connectsTo ns2:05785, - ns2:68886 ; - ns1:hasMedium . - -ns2:01240 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:26559, + ns4:49432, + ns4:58482 ; + ns2:connectsAt ns4:26559, + ns4:49432, + ns4:58482 ; + ns2:connectsFrom ns4:29599, + ns4:69111 ; + ns2:connectsTo ns4:05785, + ns4:68886 ; + ns2:hasMedium . + +ns4:01240 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "1-49B.zone" ; - ns1:cnx ns2:03190, - ns2:06816 ; - ns1:connected ns2:06073, - ns2:98159 ; - ns1:connectedFrom ns2:06073 ; - ns1:connectedThrough ns2:17729, - ns2:31065 ; - ns1:connectedTo ns2:98159 ; - ns1:hasConnectionPoint ns2:03190, - ns2:06816 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:36322 ; - ns2:returnOutlet ns2:06816 ; - ns2:supplyInlet ns2:03190 ; - ns2:temperature ns2:36322 . - -ns2:03055 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:03190, + ns4:06816 ; + ns2:connected ns4:06073, + ns4:98159 ; + ns2:connectedFrom ns4:06073 ; + ns2:connectedThrough ns4:17729, + ns4:31065 ; + ns2:connectedTo ns4:98159 ; + ns2:hasConnectionPoint ns4:03190, + ns4:06816 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:36322 ; + ns4:returnOutlet ns4:06816 ; + ns4:supplyInlet ns4:03190 ; + ns4:temperature ns4:36322 . + +ns4:03055 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "6-21A" ; - ns1:cnx ns2:11126, - ns2:97969 ; - ns1:connected ns2:05971, - ns2:88028 ; - ns1:connectedFrom ns2:88028 ; - ns1:connectedThrough ns2:56887, - ns2:99057 ; - ns1:connectedTo ns2:05971 ; - ns1:contains ns2:20289, - ns2:25067, - ns2:37899, - ns2:54050 ; - ns1:hasConnectionPoint ns2:11126, - ns2:97969 ; - ns1:hasProperty ns2:42763, - ns2:57526 ; - ns1:isConnectionPointOf ns2:97969 ; - ns2:airInlet ns2:11126 ; - ns2:airOutlet ns2:97969 . - -ns2:03365 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:11126, + ns4:97969 ; + ns2:connected ns4:05971, + ns4:88028 ; + ns2:connectedFrom ns4:88028 ; + ns2:connectedThrough ns4:56887, + ns4:99057 ; + ns2:connectedTo ns4:05971 ; + ns2:contains ns4:20289, + ns4:25067, + ns4:37899, + ns4:54050 ; + ns2:hasConnectionPoint ns4:11126, + ns4:97969 ; + ns2:hasProperty ns4:42763, + ns4:57526 ; + ns2:isConnectionPointOf ns4:97969 ; + ns4:airInlet ns4:11126 ; + ns4:airOutlet ns4:97969 . + +ns4:03365 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-44.zone" ; - ns1:cnx ns2:23625, - ns2:97168 ; - ns1:connected ns2:29599, - ns2:83621 ; - ns1:connectedFrom ns2:83621 ; - ns1:connectedThrough ns2:32816, - ns2:50261 ; - ns1:connectedTo ns2:29599 ; - ns1:hasConnectionPoint ns2:23625, - ns2:97168 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:76202 ; - ns2:returnOutlet ns2:97168 ; - ns2:supplyInlet ns2:23625 ; - ns2:temperature ns2:76202 . - -ns2:04698 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:23625, + ns4:97168 ; + ns2:connected ns4:29599, + ns4:83621 ; + ns2:connectedFrom ns4:83621 ; + ns2:connectedThrough ns4:32816, + ns4:50261 ; + ns2:connectedTo ns4:29599 ; + ns2:hasConnectionPoint ns4:23625, + ns4:97168 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:76202 ; + ns4:returnOutlet ns4:97168 ; + ns4:supplyInlet ns4:23625 ; + ns4:temperature ns4:76202 . + +ns4:04698 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "3-6.zone" ; - ns1:cnx ns2:53787, - ns2:56030 ; - ns1:connected ns2:05175, - ns2:97674 ; - ns1:connectedFrom ns2:97674 ; - ns1:connectedThrough ns2:16890, - ns2:32081 ; - ns1:connectedTo ns2:05175 ; - ns1:hasConnectionPoint ns2:53787, - ns2:56030 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:39971 ; - ns2:returnOutlet ns2:56030 ; - ns2:supplyInlet ns2:53787 ; - ns2:temperature ns2:39971 . - -ns2:09362 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:53787, + ns4:56030 ; + ns2:connected ns4:05175, + ns4:97674 ; + ns2:connectedFrom ns4:97674 ; + ns2:connectedThrough ns4:16890, + ns4:32081 ; + ns2:connectedTo ns4:05175 ; + ns2:hasConnectionPoint ns4:53787, + ns4:56030 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:39971 ; + ns4:returnOutlet ns4:56030 ; + ns4:supplyInlet ns4:53787 ; + ns4:temperature ns4:39971 . + +ns4:09362 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-40.zone" ; - ns1:cnx ns2:38721, - ns2:72386 ; - ns1:connected ns2:35720, - ns2:46019 ; - ns1:connectedFrom ns2:35720 ; - ns1:connectedThrough ns2:28044, - ns2:80519 ; - ns1:connectedTo ns2:46019 ; - ns1:hasConnectionPoint ns2:38721, - ns2:72386 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:45336 ; - ns2:returnOutlet ns2:72386 ; - ns2:supplyInlet ns2:38721 ; - ns2:temperature ns2:45336 . - -ns2:10814 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:38721, + ns4:72386 ; + ns2:connected ns4:35720, + ns4:46019 ; + ns2:connectedFrom ns4:35720 ; + ns2:connectedThrough ns4:28044, + ns4:80519 ; + ns2:connectedTo ns4:46019 ; + ns2:hasConnectionPoint ns4:38721, + ns4:72386 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:45336 ; + ns4:returnOutlet ns4:72386 ; + ns4:supplyInlet ns4:38721 ; + ns4:temperature ns4:45336 . + +ns4:10814 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-91.zone" ; - ns1:cnx ns2:14475, - ns2:64663 ; - ns1:connected ns2:15538, - ns2:29599 ; - ns1:connectedFrom ns2:15538 ; - ns1:connectedThrough ns2:16934, - ns2:41128 ; - ns1:connectedTo ns2:29599 ; - ns1:hasConnectionPoint ns2:14475, - ns2:64663 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:80775 ; - ns2:returnOutlet ns2:64663 ; - ns2:supplyInlet ns2:14475 ; - ns2:temperature ns2:80775 . - -ns2:12692 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:14475, + ns4:64663 ; + ns2:connected ns4:15538, + ns4:29599 ; + ns2:connectedFrom ns4:15538 ; + ns2:connectedThrough ns4:16934, + ns4:41128 ; + ns2:connectedTo ns4:29599 ; + ns2:hasConnectionPoint ns4:14475, + ns4:64663 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:80775 ; + ns4:returnOutlet ns4:64663 ; + ns4:supplyInlet ns4:14475 ; + ns4:temperature ns4:80775 . + +ns4:12692 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-7.zone" ; - ns1:cnx ns2:12631, - ns2:12794 ; - ns1:connected ns2:28911, - ns2:77743 ; - ns1:connectedFrom ns2:77743 ; - ns1:connectedThrough ns2:21481, - ns2:25473 ; - ns1:connectedTo ns2:28911 ; - ns1:hasConnectionPoint ns2:12631, - ns2:12794 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:50589 ; - ns2:returnOutlet ns2:12631 ; - ns2:supplyInlet ns2:12794 ; - ns2:temperature ns2:50589 . - -ns2:13344 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:12631, + ns4:12794 ; + ns2:connected ns4:28911, + ns4:77743 ; + ns2:connectedFrom ns4:77743 ; + ns2:connectedThrough ns4:21481, + ns4:25473 ; + ns2:connectedTo ns4:28911 ; + ns2:hasConnectionPoint ns4:12631, + ns4:12794 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:50589 ; + ns4:returnOutlet ns4:12631 ; + ns4:supplyInlet ns4:12794 ; + ns4:temperature ns4:50589 . + +ns4:13344 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "7-80.zone" ; - ns1:cnx ns2:46802, - ns2:82977 ; - ns1:connected ns2:83890, - ns2:95765 ; - ns1:connectedFrom ns2:95765 ; - ns1:connectedThrough ns2:00496, - ns2:06559 ; - ns1:connectedTo ns2:83890 ; - ns1:hasConnectionPoint ns2:46802, - ns2:82977 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:32890, - ns2:94411 ; - ns2:returnOutlet ns2:46802 ; - ns2:supplyInlet ns2:82977 ; - ns2:temperature ns2:94411 . - -ns2:13461 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:46802, + ns4:82977 ; + ns2:connected ns4:83890, + ns4:95765 ; + ns2:connectedFrom ns4:95765 ; + ns2:connectedThrough ns4:00496, + ns4:06559 ; + ns2:connectedTo ns4:83890 ; + ns2:hasConnectionPoint ns4:46802, + ns4:82977 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:32890, + ns4:94411 ; + ns4:returnOutlet ns4:46802 ; + ns4:supplyInlet ns4:82977 ; + ns4:temperature ns4:94411 . + +ns4:13461 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "4-33.zone" ; - ns1:cnx ns2:16636, - ns2:60332 ; - ns1:connected ns2:08346, - ns2:98159 ; - ns1:connectedFrom ns2:08346 ; - ns1:connectedThrough ns2:43608, - ns2:53271 ; - ns1:connectedTo ns2:98159 ; - ns1:hasConnectionPoint ns2:16636, - ns2:60332 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:72127, - ns2:90585 ; - ns2:returnOutlet ns2:60332 ; - ns2:supplyInlet ns2:16636 ; - ns2:temperature ns2:90585 . - -ns2:15016 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:16636, + ns4:60332 ; + ns2:connected ns4:08346, + ns4:98159 ; + ns2:connectedFrom ns4:08346 ; + ns2:connectedThrough ns4:43608, + ns4:53271 ; + ns2:connectedTo ns4:98159 ; + ns2:hasConnectionPoint ns4:16636, + ns4:60332 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:72127, + ns4:90585 ; + ns4:returnOutlet ns4:60332 ; + ns4:supplyInlet ns4:16636 ; + ns4:temperature ns4:90585 . + +ns4:15016 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-02.zone" ; - ns1:cnx ns2:02517, - ns2:34996 ; - ns1:connected ns2:09432, - ns2:29599 ; - ns1:connectedFrom ns2:09432 ; - ns1:connectedThrough ns2:30616, - ns2:92535 ; - ns1:connectedTo ns2:29599 ; - ns1:hasConnectionPoint ns2:02517, - ns2:34996 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:58507 ; - ns2:returnOutlet ns2:02517 ; - ns2:supplyInlet ns2:34996 ; - ns2:temperature ns2:58507 . - -ns2:15067 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:02517, + ns4:34996 ; + ns2:connected ns4:09432, + ns4:29599 ; + ns2:connectedFrom ns4:09432 ; + ns2:connectedThrough ns4:30616, + ns4:92535 ; + ns2:connectedTo ns4:29599 ; + ns2:hasConnectionPoint ns4:02517, + ns4:34996 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:58507 ; + ns4:returnOutlet ns4:02517 ; + ns4:supplyInlet ns4:34996 ; + ns4:temperature ns4:58507 . + +ns4:15067 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:21349, - ns2:52024, - ns2:73704 ; - ns1:connected ns2:68166, - ns2:83428 ; - ns1:connectedFrom ns2:68166 ; - ns1:connectedThrough ns2:77276 ; - ns1:hasConnectionPoint ns2:21349, - ns2:52024, - ns2:73704 ; - ns1:hasProperty ns2:50994, - ns2:93767 ; - ns4:linkageInlet ns2:52024 ; - ns4:waterInlet ns2:73704 ; - ns4:waterOutlet ns2:21349 ; + ns2:cnx ns4:21349, + ns4:52024, + ns4:73704 ; + ns2:connected ns4:68166, + ns4:83428 ; + ns2:connectedFrom ns4:68166 ; + ns2:connectedThrough ns4:77276 ; + ns2:hasConnectionPoint ns4:21349, + ns4:52024, + ns4:73704 ; + ns2:hasProperty ns4:50994, + ns4:93767 ; + ns3:linkageInlet ns4:52024 ; + ns3:waterInlet ns4:73704 ; + ns3:waterOutlet ns4:21349 ; rdfs:comment "hw_valve" . -ns2:16454 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; +ns4:16454 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "3-7.zone" ; - ns1:cnx ns2:61099, - ns2:88280 ; - ns1:connected ns2:05175, - ns2:06962 ; - ns1:connectedFrom ns2:06962 ; - ns1:connectedThrough ns2:08368, - ns2:97276 ; - ns1:connectedTo ns2:05175 ; - ns1:hasConnectionPoint ns2:61099, - ns2:88280 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:35839 ; - ns2:returnOutlet ns2:61099 ; - ns2:supplyInlet ns2:88280 ; - ns2:temperature ns2:35839 . - -ns2:24053 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:61099, + ns4:88280 ; + ns2:connected ns4:05175, + ns4:06962 ; + ns2:connectedFrom ns4:06962 ; + ns2:connectedThrough ns4:08368, + ns4:97276 ; + ns2:connectedTo ns4:05175 ; + ns2:hasConnectionPoint ns4:61099, + ns4:88280 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:35839 ; + ns4:returnOutlet ns4:61099 ; + ns4:supplyInlet ns4:88280 ; + ns4:temperature ns4:35839 . + +ns4:24053 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-80.zone" ; - ns1:cnx ns2:65351, - ns2:66509 ; - ns1:connected ns2:46019, - ns2:61647 ; - ns1:connectedFrom ns2:61647 ; - ns1:connectedThrough ns2:21786, - ns2:84877 ; - ns1:connectedTo ns2:46019 ; - ns1:hasConnectionPoint ns2:65351, - ns2:66509 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:15973 ; - ns2:returnOutlet ns2:65351 ; - ns2:supplyInlet ns2:66509 ; - ns2:temperature ns2:15973 . - -ns2:26040 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:65351, + ns4:66509 ; + ns2:connected ns4:46019, + ns4:61647 ; + ns2:connectedFrom ns4:61647 ; + ns2:connectedThrough ns4:21786, + ns4:84877 ; + ns2:connectedTo ns4:46019 ; + ns2:hasConnectionPoint ns4:65351, + ns4:66509 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:15973 ; + ns4:returnOutlet ns4:65351 ; + ns4:supplyInlet ns4:66509 ; + ns4:temperature ns4:15973 . + +ns4:26040 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-8.zone" ; - ns1:cnx ns2:00445, - ns2:71533 ; - ns1:connected ns2:28911, - ns2:58117 ; - ns1:connectedFrom ns2:58117 ; - ns1:connectedThrough ns2:68940, - ns2:85171 ; - ns1:connectedTo ns2:28911 ; - ns1:hasConnectionPoint ns2:00445, - ns2:71533 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:25235 ; - ns2:returnOutlet ns2:00445 ; - ns2:supplyInlet ns2:71533 ; - ns2:temperature ns2:25235 . - -ns2:26799 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:00445, + ns4:71533 ; + ns2:connected ns4:28911, + ns4:58117 ; + ns2:connectedFrom ns4:58117 ; + ns2:connectedThrough ns4:68940, + ns4:85171 ; + ns2:connectedTo ns4:28911 ; + ns2:hasConnectionPoint ns4:00445, + ns4:71533 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:25235 ; + ns4:returnOutlet ns4:00445 ; + ns4:supplyInlet ns4:71533 ; + ns4:temperature ns4:25235 . + +ns4:26799 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-4.zone" ; - ns1:cnx ns2:40865, - ns2:99413 ; - ns1:connected ns2:28911, - ns2:41694 ; - ns1:connectedFrom ns2:41694 ; - ns1:connectedThrough ns2:55685, - ns2:89082 ; - ns1:connectedTo ns2:28911 ; - ns1:hasConnectionPoint ns2:40865, - ns2:99413 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:45341, - ns2:88811 ; - ns2:returnOutlet ns2:99413 ; - ns2:supplyInlet ns2:40865 ; - ns2:temperature ns2:88811 . - -ns2:29499 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:40865, + ns4:99413 ; + ns2:connected ns4:28911, + ns4:41694 ; + ns2:connectedFrom ns4:41694 ; + ns2:connectedThrough ns4:55685, + ns4:89082 ; + ns2:connectedTo ns4:28911 ; + ns2:hasConnectionPoint ns4:40865, + ns4:99413 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:45341, + ns4:88811 ; + ns4:returnOutlet ns4:99413 ; + ns4:supplyInlet ns4:40865 ; + ns4:temperature ns4:88811 . + +ns4:29499 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "2-4.zone" ; - ns1:cnx ns2:80679, - ns2:82625 ; - ns1:connected ns2:63086, - ns2:98159 ; - ns1:connectedFrom ns2:63086 ; - ns1:connectedThrough ns2:05672, - ns2:47009 ; - ns1:connectedTo ns2:98159 ; - ns1:hasConnectionPoint ns2:80679, - ns2:82625 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:89014 ; - ns2:returnOutlet ns2:82625 ; - ns2:supplyInlet ns2:80679 ; - ns2:temperature ns2:89014 . - -ns2:33721 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:80679, + ns4:82625 ; + ns2:connected ns4:63086, + ns4:98159 ; + ns2:connectedFrom ns4:63086 ; + ns2:connectedThrough ns4:05672, + ns4:47009 ; + ns2:connectedTo ns4:98159 ; + ns2:hasConnectionPoint ns4:80679, + ns4:82625 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:89014 ; + ns4:returnOutlet ns4:82625 ; + ns4:supplyInlet ns4:80679 ; + ns4:temperature ns4:89014 . + +ns4:33721 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-00.zone" ; - ns1:cnx ns2:66888, - ns2:95093 ; - ns1:connected ns2:46019, - ns2:66742 ; - ns1:connectedFrom ns2:66742 ; - ns1:connectedThrough ns2:08108, - ns2:50484 ; - ns1:connectedTo ns2:46019 ; - ns1:hasConnectionPoint ns2:66888, - ns2:95093 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:15275, - ns2:79530 ; - ns2:returnOutlet ns2:66888 ; - ns2:supplyInlet ns2:95093 ; - ns2:temperature ns2:79530 . - -ns2:34355 a ns1:Connectable, - ns1:Equipment, - ns1:Fan ; + ns2:cnx ns4:66888, + ns4:95093 ; + ns2:connected ns4:46019, + ns4:66742 ; + ns2:connectedFrom ns4:66742 ; + ns2:connectedThrough ns4:08108, + ns4:50484 ; + ns2:connectedTo ns4:46019 ; + ns2:hasConnectionPoint ns4:66888, + ns4:95093 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:15275, + ns4:79530 ; + ns4:returnOutlet ns4:66888 ; + ns4:supplyInlet ns4:95093 ; + ns4:temperature ns4:79530 . + +ns4:34355 a ns2:Connectable, + ns2:Equipment, + ns2:Fan ; rdfs:label "fan" ; - ns1:cnx ns2:05086, - ns2:19930, - ns2:57368 ; - ns1:connected ns2:58251, - ns2:97321 ; - ns1:connectedFrom ns2:58251 ; - ns1:connectedThrough ns2:79346 ; - ns1:hasConnectionPoint ns2:05086, - ns2:19930, - ns2:57368 ; - ns4:airInlet ns2:57368 ; - ns4:airOutlet ns2:05086 ; + ns2:cnx ns4:05086, + ns4:19930, + ns4:57368 ; + ns2:connected ns4:58251, + ns4:97321 ; + ns2:connectedFrom ns4:58251 ; + ns2:connectedThrough ns4:79346 ; + ns2:hasConnectionPoint ns4:05086, + ns4:19930, + ns4:57368 ; + ns3:airInlet ns4:57368 ; + ns3:airOutlet ns4:05086 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:36823 a ns1:Connection ; +ns4:36823 a ns2:Connection ; rdfs:label "RTU_8.return_air" ; - ns1:cnx ns2:09442, - ns2:11429, - ns2:50525 ; - ns1:connectsAt ns2:09442, - ns2:11429, - ns2:50525 ; - ns1:connectsFrom ns2:18339 ; - ns1:connectsTo ns2:11125, - ns2:51341 ; - ns1:hasMedium ; - ns1:hasProperty ns2:49932, - ns2:89893 . - -ns2:43841 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:09442, + ns4:11429, + ns4:50525 ; + ns2:connectsAt ns4:09442, + ns4:11429, + ns4:50525 ; + ns2:connectsFrom ns4:18339 ; + ns2:connectsTo ns4:11125, + ns4:51341 ; + ns2:hasMedium ; + ns2:hasProperty ns4:49932, + ns4:89893 . + +ns4:43841 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "8-0.zone" ; - ns1:cnx ns2:23233, - ns2:41633 ; - ns1:connected ns2:05175, - ns2:15332 ; - ns1:connectedFrom ns2:15332 ; - ns1:connectedThrough ns2:19094, - ns2:86102 ; - ns1:connectedTo ns2:05175 ; - ns1:hasConnectionPoint ns2:23233, - ns2:41633 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:34828 ; - ns2:returnOutlet ns2:23233 ; - ns2:supplyInlet ns2:41633 ; - ns2:temperature ns2:34828 . - -ns2:43967 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:23233, + ns4:41633 ; + ns2:connected ns4:05175, + ns4:15332 ; + ns2:connectedFrom ns4:15332 ; + ns2:connectedThrough ns4:19094, + ns4:86102 ; + ns2:connectedTo ns4:05175 ; + ns2:hasConnectionPoint ns4:23233, + ns4:41633 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:34828 ; + ns4:returnOutlet ns4:23233 ; + ns4:supplyInlet ns4:41633 ; + ns4:temperature ns4:34828 . + +ns4:43967 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "0-98.zone" ; - ns1:cnx ns2:29573, - ns2:40147 ; - ns1:connected ns2:18875, - ns2:69111 ; - ns1:connectedFrom ns2:18875 ; - ns1:connectedThrough ns2:42653, - ns2:87912 ; - ns1:connectedTo ns2:69111 ; - ns1:hasConnectionPoint ns2:29573, - ns2:40147 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:87411 ; - ns2:returnOutlet ns2:29573 ; - ns2:supplyInlet ns2:40147 ; - ns2:temperature ns2:87411 . - -ns2:45421 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:29573, + ns4:40147 ; + ns2:connected ns4:18875, + ns4:69111 ; + ns2:connectedFrom ns4:18875 ; + ns2:connectedThrough ns4:42653, + ns4:87912 ; + ns2:connectedTo ns4:69111 ; + ns2:hasConnectionPoint ns4:29573, + ns4:40147 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:87411 ; + ns4:returnOutlet ns4:29573 ; + ns4:supplyInlet ns4:40147 ; + ns4:temperature ns4:87411 . + +ns4:45421 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-96.zone" ; - ns1:cnx ns2:60889, - ns2:62284 ; - ns1:connected ns2:27011, - ns2:29599 ; - ns1:connectedFrom ns2:27011 ; - ns1:connectedThrough ns2:33279, - ns2:34910 ; - ns1:connectedTo ns2:29599 ; - ns1:hasConnectionPoint ns2:60889, - ns2:62284 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:16655 ; - ns2:returnOutlet ns2:60889 ; - ns2:supplyInlet ns2:62284 ; - ns2:temperature ns2:16655 . - -ns2:46213 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:60889, + ns4:62284 ; + ns2:connected ns4:27011, + ns4:29599 ; + ns2:connectedFrom ns4:27011 ; + ns2:connectedThrough ns4:33279, + ns4:34910 ; + ns2:connectedTo ns4:29599 ; + ns2:hasConnectionPoint ns4:60889, + ns4:62284 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:16655 ; + ns4:returnOutlet ns4:60889 ; + ns4:supplyInlet ns4:62284 ; + ns4:temperature ns4:16655 . + +ns4:46213 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "7-19.zone" ; - ns1:cnx ns2:51809, - ns2:87186 ; - ns1:connected ns2:66843, - ns2:83890 ; - ns1:connectedFrom ns2:66843 ; - ns1:connectedThrough ns2:85385, - ns2:99042 ; - ns1:connectedTo ns2:83890 ; - ns1:hasConnectionPoint ns2:51809, - ns2:87186 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:66129 ; - ns2:returnOutlet ns2:51809 ; - ns2:supplyInlet ns2:87186 ; - ns2:temperature ns2:66129 . - -ns2:47830 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:51809, + ns4:87186 ; + ns2:connected ns4:66843, + ns4:83890 ; + ns2:connectedFrom ns4:66843 ; + ns2:connectedThrough ns4:85385, + ns4:99042 ; + ns2:connectedTo ns4:83890 ; + ns2:hasConnectionPoint ns4:51809, + ns4:87186 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:66129 ; + ns4:returnOutlet ns4:51809 ; + ns4:supplyInlet ns4:87186 ; + ns4:temperature ns4:66129 . + +ns4:47830 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-8.zone" ; - ns1:cnx ns2:91065, - ns2:92954 ; - ns1:connected ns2:03724, - ns2:93276 ; - ns1:connectedFrom ns2:03724 ; - ns1:connectedThrough ns2:16551, - ns2:30117 ; - ns1:connectedTo ns2:93276 ; - ns1:hasConnectionPoint ns2:91065, - ns2:92954 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:82474 ; - ns2:returnOutlet ns2:91065 ; - ns2:supplyInlet ns2:92954 ; - ns2:temperature ns2:82474 . - -ns2:51136 a ns1:Connection ; + ns2:cnx ns4:91065, + ns4:92954 ; + ns2:connected ns4:03724, + ns4:93276 ; + ns2:connectedFrom ns4:03724 ; + ns2:connectedThrough ns4:16551, + ns4:30117 ; + ns2:connectedTo ns4:93276 ; + ns2:hasConnectionPoint ns4:91065, + ns4:92954 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:82474 ; + ns4:returnOutlet ns4:91065 ; + ns4:supplyInlet ns4:92954 ; + ns4:temperature ns4:82474 . + +ns4:51136 a ns2:Connection ; rdfs:label "RTU_5.return_air" ; - ns1:cnx ns2:25134, - ns2:49943, - ns2:75434 ; - ns1:connectsAt ns2:25134, - ns2:49943, - ns2:75434 ; - ns1:connectsFrom ns2:43438 ; - ns1:connectsTo ns2:56948, - ns2:87637 ; - ns1:hasMedium ; - ns1:hasProperty ns2:02892, - ns2:55720 . - -ns2:52572 a ns1:Connection ; + ns2:cnx ns4:25134, + ns4:49943, + ns4:75434 ; + ns2:connectsAt ns4:25134, + ns4:49943, + ns4:75434 ; + ns2:connectsFrom ns4:43438 ; + ns2:connectsTo ns4:56948, + ns4:87637 ; + ns2:hasMedium ; + ns2:hasProperty ns4:02892, + ns4:55720 . + +ns4:52572 a ns2:Connection ; rdfs:label "RTU_7.return_air" ; - ns1:cnx ns2:20132, - ns2:29249, - ns2:56799 ; - ns1:connectsAt ns2:20132, - ns2:29249, - ns2:56799 ; - ns1:connectsFrom ns2:02817 ; - ns1:connectsTo ns2:39848, - ns2:98539 ; - ns1:hasMedium ; - ns1:hasProperty ns2:17710, - ns2:59892 . - -ns2:54090 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:20132, + ns4:29249, + ns4:56799 ; + ns2:connectsAt ns4:20132, + ns4:29249, + ns4:56799 ; + ns2:connectsFrom ns4:02817 ; + ns2:connectsTo ns4:39848, + ns4:98539 ; + ns2:hasMedium ; + ns2:hasProperty ns4:17710, + ns4:59892 . + +ns4:54090 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "4-20A.zone" ; - ns1:cnx ns2:56205, - ns2:97304 ; - ns1:connected ns2:65125, - ns2:98159 ; - ns1:connectedFrom ns2:65125 ; - ns1:connectedThrough ns2:18257, - ns2:71446 ; - ns1:connectedTo ns2:98159 ; - ns1:hasConnectionPoint ns2:56205, - ns2:97304 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:32099 ; - ns2:returnOutlet ns2:56205 ; - ns2:supplyInlet ns2:97304 ; - ns2:temperature ns2:32099 . - -ns2:55654 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:56205, + ns4:97304 ; + ns2:connected ns4:65125, + ns4:98159 ; + ns2:connectedFrom ns4:65125 ; + ns2:connectedThrough ns4:18257, + ns4:71446 ; + ns2:connectedTo ns4:98159 ; + ns2:hasConnectionPoint ns4:56205, + ns4:97304 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:32099 ; + ns4:returnOutlet ns4:56205 ; + ns4:supplyInlet ns4:97304 ; + ns4:temperature ns4:32099 . + +ns4:55654 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "7-99.zone" ; - ns1:cnx ns2:31650, - ns2:97049 ; - ns1:connected ns2:34533, - ns2:69111 ; - ns1:connectedFrom ns2:34533 ; - ns1:connectedThrough ns2:16401, - ns2:72322 ; - ns1:connectedTo ns2:69111 ; - ns1:hasConnectionPoint ns2:31650, - ns2:97049 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:11406 ; - ns2:returnOutlet ns2:97049 ; - ns2:supplyInlet ns2:31650 ; - ns2:temperature ns2:11406 . - -ns2:57501 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; + ns2:cnx ns4:31650, + ns4:97049 ; + ns2:connected ns4:34533, + ns4:69111 ; + ns2:connectedFrom ns4:34533 ; + ns2:connectedThrough ns4:16401, + ns4:72322 ; + ns2:connectedTo ns4:69111 ; + ns2:hasConnectionPoint ns4:31650, + ns4:97049 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:11406 ; + ns4:returnOutlet ns4:97049 ; + ns4:supplyInlet ns4:31650 ; + ns4:temperature ns4:11406 . + +ns4:57501 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:21597, - ns2:27305, - ns2:70045 ; - ns1:connected ns2:81183 ; - ns1:connectedFrom ns2:81183 ; - ns1:connectedThrough ns2:69442 ; - ns1:connectsThrough ns2:70045 ; - ns1:hasConnectionPoint ns2:21597, - ns2:27305, - ns2:70045 ; - ns1:hasProperty ns2:31262, - ns2:40641 ; - ns4:linkageInlet ns2:70045 ; - ns4:waterInlet ns2:27305 ; - ns4:waterOutlet ns2:21597 ; + ns2:cnx ns4:21597, + ns4:27305, + ns4:70045 ; + ns2:connected ns4:81183 ; + ns2:connectedFrom ns4:81183 ; + ns2:connectedThrough ns4:69442 ; + ns2:connectsThrough ns4:70045 ; + ns2:hasConnectionPoint ns4:21597, + ns4:27305, + ns4:70045 ; + ns2:hasProperty ns4:31262, + ns4:40641 ; + ns3:linkageInlet ns4:70045 ; + ns3:waterInlet ns4:27305 ; + ns3:waterOutlet ns4:21597 ; rdfs:comment "hw_valve" . -ns2:58975 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; +ns4:58975 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "2-0.zone" ; - ns1:cnx ns2:51828, - ns2:54486 ; - ns1:connected ns2:03707, - ns2:98159 ; - ns1:connectedFrom ns2:03707 ; - ns1:connectedThrough ns2:59512, - ns2:79414 ; - ns1:connectedTo ns2:98159 ; - ns1:hasConnectionPoint ns2:51828, - ns2:54486 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:34025 ; - ns2:returnOutlet ns2:54486 ; - ns2:supplyInlet ns2:51828 ; - ns2:temperature ns2:34025 . - -ns2:60471 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:51828, + ns4:54486 ; + ns2:connected ns4:03707, + ns4:98159 ; + ns2:connectedFrom ns4:03707 ; + ns2:connectedThrough ns4:59512, + ns4:79414 ; + ns2:connectedTo ns4:98159 ; + ns2:hasConnectionPoint ns4:51828, + ns4:54486 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:34025 ; + ns4:returnOutlet ns4:54486 ; + ns4:supplyInlet ns4:51828 ; + ns4:temperature ns4:34025 . + +ns4:60471 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "9-13.zone" ; - ns1:cnx ns2:38974, - ns2:73694 ; - ns1:connected ns2:32876, - ns2:98159 ; - ns1:connectedFrom ns2:32876 ; - ns1:connectedThrough ns2:07881, - ns2:16445 ; - ns1:connectedTo ns2:98159 ; - ns1:hasConnectionPoint ns2:38974, - ns2:73694 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:86755 ; - ns2:returnOutlet ns2:73694 ; - ns2:supplyInlet ns2:38974 ; - ns2:temperature ns2:86755 . - -ns2:63295 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; + ns2:cnx ns4:38974, + ns4:73694 ; + ns2:connected ns4:32876, + ns4:98159 ; + ns2:connectedFrom ns4:32876 ; + ns2:connectedThrough ns4:07881, + ns4:16445 ; + ns2:connectedTo ns4:98159 ; + ns2:hasConnectionPoint ns4:38974, + ns4:73694 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:86755 ; + ns4:returnOutlet ns4:73694 ; + ns4:supplyInlet ns4:38974 ; + ns4:temperature ns4:86755 . + +ns4:63295 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:09731, - ns2:71145, - ns2:75571 ; - ns1:connected ns2:68951 ; - ns1:connectedThrough ns2:16050 ; - ns1:connectedTo ns2:68951 ; - ns1:hasConnectionPoint ns2:09731, - ns2:71145, - ns2:75571 ; - ns1:hasProperty ns2:68539, - ns2:86121 ; - ns1:hasRole ns1:Role-Supply ; - ns1:isConnectionPointOf ns2:09731 ; - ns2:speedCommand ns2:86121 ; - ns2:speedFeedback ns2:68539 ; - ns4:airInlet ns2:09731 ; - ns4:airOutlet ns2:71145 ; + ns2:cnx ns4:09731, + ns4:71145, + ns4:75571 ; + ns2:connected ns4:68951 ; + ns2:connectedThrough ns4:16050 ; + ns2:connectedTo ns4:68951 ; + ns2:hasConnectionPoint ns4:09731, + ns4:71145, + ns4:75571 ; + ns2:hasProperty ns4:68539, + ns4:86121 ; + ns2:hasRole ns2:Role-Supply ; + ns2:isConnectionPointOf ns4:09731 ; + ns4:speedCommand ns4:86121 ; + ns4:speedFeedback ns4:68539 ; + ns3:airInlet ns4:09731 ; + ns3:airOutlet ns4:71145 ; rdfs:comment "supply_fan" . -ns2:63334 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; +ns4:63334 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-3.zone" ; - ns1:cnx ns2:45775, - ns2:79430 ; - ns1:connected ns2:28911, - ns2:46191 ; - ns1:connectedFrom ns2:46191 ; - ns1:connectedThrough ns2:26376, - ns2:86286 ; - ns1:connectedTo ns2:28911 ; - ns1:hasConnectionPoint ns2:45775, - ns2:79430 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:37444 ; - ns2:returnOutlet ns2:79430 ; - ns2:supplyInlet ns2:45775 ; - ns2:temperature ns2:37444 . - -ns2:65580 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:45775, + ns4:79430 ; + ns2:connected ns4:28911, + ns4:46191 ; + ns2:connectedFrom ns4:46191 ; + ns2:connectedThrough ns4:26376, + ns4:86286 ; + ns2:connectedTo ns4:28911 ; + ns2:hasConnectionPoint ns4:45775, + ns4:79430 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:37444 ; + ns4:returnOutlet ns4:79430 ; + ns4:supplyInlet ns4:45775 ; + ns4:temperature ns4:37444 . + +ns4:65580 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "3-33.zone" ; - ns1:cnx ns2:76440, - ns2:87812 ; - ns1:connected ns2:51853, - ns2:69111 ; - ns1:connectedFrom ns2:51853 ; - ns1:connectedThrough ns2:06115, - ns2:98060 ; - ns1:connectedTo ns2:69111 ; - ns1:hasConnectionPoint ns2:76440, - ns2:87812 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:26614, - ns2:28775 ; - ns2:returnOutlet ns2:76440 ; - ns2:supplyInlet ns2:87812 ; - ns2:temperature ns2:26614 . - -ns2:67586 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:76440, + ns4:87812 ; + ns2:connected ns4:51853, + ns4:69111 ; + ns2:connectedFrom ns4:51853 ; + ns2:connectedThrough ns4:06115, + ns4:98060 ; + ns2:connectedTo ns4:69111 ; + ns2:hasConnectionPoint ns4:76440, + ns4:87812 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:26614, + ns4:28775 ; + ns4:returnOutlet ns4:76440 ; + ns4:supplyInlet ns4:87812 ; + ns4:temperature ns4:26614 . + +ns4:67586 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-53.zone" ; - ns1:cnx ns2:82894, - ns2:86634 ; - ns1:connected ns2:31269, - ns2:93276 ; - ns1:connectedFrom ns2:31269 ; - ns1:connectedThrough ns2:28842, - ns2:31562 ; - ns1:connectedTo ns2:93276 ; - ns1:hasConnectionPoint ns2:82894, - ns2:86634 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:78804 ; - ns2:returnOutlet ns2:82894 ; - ns2:supplyInlet ns2:86634 ; - ns2:temperature ns2:78804 . - -ns2:68534 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:82894, + ns4:86634 ; + ns2:connected ns4:31269, + ns4:93276 ; + ns2:connectedFrom ns4:31269 ; + ns2:connectedThrough ns4:28842, + ns4:31562 ; + ns2:connectedTo ns4:93276 ; + ns2:hasConnectionPoint ns4:82894, + ns4:86634 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:78804 ; + ns4:returnOutlet ns4:82894 ; + ns4:supplyInlet ns4:86634 ; + ns4:temperature ns4:78804 . + +ns4:68534 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-65B.zone" ; - ns1:cnx ns2:31977, - ns2:42273 ; - ns1:connected ns2:01399, - ns2:93276 ; - ns1:connectedFrom ns2:01399 ; - ns1:connectedThrough ns2:50742, - ns2:80586 ; - ns1:connectedTo ns2:93276 ; - ns1:hasConnectionPoint ns2:31977, - ns2:42273 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:73271 ; - ns2:returnOutlet ns2:42273 ; - ns2:supplyInlet ns2:31977 ; - ns2:temperature ns2:73271 . - -ns2:69136 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:31977, + ns4:42273 ; + ns2:connected ns4:01399, + ns4:93276 ; + ns2:connectedFrom ns4:01399 ; + ns2:connectedThrough ns4:50742, + ns4:80586 ; + ns2:connectedTo ns4:93276 ; + ns2:hasConnectionPoint ns4:31977, + ns4:42273 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:73271 ; + ns4:returnOutlet ns4:42273 ; + ns4:supplyInlet ns4:31977 ; + ns4:temperature ns4:73271 . + +ns4:69136 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "8-98B.zone" ; - ns1:cnx ns2:58895, - ns2:88748 ; - ns1:connected ns2:02070, - ns2:83890 ; - ns1:connectedFrom ns2:02070 ; - ns1:connectedThrough ns2:70445, - ns2:77139 ; - ns1:connectedTo ns2:83890 ; - ns1:hasConnectionPoint ns2:58895, - ns2:88748 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:12427 ; - ns2:returnOutlet ns2:58895 ; - ns2:supplyInlet ns2:88748 ; - ns2:temperature ns2:12427 . - -ns2:69415 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:58895, + ns4:88748 ; + ns2:connected ns4:02070, + ns4:83890 ; + ns2:connectedFrom ns4:02070 ; + ns2:connectedThrough ns4:70445, + ns4:77139 ; + ns2:connectedTo ns4:83890 ; + ns2:hasConnectionPoint ns4:58895, + ns4:88748 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:12427 ; + ns4:returnOutlet ns4:58895 ; + ns4:supplyInlet ns4:88748 ; + ns4:temperature ns4:12427 . + +ns4:69415 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-0.zone" ; - ns1:cnx ns2:16302, - ns2:76714 ; - ns1:connected ns2:08701, - ns2:93276 ; - ns1:connectedFrom ns2:08701 ; - ns1:connectedThrough ns2:19566, - ns2:33343 ; - ns1:connectedTo ns2:93276 ; - ns1:hasConnectionPoint ns2:16302, - ns2:76714 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:13819 ; - ns2:returnOutlet ns2:16302 ; - ns2:supplyInlet ns2:76714 ; - ns2:temperature ns2:13819 . - -ns2:70253 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:16302, + ns4:76714 ; + ns2:connected ns4:08701, + ns4:93276 ; + ns2:connectedFrom ns4:08701 ; + ns2:connectedThrough ns4:19566, + ns4:33343 ; + ns2:connectedTo ns4:93276 ; + ns2:hasConnectionPoint ns4:16302, + ns4:76714 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:13819 ; + ns4:returnOutlet ns4:16302 ; + ns4:supplyInlet ns4:76714 ; + ns4:temperature ns4:13819 . + +ns4:70253 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-29A.zone" ; - ns1:cnx ns2:51259, - ns2:67520 ; - ns1:connected ns2:60688, - ns2:93276 ; - ns1:connectedFrom ns2:60688 ; - ns1:connectedThrough ns2:16718, - ns2:63083 ; - ns1:connectedTo ns2:93276 ; - ns1:hasConnectionPoint ns2:51259, - ns2:67520 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:16663 ; - ns2:returnOutlet ns2:67520 ; - ns2:supplyInlet ns2:51259 ; - ns2:temperature ns2:16663 . - -ns2:73947 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:51259, + ns4:67520 ; + ns2:connected ns4:60688, + ns4:93276 ; + ns2:connectedFrom ns4:60688 ; + ns2:connectedThrough ns4:16718, + ns4:63083 ; + ns2:connectedTo ns4:93276 ; + ns2:hasConnectionPoint ns4:51259, + ns4:67520 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:16663 ; + ns4:returnOutlet ns4:67520 ; + ns4:supplyInlet ns4:51259 ; + ns4:temperature ns4:16663 . + +ns4:73947 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-39.zone" ; - ns1:cnx ns2:32100, - ns2:52923 ; - ns1:connected ns2:25047, - ns2:29599 ; - ns1:connectedFrom ns2:25047 ; - ns1:connectedThrough ns2:28817, - ns2:38300 ; - ns1:connectedTo ns2:29599 ; - ns1:hasConnectionPoint ns2:32100, - ns2:52923 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:26451 ; - ns2:returnOutlet ns2:32100 ; - ns2:supplyInlet ns2:52923 ; - ns2:temperature ns2:26451 . - -ns2:76100 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:32100, + ns4:52923 ; + ns2:connected ns4:25047, + ns4:29599 ; + ns2:connectedFrom ns4:25047 ; + ns2:connectedThrough ns4:28817, + ns4:38300 ; + ns2:connectedTo ns4:29599 ; + ns2:hasConnectionPoint ns4:32100, + ns4:52923 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:26451 ; + ns4:returnOutlet ns4:32100 ; + ns4:supplyInlet ns4:52923 ; + ns4:temperature ns4:26451 . + +ns4:76100 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-54.zone" ; - ns1:cnx ns2:55520, - ns2:80482 ; - ns1:connected ns2:29599, - ns2:49192 ; - ns1:connectedFrom ns2:49192 ; - ns1:connectedThrough ns2:42081, - ns2:57735 ; - ns1:connectedTo ns2:29599 ; - ns1:hasConnectionPoint ns2:55520, - ns2:80482 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:21380, - ns2:57341 ; - ns2:returnOutlet ns2:55520 ; - ns2:supplyInlet ns2:80482 ; - ns2:temperature ns2:21380 . - -ns2:78065 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:55520, + ns4:80482 ; + ns2:connected ns4:29599, + ns4:49192 ; + ns2:connectedFrom ns4:49192 ; + ns2:connectedThrough ns4:42081, + ns4:57735 ; + ns2:connectedTo ns4:29599 ; + ns2:hasConnectionPoint ns4:55520, + ns4:80482 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:21380, + ns4:57341 ; + ns4:returnOutlet ns4:55520 ; + ns4:supplyInlet ns4:80482 ; + ns4:temperature ns4:21380 . + +ns4:78065 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-50.zone" ; - ns1:cnx ns2:19877, - ns2:27044 ; - ns1:connected ns2:02944, - ns2:93276 ; - ns1:connectedFrom ns2:02944 ; - ns1:connectedThrough ns2:25163, - ns2:46825 ; - ns1:connectedTo ns2:93276 ; - ns1:hasConnectionPoint ns2:19877, - ns2:27044 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:23945, - ns2:83770 ; - ns2:returnOutlet ns2:19877 ; - ns2:supplyInlet ns2:27044 ; - ns2:temperature ns2:23945 . - -ns2:79420 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:19877, + ns4:27044 ; + ns2:connected ns4:02944, + ns4:93276 ; + ns2:connectedFrom ns4:02944 ; + ns2:connectedThrough ns4:25163, + ns4:46825 ; + ns2:connectedTo ns4:93276 ; + ns2:hasConnectionPoint ns4:19877, + ns4:27044 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:23945, + ns4:83770 ; + ns4:returnOutlet ns4:19877 ; + ns4:supplyInlet ns4:27044 ; + ns4:temperature ns4:23945 . + +ns4:79420 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "2-9A.zone" ; - ns1:cnx ns2:28283, - ns2:55679 ; - ns1:connected ns2:15243, - ns2:83890 ; - ns1:connectedFrom ns2:15243 ; - ns1:connectedThrough ns2:11777, - ns2:94342 ; - ns1:connectedTo ns2:83890 ; - ns1:hasConnectionPoint ns2:28283, - ns2:55679 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:00482 ; - ns2:returnOutlet ns2:28283 ; - ns2:supplyInlet ns2:55679 ; - ns2:temperature ns2:00482 . - -ns2:80151 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:28283, + ns4:55679 ; + ns2:connected ns4:15243, + ns4:83890 ; + ns2:connectedFrom ns4:15243 ; + ns2:connectedThrough ns4:11777, + ns4:94342 ; + ns2:connectedTo ns4:83890 ; + ns2:hasConnectionPoint ns4:28283, + ns4:55679 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:00482 ; + ns4:returnOutlet ns4:28283 ; + ns4:supplyInlet ns4:55679 ; + ns4:temperature ns4:00482 . + +ns4:80151 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-1.zone" ; - ns1:cnx ns2:00319, - ns2:59984 ; - ns1:connected ns2:28911, - ns2:69011 ; - ns1:connectedFrom ns2:69011 ; - ns1:connectedThrough ns2:12364, - ns2:34639 ; - ns1:connectedTo ns2:28911 ; - ns1:hasConnectionPoint ns2:00319, - ns2:59984 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:26513 ; - ns2:returnOutlet ns2:59984 ; - ns2:supplyInlet ns2:00319 ; - ns2:temperature ns2:26513 . - -ns2:83378 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:00319, + ns4:59984 ; + ns2:connected ns4:28911, + ns4:69011 ; + ns2:connectedFrom ns4:69011 ; + ns2:connectedThrough ns4:12364, + ns4:34639 ; + ns2:connectedTo ns4:28911 ; + ns2:hasConnectionPoint ns4:00319, + ns4:59984 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:26513 ; + ns4:returnOutlet ns4:59984 ; + ns4:supplyInlet ns4:00319 ; + ns4:temperature ns4:26513 . + +ns4:83378 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "5-12.zone" ; - ns1:cnx ns2:58956, - ns2:79048 ; - ns1:connected ns2:47956, - ns2:83890 ; - ns1:connectedFrom ns2:47956 ; - ns1:connectedThrough ns2:25798, - ns2:32220 ; - ns1:connectedTo ns2:83890 ; - ns1:hasConnectionPoint ns2:58956, - ns2:79048 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:42561, - ns2:72226 ; - ns2:returnOutlet ns2:79048 ; - ns2:supplyInlet ns2:58956 ; - ns2:temperature ns2:42561 . - -ns2:87782 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:58956, + ns4:79048 ; + ns2:connected ns4:47956, + ns4:83890 ; + ns2:connectedFrom ns4:47956 ; + ns2:connectedThrough ns4:25798, + ns4:32220 ; + ns2:connectedTo ns4:83890 ; + ns2:hasConnectionPoint ns4:58956, + ns4:79048 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:42561, + ns4:72226 ; + ns4:returnOutlet ns4:79048 ; + ns4:supplyInlet ns4:58956 ; + ns4:temperature ns4:42561 . + +ns4:87782 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "7-67.zone" ; - ns1:cnx ns2:07756, - ns2:83742 ; - ns1:connected ns2:12924, - ns2:83890 ; - ns1:connectedFrom ns2:12924 ; - ns1:connectedThrough ns2:16958, - ns2:61966 ; - ns1:connectedTo ns2:83890 ; - ns1:hasConnectionPoint ns2:07756, - ns2:83742 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:88537 ; - ns2:returnOutlet ns2:83742 ; - ns2:supplyInlet ns2:07756 ; - ns2:temperature ns2:88537 . - -ns2:90402 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:07756, + ns4:83742 ; + ns2:connected ns4:12924, + ns4:83890 ; + ns2:connectedFrom ns4:12924 ; + ns2:connectedThrough ns4:16958, + ns4:61966 ; + ns2:connectedTo ns4:83890 ; + ns2:hasConnectionPoint ns4:07756, + ns4:83742 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:88537 ; + ns4:returnOutlet ns4:83742 ; + ns4:supplyInlet ns4:07756 ; + ns4:temperature ns4:88537 . + +ns4:90402 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-5A.zone" ; - ns1:cnx ns2:18193, - ns2:64279 ; - ns1:connected ns2:12403, - ns2:46019 ; - ns1:connectedFrom ns2:12403 ; - ns1:connectedThrough ns2:16382, - ns2:25887 ; - ns1:connectedTo ns2:46019 ; - ns1:hasConnectionPoint ns2:18193, - ns2:64279 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:32975 ; - ns2:returnOutlet ns2:18193 ; - ns2:supplyInlet ns2:64279 ; - ns2:temperature ns2:32975 . - -ns2:90476 a ns1:Connection ; + ns2:cnx ns4:18193, + ns4:64279 ; + ns2:connected ns4:12403, + ns4:46019 ; + ns2:connectedFrom ns4:12403 ; + ns2:connectedThrough ns4:16382, + ns4:25887 ; + ns2:connectedTo ns4:46019 ; + ns2:hasConnectionPoint ns4:18193, + ns4:64279 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:32975 ; + ns4:returnOutlet ns4:18193 ; + ns4:supplyInlet ns4:64279 ; + ns4:temperature ns4:32975 . + +ns4:90476 a ns2:Connection ; rdfs:label "RTU_9.return_air" ; - ns1:cnx ns2:01218, - ns2:69319, - ns2:89999 ; - ns1:connectsAt ns2:01218, - ns2:69319, - ns2:89999 ; - ns1:connectsFrom ns2:34927 ; - ns1:connectsTo ns2:31173, - ns2:49730 ; - ns1:hasMedium ; - ns1:hasProperty ns2:34100, - ns2:51842 . - -ns2:91944 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:01218, + ns4:69319, + ns4:89999 ; + ns2:connectsAt ns4:01218, + ns4:69319, + ns4:89999 ; + ns2:connectsFrom ns4:34927 ; + ns2:connectsTo ns4:31173, + ns4:49730 ; + ns2:hasMedium ; + ns2:hasProperty ns4:34100, + ns4:51842 . + +ns4:91944 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "8-43D.zone" ; - ns1:cnx ns2:03652, - ns2:65665 ; - ns1:connected ns2:07544, - ns2:83890 ; - ns1:connectedFrom ns2:07544 ; - ns1:connectedThrough ns2:57605, - ns2:82341 ; - ns1:connectedTo ns2:83890 ; - ns1:hasConnectionPoint ns2:03652, - ns2:65665 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:80284 ; - ns2:returnOutlet ns2:65665 ; - ns2:supplyInlet ns2:03652 ; - ns2:temperature ns2:80284 . - -ns2:92286 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:03652, + ns4:65665 ; + ns2:connected ns4:07544, + ns4:83890 ; + ns2:connectedFrom ns4:07544 ; + ns2:connectedThrough ns4:57605, + ns4:82341 ; + ns2:connectedTo ns4:83890 ; + ns2:hasConnectionPoint ns4:03652, + ns4:65665 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:80284 ; + ns4:returnOutlet ns4:65665 ; + ns4:supplyInlet ns4:03652 ; + ns4:temperature ns4:80284 . + +ns4:92286 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "8-75" ; - ns1:cnx ns2:29634, - ns2:79414 ; - ns1:connected ns2:42308, - ns2:94119 ; - ns1:connectedFrom ns2:42308 ; - ns1:connectedThrough ns2:07686, - ns2:29892 ; - ns1:connectedTo ns2:94119 ; - ns1:connectsThrough ns2:79414 ; - ns1:contains ns2:12553, - ns2:18099, - ns2:52918, - ns2:84250 ; - ns1:hasConnectionPoint ns2:29634, - ns2:79414 ; - ns1:hasProperty ns2:06055, - ns2:82836 ; - ns2:airInlet ns2:29634 ; - ns2:airOutlet ns2:79414 . - -ns2:92645 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:29634, + ns4:79414 ; + ns2:connected ns4:42308, + ns4:94119 ; + ns2:connectedFrom ns4:42308 ; + ns2:connectedThrough ns4:07686, + ns4:29892 ; + ns2:connectedTo ns4:94119 ; + ns2:connectsThrough ns4:79414 ; + ns2:contains ns4:12553, + ns4:18099, + ns4:52918, + ns4:84250 ; + ns2:hasConnectionPoint ns4:29634, + ns4:79414 ; + ns2:hasProperty ns4:06055, + ns4:82836 ; + ns4:airInlet ns4:29634 ; + ns4:airOutlet ns4:79414 . + +ns4:92645 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-83.zone" ; - ns1:cnx ns2:40617, - ns2:72250 ; - ns1:connected ns2:43278, - ns2:46019 ; - ns1:connectedFrom ns2:43278 ; - ns1:connectedThrough ns2:56473, - ns2:75076 ; - ns1:connectedTo ns2:46019 ; - ns1:hasConnectionPoint ns2:40617, - ns2:72250 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:37702, - ns2:88269 ; - ns2:returnOutlet ns2:40617 ; - ns2:supplyInlet ns2:72250 ; - ns2:temperature ns2:37702 . - -ns2:93162 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:40617, + ns4:72250 ; + ns2:connected ns4:43278, + ns4:46019 ; + ns2:connectedFrom ns4:43278 ; + ns2:connectedThrough ns4:56473, + ns4:75076 ; + ns2:connectedTo ns4:46019 ; + ns2:hasConnectionPoint ns4:40617, + ns4:72250 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:37702, + ns4:88269 ; + ns4:returnOutlet ns4:40617 ; + ns4:supplyInlet ns4:72250 ; + ns4:temperature ns4:37702 . + +ns4:93162 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "1-1.zone" ; - ns1:cnx ns2:47494, - ns2:61895 ; - ns1:connected ns2:02533, - ns2:05175 ; - ns1:connectedFrom ns2:02533 ; - ns1:connectedThrough ns2:57984, - ns2:73677 ; - ns1:connectedTo ns2:05175 ; - ns1:hasConnectionPoint ns2:47494, - ns2:61895 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:78919 ; - ns2:returnOutlet ns2:47494 ; - ns2:supplyInlet ns2:61895 ; - ns2:temperature ns2:78919 . - -ns2:94119 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:47494, + ns4:61895 ; + ns2:connected ns4:02533, + ns4:05175 ; + ns2:connectedFrom ns4:02533 ; + ns2:connectedThrough ns4:57984, + ns4:73677 ; + ns2:connectedTo ns4:05175 ; + ns2:hasConnectionPoint ns4:47494, + ns4:61895 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:78919 ; + ns4:returnOutlet ns4:47494 ; + ns4:supplyInlet ns4:61895 ; + ns4:temperature ns4:78919 . + +ns4:94119 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "3-60.zone" ; - ns1:cnx ns2:78724, - ns2:87860 ; - ns1:connected ns2:69111, - ns2:92286 ; - ns1:connectedFrom ns2:92286 ; - ns1:connectedThrough ns2:07686, - ns2:54382 ; - ns1:connectedTo ns2:69111 ; - ns1:hasConnectionPoint ns2:78724, - ns2:87860 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:77487 ; - ns2:returnOutlet ns2:87860 ; - ns2:supplyInlet ns2:78724 ; - ns2:temperature ns2:77487 . - -ns2:96232 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:78724, + ns4:87860 ; + ns2:connected ns4:69111, + ns4:92286 ; + ns2:connectedFrom ns4:92286 ; + ns2:connectedThrough ns4:07686, + ns4:54382 ; + ns2:connectedTo ns4:69111 ; + ns2:hasConnectionPoint ns4:78724, + ns4:87860 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:77487 ; + ns4:returnOutlet ns4:87860 ; + ns4:supplyInlet ns4:78724 ; + ns4:temperature ns4:77487 . + +ns4:96232 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "1-38.zone" ; - ns1:cnx ns2:56530, - ns2:90577 ; - ns1:connected ns2:25831, - ns2:69111 ; - ns1:connectedFrom ns2:25831 ; - ns1:connectedThrough ns2:92766, - ns2:95463 ; - ns1:connectedTo ns2:69111 ; - ns1:hasConnectionPoint ns2:56530, - ns2:90577 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:28960 ; - ns2:returnOutlet ns2:56530 ; - ns2:supplyInlet ns2:90577 ; - ns2:temperature ns2:28960 . - -ns2:96506 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:56530, + ns4:90577 ; + ns2:connected ns4:25831, + ns4:69111 ; + ns2:connectedFrom ns4:25831 ; + ns2:connectedThrough ns4:92766, + ns4:95463 ; + ns2:connectedTo ns4:69111 ; + ns2:hasConnectionPoint ns4:56530, + ns4:90577 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:28960 ; + ns4:returnOutlet ns4:56530 ; + ns4:supplyInlet ns4:90577 ; + ns4:temperature ns4:28960 . + +ns4:96506 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-3.zone" ; - ns1:cnx ns2:64731, - ns2:91971 ; - ns1:connected ns2:28911, - ns2:88818 ; - ns1:connectedFrom ns2:88818 ; - ns1:connectedThrough ns2:05888, - ns2:38917 ; - ns1:connectedTo ns2:28911 ; - ns1:hasConnectionPoint ns2:64731, - ns2:91971 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:37437 ; - ns2:returnOutlet ns2:64731 ; - ns2:supplyInlet ns2:91971 ; - ns2:temperature ns2:37437 . - -ns2:97668 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:64731, + ns4:91971 ; + ns2:connected ns4:28911, + ns4:88818 ; + ns2:connectedFrom ns4:88818 ; + ns2:connectedThrough ns4:05888, + ns4:38917 ; + ns2:connectedTo ns4:28911 ; + ns2:hasConnectionPoint ns4:64731, + ns4:91971 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:37437 ; + ns4:returnOutlet ns4:64731 ; + ns4:supplyInlet ns4:91971 ; + ns4:temperature ns4:37437 . + +ns4:97668 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "7-3.zone" ; - ns1:cnx ns2:05982, - ns2:56747 ; - ns1:connected ns2:05175, - ns2:52428 ; - ns1:connectedFrom ns2:52428 ; - ns1:connectedThrough ns2:42054, - ns2:54326 ; - ns1:connectedTo ns2:05175 ; - ns1:hasConnectionPoint ns2:05982, - ns2:56747 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:41843 ; - ns2:returnOutlet ns2:56747 ; - ns2:supplyInlet ns2:05982 ; - ns2:temperature ns2:41843 . - -ns2:97674 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:05982, + ns4:56747 ; + ns2:connected ns4:05175, + ns4:52428 ; + ns2:connectedFrom ns4:52428 ; + ns2:connectedThrough ns4:42054, + ns4:54326 ; + ns2:connectedTo ns4:05175 ; + ns2:hasConnectionPoint ns4:05982, + ns4:56747 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:41843 ; + ns4:returnOutlet ns4:56747 ; + ns4:supplyInlet ns4:05982 ; + ns4:temperature ns4:41843 . + +ns4:97674 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "1-0" ; - ns1:cnx ns2:97655, - ns2:99209 ; - ns1:connected ns2:04698, - ns2:05353 ; - ns1:connectedFrom ns2:05353 ; - ns1:connectedThrough ns2:16890, - ns2:83065 ; - ns1:connectedTo ns2:04698 ; - ns1:connectsThrough ns2:97655 ; - ns1:contains ns2:02590, - ns2:71329, - ns2:72185, - ns2:74699 ; - ns1:hasConnectionPoint ns2:97655, - ns2:99209 ; - ns1:hasProperty ns2:59698, - ns2:78122 ; - ns2:airInlet ns2:97655 ; - ns2:airOutlet ns2:99209 . - -ns2:98609 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; + ns2:cnx ns4:97655, + ns4:99209 ; + ns2:connected ns4:04698, + ns4:05353 ; + ns2:connectedFrom ns4:05353 ; + ns2:connectedThrough ns4:16890, + ns4:83065 ; + ns2:connectedTo ns4:04698 ; + ns2:connectsThrough ns4:97655 ; + ns2:contains ns4:02590, + ns4:71329, + ns4:72185, + ns4:74699 ; + ns2:hasConnectionPoint ns4:97655, + ns4:99209 ; + ns2:hasProperty ns4:59698, + ns4:78122 ; + ns4:airInlet ns4:97655 ; + ns4:airOutlet ns4:99209 . + +ns4:98609 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-75.zone" ; - ns1:cnx ns2:21806, - ns2:98327 ; - ns1:connected ns2:07970, - ns2:93276 ; - ns1:connectedFrom ns2:07970 ; - ns1:connectedThrough ns2:29739, - ns2:83975 ; - ns1:connectedTo ns2:93276 ; - ns1:hasConnectionPoint ns2:21806, - ns2:98327 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:71503 ; - ns2:returnOutlet ns2:98327 ; - ns2:supplyInlet ns2:21806 ; - ns2:temperature ns2:71503 . - -ns2:02817 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, + ns2:cnx ns4:21806, + ns4:98327 ; + ns2:connected ns4:07970, + ns4:93276 ; + ns2:connectedFrom ns4:07970 ; + ns2:connectedThrough ns4:29739, + ns4:83975 ; + ns2:connectedTo ns4:93276 ; + ns2:hasConnectionPoint ns4:21806, + ns4:98327 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:71503 ; + ns4:returnOutlet ns4:98327 ; + ns4:supplyInlet ns4:21806 ; + ns4:temperature ns4:71503 . + +ns4:02817 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, , - ns2:RTUFan ; + ns4:RTUFan ; rdfs:label "return_fan" ; - ns1:cnx ns2:03374, - ns2:20132, - ns2:65728 ; - ns1:connected ns2:39848, - ns2:98539 ; - ns1:connectedThrough ns2:52572 ; - ns1:connectedTo ns2:39848, - ns2:98539 ; - ns1:hasConnectionPoint ns2:03374, - ns2:20132, - ns2:65728 ; - ns1:hasProperty ns2:13224, - ns2:53010, - ns2:56383, - ns2:69796, - ns2:76229 ; - ns1:hasRole ns1:Role-Return ; - ns2:airFlow ns2:13224 ; - ns2:power ns2:76229 ; - ns2:speedCommand ns2:69796 ; - ns2:speedFeedback ns2:53010 ; - ns2:vfd_start_stop ns2:56383 ; - ns4:airInlet ns2:03374 ; - ns4:airOutlet ns2:20132 ; + ns2:cnx ns4:03374, + ns4:20132, + ns4:65728 ; + ns2:connected ns4:39848, + ns4:98539 ; + ns2:connectedThrough ns4:52572 ; + ns2:connectedTo ns4:39848, + ns4:98539 ; + ns2:hasConnectionPoint ns4:03374, + ns4:20132, + ns4:65728 ; + ns2:hasProperty ns4:13224, + ns4:53010, + ns4:56383, + ns4:69796, + ns4:76229 ; + ns2:hasRole ns2:Role-Return ; + ns4:airFlow ns4:13224 ; + ns4:power ns4:76229 ; + ns4:speedCommand ns4:69796 ; + ns4:speedFeedback ns4:53010 ; + ns4:vfd_start_stop ns4:56383 ; + ns3:airInlet ns4:03374 ; + ns3:airOutlet ns4:20132 ; rdfs:comment "return_fan" . -ns2:04913 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:04913 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:34188, - ns2:69823, - ns2:94541 ; - ns1:connected ns2:18941, - ns2:84040 ; - ns1:connectedFrom ns2:18941, - ns2:84040 ; - ns1:connectedThrough ns2:62740 ; - ns1:hasConnectionPoint ns2:34188, - ns2:69823, - ns2:94541 ; - ns1:hasProperty ns2:00813, - ns2:65334 ; - ns4:linkageInlet ns2:69823 ; - ns4:waterInlet ns2:94541 ; - ns4:waterOutlet ns2:34188 ; + ns2:cnx ns4:34188, + ns4:69823, + ns4:94541 ; + ns2:connected ns4:18941, + ns4:84040 ; + ns2:connectedFrom ns4:18941, + ns4:84040 ; + ns2:connectedThrough ns4:62740 ; + ns2:hasConnectionPoint ns4:34188, + ns4:69823, + ns4:94541 ; + ns2:hasProperty ns4:00813, + ns4:65334 ; + ns3:linkageInlet ns4:69823 ; + ns3:waterInlet ns4:94541 ; + ns3:waterOutlet ns4:34188 ; rdfs:comment "hw_valve" . -ns2:05971 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; +ns4:05971 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "0-92A.zone" ; - ns1:cnx ns2:93617, - ns2:98539 ; - ns1:connected ns2:03055, - ns2:83890 ; - ns1:connectedFrom ns2:03055 ; - ns1:connectedThrough ns2:56887, - ns2:65261 ; - ns1:connectedTo ns2:83890 ; - ns1:hasConnectionPoint ns2:93617, - ns2:98539 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:58209, - ns2:80925 ; - ns1:isConnectionPointOf ns2:98539 ; - ns2:returnOutlet ns2:93617 ; - ns2:supplyInlet ns2:98539 ; - ns2:temperature ns2:58209 . - -ns2:12924 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:93617, + ns4:98539 ; + ns2:connected ns4:03055, + ns4:83890 ; + ns2:connectedFrom ns4:03055 ; + ns2:connectedThrough ns4:56887, + ns4:65261 ; + ns2:connectedTo ns4:83890 ; + ns2:hasConnectionPoint ns4:93617, + ns4:98539 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:58209, + ns4:80925 ; + ns2:isConnectionPointOf ns4:98539 ; + ns4:returnOutlet ns4:93617 ; + ns4:supplyInlet ns4:98539 ; + ns4:temperature ns4:58209 . + +ns4:12924 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "0-43" ; - ns1:cnx ns2:56119, - ns2:68202 ; - ns1:connected ns2:10117, - ns2:87782, - ns2:88028 ; - ns1:connectedFrom ns2:10117, - ns2:88028 ; - ns1:connectedThrough ns2:25291, - ns2:61966 ; - ns1:connectedTo ns2:87782 ; - ns1:contains ns2:31947, - ns2:36176, - ns2:37192, - ns2:44594 ; - ns1:hasConnectionPoint ns2:56119, - ns2:68202 ; - ns1:hasProperty ns2:52272, - ns2:63904 ; - ns2:airInlet ns2:68202 ; - ns2:airOutlet ns2:56119 . - -ns2:18339 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, + ns2:cnx ns4:56119, + ns4:68202 ; + ns2:connected ns4:10117, + ns4:87782, + ns4:88028 ; + ns2:connectedFrom ns4:10117, + ns4:88028 ; + ns2:connectedThrough ns4:25291, + ns4:61966 ; + ns2:connectedTo ns4:87782 ; + ns2:contains ns4:31947, + ns4:36176, + ns4:37192, + ns4:44594 ; + ns2:hasConnectionPoint ns4:56119, + ns4:68202 ; + ns2:hasProperty ns4:52272, + ns4:63904 ; + ns4:airInlet ns4:68202 ; + ns4:airOutlet ns4:56119 . + +ns4:18339 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, , - ns2:RTUFan ; + ns4:RTUFan ; rdfs:label "return_fan" ; - ns1:cnx ns2:11429, - ns2:16617, - ns2:86558 ; - ns1:connected ns2:11125, - ns2:51341 ; - ns1:connectedThrough ns2:36823 ; - ns1:connectedTo ns2:11125, - ns2:51341 ; - ns1:hasConnectionPoint ns2:11429, - ns2:16617, - ns2:86558 ; - ns1:hasProperty ns2:15232, - ns2:16928, - ns2:37060, - ns2:45511, - ns2:95663 ; - ns1:hasRole ns1:Role-Return ; - ns2:airFlow ns2:16928 ; - ns2:power ns2:45511 ; - ns2:speedCommand ns2:37060 ; - ns2:speedFeedback ns2:15232 ; - ns2:vfd_start_stop ns2:95663 ; - ns4:airInlet ns2:16617 ; - ns4:airOutlet ns2:11429 ; + ns2:cnx ns4:11429, + ns4:16617, + ns4:86558 ; + ns2:connected ns4:11125, + ns4:51341 ; + ns2:connectedThrough ns4:36823 ; + ns2:connectedTo ns4:11125, + ns4:51341 ; + ns2:hasConnectionPoint ns4:11429, + ns4:16617, + ns4:86558 ; + ns2:hasProperty ns4:15232, + ns4:16928, + ns4:37060, + ns4:45511, + ns4:95663 ; + ns2:hasRole ns2:Role-Return ; + ns4:airFlow ns4:16928 ; + ns4:power ns4:45511 ; + ns4:speedCommand ns4:37060 ; + ns4:speedFeedback ns4:15232 ; + ns4:vfd_start_stop ns4:95663 ; + ns3:airInlet ns4:16617 ; + ns3:airOutlet ns4:11429 ; rdfs:comment "return_fan" . -ns2:32876 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; +ns4:32876 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "1-29" ; - ns1:cnx ns2:14550, - ns2:22163 ; - ns1:connected ns2:10117, - ns2:60471, - ns2:88028 ; - ns1:connectedFrom ns2:10117, - ns2:88028 ; - ns1:connectedThrough ns2:07881, - ns2:24336 ; - ns1:connectedTo ns2:60471 ; - ns1:contains ns2:47806, - ns2:62510, - ns2:83428, - ns2:88253 ; - ns1:hasConnectionPoint ns2:14550, - ns2:22163 ; - ns1:hasProperty ns2:04501, - ns2:94180 ; - ns2:airInlet ns2:14550 ; - ns2:airOutlet ns2:22163 . - -ns2:34392 a ns1:Connectable, - ns1:Equipment, - ns1:FlowSensor ; + ns2:cnx ns4:14550, + ns4:22163 ; + ns2:connected ns4:10117, + ns4:60471, + ns4:88028 ; + ns2:connectedFrom ns4:10117, + ns4:88028 ; + ns2:connectedThrough ns4:07881, + ns4:24336 ; + ns2:connectedTo ns4:60471 ; + ns2:contains ns4:47806, + ns4:62510, + ns4:83428, + ns4:88253 ; + ns2:hasConnectionPoint ns4:14550, + ns4:22163 ; + ns2:hasProperty ns4:04501, + ns4:94180 ; + ns4:airInlet ns4:14550 ; + ns4:airOutlet ns4:22163 . + +ns4:34392 a ns2:Connectable, + ns2:Equipment, + ns2:FlowSensor ; rdfs:label "oa_flow_station" ; - ns1:cnx ns2:10261, - ns2:75105 ; - ns1:connected ns2:31173, - ns2:53679, - ns2:64314 ; - ns1:connectedFrom ns2:53679 ; - ns1:connectedThrough ns2:56341, - ns2:80380 ; - ns1:connectedTo ns2:64314 ; - ns1:hasConnectionPoint ns2:10261, - ns2:75105 ; - ns4:airInlet ns2:10261 ; - ns4:airOutlet ns2:75105 ; + ns2:cnx ns4:10261, + ns4:75105 ; + ns2:connected ns4:31173, + ns4:53679, + ns4:64314 ; + ns2:connectedFrom ns4:53679 ; + ns2:connectedThrough ns4:56341, + ns4:80380 ; + ns2:connectedTo ns4:64314 ; + ns2:hasConnectionPoint ns4:10261, + ns4:75105 ; + ns3:airInlet ns4:10261 ; + ns3:airOutlet ns4:75105 ; rdfs:comment "outside_air_flow_station" . -ns2:34927 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, +ns4:34927 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, , - ns2:RTUFan ; + ns4:RTUFan ; rdfs:label "return_fan" ; - ns1:cnx ns2:33208, - ns2:46039, - ns2:69319 ; - ns1:connected ns2:31173, - ns2:49730 ; - ns1:connectedThrough ns2:90476 ; - ns1:connectedTo ns2:31173, - ns2:49730 ; - ns1:hasConnectionPoint ns2:33208, - ns2:46039, - ns2:69319 ; - ns1:hasProperty ns2:05781, - ns2:22406, - ns2:54662, - ns2:92544, - ns2:96164 ; - ns1:hasRole ns1:Role-Return ; - ns2:airFlow ns2:96164 ; - ns2:power ns2:92544 ; - ns2:speedCommand ns2:22406 ; - ns2:speedFeedback ns2:05781 ; - ns2:vfd_start_stop ns2:54662 ; - ns4:airInlet ns2:46039 ; - ns4:airOutlet ns2:69319 ; + ns2:cnx ns4:33208, + ns4:46039, + ns4:69319 ; + ns2:connected ns4:31173, + ns4:49730 ; + ns2:connectedThrough ns4:90476 ; + ns2:connectedTo ns4:31173, + ns4:49730 ; + ns2:hasConnectionPoint ns4:33208, + ns4:46039, + ns4:69319 ; + ns2:hasProperty ns4:05781, + ns4:22406, + ns4:54662, + ns4:92544, + ns4:96164 ; + ns2:hasRole ns2:Role-Return ; + ns4:airFlow ns4:96164 ; + ns4:power ns4:92544 ; + ns4:speedCommand ns4:22406 ; + ns4:speedFeedback ns4:05781 ; + ns4:vfd_start_stop ns4:54662 ; + ns3:airInlet ns4:46039 ; + ns3:airOutlet ns4:69319 ; rdfs:comment "return_fan" . -ns2:35251 a ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint, - ns4:HotWaterConnectionPoint ; +ns4:35251 a ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint, + ns3:HotWaterConnectionPoint ; rdfs:label "G-54.airOutlet", "hw_coil.hotWaterOutlet" ; - ns1:cnx ns2:02937, - ns2:18895, - ns2:31318, - ns2:76728 ; - ns1:connectsThrough ns2:18895, - ns2:76728 ; - ns1:hasMedium , + ns2:cnx ns4:02937, + ns4:18895, + ns4:31318, + ns4:76728 ; + ns2:connectsThrough ns4:18895, + ns4:76728 ; + ns2:hasMedium , ; - ns1:isConnectionPointOf ns2:02937, - ns2:31318 . + ns2:isConnectionPointOf ns4:02937, + ns4:31318 . -ns2:43438 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, +ns4:43438 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, , - ns2:RTUFan ; + ns4:RTUFan ; rdfs:label "return_fan" ; - ns1:cnx ns2:06054, - ns2:49943, - ns2:57854 ; - ns1:connected ns2:56948, - ns2:87637 ; - ns1:connectedThrough ns2:51136 ; - ns1:connectedTo ns2:56948, - ns2:87637 ; - ns1:hasConnectionPoint ns2:06054, - ns2:49943, - ns2:57854 ; - ns1:hasProperty ns2:01614, - ns2:50802, - ns2:62133, - ns2:92273, - ns2:97840 ; - ns1:hasRole ns1:Role-Return ; - ns2:airFlow ns2:92273 ; - ns2:power ns2:50802 ; - ns2:speedCommand ns2:01614 ; - ns2:speedFeedback ns2:62133 ; - ns2:vfd_start_stop ns2:97840 ; - ns4:airInlet ns2:06054 ; - ns4:airOutlet ns2:49943 ; + ns2:cnx ns4:06054, + ns4:49943, + ns4:57854 ; + ns2:connected ns4:56948, + ns4:87637 ; + ns2:connectedThrough ns4:51136 ; + ns2:connectedTo ns4:56948, + ns4:87637 ; + ns2:hasConnectionPoint ns4:06054, + ns4:49943, + ns4:57854 ; + ns2:hasProperty ns4:01614, + ns4:50802, + ns4:62133, + ns4:92273, + ns4:97840 ; + ns2:hasRole ns2:Role-Return ; + ns4:airFlow ns4:92273 ; + ns4:power ns4:50802 ; + ns4:speedCommand ns4:01614 ; + ns4:speedFeedback ns4:62133 ; + ns4:vfd_start_stop ns4:97840 ; + ns3:airInlet ns4:06054 ; + ns3:airOutlet ns4:49943 ; rdfs:comment "return_fan" . -ns2:44133 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:44133 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:58141, - ns2:63225, - ns2:89481 ; - ns1:connected ns2:37324, - ns2:55408 ; - ns1:connectedFrom ns2:37324, - ns2:55408 ; - ns1:connectedThrough ns2:27115 ; - ns1:hasConnectionPoint ns2:58141, - ns2:63225, - ns2:89481 ; - ns1:hasProperty ns2:15997, - ns2:22928 ; - ns4:linkageInlet ns2:63225 ; - ns4:waterInlet ns2:89481 ; - ns4:waterOutlet ns2:58141 ; + ns2:cnx ns4:58141, + ns4:63225, + ns4:89481 ; + ns2:connected ns4:37324, + ns4:55408 ; + ns2:connectedFrom ns4:37324, + ns4:55408 ; + ns2:connectedThrough ns4:27115 ; + ns2:hasConnectionPoint ns4:58141, + ns4:63225, + ns4:89481 ; + ns2:hasProperty ns4:15997, + ns4:22928 ; + ns3:linkageInlet ns4:63225 ; + ns3:waterInlet ns4:89481 ; + ns3:waterOutlet ns4:58141 ; rdfs:comment "hw_valve" . -ns2:54082 a ns1:Connectable, - ns1:Equipment, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve ; +ns4:54082 a ns2:Connectable, + ns2:Equipment, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve ; rdfs:label "hw_valve" ; - ns1:cnx ns2:18925, - ns2:43202, - ns2:80960 ; - ns1:connected ns2:02937, - ns2:31318 ; - ns1:connectedFrom ns2:02937, - ns2:31318 ; - ns1:connectedThrough ns2:76728 ; - ns1:hasConnectionPoint ns2:18925, - ns2:43202, - ns2:80960 ; - ns1:hasProperty ns2:49486, - ns2:76105 ; - ns4:linkageInlet ns2:18925 ; - ns4:waterInlet ns2:43202 ; - ns4:waterOutlet ns2:80960 ; + ns2:cnx ns4:18925, + ns4:43202, + ns4:80960 ; + ns2:connected ns4:02937, + ns4:31318 ; + ns2:connectedFrom ns4:02937, + ns4:31318 ; + ns2:connectedThrough ns4:76728 ; + ns2:hasConnectionPoint ns4:18925, + ns4:43202, + ns4:80960 ; + ns2:hasProperty ns4:49486, + ns4:76105 ; + ns3:linkageInlet ns4:18925 ; + ns3:waterInlet ns4:43202 ; + ns3:waterOutlet ns4:80960 ; rdfs:comment "hw_valve" . -ns2:54792 a ns1:Connectable, - ns1:Equipment, - ns1:FlowSensor ; +ns4:54792 a ns2:Connectable, + ns2:Equipment, + ns2:FlowSensor ; rdfs:label "oa_flow_station" ; - ns1:cnx ns2:43692, - ns2:54523 ; - ns1:connected ns2:15718, - ns2:35505, - ns2:51341 ; - ns1:connectedFrom ns2:35505 ; - ns1:connectedThrough ns2:42750, - ns2:83653 ; - ns1:connectedTo ns2:15718 ; - ns1:hasConnectionPoint ns2:43692, - ns2:54523 ; - ns4:airInlet ns2:54523 ; - ns4:airOutlet ns2:43692 ; + ns2:cnx ns4:43692, + ns4:54523 ; + ns2:connected ns4:15718, + ns4:35505, + ns4:51341 ; + ns2:connectedFrom ns4:35505 ; + ns2:connectedThrough ns4:42750, + ns4:83653 ; + ns2:connectedTo ns4:15718 ; + ns2:hasConnectionPoint ns4:43692, + ns4:54523 ; + ns3:airInlet ns4:54523 ; + ns3:airOutlet ns4:43692 ; rdfs:comment "outside_air_flow_station" . -ns2:57522 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; +ns4:57522 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "bp_damper" ; - ns1:cnx ns2:40095, - ns2:70423 ; - ns1:connected ns2:45817, - ns2:79897, - ns2:84053 ; - ns1:connectedFrom ns2:84053 ; - ns1:connectedThrough ns2:21343, - ns2:48176 ; - ns1:connectedTo ns2:79897 ; - ns1:hasConnectionPoint ns2:40095, - ns2:70423 ; - ns1:hasProperty ns2:47797, - ns2:51470 ; - ns2:positionCommand ns2:47797 ; - ns2:positionFeedback ns2:51470 ; - ns4:airInlet ns2:70423 ; - ns4:airOutlet ns2:40095 ; + ns2:cnx ns4:40095, + ns4:70423 ; + ns2:connected ns4:45817, + ns4:79897, + ns4:84053 ; + ns2:connectedFrom ns4:84053 ; + ns2:connectedThrough ns4:21343, + ns4:48176 ; + ns2:connectedTo ns4:79897 ; + ns2:hasConnectionPoint ns4:40095, + ns4:70423 ; + ns2:hasProperty ns4:47797, + ns4:51470 ; + ns4:positionCommand ns4:47797 ; + ns4:positionFeedback ns4:51470 ; + ns3:airInlet ns4:70423 ; + ns3:airOutlet ns4:40095 ; rdfs:comment "bypass_damper" . -ns2:58251 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:58251 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:20749, - ns2:55637, - ns2:95885 ; - ns1:connected ns2:34355, - ns2:97321 ; - ns1:connectedThrough ns2:79346 ; - ns1:connectedTo ns2:34355, - ns2:97321 ; - ns1:hasConnectionPoint ns2:20749, - ns2:55637, - ns2:95885 ; - ns1:hasProperty ns2:23884, - ns2:60515 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:23884 ; - ns2:speedFeedback ns2:60515 ; - ns4:airInlet ns2:20749 ; - ns4:airOutlet ns2:95885 ; + ns2:cnx ns4:20749, + ns4:55637, + ns4:95885 ; + ns2:connected ns4:34355, + ns4:97321 ; + ns2:connectedThrough ns4:79346 ; + ns2:connectedTo ns4:34355, + ns4:97321 ; + ns2:hasConnectionPoint ns4:20749, + ns4:55637, + ns4:95885 ; + ns2:hasProperty ns4:23884, + ns4:60515 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:23884 ; + ns4:speedFeedback ns4:60515 ; + ns3:airInlet ns4:20749 ; + ns3:airOutlet ns4:95885 ; rdfs:comment "supply_fan" . -ns2:58489 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; +ns4:58489 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "bp_damper" ; - ns1:cnx ns2:14994, - ns2:27827 ; - ns1:connected ns2:64314, - ns2:85645, - ns2:92865 ; - ns1:connectedFrom ns2:64314 ; - ns1:connectedThrough ns2:40562, - ns2:52992 ; - ns1:connectedTo ns2:85645 ; - ns1:hasConnectionPoint ns2:14994, - ns2:27827 ; - ns1:hasProperty ns2:09764, - ns2:19496 ; - ns2:positionCommand ns2:09764 ; - ns2:positionFeedback ns2:19496 ; - ns4:airInlet ns2:14994 ; - ns4:airOutlet ns2:27827 ; + ns2:cnx ns4:14994, + ns4:27827 ; + ns2:connected ns4:64314, + ns4:85645, + ns4:92865 ; + ns2:connectedFrom ns4:64314 ; + ns2:connectedThrough ns4:40562, + ns4:52992 ; + ns2:connectedTo ns4:85645 ; + ns2:hasConnectionPoint ns4:14994, + ns4:27827 ; + ns2:hasProperty ns4:09764, + ns4:19496 ; + ns4:positionCommand ns4:09764 ; + ns4:positionFeedback ns4:19496 ; + ns3:airInlet ns4:14994 ; + ns3:airOutlet ns4:27827 ; rdfs:comment "bypass_damper" . -ns2:62986 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; +ns4:62986 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "bp_damper" ; - ns1:cnx ns2:64177, - ns2:93088 ; - ns1:connected ns2:15718, - ns2:57776, - ns2:61372 ; - ns1:connectedFrom ns2:15718 ; - ns1:connectedThrough ns2:42612, - ns2:57148 ; - ns1:connectedTo ns2:61372 ; - ns1:hasConnectionPoint ns2:64177, - ns2:93088 ; - ns1:hasProperty ns2:34140, - ns2:90938 ; - ns2:positionCommand ns2:34140 ; - ns2:positionFeedback ns2:90938 ; - ns4:airInlet ns2:93088 ; - ns4:airOutlet ns2:64177 ; + ns2:cnx ns4:64177, + ns4:93088 ; + ns2:connected ns4:15718, + ns4:57776, + ns4:61372 ; + ns2:connectedFrom ns4:15718 ; + ns2:connectedThrough ns4:42612, + ns4:57148 ; + ns2:connectedTo ns4:61372 ; + ns2:hasConnectionPoint ns4:64177, + ns4:93088 ; + ns2:hasProperty ns4:34140, + ns4:90938 ; + ns4:positionCommand ns4:34140 ; + ns4:positionFeedback ns4:90938 ; + ns3:airInlet ns4:93088 ; + ns3:airOutlet ns4:64177 ; rdfs:comment "bypass_damper" . -ns2:73249 a ns1:Connectable, - ns1:Equipment, - ns1:FlowSensor ; +ns4:73249 a ns2:Connectable, + ns2:Equipment, + ns2:FlowSensor ; rdfs:label "oa_flow_station" ; - ns1:cnx ns2:65082, - ns2:92763 ; - ns1:connected ns2:07660, - ns2:51238, - ns2:87637 ; - ns1:connectedFrom ns2:51238 ; - ns1:connectedThrough ns2:55046, - ns2:75183 ; - ns1:connectedTo ns2:07660 ; - ns1:hasConnectionPoint ns2:65082, - ns2:92763 ; - ns4:airInlet ns2:92763 ; - ns4:airOutlet ns2:65082 ; + ns2:cnx ns4:65082, + ns4:92763 ; + ns2:connected ns4:07660, + ns4:51238, + ns4:87637 ; + ns2:connectedFrom ns4:51238 ; + ns2:connectedThrough ns4:55046, + ns4:75183 ; + ns2:connectedTo ns4:07660 ; + ns2:hasConnectionPoint ns4:65082, + ns4:92763 ; + ns3:airInlet ns4:92763 ; + ns3:airOutlet ns4:65082 ; rdfs:comment "outside_air_flow_station" . -ns2:88818 a ns1:Connectable, - ns1:Equipment, - ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:FanPoweredTerminal, - ns2:UFT, - ns4:Percent ; +ns4:88818 a ns2:Connectable, + ns2:Equipment, + ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:FanPoweredTerminal, + ns4:UFT, + ns3:Percent ; rdfs:label "G-7" ; - ns1:cnx ns2:23460, - ns2:97393 ; - ns1:connected ns2:05101, - ns2:96506 ; - ns1:connectedFrom ns2:05101 ; - ns1:connectedThrough ns2:05888, - ns2:07095 ; - ns1:connectedTo ns2:96506 ; - ns1:contains ns2:45991, - ns2:50935, - ns2:60841, - ns2:85409 ; - ns1:hasConnectionPoint ns2:23460, - ns2:97393 ; - ns1:hasProperty ns2:48607, - ns2:70256 ; - ns2:airInlet ns2:23460 ; - ns2:airOutlet ns2:97393 ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:92197 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; + ns2:cnx ns4:23460, + ns4:97393 ; + ns2:connected ns4:05101, + ns4:96506 ; + ns2:connectedFrom ns4:05101 ; + ns2:connectedThrough ns4:05888, + ns4:07095 ; + ns2:connectedTo ns4:96506 ; + ns2:contains ns4:45991, + ns4:50935, + ns4:60841, + ns4:85409 ; + ns2:hasConnectionPoint ns4:23460, + ns4:97393 ; + ns2:hasProperty ns4:48607, + ns4:70256 ; + ns4:airInlet ns4:23460 ; + ns4:airOutlet ns4:97393 ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:92197 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "bp_damper" ; - ns1:cnx ns2:49498, - ns2:62103 ; - ns1:connected ns2:07660, - ns2:17912, - ns2:47395 ; - ns1:connectedFrom ns2:07660 ; - ns1:connectedThrough ns2:15832, - ns2:54185 ; - ns1:connectedTo ns2:17912 ; - ns1:hasConnectionPoint ns2:49498, - ns2:62103 ; - ns1:hasProperty ns2:37963, - ns2:63841 ; - ns2:positionCommand ns2:63841 ; - ns2:positionFeedback ns2:37963 ; - ns4:airInlet ns2:49498 ; - ns4:airOutlet ns2:62103 ; + ns2:cnx ns4:49498, + ns4:62103 ; + ns2:connected ns4:07660, + ns4:17912, + ns4:47395 ; + ns2:connectedFrom ns4:07660 ; + ns2:connectedThrough ns4:15832, + ns4:54185 ; + ns2:connectedTo ns4:17912 ; + ns2:hasConnectionPoint ns4:49498, + ns4:62103 ; + ns2:hasProperty ns4:37963, + ns4:63841 ; + ns4:positionCommand ns4:63841 ; + ns4:positionFeedback ns4:37963 ; + ns3:airInlet ns4:49498 ; + ns3:airOutlet ns4:62103 ; rdfs:comment "bypass_damper" . -ns2:06502 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, +ns4:06502 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, , - ns2:RTUFan ; + ns4:RTUFan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:11879, - ns2:64302, - ns2:94590 ; - ns1:connected ns2:22732, - ns2:79897 ; - ns1:connectedFrom ns2:79897 ; - ns1:connectedThrough ns2:40409, - ns2:56445 ; - ns1:connectedTo ns2:22732 ; - ns1:hasConnectionPoint ns2:11879, - ns2:64302, - ns2:94590 ; - ns1:hasProperty ns2:06192, - ns2:11398, - ns2:50146, - ns2:68682, - ns2:71304 ; - ns1:hasRole ns1:Role-Supply ; - ns2:airFlow ns2:11398 ; - ns2:power ns2:50146 ; - ns2:speedCommand ns2:71304 ; - ns2:speedFeedback ns2:06192 ; - ns2:vfd_start_stop ns2:68682 ; - ns4:airInlet ns2:64302 ; - ns4:airOutlet ns2:11879 ; + ns2:cnx ns4:11879, + ns4:64302, + ns4:94590 ; + ns2:connected ns4:22732, + ns4:79897 ; + ns2:connectedFrom ns4:79897 ; + ns2:connectedThrough ns4:40409, + ns4:56445 ; + ns2:connectedTo ns4:22732 ; + ns2:hasConnectionPoint ns4:11879, + ns4:64302, + ns4:94590 ; + ns2:hasProperty ns4:06192, + ns4:11398, + ns4:50146, + ns4:68682, + ns4:71304 ; + ns2:hasRole ns2:Role-Supply ; + ns4:airFlow ns4:11398 ; + ns4:power ns4:50146 ; + ns4:speedCommand ns4:71304 ; + ns4:speedFeedback ns4:06192 ; + ns4:vfd_start_stop ns4:68682 ; + ns3:airInlet ns4:64302 ; + ns3:airOutlet ns4:11879 ; rdfs:comment "supply_fan" . -ns2:11624 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, +ns4:11624 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, , - ns2:RTUFan ; + ns4:RTUFan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:23967, - ns2:26345, - ns2:63848 ; - ns1:connected ns2:00808, - ns2:61372 ; - ns1:connectedFrom ns2:61372 ; - ns1:connectedThrough ns2:08460, - ns2:83407 ; - ns1:connectedTo ns2:00808 ; - ns1:hasConnectionPoint ns2:23967, - ns2:26345, - ns2:63848 ; - ns1:hasProperty ns2:22077, - ns2:40757, - ns2:60261, - ns2:64218, - ns2:72324 ; - ns1:hasRole ns1:Role-Supply ; - ns2:airFlow ns2:22077 ; - ns2:power ns2:64218 ; - ns2:speedCommand ns2:60261 ; - ns2:speedFeedback ns2:40757 ; - ns2:vfd_start_stop ns2:72324 ; - ns4:airInlet ns2:26345 ; - ns4:airOutlet ns2:63848 ; + ns2:cnx ns4:23967, + ns4:26345, + ns4:63848 ; + ns2:connected ns4:00808, + ns4:61372 ; + ns2:connectedFrom ns4:61372 ; + ns2:connectedThrough ns4:08460, + ns4:83407 ; + ns2:connectedTo ns4:00808 ; + ns2:hasConnectionPoint ns4:23967, + ns4:26345, + ns4:63848 ; + ns2:hasProperty ns4:22077, + ns4:40757, + ns4:60261, + ns4:64218, + ns4:72324 ; + ns2:hasRole ns2:Role-Supply ; + ns4:airFlow ns4:22077 ; + ns4:power ns4:64218 ; + ns4:speedCommand ns4:60261 ; + ns4:speedFeedback ns4:40757 ; + ns4:vfd_start_stop ns4:72324 ; + ns3:airInlet ns4:26345 ; + ns3:airOutlet ns4:63848 ; rdfs:comment "supply_fan" . -ns2:23626 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; +ns4:23626 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-13.zone" ; - ns1:cnx ns2:16174, - ns2:48268 ; - ns1:connected ns2:29599, - ns2:29807, - ns2:77070 ; - ns1:connectedFrom ns2:29807 ; - ns1:connectedThrough ns2:15450, - ns2:82844 ; - ns1:connectedTo ns2:29599, - ns2:77070 ; - ns1:hasConnectionPoint ns2:16174, - ns2:48268 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:32663 ; - ns2:returnOutlet ns2:16174 ; - ns2:supplyInlet ns2:48268 ; - ns2:temperature ns2:32663 . - -ns2:31173 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; + ns2:cnx ns4:16174, + ns4:48268 ; + ns2:connected ns4:29599, + ns4:29807, + ns4:77070 ; + ns2:connectedFrom ns4:29807 ; + ns2:connectedThrough ns4:15450, + ns4:82844 ; + ns2:connectedTo ns4:29599, + ns4:77070 ; + ns2:hasConnectionPoint ns4:16174, + ns4:48268 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:32663 ; + ns4:returnOutlet ns4:16174 ; + ns4:supplyInlet ns4:48268 ; + ns4:temperature ns4:32663 . + +ns4:31173 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "mixed_air_damper" ; - ns1:cnx ns2:01218, - ns2:27154 ; - ns1:connected ns2:34392, - ns2:34927, - ns2:49730, - ns2:64314 ; - ns1:connectedFrom ns2:34927 ; - ns1:connectedThrough ns2:80380, - ns2:90476 ; - ns1:connectedTo ns2:64314 ; - ns1:hasConnectionPoint ns2:01218, - ns2:27154 ; - ns1:hasProperty ns2:57909, - ns2:89385 ; - ns2:positionCommand ns2:89385 ; - ns2:positionFeedback ns2:57909 ; - ns4:airInlet ns2:01218 ; - ns4:airOutlet ns2:27154 ; + ns2:cnx ns4:01218, + ns4:27154 ; + ns2:connected ns4:34392, + ns4:34927, + ns4:49730, + ns4:64314 ; + ns2:connectedFrom ns4:34927 ; + ns2:connectedThrough ns4:80380, + ns4:90476 ; + ns2:connectedTo ns4:64314 ; + ns2:hasConnectionPoint ns4:01218, + ns4:27154 ; + ns2:hasProperty ns4:57909, + ns4:89385 ; + ns4:positionCommand ns4:89385 ; + ns4:positionFeedback ns4:57909 ; + ns3:airInlet ns4:01218 ; + ns3:airOutlet ns4:27154 ; rdfs:comment "mixed_air_damper" . -ns2:34986 a ns1:Connection, - ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:34986 a ns2:Connection, + ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "supply_fan.airInlet" ; - ns1:cnx ns2:38418, - ns2:46907, - ns2:57180, - ns2:59640 ; - ns1:connectsAt ns2:38418, - ns2:46907, - ns2:57180, - ns2:59640 ; - ns1:connectsFrom ns2:77070 ; - ns1:connectsThrough ns2:57180 ; - ns1:connectsTo ns2:44036 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:46907 . - -ns2:39389 a ns1:Connection, - ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; + ns2:cnx ns4:38418, + ns4:46907, + ns4:57180, + ns4:59640 ; + ns2:connectsAt ns4:38418, + ns4:46907, + ns4:57180, + ns4:59640 ; + ns2:connectsFrom ns4:77070 ; + ns2:connectsThrough ns4:57180 ; + ns2:connectsTo ns4:44036 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:46907 . + +ns4:39389 a ns2:Connection, + ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "cwc.airInlet" ; - ns1:cnx ns2:57148, - ns2:57776, - ns2:78426, - ns2:99818 ; - ns1:connectsAt ns2:57148, - ns2:57776, - ns2:78426, - ns2:99818 ; - ns1:connectsFrom ns2:73219 ; - ns1:connectsThrough ns2:57148 ; - ns1:connectsTo ns2:23392 ; - ns1:hasMedium , + ns2:cnx ns4:57148, + ns4:57776, + ns4:78426, + ns4:99818 ; + ns2:connectsAt ns4:57148, + ns4:57776, + ns4:78426, + ns4:99818 ; + ns2:connectsFrom ns4:73219 ; + ns2:connectsThrough ns4:57148 ; + ns2:connectsTo ns4:23392 ; + ns2:hasMedium , ; - ns1:isConnectionPointOf ns2:57776 . + ns2:isConnectionPointOf ns4:57776 . -ns2:39848 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; +ns4:39848 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "mixed_air_damper" ; - ns1:cnx ns2:27792, - ns2:56799 ; - ns1:connected ns2:02817, - ns2:77251, - ns2:84053, - ns2:98539 ; - ns1:connectedFrom ns2:02817 ; - ns1:connectedThrough ns2:36633, - ns2:52572 ; - ns1:connectedTo ns2:84053 ; - ns1:hasConnectionPoint ns2:27792, - ns2:56799 ; - ns1:hasProperty ns2:26888, - ns2:47105 ; - ns2:positionCommand ns2:26888 ; - ns2:positionFeedback ns2:47105 ; - ns4:airInlet ns2:56799 ; - ns4:airOutlet ns2:27792 ; + ns2:cnx ns4:27792, + ns4:56799 ; + ns2:connected ns4:02817, + ns4:77251, + ns4:84053, + ns4:98539 ; + ns2:connectedFrom ns4:02817 ; + ns2:connectedThrough ns4:36633, + ns4:52572 ; + ns2:connectedTo ns4:84053 ; + ns2:hasConnectionPoint ns4:27792, + ns4:56799 ; + ns2:hasProperty ns4:26888, + ns4:47105 ; + ns4:positionCommand ns4:26888 ; + ns4:positionFeedback ns4:47105 ; + ns3:airInlet ns4:56799 ; + ns3:airOutlet ns4:27792 ; rdfs:comment "mixed_air_damper" . -ns2:50418 a ns1:Connectable, - ns1:DomainSpace, - ns1:PhysicalSpace, - ns2:UFTZone ; +ns4:50418 a ns2:Connectable, + ns2:DomainSpace, + ns2:PhysicalSpace, + ns4:UFTZone ; rdfs:label "2-02.zone", "8819" ; - ns1:cnx ns2:20371, - ns2:68518 ; - ns1:connected ns2:69111, - ns2:85453 ; - ns1:connectedFrom ns2:85453 ; - ns1:connectedThrough ns2:25111, - ns2:78502 ; - ns1:connectedTo ns2:69111 ; - ns1:hasConnectionPoint ns2:20371, - ns2:68518 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:26157 ; - ns2:returnOutlet ns2:20371 ; - ns2:supplyInlet ns2:68518 ; - ns2:temperature ns2:26157 . - -ns2:51341 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; + ns2:cnx ns4:20371, + ns4:68518 ; + ns2:connected ns4:69111, + ns4:85453 ; + ns2:connectedFrom ns4:85453 ; + ns2:connectedThrough ns4:25111, + ns4:78502 ; + ns2:connectedTo ns4:69111 ; + ns2:hasConnectionPoint ns4:20371, + ns4:68518 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:26157 ; + ns4:returnOutlet ns4:20371 ; + ns4:supplyInlet ns4:68518 ; + ns4:temperature ns4:26157 . + +ns4:51341 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "mixed_air_damper" ; - ns1:cnx ns2:35174, - ns2:50525 ; - ns1:connected ns2:11125, - ns2:15718, - ns2:18339, - ns2:54792 ; - ns1:connectedFrom ns2:18339 ; - ns1:connectedThrough ns2:36823, - ns2:42750 ; - ns1:connectedTo ns2:15718 ; - ns1:hasConnectionPoint ns2:35174, - ns2:50525 ; - ns1:hasProperty ns2:63839, - ns2:79519 ; - ns2:positionCommand ns2:79519 ; - ns2:positionFeedback ns2:63839 ; - ns4:airInlet ns2:50525 ; - ns4:airOutlet ns2:35174 ; + ns2:cnx ns4:35174, + ns4:50525 ; + ns2:connected ns4:11125, + ns4:15718, + ns4:18339, + ns4:54792 ; + ns2:connectedFrom ns4:18339 ; + ns2:connectedThrough ns4:36823, + ns4:42750 ; + ns2:connectedTo ns4:15718 ; + ns2:hasConnectionPoint ns4:35174, + ns4:50525 ; + ns2:hasProperty ns4:63839, + ns4:79519 ; + ns4:positionCommand ns4:79519 ; + ns4:positionFeedback ns4:63839 ; + ns3:airInlet ns4:50525 ; + ns3:airOutlet ns4:35174 ; rdfs:comment "mixed_air_damper" . -ns2:69090 a ns1:Connectable, - ns1:DomainSpace, - ns2:UFTZone ; +ns4:69090 a ns2:Connectable, + ns2:DomainSpace, + ns4:UFTZone ; rdfs:label "G-12.zone" ; - ns1:cnx ns2:06147, - ns2:21886 ; - ns1:connected ns2:02937, - ns2:31318, - ns2:46019 ; - ns1:connectedFrom ns2:02937, - ns2:31318 ; - ns1:connectedThrough ns2:18895, - ns2:33232 ; - ns1:connectedTo ns2:46019 ; - ns1:hasConnectionPoint ns2:06147, - ns2:21886 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:84004 ; - ns2:returnOutlet ns2:06147 ; - ns2:supplyInlet ns2:21886 ; - ns2:temperature ns2:84004 . - -ns2:77251 a ns1:Connectable, - ns1:Equipment, - ns1:FlowSensor ; + ns2:cnx ns4:06147, + ns4:21886 ; + ns2:connected ns4:02937, + ns4:31318, + ns4:46019 ; + ns2:connectedFrom ns4:02937, + ns4:31318 ; + ns2:connectedThrough ns4:18895, + ns4:33232 ; + ns2:connectedTo ns4:46019 ; + ns2:hasConnectionPoint ns4:06147, + ns4:21886 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:84004 ; + ns4:returnOutlet ns4:06147 ; + ns4:supplyInlet ns4:21886 ; + ns4:temperature ns4:84004 . + +ns4:77251 a ns2:Connectable, + ns2:Equipment, + ns2:FlowSensor ; rdfs:label "oa_flow_station" ; - ns1:cnx ns2:27497, - ns2:29599 ; - ns1:connected ns2:14119, - ns2:39848, - ns2:84053 ; - ns1:connectedFrom ns2:14119 ; - ns1:connectedThrough ns2:36633, - ns2:44139 ; - ns1:connectedTo ns2:84053 ; - ns1:hasConnectionPoint ns2:27497, - ns2:29599 ; - ns1:isConnectionPointOf ns2:29599 ; - ns4:airInlet ns2:29599 ; - ns4:airOutlet ns2:27497 ; + ns2:cnx ns4:27497, + ns4:29599 ; + ns2:connected ns4:14119, + ns4:39848, + ns4:84053 ; + ns2:connectedFrom ns4:14119 ; + ns2:connectedThrough ns4:36633, + ns4:44139 ; + ns2:connectedTo ns4:84053 ; + ns2:hasConnectionPoint ns4:27497, + ns4:29599 ; + ns2:isConnectionPointOf ns4:29599 ; + ns3:airInlet ns4:29599 ; + ns3:airOutlet ns4:27497 ; rdfs:comment "outside_air_flow_station" . -ns2:81633 a ns1:Connection, - ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:81633 a ns2:Connection, + ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "Floor_2.RTU_8.Ceiling.returnOutlet" ; - ns1:cnx ns2:47059, - ns2:68422, - ns2:83890, - ns2:91912 ; - ns1:connectsAt ns2:47059, - ns2:68422, - ns2:83890, - ns2:91912 ; - ns1:connectsFrom ns2:45991 ; - ns1:connectsThrough ns2:91912 ; - ns1:connectsTo ns2:85409 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:83890 . - -ns2:87637 a ns1:Connectable, - ns1:Damper, - ns1:Equipment, - ns2:RTUDamper ; + ns2:cnx ns4:47059, + ns4:68422, + ns4:83890, + ns4:91912 ; + ns2:connectsAt ns4:47059, + ns4:68422, + ns4:83890, + ns4:91912 ; + ns2:connectsFrom ns4:45991 ; + ns2:connectsThrough ns4:91912 ; + ns2:connectsTo ns4:85409 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:83890 . + +ns4:87637 a ns2:Connectable, + ns2:Damper, + ns2:Equipment, + ns4:RTUDamper ; rdfs:label "mixed_air_damper" ; - ns1:cnx ns2:14007, - ns2:25134 ; - ns1:connected ns2:07660, - ns2:43438, - ns2:56948, - ns2:73249 ; - ns1:connectedFrom ns2:43438 ; - ns1:connectedThrough ns2:51136, - ns2:55046 ; - ns1:connectedTo ns2:07660 ; - ns1:hasConnectionPoint ns2:14007, - ns2:25134 ; - ns1:hasProperty ns2:15015, - ns2:71010 ; - ns2:positionCommand ns2:71010 ; - ns2:positionFeedback ns2:15015 ; - ns4:airInlet ns2:25134 ; - ns4:airOutlet ns2:14007 ; + ns2:cnx ns4:14007, + ns4:25134 ; + ns2:connected ns4:07660, + ns4:43438, + ns4:56948, + ns4:73249 ; + ns2:connectedFrom ns4:43438 ; + ns2:connectedThrough ns4:51136, + ns4:55046 ; + ns2:connectedTo ns4:07660 ; + ns2:hasConnectionPoint ns4:14007, + ns4:25134 ; + ns2:hasProperty ns4:15015, + ns4:71010 ; + ns4:positionCommand ns4:71010 ; + ns4:positionFeedback ns4:15015 ; + ns3:airInlet ns4:25134 ; + ns3:airOutlet ns4:14007 ; rdfs:comment "mixed_air_damper" . -ns2:17912 a ns1:Connectable, - ns1:Equipment, - ns1:Filter ; +ns4:17912 a ns2:Connectable, + ns2:Equipment, + ns2:Filter ; rdfs:label "final_filter" ; - ns1:cnx ns2:05873, - ns2:59115 ; - ns1:connected ns2:07924, - ns2:47395, - ns2:92197 ; - ns1:connectedFrom ns2:47395, - ns2:92197 ; - ns1:connectedThrough ns2:15832, - ns2:85048 ; - ns1:connectedTo ns2:07924 ; - ns1:hasConnectionPoint ns2:05873, - ns2:59115 ; - ns1:hasProperty ns2:92693 ; - ns4:airInlet ns2:05873 ; - ns4:airOutlet ns2:59115 ; + ns2:cnx ns4:05873, + ns4:59115 ; + ns2:connected ns4:07924, + ns4:47395, + ns4:92197 ; + ns2:connectedFrom ns4:47395, + ns4:92197 ; + ns2:connectedThrough ns4:15832, + ns4:85048 ; + ns2:connectedTo ns4:07924 ; + ns2:hasConnectionPoint ns4:05873, + ns4:59115 ; + ns2:hasProperty ns4:92693 ; + ns3:airInlet ns4:05873 ; + ns3:airOutlet ns4:59115 ; rdfs:comment "final_filter" . -ns2:46907 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, +ns4:46907 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, , - ns2:RTUFan ; + ns4:RTUFan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:19065, - ns2:34986, - ns2:60124 ; - ns1:connected ns2:81406, - ns2:85645 ; - ns1:connectedFrom ns2:85645 ; - ns1:connectedThrough ns2:00543, - ns2:57180 ; - ns1:connectedTo ns2:81406 ; - ns1:connectsThrough ns2:34986 ; - ns1:hasConnectionPoint ns2:19065, - ns2:34986, - ns2:60124 ; - ns1:hasProperty ns2:25953, - ns2:27236, - ns2:52856, - ns2:66827, - ns2:93231 ; - ns1:hasRole ns1:Role-Supply ; - ns2:airFlow ns2:52856 ; - ns2:power ns2:25953 ; - ns2:speedCommand ns2:27236 ; - ns2:speedFeedback ns2:66827 ; - ns2:vfd_start_stop ns2:93231 ; - ns4:airInlet ns2:34986 ; - ns4:airOutlet ns2:60124 ; + ns2:cnx ns4:19065, + ns4:34986, + ns4:60124 ; + ns2:connected ns4:81406, + ns4:85645 ; + ns2:connectedFrom ns4:85645 ; + ns2:connectedThrough ns4:00543, + ns4:57180 ; + ns2:connectedTo ns4:81406 ; + ns2:connectsThrough ns4:34986 ; + ns2:hasConnectionPoint ns4:19065, + ns4:34986, + ns4:60124 ; + ns2:hasProperty ns4:25953, + ns4:27236, + ns4:52856, + ns4:66827, + ns4:93231 ; + ns2:hasRole ns2:Role-Supply ; + ns4:airFlow ns4:52856 ; + ns4:power ns4:25953 ; + ns4:speedCommand ns4:27236 ; + ns4:speedFeedback ns4:66827 ; + ns4:vfd_start_stop ns4:93231 ; + ns3:airInlet ns4:34986 ; + ns3:airOutlet ns4:60124 ; rdfs:comment "supply_fan" . -ns2:61372 a ns1:Connectable, - ns1:Equipment, - ns1:Filter ; +ns4:61372 a ns2:Connectable, + ns2:Equipment, + ns2:Filter ; rdfs:label "final_filter" ; - ns1:cnx ns2:22249, - ns2:44137 ; - ns1:connected ns2:11624, - ns2:57776, - ns2:62986 ; - ns1:connectedFrom ns2:57776, - ns2:62986 ; - ns1:connectedThrough ns2:08460, - ns2:42612 ; - ns1:connectedTo ns2:11624 ; - ns1:hasConnectionPoint ns2:22249, - ns2:44137 ; - ns1:hasProperty ns2:79219 ; - ns4:airInlet ns2:44137 ; - ns4:airOutlet ns2:22249 ; + ns2:cnx ns4:22249, + ns4:44137 ; + ns2:connected ns4:11624, + ns4:57776, + ns4:62986 ; + ns2:connectedFrom ns4:57776, + ns4:62986 ; + ns2:connectedThrough ns4:08460, + ns4:42612 ; + ns2:connectedTo ns4:11624 ; + ns2:hasConnectionPoint ns4:22249, + ns4:44137 ; + ns2:hasProperty ns4:79219 ; + ns3:airInlet ns4:44137 ; + ns3:airOutlet ns4:22249 ; rdfs:comment "final_filter" . -ns2:79897 a ns1:Connectable, - ns1:Equipment, - ns1:Filter ; +ns4:79897 a ns2:Connectable, + ns2:Equipment, + ns2:Filter ; rdfs:label "final_filter" ; - ns1:cnx ns2:14065, - ns2:20866 ; - ns1:connected ns2:06502, - ns2:45817, - ns2:57522 ; - ns1:connectedFrom ns2:45817, - ns2:57522 ; - ns1:connectedThrough ns2:48176, - ns2:56445 ; - ns1:connectedTo ns2:06502 ; - ns1:hasConnectionPoint ns2:14065, - ns2:20866 ; - ns1:hasProperty ns2:52424 ; - ns4:airInlet ns2:20866 ; - ns4:airOutlet ns2:14065 ; + ns2:cnx ns4:14065, + ns4:20866 ; + ns2:connected ns4:06502, + ns4:45817, + ns4:57522 ; + ns2:connectedFrom ns4:45817, + ns4:57522 ; + ns2:connectedThrough ns4:48176, + ns4:56445 ; + ns2:connectedTo ns4:06502 ; + ns2:hasConnectionPoint ns4:14065, + ns4:20866 ; + ns2:hasProperty ns4:52424 ; + ns3:airInlet ns4:20866 ; + ns3:airOutlet ns4:14065 ; rdfs:comment "final_filter" . -ns2:85645 a ns1:Connectable, - ns1:Equipment, - ns1:Filter ; +ns4:85645 a ns2:Connectable, + ns2:Equipment, + ns2:Filter ; rdfs:label "final_filter" ; - ns1:cnx ns2:12002, - ns2:52219 ; - ns1:connected ns2:46907, - ns2:58489, - ns2:92865 ; - ns1:connectedFrom ns2:58489, - ns2:92865 ; - ns1:connectedThrough ns2:52992, - ns2:57180 ; - ns1:connectedTo ns2:46907 ; - ns1:hasConnectionPoint ns2:12002, - ns2:52219 ; - ns1:hasProperty ns2:02218 ; - ns4:airInlet ns2:12002 ; - ns4:airOutlet ns2:52219 ; + ns2:cnx ns4:12002, + ns4:52219 ; + ns2:connected ns4:46907, + ns4:58489, + ns4:92865 ; + ns2:connectedFrom ns4:58489, + ns4:92865 ; + ns2:connectedThrough ns4:52992, + ns4:57180 ; + ns2:connectedTo ns4:46907 ; + ns2:hasConnectionPoint ns4:12002, + ns4:52219 ; + ns2:hasProperty ns4:02218 ; + ns3:airInlet ns4:12002 ; + ns3:airOutlet ns4:52219 ; rdfs:comment "final_filter" . -ns2:87421 a ns1:Connectable, - ns1:ConnectionPoint, - ns1:Equipment, - ns1:OutletConnectionPoint, - ns1:TwoWayValve, - ns1:Valve, - ns2:UFT_HWC_Valve, - ns4:AirConnectionPoint ; +ns4:87421 a ns2:Connectable, + ns2:ConnectionPoint, + ns2:Equipment, + ns2:OutletConnectionPoint, + ns2:TwoWayValve, + ns2:Valve, + ns4:UFT_HWC_Valve, + ns3:AirConnectionPoint ; rdfs:label "fan.airOutlet", "hw_valve" ; - ns1:cnx ns2:72498, - ns2:75966, - ns2:83482, - ns2:89220 ; - ns1:connected ns2:09200 ; - ns1:connectedFrom ns2:09200 ; - ns1:connectedThrough ns2:25601 ; - ns1:hasConnectionPoint ns2:72498, - ns2:75966, - ns2:83482, - ns2:89220 ; - ns1:hasMedium ; - ns1:hasProperty ns2:04811, - ns2:08870 ; - ns1:isConnectionPointOf ns2:75966 ; - ns1:mapsTo ns2:22976 ; - ns4:linkageInlet ns2:72498 ; - ns4:waterInlet ns2:83482 ; - ns4:waterOutlet ns2:89220 ; + ns2:cnx ns4:72498, + ns4:75966, + ns4:83482, + ns4:89220 ; + ns2:connected ns4:09200 ; + ns2:connectedFrom ns4:09200 ; + ns2:connectedThrough ns4:25601 ; + ns2:hasConnectionPoint ns4:72498, + ns4:75966, + ns4:83482, + ns4:89220 ; + ns2:hasMedium ; + ns2:hasProperty ns4:04811, + ns4:08870 ; + ns2:isConnectionPointOf ns4:75966 ; + ns2:mapsTo ns4:22976 ; + ns3:linkageInlet ns4:72498 ; + ns3:waterInlet ns4:83482 ; + ns3:waterOutlet ns4:89220 ; rdfs:comment "hw_valve" . -ns2:03254 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:03254 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:04984, - ns2:11590, - ns2:28196, - ns2:52815 ; - ns1:connected ns2:52728, - ns2:54463 ; - ns1:connectedFrom ns2:52728 ; - ns1:connectedThrough ns2:01094, - ns2:60631 ; - ns1:connectedTo ns2:54463 ; - ns1:hasConnectionPoint ns2:04984, - ns2:11590, - ns2:28196, - ns2:52815 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:28196 ; - ns4:airOutlet ns2:04984 ; - ns4:hotWaterInlet ns2:11590 ; - ns4:hotWaterOutlet ns2:52815 ; + ns2:cnx ns4:04984, + ns4:11590, + ns4:28196, + ns4:52815 ; + ns2:connected ns4:52728, + ns4:54463 ; + ns2:connectedFrom ns4:52728 ; + ns2:connectedThrough ns4:01094, + ns4:60631 ; + ns2:connectedTo ns4:54463 ; + ns2:hasConnectionPoint ns4:04984, + ns4:11590, + ns4:28196, + ns4:52815 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:28196 ; + ns3:airOutlet ns4:04984 ; + ns3:hotWaterInlet ns4:11590 ; + ns3:hotWaterOutlet ns4:52815 ; rdfs:comment "hw_coil" . -ns2:04430 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:04430 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:00066, - ns2:15956, - ns2:53704, - ns2:88217 ; - ns1:connected ns2:24559, - ns2:73323 ; - ns1:connectedFrom ns2:24559 ; - ns1:connectedThrough ns2:33619, - ns2:85262 ; - ns1:connectedTo ns2:73323 ; - ns1:hasConnectionPoint ns2:00066, - ns2:15956, - ns2:53704, - ns2:88217 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:15956 ; - ns4:airOutlet ns2:00066 ; - ns4:hotWaterInlet ns2:53704 ; - ns4:hotWaterOutlet ns2:88217 ; + ns2:cnx ns4:00066, + ns4:15956, + ns4:53704, + ns4:88217 ; + ns2:connected ns4:24559, + ns4:73323 ; + ns2:connectedFrom ns4:24559 ; + ns2:connectedThrough ns4:33619, + ns4:85262 ; + ns2:connectedTo ns4:73323 ; + ns2:hasConnectionPoint ns4:00066, + ns4:15956, + ns4:53704, + ns4:88217 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:15956 ; + ns3:airOutlet ns4:00066 ; + ns3:hotWaterInlet ns4:53704 ; + ns3:hotWaterOutlet ns4:88217 ; rdfs:comment "hw_coil" . -ns2:05062 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:05062 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:32646, - ns2:46353, - ns2:81499, - ns2:99658 ; - ns1:connected ns2:65206, - ns2:71025 ; - ns1:connectedFrom ns2:71025 ; - ns1:connectedThrough ns2:07119, - ns2:32445 ; - ns1:connectedTo ns2:65206 ; - ns1:hasConnectionPoint ns2:32646, - ns2:46353, - ns2:81499, - ns2:99658 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:32646 ; - ns4:airOutlet ns2:81499 ; - ns4:hotWaterInlet ns2:99658 ; - ns4:hotWaterOutlet ns2:46353 ; + ns2:cnx ns4:32646, + ns4:46353, + ns4:81499, + ns4:99658 ; + ns2:connected ns4:65206, + ns4:71025 ; + ns2:connectedFrom ns4:71025 ; + ns2:connectedThrough ns4:07119, + ns4:32445 ; + ns2:connectedTo ns4:65206 ; + ns2:hasConnectionPoint ns4:32646, + ns4:46353, + ns4:81499, + ns4:99658 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:32646 ; + ns3:airOutlet ns4:81499 ; + ns3:hotWaterInlet ns4:99658 ; + ns3:hotWaterOutlet ns4:46353 ; rdfs:comment "hw_coil" . -ns2:05342 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:05342 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:21109, - ns2:22932, - ns2:32193, - ns2:92540 ; - ns1:connected ns2:77211, - ns2:87570 ; - ns1:connectedFrom ns2:77211 ; - ns1:connectedThrough ns2:24574, - ns2:30993 ; - ns1:connectedTo ns2:87570 ; - ns1:hasConnectionPoint ns2:21109, - ns2:22932, - ns2:32193, - ns2:92540 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:92540 ; - ns4:airOutlet ns2:21109 ; - ns4:hotWaterInlet ns2:32193 ; - ns4:hotWaterOutlet ns2:22932 ; + ns2:cnx ns4:21109, + ns4:22932, + ns4:32193, + ns4:92540 ; + ns2:connected ns4:77211, + ns4:87570 ; + ns2:connectedFrom ns4:77211 ; + ns2:connectedThrough ns4:24574, + ns4:30993 ; + ns2:connectedTo ns4:87570 ; + ns2:hasConnectionPoint ns4:21109, + ns4:22932, + ns4:32193, + ns4:92540 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:92540 ; + ns3:airOutlet ns4:21109 ; + ns3:hotWaterInlet ns4:32193 ; + ns3:hotWaterOutlet ns4:22932 ; rdfs:comment "hw_coil" . -ns2:06594 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:06594 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:25446, - ns2:88184, - ns2:88980, - ns2:98836 ; - ns1:connected ns2:74083, - ns2:82619 ; - ns1:connectedFrom ns2:82619 ; - ns1:connectedThrough ns2:02075, - ns2:90552 ; - ns1:connectedTo ns2:74083 ; - ns1:hasConnectionPoint ns2:25446, - ns2:88184, - ns2:88980, - ns2:98836 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:88184 ; - ns4:airOutlet ns2:25446 ; - ns4:hotWaterInlet ns2:98836 ; - ns4:hotWaterOutlet ns2:88980 ; + ns2:cnx ns4:25446, + ns4:88184, + ns4:88980, + ns4:98836 ; + ns2:connected ns4:74083, + ns4:82619 ; + ns2:connectedFrom ns4:82619 ; + ns2:connectedThrough ns4:02075, + ns4:90552 ; + ns2:connectedTo ns4:74083 ; + ns2:hasConnectionPoint ns4:25446, + ns4:88184, + ns4:88980, + ns4:98836 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:88184 ; + ns3:airOutlet ns4:25446 ; + ns3:hotWaterInlet ns4:98836 ; + ns3:hotWaterOutlet ns4:88980 ; rdfs:comment "hw_coil" . -ns2:09638 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:09638 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:00287, - ns2:10177, - ns2:55212, - ns2:59993 ; - ns1:connected ns2:49965, - ns2:96315 ; - ns1:connectedFrom ns2:49965 ; - ns1:connectedThrough ns2:48919, - ns2:80062 ; - ns1:connectedTo ns2:96315 ; - ns1:hasConnectionPoint ns2:00287, - ns2:10177, - ns2:55212, - ns2:59993 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:55212 ; - ns4:airOutlet ns2:59993 ; - ns4:hotWaterInlet ns2:10177 ; - ns4:hotWaterOutlet ns2:00287 ; + ns2:cnx ns4:00287, + ns4:10177, + ns4:55212, + ns4:59993 ; + ns2:connected ns4:49965, + ns4:96315 ; + ns2:connectedFrom ns4:49965 ; + ns2:connectedThrough ns4:48919, + ns4:80062 ; + ns2:connectedTo ns4:96315 ; + ns2:hasConnectionPoint ns4:00287, + ns4:10177, + ns4:55212, + ns4:59993 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:55212 ; + ns3:airOutlet ns4:59993 ; + ns3:hotWaterInlet ns4:10177 ; + ns3:hotWaterOutlet ns4:00287 ; rdfs:comment "hw_coil" . -ns2:09900 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:09900 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:16095, - ns2:41979, - ns2:50625, - ns2:54578 ; - ns1:connected ns2:39513, - ns2:64318 ; - ns1:connectedFrom ns2:64318 ; - ns1:connectedThrough ns2:63455, - ns2:71903 ; - ns1:connectedTo ns2:39513 ; - ns1:hasConnectionPoint ns2:16095, - ns2:41979, - ns2:50625, - ns2:54578 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:16095 ; - ns4:airOutlet ns2:41979 ; - ns4:hotWaterInlet ns2:54578 ; - ns4:hotWaterOutlet ns2:50625 ; + ns2:cnx ns4:16095, + ns4:41979, + ns4:50625, + ns4:54578 ; + ns2:connected ns4:39513, + ns4:64318 ; + ns2:connectedFrom ns4:64318 ; + ns2:connectedThrough ns4:63455, + ns4:71903 ; + ns2:connectedTo ns4:39513 ; + ns2:hasConnectionPoint ns4:16095, + ns4:41979, + ns4:50625, + ns4:54578 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:16095 ; + ns3:airOutlet ns4:41979 ; + ns3:hotWaterInlet ns4:54578 ; + ns3:hotWaterOutlet ns4:50625 ; rdfs:comment "hw_coil" . -ns2:10658 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:10658 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:11607, - ns2:76009, - ns2:81579, - ns2:83796 ; - ns1:connected ns2:13867, - ns2:65374 ; - ns1:connectedFrom ns2:13867 ; - ns1:connectedThrough ns2:62479, - ns2:99824 ; - ns1:connectedTo ns2:65374 ; - ns1:hasConnectionPoint ns2:11607, - ns2:76009, - ns2:81579, - ns2:83796 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:76009 ; - ns4:airOutlet ns2:81579 ; - ns4:hotWaterInlet ns2:11607 ; - ns4:hotWaterOutlet ns2:83796 ; + ns2:cnx ns4:11607, + ns4:76009, + ns4:81579, + ns4:83796 ; + ns2:connected ns4:13867, + ns4:65374 ; + ns2:connectedFrom ns4:13867 ; + ns2:connectedThrough ns4:62479, + ns4:99824 ; + ns2:connectedTo ns4:65374 ; + ns2:hasConnectionPoint ns4:11607, + ns4:76009, + ns4:81579, + ns4:83796 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:76009 ; + ns3:airOutlet ns4:81579 ; + ns3:hotWaterInlet ns4:11607 ; + ns3:hotWaterOutlet ns4:83796 ; rdfs:comment "hw_coil" . -ns2:12686 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:12686 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:38096, - ns2:48579, - ns2:84841, - ns2:87692 ; - ns1:connected ns2:41545, - ns2:66562 ; - ns1:connectedFrom ns2:66562 ; - ns1:connectedThrough ns2:08808, - ns2:95932 ; - ns1:connectedTo ns2:41545 ; - ns1:hasConnectionPoint ns2:38096, - ns2:48579, - ns2:84841, - ns2:87692 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:84841 ; - ns4:airOutlet ns2:38096 ; - ns4:hotWaterInlet ns2:48579 ; - ns4:hotWaterOutlet ns2:87692 ; + ns2:cnx ns4:38096, + ns4:48579, + ns4:84841, + ns4:87692 ; + ns2:connected ns4:41545, + ns4:66562 ; + ns2:connectedFrom ns4:66562 ; + ns2:connectedThrough ns4:08808, + ns4:95932 ; + ns2:connectedTo ns4:41545 ; + ns2:hasConnectionPoint ns4:38096, + ns4:48579, + ns4:84841, + ns4:87692 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:84841 ; + ns3:airOutlet ns4:38096 ; + ns3:hotWaterInlet ns4:48579 ; + ns3:hotWaterOutlet ns4:87692 ; rdfs:comment "hw_coil" . -ns2:16343 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:16343 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:05320, - ns2:21298, - ns2:30610, - ns2:76954 ; - ns1:connected ns2:21910, - ns2:60462 ; - ns1:connectedFrom ns2:21910 ; - ns1:connectedThrough ns2:04028, - ns2:40887 ; - ns1:connectedTo ns2:60462 ; - ns1:hasConnectionPoint ns2:05320, - ns2:21298, - ns2:30610, - ns2:76954 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:76954 ; - ns4:airOutlet ns2:21298 ; - ns4:hotWaterInlet ns2:30610 ; - ns4:hotWaterOutlet ns2:05320 ; + ns2:cnx ns4:05320, + ns4:21298, + ns4:30610, + ns4:76954 ; + ns2:connected ns4:21910, + ns4:60462 ; + ns2:connectedFrom ns4:21910 ; + ns2:connectedThrough ns4:04028, + ns4:40887 ; + ns2:connectedTo ns4:60462 ; + ns2:hasConnectionPoint ns4:05320, + ns4:21298, + ns4:30610, + ns4:76954 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:76954 ; + ns3:airOutlet ns4:21298 ; + ns3:hotWaterInlet ns4:30610 ; + ns3:hotWaterOutlet ns4:05320 ; rdfs:comment "hw_coil" . -ns2:18099 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:18099 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:21938, - ns2:41865, - ns2:80749, - ns2:88346 ; - ns1:connected ns2:52918, - ns2:84250 ; - ns1:connectedFrom ns2:84250 ; - ns1:connectedThrough ns2:24250, - ns2:33969 ; - ns1:connectedTo ns2:52918 ; - ns1:hasConnectionPoint ns2:21938, - ns2:41865, - ns2:80749, - ns2:88346 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:80749 ; - ns4:airOutlet ns2:88346 ; - ns4:hotWaterInlet ns2:41865 ; - ns4:hotWaterOutlet ns2:21938 ; + ns2:cnx ns4:21938, + ns4:41865, + ns4:80749, + ns4:88346 ; + ns2:connected ns4:52918, + ns4:84250 ; + ns2:connectedFrom ns4:84250 ; + ns2:connectedThrough ns4:24250, + ns4:33969 ; + ns2:connectedTo ns4:52918 ; + ns2:hasConnectionPoint ns4:21938, + ns4:41865, + ns4:80749, + ns4:88346 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:80749 ; + ns3:airOutlet ns4:88346 ; + ns3:hotWaterInlet ns4:41865 ; + ns3:hotWaterOutlet ns4:21938 ; rdfs:comment "hw_coil" . -ns2:19014 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:19014 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:09371, - ns2:27844, - ns2:59682, - ns2:62031 ; - ns1:connected ns2:05619, - ns2:64887 ; - ns1:connectedFrom ns2:64887 ; - ns1:connectedThrough ns2:24513, - ns2:90747 ; - ns1:connectedTo ns2:05619 ; - ns1:hasConnectionPoint ns2:09371, - ns2:27844, - ns2:59682, - ns2:62031 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:09371 ; - ns4:airOutlet ns2:59682 ; - ns4:hotWaterInlet ns2:27844 ; - ns4:hotWaterOutlet ns2:62031 ; + ns2:cnx ns4:09371, + ns4:27844, + ns4:59682, + ns4:62031 ; + ns2:connected ns4:05619, + ns4:64887 ; + ns2:connectedFrom ns4:64887 ; + ns2:connectedThrough ns4:24513, + ns4:90747 ; + ns2:connectedTo ns4:05619 ; + ns2:hasConnectionPoint ns4:09371, + ns4:27844, + ns4:59682, + ns4:62031 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:09371 ; + ns3:airOutlet ns4:59682 ; + ns3:hotWaterInlet ns4:27844 ; + ns3:hotWaterOutlet ns4:62031 ; rdfs:comment "hw_coil" . -ns2:19107 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:19107 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:10763, - ns2:54319, - ns2:72285, - ns2:72358 ; - ns1:connected ns2:62383, - ns2:80276 ; - ns1:connectedFrom ns2:62383 ; - ns1:connectedThrough ns2:09852, - ns2:39985 ; - ns1:connectedTo ns2:80276 ; - ns1:hasConnectionPoint ns2:10763, - ns2:54319, - ns2:72285, - ns2:72358 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:10763 ; - ns4:airOutlet ns2:72358 ; - ns4:hotWaterInlet ns2:72285 ; - ns4:hotWaterOutlet ns2:54319 ; + ns2:cnx ns4:10763, + ns4:54319, + ns4:72285, + ns4:72358 ; + ns2:connected ns4:62383, + ns4:80276 ; + ns2:connectedFrom ns4:62383 ; + ns2:connectedThrough ns4:09852, + ns4:39985 ; + ns2:connectedTo ns4:80276 ; + ns2:hasConnectionPoint ns4:10763, + ns4:54319, + ns4:72285, + ns4:72358 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:10763 ; + ns3:airOutlet ns4:72358 ; + ns3:hotWaterInlet ns4:72285 ; + ns3:hotWaterOutlet ns4:54319 ; rdfs:comment "hw_coil" . -ns2:19805 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:19805 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:30582, - ns2:65196, - ns2:81895, - ns2:85356 ; - ns1:connected ns2:25200, - ns2:45441 ; - ns1:connectedFrom ns2:25200 ; - ns1:connectedThrough ns2:30148, - ns2:40374 ; - ns1:connectedTo ns2:45441 ; - ns1:hasConnectionPoint ns2:30582, - ns2:65196, - ns2:81895, - ns2:85356 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:30582 ; - ns4:airOutlet ns2:65196 ; - ns4:hotWaterInlet ns2:85356 ; - ns4:hotWaterOutlet ns2:81895 ; + ns2:cnx ns4:30582, + ns4:65196, + ns4:81895, + ns4:85356 ; + ns2:connected ns4:25200, + ns4:45441 ; + ns2:connectedFrom ns4:25200 ; + ns2:connectedThrough ns4:30148, + ns4:40374 ; + ns2:connectedTo ns4:45441 ; + ns2:hasConnectionPoint ns4:30582, + ns4:65196, + ns4:81895, + ns4:85356 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:30582 ; + ns3:airOutlet ns4:65196 ; + ns3:hotWaterInlet ns4:85356 ; + ns3:hotWaterOutlet ns4:81895 ; rdfs:comment "hw_coil" . -ns2:22040 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:22040 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:04947, - ns2:55942, - ns2:73848, - ns2:90274 ; - ns1:connected ns2:80730, - ns2:96809 ; - ns1:connectedFrom ns2:80730 ; - ns1:connectedThrough ns2:30816, - ns2:39723 ; - ns1:connectedTo ns2:96809 ; - ns1:hasConnectionPoint ns2:04947, - ns2:55942, - ns2:73848, - ns2:90274 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:04947 ; - ns4:airOutlet ns2:90274 ; - ns4:hotWaterInlet ns2:73848 ; - ns4:hotWaterOutlet ns2:55942 ; + ns2:cnx ns4:04947, + ns4:55942, + ns4:73848, + ns4:90274 ; + ns2:connected ns4:80730, + ns4:96809 ; + ns2:connectedFrom ns4:80730 ; + ns2:connectedThrough ns4:30816, + ns4:39723 ; + ns2:connectedTo ns4:96809 ; + ns2:hasConnectionPoint ns4:04947, + ns4:55942, + ns4:73848, + ns4:90274 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:04947 ; + ns3:airOutlet ns4:90274 ; + ns3:hotWaterInlet ns4:73848 ; + ns3:hotWaterOutlet ns4:55942 ; rdfs:comment "hw_coil" . -ns2:24416 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:24416 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:52029, - ns2:61423, - ns2:91556, - ns2:95273 ; - ns1:connected ns2:32904, - ns2:80523 ; - ns1:connectedFrom ns2:80523 ; - ns1:connectedThrough ns2:12353, - ns2:96446 ; - ns1:connectedTo ns2:32904 ; - ns1:hasConnectionPoint ns2:52029, - ns2:61423, - ns2:91556, - ns2:95273 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:52029 ; - ns4:airOutlet ns2:61423 ; - ns4:hotWaterInlet ns2:91556 ; - ns4:hotWaterOutlet ns2:95273 ; + ns2:cnx ns4:52029, + ns4:61423, + ns4:91556, + ns4:95273 ; + ns2:connected ns4:32904, + ns4:80523 ; + ns2:connectedFrom ns4:80523 ; + ns2:connectedThrough ns4:12353, + ns4:96446 ; + ns2:connectedTo ns4:32904 ; + ns2:hasConnectionPoint ns4:52029, + ns4:61423, + ns4:91556, + ns4:95273 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:52029 ; + ns3:airOutlet ns4:61423 ; + ns3:hotWaterInlet ns4:91556 ; + ns3:hotWaterOutlet ns4:95273 ; rdfs:comment "hw_coil" . -ns2:25067 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:25067 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:03760, - ns2:22612, - ns2:60006, - ns2:79003 ; - ns1:connected ns2:20289, - ns2:37899 ; - ns1:connectedFrom ns2:20289 ; - ns1:connectedThrough ns2:61128, - ns2:96546 ; - ns1:connectedTo ns2:37899 ; - ns1:hasConnectionPoint ns2:03760, - ns2:22612, - ns2:60006, - ns2:79003 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:60006 ; - ns4:airOutlet ns2:79003 ; - ns4:hotWaterInlet ns2:03760 ; - ns4:hotWaterOutlet ns2:22612 ; + ns2:cnx ns4:03760, + ns4:22612, + ns4:60006, + ns4:79003 ; + ns2:connected ns4:20289, + ns4:37899 ; + ns2:connectedFrom ns4:20289 ; + ns2:connectedThrough ns4:61128, + ns4:96546 ; + ns2:connectedTo ns4:37899 ; + ns2:hasConnectionPoint ns4:03760, + ns4:22612, + ns4:60006, + ns4:79003 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:60006 ; + ns3:airOutlet ns4:79003 ; + ns3:hotWaterInlet ns4:03760 ; + ns3:hotWaterOutlet ns4:22612 ; rdfs:comment "hw_coil" . -ns2:30030 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:30030 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:62454, - ns2:63837, - ns2:98522, - ns2:99683 ; - ns1:connected ns2:70120, - ns2:74362 ; - ns1:connectedFrom ns2:74362 ; - ns1:connectedThrough ns2:37718, - ns2:41382 ; - ns1:connectedTo ns2:70120 ; - ns1:hasConnectionPoint ns2:62454, - ns2:63837, - ns2:98522, - ns2:99683 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:98522 ; - ns4:airOutlet ns2:63837 ; - ns4:hotWaterInlet ns2:62454 ; - ns4:hotWaterOutlet ns2:99683 ; + ns2:cnx ns4:62454, + ns4:63837, + ns4:98522, + ns4:99683 ; + ns2:connected ns4:70120, + ns4:74362 ; + ns2:connectedFrom ns4:74362 ; + ns2:connectedThrough ns4:37718, + ns4:41382 ; + ns2:connectedTo ns4:70120 ; + ns2:hasConnectionPoint ns4:62454, + ns4:63837, + ns4:98522, + ns4:99683 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:98522 ; + ns3:airOutlet ns4:63837 ; + ns3:hotWaterInlet ns4:62454 ; + ns3:hotWaterOutlet ns4:99683 ; rdfs:comment "hw_coil" . -ns2:31261 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:31261 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:10883, - ns2:20843, - ns2:26579, - ns2:61021 ; - ns1:connected ns2:09160, - ns2:44942 ; - ns1:connectedFrom ns2:09160 ; - ns1:connectedThrough ns2:30584, - ns2:91920 ; - ns1:connectedTo ns2:44942 ; - ns1:hasConnectionPoint ns2:10883, - ns2:20843, - ns2:26579, - ns2:61021 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:10883 ; - ns4:airOutlet ns2:61021 ; - ns4:hotWaterInlet ns2:26579 ; - ns4:hotWaterOutlet ns2:20843 ; + ns2:cnx ns4:10883, + ns4:20843, + ns4:26579, + ns4:61021 ; + ns2:connected ns4:09160, + ns4:44942 ; + ns2:connectedFrom ns4:09160 ; + ns2:connectedThrough ns4:30584, + ns4:91920 ; + ns2:connectedTo ns4:44942 ; + ns2:hasConnectionPoint ns4:10883, + ns4:20843, + ns4:26579, + ns4:61021 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:10883 ; + ns3:airOutlet ns4:61021 ; + ns3:hotWaterInlet ns4:26579 ; + ns3:hotWaterOutlet ns4:20843 ; rdfs:comment "hw_coil" . -ns2:35514 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:35514 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:09170, - ns2:48493, - ns2:50319, - ns2:87391 ; - ns1:connected ns2:32837, - ns2:56611 ; - ns1:connectedFrom ns2:56611 ; - ns1:connectedThrough ns2:52537, - ns2:96615 ; - ns1:connectedTo ns2:32837 ; - ns1:hasConnectionPoint ns2:09170, - ns2:48493, - ns2:50319, - ns2:87391 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:48493 ; - ns4:airOutlet ns2:87391 ; - ns4:hotWaterInlet ns2:09170 ; - ns4:hotWaterOutlet ns2:50319 ; + ns2:cnx ns4:09170, + ns4:48493, + ns4:50319, + ns4:87391 ; + ns2:connected ns4:32837, + ns4:56611 ; + ns2:connectedFrom ns4:56611 ; + ns2:connectedThrough ns4:52537, + ns4:96615 ; + ns2:connectedTo ns4:32837 ; + ns2:hasConnectionPoint ns4:09170, + ns4:48493, + ns4:50319, + ns4:87391 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:48493 ; + ns3:airOutlet ns4:87391 ; + ns3:hotWaterInlet ns4:09170 ; + ns3:hotWaterOutlet ns4:50319 ; rdfs:comment "hw_coil" . -ns2:37192 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:37192 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:06755, - ns2:11913, - ns2:31093, - ns2:67286 ; - ns1:connected ns2:36176, - ns2:44594 ; - ns1:connectedFrom ns2:44594 ; - ns1:connectedThrough ns2:21333, - ns2:39524 ; - ns1:connectedTo ns2:36176 ; - ns1:hasConnectionPoint ns2:06755, - ns2:11913, - ns2:31093, - ns2:67286 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:11913 ; - ns4:airOutlet ns2:67286 ; - ns4:hotWaterInlet ns2:06755 ; - ns4:hotWaterOutlet ns2:31093 ; + ns2:cnx ns4:06755, + ns4:11913, + ns4:31093, + ns4:67286 ; + ns2:connected ns4:36176, + ns4:44594 ; + ns2:connectedFrom ns4:44594 ; + ns2:connectedThrough ns4:21333, + ns4:39524 ; + ns2:connectedTo ns4:36176 ; + ns2:hasConnectionPoint ns4:06755, + ns4:11913, + ns4:31093, + ns4:67286 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:11913 ; + ns3:airOutlet ns4:67286 ; + ns3:hotWaterInlet ns4:06755 ; + ns3:hotWaterOutlet ns4:31093 ; rdfs:comment "hw_coil" . -ns2:38627 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:38627 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:24631, - ns2:38563, - ns2:45595, - ns2:81861 ; - ns1:connected ns2:39604, - ns2:53221 ; - ns1:connectedFrom ns2:39604 ; - ns1:connectedThrough ns2:26803, - ns2:86505 ; - ns1:connectedTo ns2:53221 ; - ns1:hasConnectionPoint ns2:24631, - ns2:38563, - ns2:45595, - ns2:81861 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:81861 ; - ns4:airOutlet ns2:45595 ; - ns4:hotWaterInlet ns2:38563 ; - ns4:hotWaterOutlet ns2:24631 ; + ns2:cnx ns4:24631, + ns4:38563, + ns4:45595, + ns4:81861 ; + ns2:connected ns4:39604, + ns4:53221 ; + ns2:connectedFrom ns4:39604 ; + ns2:connectedThrough ns4:26803, + ns4:86505 ; + ns2:connectedTo ns4:53221 ; + ns2:hasConnectionPoint ns4:24631, + ns4:38563, + ns4:45595, + ns4:81861 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:81861 ; + ns3:airOutlet ns4:45595 ; + ns3:hotWaterInlet ns4:38563 ; + ns3:hotWaterOutlet ns4:24631 ; rdfs:comment "hw_coil" . -ns2:45992 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:45992 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:32499, - ns2:77169, - ns2:79140, - ns2:81543 ; - ns1:connected ns2:12438, - ns2:25674 ; - ns1:connectedFrom ns2:12438 ; - ns1:connectedThrough ns2:20991, - ns2:96963 ; - ns1:connectedTo ns2:25674 ; - ns1:hasConnectionPoint ns2:32499, - ns2:77169, - ns2:79140, - ns2:81543 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:79140 ; - ns4:airOutlet ns2:77169 ; - ns4:hotWaterInlet ns2:32499 ; - ns4:hotWaterOutlet ns2:81543 ; + ns2:cnx ns4:32499, + ns4:77169, + ns4:79140, + ns4:81543 ; + ns2:connected ns4:12438, + ns4:25674 ; + ns2:connectedFrom ns4:12438 ; + ns2:connectedThrough ns4:20991, + ns4:96963 ; + ns2:connectedTo ns4:25674 ; + ns2:hasConnectionPoint ns4:32499, + ns4:77169, + ns4:79140, + ns4:81543 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:79140 ; + ns3:airOutlet ns4:77169 ; + ns3:hotWaterInlet ns4:32499 ; + ns3:hotWaterOutlet ns4:81543 ; rdfs:comment "hw_coil" . -ns2:49064 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:49064 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:08140, - ns2:21165, - ns2:84668, - ns2:95461 ; - ns1:connected ns2:18941, - ns2:72337 ; - ns1:connectedFrom ns2:18941 ; - ns1:connectedThrough ns2:25284, - ns2:55174 ; - ns1:connectedTo ns2:72337 ; - ns1:hasConnectionPoint ns2:08140, - ns2:21165, - ns2:84668, - ns2:95461 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:84668 ; - ns4:airOutlet ns2:95461 ; - ns4:hotWaterInlet ns2:08140 ; - ns4:hotWaterOutlet ns2:21165 ; + ns2:cnx ns4:08140, + ns4:21165, + ns4:84668, + ns4:95461 ; + ns2:connected ns4:18941, + ns4:72337 ; + ns2:connectedFrom ns4:18941 ; + ns2:connectedThrough ns4:25284, + ns4:55174 ; + ns2:connectedTo ns4:72337 ; + ns2:hasConnectionPoint ns4:08140, + ns4:21165, + ns4:84668, + ns4:95461 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:84668 ; + ns3:airOutlet ns4:95461 ; + ns3:hotWaterInlet ns4:08140 ; + ns3:hotWaterOutlet ns4:21165 ; rdfs:comment "hw_coil" . -ns2:49614 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:49614 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:15879, - ns2:76894, - ns2:93389, - ns2:99750 ; - ns1:connected ns2:56753, - ns2:73942 ; - ns1:connectedFrom ns2:73942 ; - ns1:connectedThrough ns2:34379, - ns2:68106 ; - ns1:connectedTo ns2:56753 ; - ns1:hasConnectionPoint ns2:15879, - ns2:76894, - ns2:93389, - ns2:99750 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:93389 ; - ns4:airOutlet ns2:99750 ; - ns4:hotWaterInlet ns2:15879 ; - ns4:hotWaterOutlet ns2:76894 ; + ns2:cnx ns4:15879, + ns4:76894, + ns4:93389, + ns4:99750 ; + ns2:connected ns4:56753, + ns4:73942 ; + ns2:connectedFrom ns4:73942 ; + ns2:connectedThrough ns4:34379, + ns4:68106 ; + ns2:connectedTo ns4:56753 ; + ns2:hasConnectionPoint ns4:15879, + ns4:76894, + ns4:93389, + ns4:99750 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:93389 ; + ns3:airOutlet ns4:99750 ; + ns3:hotWaterInlet ns4:15879 ; + ns3:hotWaterOutlet ns4:76894 ; rdfs:comment "hw_coil" . -ns2:58411 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:58411 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:33895, - ns2:65905, - ns2:74179, - ns2:81565 ; - ns1:connected ns2:24002, - ns2:43925 ; - ns1:connectedFrom ns2:24002 ; - ns1:connectedThrough ns2:02809, - ns2:85932 ; - ns1:connectedTo ns2:43925 ; - ns1:hasConnectionPoint ns2:33895, - ns2:65905, - ns2:74179, - ns2:81565 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:74179 ; - ns4:airOutlet ns2:81565 ; - ns4:hotWaterInlet ns2:65905 ; - ns4:hotWaterOutlet ns2:33895 ; + ns2:cnx ns4:33895, + ns4:65905, + ns4:74179, + ns4:81565 ; + ns2:connected ns4:24002, + ns4:43925 ; + ns2:connectedFrom ns4:24002 ; + ns2:connectedThrough ns4:02809, + ns4:85932 ; + ns2:connectedTo ns4:43925 ; + ns2:hasConnectionPoint ns4:33895, + ns4:65905, + ns4:74179, + ns4:81565 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:74179 ; + ns3:airOutlet ns4:81565 ; + ns3:hotWaterInlet ns4:65905 ; + ns3:hotWaterOutlet ns4:33895 ; rdfs:comment "hw_coil" . -ns2:58953 a ns1:Connectable, - ns1:ConnectionPoint, - ns1:DomainSpace, - ns1:OutletConnectionPoint, - ns2:UFTZone, - ns4:AirConnectionPoint ; +ns4:58953 a ns2:Connectable, + ns2:ConnectionPoint, + ns2:DomainSpace, + ns2:OutletConnectionPoint, + ns4:UFTZone, + ns3:AirConnectionPoint ; rdfs:label "3-7.zone", "fan.airOutlet" ; - ns1:cnx ns2:03999, - ns2:44522, - ns2:91015 ; - ns1:connected ns2:05175, - ns2:86545 ; - ns1:connectedFrom ns2:86545 ; - ns1:connectedThrough ns2:04668, - ns2:73994 ; - ns1:connectedTo ns2:05175 ; - ns1:hasConnectionPoint ns2:03999, - ns2:44522, - ns2:91015 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasMedium ; - ns1:hasProperty ns2:99527 ; - ns1:isConnectionPointOf ns2:03999 ; - ns1:mapsTo ns2:51197 ; - ns2:returnOutlet ns2:44522 ; - ns2:supplyInlet ns2:91015 ; - ns2:temperature ns2:99527 . - -ns2:65381 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; + ns2:cnx ns4:03999, + ns4:44522, + ns4:91015 ; + ns2:connected ns4:05175, + ns4:86545 ; + ns2:connectedFrom ns4:86545 ; + ns2:connectedThrough ns4:04668, + ns4:73994 ; + ns2:connectedTo ns4:05175 ; + ns2:hasConnectionPoint ns4:03999, + ns4:44522, + ns4:91015 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasMedium ; + ns2:hasProperty ns4:99527 ; + ns2:isConnectionPointOf ns4:03999 ; + ns2:mapsTo ns4:51197 ; + ns4:returnOutlet ns4:44522 ; + ns4:supplyInlet ns4:91015 ; + ns4:temperature ns4:99527 . + +ns4:65381 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:33745, - ns2:42765, - ns2:60714, - ns2:88604 ; - ns1:connected ns2:26426, - ns2:65015 ; - ns1:connectedFrom ns2:65015 ; - ns1:connectedThrough ns2:15386, - ns2:75934 ; - ns1:connectedTo ns2:26426 ; - ns1:hasConnectionPoint ns2:33745, - ns2:42765, - ns2:60714, - ns2:88604 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:42765 ; - ns4:airOutlet ns2:60714 ; - ns4:hotWaterInlet ns2:33745 ; - ns4:hotWaterOutlet ns2:88604 ; + ns2:cnx ns4:33745, + ns4:42765, + ns4:60714, + ns4:88604 ; + ns2:connected ns4:26426, + ns4:65015 ; + ns2:connectedFrom ns4:65015 ; + ns2:connectedThrough ns4:15386, + ns4:75934 ; + ns2:connectedTo ns4:26426 ; + ns2:hasConnectionPoint ns4:33745, + ns4:42765, + ns4:60714, + ns4:88604 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:42765 ; + ns3:airOutlet ns4:60714 ; + ns3:hotWaterInlet ns4:33745 ; + ns3:hotWaterOutlet ns4:88604 ; rdfs:comment "hw_coil" . -ns2:67388 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:67388 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:15094, - ns2:15983, - ns2:26452, - ns2:44735 ; - ns1:connected ns2:34781, - ns2:70230 ; - ns1:connectedFrom ns2:70230 ; - ns1:connectedThrough ns2:42045, - ns2:85434 ; - ns1:connectedTo ns2:34781 ; - ns1:hasConnectionPoint ns2:15094, - ns2:15983, - ns2:26452, - ns2:44735 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:26452 ; - ns4:airOutlet ns2:15983 ; - ns4:hotWaterInlet ns2:15094 ; - ns4:hotWaterOutlet ns2:44735 ; + ns2:cnx ns4:15094, + ns4:15983, + ns4:26452, + ns4:44735 ; + ns2:connected ns4:34781, + ns4:70230 ; + ns2:connectedFrom ns4:70230 ; + ns2:connectedThrough ns4:42045, + ns4:85434 ; + ns2:connectedTo ns4:34781 ; + ns2:hasConnectionPoint ns4:15094, + ns4:15983, + ns4:26452, + ns4:44735 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:26452 ; + ns3:airOutlet ns4:15983 ; + ns3:hotWaterInlet ns4:15094 ; + ns3:hotWaterOutlet ns4:44735 ; rdfs:comment "hw_coil" . -ns2:68016 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:68016 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:30505, - ns2:71107, - ns2:78608, - ns2:92103 ; - ns1:connected ns2:79421, - ns2:80838 ; - ns1:connectedFrom ns2:79421 ; - ns1:connectedThrough ns2:02277, - ns2:08470 ; - ns1:connectedTo ns2:80838 ; - ns1:hasConnectionPoint ns2:30505, - ns2:71107, - ns2:78608, - ns2:92103 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:92103 ; - ns4:airOutlet ns2:71107 ; - ns4:hotWaterInlet ns2:30505 ; - ns4:hotWaterOutlet ns2:78608 ; + ns2:cnx ns4:30505, + ns4:71107, + ns4:78608, + ns4:92103 ; + ns2:connected ns4:79421, + ns4:80838 ; + ns2:connectedFrom ns4:79421 ; + ns2:connectedThrough ns4:02277, + ns4:08470 ; + ns2:connectedTo ns4:80838 ; + ns2:hasConnectionPoint ns4:30505, + ns4:71107, + ns4:78608, + ns4:92103 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:92103 ; + ns3:airOutlet ns4:71107 ; + ns3:hotWaterInlet ns4:30505 ; + ns3:hotWaterOutlet ns4:78608 ; rdfs:comment "hw_coil" . -ns2:68951 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:68951 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:05849, - ns2:28411, - ns2:68211, - ns2:74351 ; - ns1:connected ns2:54101, - ns2:63295 ; - ns1:connectedFrom ns2:63295 ; - ns1:connectedThrough ns2:16050, - ns2:16657 ; - ns1:connectedTo ns2:54101 ; - ns1:hasConnectionPoint ns2:05849, - ns2:28411, - ns2:68211, - ns2:74351 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:74351 ; - ns4:airOutlet ns2:05849 ; - ns4:hotWaterInlet ns2:68211 ; - ns4:hotWaterOutlet ns2:28411 ; + ns2:cnx ns4:05849, + ns4:28411, + ns4:68211, + ns4:74351 ; + ns2:connected ns4:54101, + ns4:63295 ; + ns2:connectedFrom ns4:63295 ; + ns2:connectedThrough ns4:16050, + ns4:16657 ; + ns2:connectedTo ns4:54101 ; + ns2:hasConnectionPoint ns4:05849, + ns4:28411, + ns4:68211, + ns4:74351 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:74351 ; + ns3:airOutlet ns4:05849 ; + ns3:hotWaterInlet ns4:68211 ; + ns3:hotWaterOutlet ns4:28411 ; rdfs:comment "hw_coil" . -ns2:70764 a ns1:Connectable, - ns1:ConnectionPoint, - ns1:DomainSpace, - ns1:OutletConnectionPoint, - ns2:UFTZone, - ns4:AirConnectionPoint ; +ns4:70764 a ns2:Connectable, + ns2:ConnectionPoint, + ns2:DomainSpace, + ns2:OutletConnectionPoint, + ns4:UFTZone, + ns3:AirConnectionPoint ; rdfs:label "5-76.zone", "hw_coil.airOutlet" ; - ns1:cnx ns2:65779, - ns2:89973, - ns2:98956 ; - ns1:connected ns2:04098, - ns2:83890 ; - ns1:connectedFrom ns2:04098 ; - ns1:connectedThrough ns2:37652, - ns2:92270 ; - ns1:connectedTo ns2:83890 ; - ns1:hasConnectionPoint ns2:65779, - ns2:89973, - ns2:98956 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasMedium ; - ns1:hasProperty ns2:34431, - ns2:50365 ; - ns1:isConnectionPointOf ns2:65779 ; - ns1:mapsTo ns2:42696 ; - ns2:returnOutlet ns2:98956 ; - ns2:supplyInlet ns2:89973 ; - ns2:temperature ns2:34431 . - -ns2:72185 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; + ns2:cnx ns4:65779, + ns4:89973, + ns4:98956 ; + ns2:connected ns4:04098, + ns4:83890 ; + ns2:connectedFrom ns4:04098 ; + ns2:connectedThrough ns4:37652, + ns4:92270 ; + ns2:connectedTo ns4:83890 ; + ns2:hasConnectionPoint ns4:65779, + ns4:89973, + ns4:98956 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasMedium ; + ns2:hasProperty ns4:34431, + ns4:50365 ; + ns2:isConnectionPointOf ns4:65779 ; + ns2:mapsTo ns4:42696 ; + ns4:returnOutlet ns4:98956 ; + ns4:supplyInlet ns4:89973 ; + ns4:temperature ns4:34431 . + +ns4:72185 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:13637, - ns2:25836, - ns2:82716, - ns2:90570 ; - ns1:connected ns2:02590, - ns2:71329 ; - ns1:connectedFrom ns2:71329 ; - ns1:connectedThrough ns2:37548, - ns2:67974 ; - ns1:connectedTo ns2:02590 ; - ns1:hasConnectionPoint ns2:13637, - ns2:25836, - ns2:82716, - ns2:90570 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:25836 ; - ns4:airOutlet ns2:13637 ; - ns4:hotWaterInlet ns2:82716 ; - ns4:hotWaterOutlet ns2:90570 ; + ns2:cnx ns4:13637, + ns4:25836, + ns4:82716, + ns4:90570 ; + ns2:connected ns4:02590, + ns4:71329 ; + ns2:connectedFrom ns4:71329 ; + ns2:connectedThrough ns4:37548, + ns4:67974 ; + ns2:connectedTo ns4:02590 ; + ns2:hasConnectionPoint ns4:13637, + ns4:25836, + ns4:82716, + ns4:90570 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:25836 ; + ns3:airOutlet ns4:13637 ; + ns3:hotWaterInlet ns4:82716 ; + ns3:hotWaterOutlet ns4:90570 ; rdfs:comment "hw_coil" . -ns2:73219 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:73219 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:38157, - ns2:46466, - ns2:60707, - ns2:99818 ; - ns1:connected ns2:23392, - ns2:51343 ; - ns1:connectedFrom ns2:51343 ; - ns1:connectedThrough ns2:39389, - ns2:90702 ; - ns1:connectedTo ns2:23392 ; - ns1:hasConnectionPoint ns2:38157, - ns2:46466, - ns2:60707, - ns2:99818 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:60707 ; - ns4:airOutlet ns2:38157 ; - ns4:hotWaterInlet ns2:46466 ; - ns4:hotWaterOutlet ns2:99818 ; + ns2:cnx ns4:38157, + ns4:46466, + ns4:60707, + ns4:99818 ; + ns2:connected ns4:23392, + ns4:51343 ; + ns2:connectedFrom ns4:51343 ; + ns2:connectedThrough ns4:39389, + ns4:90702 ; + ns2:connectedTo ns4:23392 ; + ns2:hasConnectionPoint ns4:38157, + ns4:46466, + ns4:60707, + ns4:99818 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:60707 ; + ns3:airOutlet ns4:38157 ; + ns3:hotWaterInlet ns4:46466 ; + ns3:hotWaterOutlet ns4:99818 ; rdfs:comment "hw_coil" . -ns2:73674 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:73674 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:32795, - ns2:39299, - ns2:55837, - ns2:76930 ; - ns1:connected ns2:25613, - ns2:82262 ; - ns1:connectedFrom ns2:82262 ; - ns1:connectedThrough ns2:26783, - ns2:36241 ; - ns1:connectedTo ns2:25613 ; - ns1:hasConnectionPoint ns2:32795, - ns2:39299, - ns2:55837, - ns2:76930 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:76930 ; - ns4:airOutlet ns2:39299 ; - ns4:hotWaterInlet ns2:55837 ; - ns4:hotWaterOutlet ns2:32795 ; + ns2:cnx ns4:32795, + ns4:39299, + ns4:55837, + ns4:76930 ; + ns2:connected ns4:25613, + ns4:82262 ; + ns2:connectedFrom ns4:82262 ; + ns2:connectedThrough ns4:26783, + ns4:36241 ; + ns2:connectedTo ns4:25613 ; + ns2:hasConnectionPoint ns4:32795, + ns4:39299, + ns4:55837, + ns4:76930 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:76930 ; + ns3:airOutlet ns4:39299 ; + ns3:hotWaterInlet ns4:55837 ; + ns3:hotWaterOutlet ns4:32795 ; rdfs:comment "hw_coil" . -ns2:73972 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:73972 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:16405, - ns2:18254, - ns2:49700, - ns2:49951 ; - ns1:connected ns2:45429, - ns2:74130 ; - ns1:connectedFrom ns2:45429 ; - ns1:connectedThrough ns2:61849, - ns2:80445 ; - ns1:connectedTo ns2:74130 ; - ns1:hasConnectionPoint ns2:16405, - ns2:18254, - ns2:49700, - ns2:49951 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:49951 ; - ns4:airOutlet ns2:16405 ; - ns4:hotWaterInlet ns2:18254 ; - ns4:hotWaterOutlet ns2:49700 ; + ns2:cnx ns4:16405, + ns4:18254, + ns4:49700, + ns4:49951 ; + ns2:connected ns4:45429, + ns4:74130 ; + ns2:connectedFrom ns4:45429 ; + ns2:connectedThrough ns4:61849, + ns4:80445 ; + ns2:connectedTo ns4:74130 ; + ns2:hasConnectionPoint ns4:16405, + ns4:18254, + ns4:49700, + ns4:49951 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:49951 ; + ns3:airOutlet ns4:16405 ; + ns3:hotWaterInlet ns4:18254 ; + ns3:hotWaterOutlet ns4:49700 ; rdfs:comment "hw_coil" . -ns2:74065 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:74065 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:08907, - ns2:16512, - ns2:34440, - ns2:66260 ; - ns1:connected ns2:21736, - ns2:86650 ; - ns1:connectedFrom ns2:86650 ; - ns1:connectedThrough ns2:79224, - ns2:93913 ; - ns1:connectedTo ns2:21736 ; - ns1:hasConnectionPoint ns2:08907, - ns2:16512, - ns2:34440, - ns2:66260 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:08907 ; - ns4:airOutlet ns2:34440 ; - ns4:hotWaterInlet ns2:16512 ; - ns4:hotWaterOutlet ns2:66260 ; + ns2:cnx ns4:08907, + ns4:16512, + ns4:34440, + ns4:66260 ; + ns2:connected ns4:21736, + ns4:86650 ; + ns2:connectedFrom ns4:86650 ; + ns2:connectedThrough ns4:79224, + ns4:93913 ; + ns2:connectedTo ns4:21736 ; + ns2:hasConnectionPoint ns4:08907, + ns4:16512, + ns4:34440, + ns4:66260 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:08907 ; + ns3:airOutlet ns4:34440 ; + ns3:hotWaterInlet ns4:16512 ; + ns3:hotWaterOutlet ns4:66260 ; rdfs:comment "hw_coil" . -ns2:74360 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:74360 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:15996, - ns2:23239, - ns2:37516, - ns2:56624 ; - ns1:connected ns2:45896, - ns2:89752 ; - ns1:connectedFrom ns2:45896 ; - ns1:connectedThrough ns2:46331, - ns2:95827 ; - ns1:connectedTo ns2:89752 ; - ns1:hasConnectionPoint ns2:15996, - ns2:23239, - ns2:37516, - ns2:56624 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:15996 ; - ns4:airOutlet ns2:23239 ; - ns4:hotWaterInlet ns2:37516 ; - ns4:hotWaterOutlet ns2:56624 ; + ns2:cnx ns4:15996, + ns4:23239, + ns4:37516, + ns4:56624 ; + ns2:connected ns4:45896, + ns4:89752 ; + ns2:connectedFrom ns4:45896 ; + ns2:connectedThrough ns4:46331, + ns4:95827 ; + ns2:connectedTo ns4:89752 ; + ns2:hasConnectionPoint ns4:15996, + ns4:23239, + ns4:37516, + ns4:56624 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:15996 ; + ns3:airOutlet ns4:23239 ; + ns3:hotWaterInlet ns4:37516 ; + ns3:hotWaterOutlet ns4:56624 ; rdfs:comment "hw_coil" . -ns2:75732 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:75732 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:28695, - ns2:32023, - ns2:43081, - ns2:80306 ; - ns1:connected ns2:60254, - ns2:67542 ; - ns1:connectedFrom ns2:60254 ; - ns1:connectedThrough ns2:88844, - ns2:93499 ; - ns1:connectedTo ns2:67542 ; - ns1:hasConnectionPoint ns2:28695, - ns2:32023, - ns2:43081, - ns2:80306 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:28695 ; - ns4:airOutlet ns2:80306 ; - ns4:hotWaterInlet ns2:32023 ; - ns4:hotWaterOutlet ns2:43081 ; + ns2:cnx ns4:28695, + ns4:32023, + ns4:43081, + ns4:80306 ; + ns2:connected ns4:60254, + ns4:67542 ; + ns2:connectedFrom ns4:60254 ; + ns2:connectedThrough ns4:88844, + ns4:93499 ; + ns2:connectedTo ns4:67542 ; + ns2:hasConnectionPoint ns4:28695, + ns4:32023, + ns4:43081, + ns4:80306 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:28695 ; + ns3:airOutlet ns4:80306 ; + ns3:hotWaterInlet ns4:32023 ; + ns3:hotWaterOutlet ns4:43081 ; rdfs:comment "hw_coil" . -ns2:79414 a ns1:Connection, - ns1:ConnectionPoint, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:79414 a ns2:Connection, + ns2:ConnectionPoint, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "2-82.airOutlet" ; - ns1:cnx ns2:03503, - ns2:07686, - ns2:51828, - ns2:92286 ; - ns1:connectsAt ns2:03503, - ns2:07686, - ns2:51828, - ns2:92286 ; - ns1:connectsFrom ns2:03707 ; - ns1:connectsThrough ns2:07686 ; - ns1:connectsTo ns2:58975 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:92286 . - -ns2:80065 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; + ns2:cnx ns4:03503, + ns4:07686, + ns4:51828, + ns4:92286 ; + ns2:connectsAt ns4:03503, + ns4:07686, + ns4:51828, + ns4:92286 ; + ns2:connectsFrom ns4:03707 ; + ns2:connectsThrough ns4:07686 ; + ns2:connectsTo ns4:58975 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:92286 . + +ns4:80065 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:22663, - ns2:45386, - ns2:62913, - ns2:96248 ; - ns1:connected ns2:25140, - ns2:94683 ; - ns1:connectedFrom ns2:94683 ; - ns1:connectedThrough ns2:49364, - ns2:56375 ; - ns1:connectedTo ns2:25140 ; - ns1:hasConnectionPoint ns2:22663, - ns2:45386, - ns2:62913, - ns2:96248 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:96248 ; - ns4:airOutlet ns2:62913 ; - ns4:hotWaterInlet ns2:45386 ; - ns4:hotWaterOutlet ns2:22663 ; + ns2:cnx ns4:22663, + ns4:45386, + ns4:62913, + ns4:96248 ; + ns2:connected ns4:25140, + ns4:94683 ; + ns2:connectedFrom ns4:94683 ; + ns2:connectedThrough ns4:49364, + ns4:56375 ; + ns2:connectedTo ns4:25140 ; + ns2:hasConnectionPoint ns4:22663, + ns4:45386, + ns4:62913, + ns4:96248 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:96248 ; + ns3:airOutlet ns4:62913 ; + ns3:hotWaterInlet ns4:45386 ; + ns3:hotWaterOutlet ns4:22663 ; rdfs:comment "hw_coil" . -ns2:80693 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:80693 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:38533, - ns2:43071, - ns2:55931, - ns2:76856 ; - ns1:connected ns2:68140, - ns2:79114 ; - ns1:connectedFrom ns2:79114 ; - ns1:connectedThrough ns2:25347, - ns2:29667 ; - ns1:connectedTo ns2:68140 ; - ns1:hasConnectionPoint ns2:38533, - ns2:43071, - ns2:55931, - ns2:76856 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:55931 ; - ns4:airOutlet ns2:38533 ; - ns4:hotWaterInlet ns2:43071 ; - ns4:hotWaterOutlet ns2:76856 ; + ns2:cnx ns4:38533, + ns4:43071, + ns4:55931, + ns4:76856 ; + ns2:connected ns4:68140, + ns4:79114 ; + ns2:connectedFrom ns4:79114 ; + ns2:connectedThrough ns4:25347, + ns4:29667 ; + ns2:connectedTo ns4:68140 ; + ns2:hasConnectionPoint ns4:38533, + ns4:43071, + ns4:55931, + ns4:76856 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:55931 ; + ns3:airOutlet ns4:38533 ; + ns3:hotWaterInlet ns4:43071 ; + ns3:hotWaterOutlet ns4:76856 ; rdfs:comment "hw_coil" . -ns2:81183 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:81183 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:37579, - ns2:37818, - ns2:63046, - ns2:64940 ; - ns1:connected ns2:57501, - ns2:62481 ; - ns1:connectedFrom ns2:62481 ; - ns1:connectedThrough ns2:42654, - ns2:69442 ; - ns1:connectedTo ns2:57501 ; - ns1:hasConnectionPoint ns2:37579, - ns2:37818, - ns2:63046, - ns2:64940 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:63046 ; - ns4:airOutlet ns2:37579 ; - ns4:hotWaterInlet ns2:64940 ; - ns4:hotWaterOutlet ns2:37818 ; + ns2:cnx ns4:37579, + ns4:37818, + ns4:63046, + ns4:64940 ; + ns2:connected ns4:57501, + ns4:62481 ; + ns2:connectedFrom ns4:62481 ; + ns2:connectedThrough ns4:42654, + ns4:69442 ; + ns2:connectedTo ns4:57501 ; + ns2:hasConnectionPoint ns4:37579, + ns4:37818, + ns4:63046, + ns4:64940 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:63046 ; + ns3:airOutlet ns4:37579 ; + ns3:hotWaterInlet ns4:64940 ; + ns3:hotWaterOutlet ns4:37818 ; rdfs:comment "hw_coil" . -ns2:84620 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:84620 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:45516, - ns2:52164, - ns2:64617, - ns2:69563 ; - ns1:connected ns2:13590, - ns2:30657 ; - ns1:connectedFrom ns2:13590 ; - ns1:connectedThrough ns2:23324, - ns2:35508 ; - ns1:connectedTo ns2:30657 ; - ns1:hasConnectionPoint ns2:45516, - ns2:52164, - ns2:64617, - ns2:69563 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:69563 ; - ns4:airOutlet ns2:52164 ; - ns4:hotWaterInlet ns2:64617 ; - ns4:hotWaterOutlet ns2:45516 ; + ns2:cnx ns4:45516, + ns4:52164, + ns4:64617, + ns4:69563 ; + ns2:connected ns4:13590, + ns4:30657 ; + ns2:connectedFrom ns4:13590 ; + ns2:connectedThrough ns4:23324, + ns4:35508 ; + ns2:connectedTo ns4:30657 ; + ns2:hasConnectionPoint ns4:45516, + ns4:52164, + ns4:64617, + ns4:69563 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:69563 ; + ns3:airOutlet ns4:52164 ; + ns3:hotWaterInlet ns4:64617 ; + ns3:hotWaterOutlet ns4:45516 ; rdfs:comment "hw_coil" . -ns2:85409 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:85409 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:37032, - ns2:55810, - ns2:68422, - ns2:95037 ; - ns1:connected ns2:45991, - ns2:60841 ; - ns1:connectedFrom ns2:45991 ; - ns1:connectedThrough ns2:64612, - ns2:81633 ; - ns1:connectedTo ns2:60841 ; - ns1:hasConnectionPoint ns2:37032, - ns2:55810, - ns2:68422, - ns2:95037 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:68422 ; - ns4:airOutlet ns2:95037 ; - ns4:hotWaterInlet ns2:55810 ; - ns4:hotWaterOutlet ns2:37032 ; + ns2:cnx ns4:37032, + ns4:55810, + ns4:68422, + ns4:95037 ; + ns2:connected ns4:45991, + ns4:60841 ; + ns2:connectedFrom ns4:45991 ; + ns2:connectedThrough ns4:64612, + ns4:81633 ; + ns2:connectedTo ns4:60841 ; + ns2:hasConnectionPoint ns4:37032, + ns4:55810, + ns4:68422, + ns4:95037 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:68422 ; + ns3:airOutlet ns4:95037 ; + ns3:hotWaterInlet ns4:55810 ; + ns3:hotWaterOutlet ns4:37032 ; rdfs:comment "hw_coil" . -ns2:89915 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:89915 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:34889, - ns2:60071, - ns2:85886, - ns2:87420 ; - ns1:connected ns2:46417, - ns2:62426 ; - ns1:connectedFrom ns2:46417 ; - ns1:connectedThrough ns2:58412, - ns2:82606 ; - ns1:connectedTo ns2:62426 ; - ns1:hasConnectionPoint ns2:34889, - ns2:60071, - ns2:85886, - ns2:87420 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:34889 ; - ns4:airOutlet ns2:85886 ; - ns4:hotWaterInlet ns2:87420 ; - ns4:hotWaterOutlet ns2:60071 ; + ns2:cnx ns4:34889, + ns4:60071, + ns4:85886, + ns4:87420 ; + ns2:connected ns4:46417, + ns4:62426 ; + ns2:connectedFrom ns4:46417 ; + ns2:connectedThrough ns4:58412, + ns4:82606 ; + ns2:connectedTo ns4:62426 ; + ns2:hasConnectionPoint ns4:34889, + ns4:60071, + ns4:85886, + ns4:87420 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:34889 ; + ns3:airOutlet ns4:85886 ; + ns3:hotWaterInlet ns4:87420 ; + ns3:hotWaterOutlet ns4:60071 ; rdfs:comment "hw_coil" . -ns2:91853 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:91853 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:57774, - ns2:82356, - ns2:84378, - ns2:98616 ; - ns1:connected ns2:26427, - ns2:75582 ; - ns1:connectedFrom ns2:26427 ; - ns1:connectedThrough ns2:03023, - ns2:69810 ; - ns1:connectedTo ns2:75582 ; - ns1:hasConnectionPoint ns2:57774, - ns2:82356, - ns2:84378, - ns2:98616 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:98616 ; - ns4:airOutlet ns2:57774 ; - ns4:hotWaterInlet ns2:84378 ; - ns4:hotWaterOutlet ns2:82356 ; + ns2:cnx ns4:57774, + ns4:82356, + ns4:84378, + ns4:98616 ; + ns2:connected ns4:26427, + ns4:75582 ; + ns2:connectedFrom ns4:26427 ; + ns2:connectedThrough ns4:03023, + ns4:69810 ; + ns2:connectedTo ns4:75582 ; + ns2:hasConnectionPoint ns4:57774, + ns4:82356, + ns4:84378, + ns4:98616 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:98616 ; + ns3:airOutlet ns4:57774 ; + ns3:hotWaterInlet ns4:84378 ; + ns3:hotWaterOutlet ns4:82356 ; rdfs:comment "hw_coil" . -ns2:97655 a ns1:Connection, - ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:97655 a ns2:Connection, + ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "6-7.airInlet" ; - ns1:cnx ns2:36739, - ns2:46761, - ns2:83065, - ns2:97674 ; - ns1:connectsAt ns2:36739, - ns2:46761, - ns2:83065, - ns2:97674 ; - ns1:connectsFrom ns2:88028 ; - ns1:connectsThrough ns2:83065 ; - ns1:connectsTo ns2:66843 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:97674 . - -ns2:02937 a ns1:Connectable, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:36739, + ns4:46761, + ns4:83065, + ns4:97674 ; + ns2:connectsAt ns4:36739, + ns4:46761, + ns4:83065, + ns4:97674 ; + ns2:connectsFrom ns4:88028 ; + ns2:connectsThrough ns4:83065 ; + ns2:connectsTo ns4:66843 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:97674 . + +ns4:02937 a ns2:Connectable, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "G-78" ; - ns1:cnx ns2:06299, - ns2:35251 ; - ns1:connected ns2:29599, - ns2:31318, - ns2:54082, - ns2:69090, - ns2:77070 ; - ns1:connectedFrom ns2:29599, - ns2:77070 ; - ns1:connectedThrough ns2:18895, - ns2:36630, - ns2:76728 ; - ns1:connectedTo ns2:54082, - ns2:69090 ; - ns1:contains ns2:05062, - ns2:34355, - ns2:65206, - ns2:71025 ; - ns1:hasConnectionPoint ns2:06299, - ns2:35251 ; - ns1:hasProperty ns2:18220, - ns2:53137 ; - ns2:airInlet ns2:06299 ; - ns2:airOutlet ns2:35251 . - -ns2:03605 a ns1:Connectable, - ns1:DomainSpace, - ns2:CoreSpace ; + ns2:cnx ns4:06299, + ns4:35251 ; + ns2:connected ns4:29599, + ns4:31318, + ns4:54082, + ns4:69090, + ns4:77070 ; + ns2:connectedFrom ns4:29599, + ns4:77070 ; + ns2:connectedThrough ns4:18895, + ns4:36630, + ns4:76728 ; + ns2:connectedTo ns4:54082, + ns4:69090 ; + ns2:contains ns4:05062, + ns4:34355, + ns4:65206, + ns4:71025 ; + ns2:hasConnectionPoint ns4:06299, + ns4:35251 ; + ns2:hasProperty ns4:18220, + ns4:53137 ; + ns4:airInlet ns4:06299 ; + ns4:airOutlet ns4:35251 . + +ns4:03605 a ns2:Connectable, + ns2:DomainSpace, + ns4:CoreSpace ; rdfs:label "Floor_4.CoreZone.core_space_1" ; - ns1:cnx ns2:18449, - ns2:38115, - ns2:75519 ; - ns1:connected ns2:18693, - ns2:83890, - ns2:88028 ; - ns1:connectedFrom ns2:88028 ; - ns1:connectedThrough ns2:03342, - ns2:30594, - ns2:69401 ; - ns1:connectedTo ns2:18693, - ns2:83890 ; - ns1:hasConnectionPoint ns2:18449, - ns2:38115, - ns2:75519 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns2:airInlet ns2:38115 ; - ns2:airOutlet ns2:18449 . - -ns2:07660 a ns1:Connectable, - ns1:Equipment, - ns1:Filter ; + ns2:cnx ns4:18449, + ns4:38115, + ns4:75519 ; + ns2:connected ns4:18693, + ns4:83890, + ns4:88028 ; + ns2:connectedFrom ns4:88028 ; + ns2:connectedThrough ns4:03342, + ns4:30594, + ns4:69401 ; + ns2:connectedTo ns4:18693, + ns4:83890 ; + ns2:hasConnectionPoint ns4:18449, + ns4:38115, + ns4:75519 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns4:airInlet ns4:38115 ; + ns4:airOutlet ns4:18449 . + +ns4:07660 a ns2:Connectable, + ns2:Equipment, + ns2:Filter ; rdfs:label "pre_filter" ; - ns1:cnx ns2:02651, - ns2:41833 ; - ns1:connected ns2:47395, - ns2:73249, - ns2:87637, - ns2:92197 ; - ns1:connectedFrom ns2:73249, - ns2:87637 ; - ns1:connectedThrough ns2:54185, - ns2:55046 ; - ns1:connectedTo ns2:47395, - ns2:92197 ; - ns1:hasConnectionPoint ns2:02651, - ns2:41833 ; - ns1:hasProperty ns2:48347 ; - ns4:airInlet ns2:02651 ; - ns4:airOutlet ns2:41833 ; + ns2:cnx ns4:02651, + ns4:41833 ; + ns2:connected ns4:47395, + ns4:73249, + ns4:87637, + ns4:92197 ; + ns2:connectedFrom ns4:73249, + ns4:87637 ; + ns2:connectedThrough ns4:54185, + ns4:55046 ; + ns2:connectedTo ns4:47395, + ns4:92197 ; + ns2:hasConnectionPoint ns4:02651, + ns4:41833 ; + ns2:hasProperty ns4:48347 ; + ns3:airInlet ns4:02651 ; + ns3:airOutlet ns4:41833 ; rdfs:comment "pre_filter" . -ns2:09200 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:09200 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:00845, - ns2:34268, - ns2:49497, - ns2:60877 ; - ns1:connected ns2:87421, - ns2:90778 ; - ns1:connectedFrom ns2:90778 ; - ns1:connectedThrough ns2:25601, - ns2:74884 ; - ns1:connectedTo ns2:87421 ; - ns1:hasConnectionPoint ns2:00845, - ns2:34268, - ns2:49497, - ns2:60877 ; - ns1:hasRole ns1:Role-Heating ; - ns1:isConnectionPointOf ns2:00845 ; - ns4:airInlet ns2:60877 ; - ns4:airOutlet ns2:00845 ; - ns4:hotWaterInlet ns2:34268 ; - ns4:hotWaterOutlet ns2:49497 ; + ns2:cnx ns4:00845, + ns4:34268, + ns4:49497, + ns4:60877 ; + ns2:connected ns4:87421, + ns4:90778 ; + ns2:connectedFrom ns4:90778 ; + ns2:connectedThrough ns4:25601, + ns4:74884 ; + ns2:connectedTo ns4:87421 ; + ns2:hasConnectionPoint ns4:00845, + ns4:34268, + ns4:49497, + ns4:60877 ; + ns2:hasRole ns2:Role-Heating ; + ns2:isConnectionPointOf ns4:00845 ; + ns3:airInlet ns4:60877 ; + ns3:airOutlet ns4:00845 ; + ns3:hotWaterInlet ns4:34268 ; + ns3:hotWaterOutlet ns4:49497 ; rdfs:comment "hw_coil" . -ns2:15718 a ns1:Connectable, - ns1:Equipment, - ns1:Filter ; +ns4:15718 a ns2:Connectable, + ns2:Equipment, + ns2:Filter ; rdfs:label "pre_filter" ; - ns1:cnx ns2:77207, - ns2:93231 ; - ns1:connected ns2:51341, - ns2:54792, - ns2:57776, - ns2:62986 ; - ns1:connectedFrom ns2:51341, - ns2:54792 ; - ns1:connectedThrough ns2:42750, - ns2:57148 ; - ns1:connectedTo ns2:57776, - ns2:62986 ; - ns1:hasConnectionPoint ns2:77207, - ns2:93231 ; - ns1:hasProperty ns2:06683 ; - ns4:airInlet ns2:93231 ; - ns4:airOutlet ns2:77207 ; + ns2:cnx ns4:77207, + ns4:93231 ; + ns2:connected ns4:51341, + ns4:54792, + ns4:57776, + ns4:62986 ; + ns2:connectedFrom ns4:51341, + ns4:54792 ; + ns2:connectedThrough ns4:42750, + ns4:57148 ; + ns2:connectedTo ns4:57776, + ns4:62986 ; + ns2:hasConnectionPoint ns4:77207, + ns4:93231 ; + ns2:hasProperty ns4:06683 ; + ns3:airInlet ns4:93231 ; + ns3:airOutlet ns4:77207 ; rdfs:comment "pre_filter" . -ns2:18693 a ns1:Connectable, - ns1:DomainSpace, - ns2:CoreSpace ; +ns4:18693 a ns2:Connectable, + ns2:DomainSpace, + ns4:CoreSpace ; rdfs:label "Floor_4.CoreZone.core_space_9" ; - ns1:cnx ns2:03863, - ns2:56041, - ns2:56172 ; - ns1:connected ns2:03605, - ns2:10117, - ns2:98159 ; - ns1:connectedFrom ns2:03605, - ns2:10117 ; - ns1:connectedThrough ns2:03342, - ns2:25566, - ns2:71928 ; - ns1:connectedTo ns2:98159 ; - ns1:hasConnectionPoint ns2:03863, - ns2:56041, - ns2:56172 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns2:airInlet ns2:56041 ; - ns2:airOutlet ns2:56172 . - -ns2:45817 a ns1:Coil, - ns1:Connectable, - ns1:CoolingCoil, - ns1:Equipment, - ns2:DXCoil ; + ns2:cnx ns4:03863, + ns4:56041, + ns4:56172 ; + ns2:connected ns4:03605, + ns4:10117, + ns4:98159 ; + ns2:connectedFrom ns4:03605, + ns4:10117 ; + ns2:connectedThrough ns4:03342, + ns4:25566, + ns4:71928 ; + ns2:connectedTo ns4:98159 ; + ns2:hasConnectionPoint ns4:03863, + ns4:56041, + ns4:56172 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns4:airInlet ns4:56041 ; + ns4:airOutlet ns4:56172 . + +ns4:45817 a ns2:Coil, + ns2:Connectable, + ns2:CoolingCoil, + ns2:Equipment, + ns4:DXCoil ; rdfs:label "cwc" ; - ns1:cnx ns2:52516, - ns2:55013, - ns2:57979, - ns2:69394 ; - ns1:connected ns2:57522, - ns2:79897, - ns2:84053 ; - ns1:connectedFrom ns2:84053 ; - ns1:connectedThrough ns2:21343, - ns2:48176 ; - ns1:connectedTo ns2:79897 ; - ns1:hasConnectionPoint ns2:52516, - ns2:55013, - ns2:57979, - ns2:69394 ; - ns1:hasRole ns1:Role-Cooling ; - ns2:refrigerantInlet ns2:52516 ; - ns2:refrigerantOutlet ns2:57979 ; - ns4:airInlet ns2:69394 ; - ns4:airOutlet ns2:55013 ; + ns2:cnx ns4:52516, + ns4:55013, + ns4:57979, + ns4:69394 ; + ns2:connected ns4:57522, + ns4:79897, + ns4:84053 ; + ns2:connectedFrom ns4:84053 ; + ns2:connectedThrough ns4:21343, + ns4:48176 ; + ns2:connectedTo ns4:79897 ; + ns2:hasConnectionPoint ns4:52516, + ns4:55013, + ns4:57979, + ns4:69394 ; + ns2:hasRole ns2:Role-Cooling ; + ns4:refrigerantInlet ns4:52516 ; + ns4:refrigerantOutlet ns4:57979 ; + ns3:airInlet ns4:69394 ; + ns3:airOutlet ns4:55013 ; rdfs:comment "dx_coil" . -ns2:47395 a ns1:Coil, - ns1:Connectable, - ns1:CoolingCoil, - ns1:Equipment, - ns2:DXCoil ; +ns4:47395 a ns2:Coil, + ns2:Connectable, + ns2:CoolingCoil, + ns2:Equipment, + ns4:DXCoil ; rdfs:label "cwc" ; - ns1:cnx ns2:23310, - ns2:78346, - ns2:80383, - ns2:86369 ; - ns1:connected ns2:07660, - ns2:17912, - ns2:92197 ; - ns1:connectedFrom ns2:07660 ; - ns1:connectedThrough ns2:15832, - ns2:54185 ; - ns1:connectedTo ns2:17912 ; - ns1:hasConnectionPoint ns2:23310, - ns2:78346, - ns2:80383, - ns2:86369 ; - ns1:hasRole ns1:Role-Cooling ; - ns2:refrigerantInlet ns2:78346 ; - ns2:refrigerantOutlet ns2:86369 ; - ns4:airInlet ns2:23310 ; - ns4:airOutlet ns2:80383 ; + ns2:cnx ns4:23310, + ns4:78346, + ns4:80383, + ns4:86369 ; + ns2:connected ns4:07660, + ns4:17912, + ns4:92197 ; + ns2:connectedFrom ns4:07660 ; + ns2:connectedThrough ns4:15832, + ns4:54185 ; + ns2:connectedTo ns4:17912 ; + ns2:hasConnectionPoint ns4:23310, + ns4:78346, + ns4:80383, + ns4:86369 ; + ns2:hasRole ns2:Role-Cooling ; + ns4:refrigerantInlet ns4:78346 ; + ns4:refrigerantOutlet ns4:86369 ; + ns3:airInlet ns4:23310 ; + ns3:airOutlet ns4:80383 ; rdfs:comment "dx_coil" . -ns2:64314 a ns1:Connectable, - ns1:Equipment, - ns1:Filter ; +ns4:64314 a ns2:Connectable, + ns2:Equipment, + ns2:Filter ; rdfs:label "pre_filter" ; - ns1:cnx ns2:40727, - ns2:63823 ; - ns1:connected ns2:31173, - ns2:34392, - ns2:58489, - ns2:92865 ; - ns1:connectedFrom ns2:31173, - ns2:34392 ; - ns1:connectedThrough ns2:40562, - ns2:80380 ; - ns1:connectedTo ns2:58489, - ns2:92865 ; - ns1:hasConnectionPoint ns2:40727, - ns2:63823 ; - ns1:hasProperty ns2:15217 ; - ns4:airInlet ns2:63823 ; - ns4:airOutlet ns2:40727 ; + ns2:cnx ns4:40727, + ns4:63823 ; + ns2:connected ns4:31173, + ns4:34392, + ns4:58489, + ns4:92865 ; + ns2:connectedFrom ns4:31173, + ns4:34392 ; + ns2:connectedThrough ns4:40562, + ns4:80380 ; + ns2:connectedTo ns4:58489, + ns4:92865 ; + ns2:hasConnectionPoint ns4:40727, + ns4:63823 ; + ns2:hasProperty ns4:15217 ; + ns3:airInlet ns4:63823 ; + ns3:airOutlet ns4:40727 ; rdfs:comment "pre_filter" . -ns2:65779 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:65779 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:09895, - ns2:16627, - ns2:61573, - ns2:70764 ; - ns1:connected ns2:30312, - ns2:77381 ; - ns1:connectedFrom ns2:30312 ; - ns1:connectedThrough ns2:77406, - ns2:85676 ; - ns1:connectedTo ns2:77381 ; - ns1:hasConnectionPoint ns2:09895, - ns2:16627, - ns2:61573, - ns2:70764 ; - ns1:hasRole ns1:Role-Heating ; - ns1:isConnectionPointOf ns2:70764 ; - ns4:airInlet ns2:16627 ; - ns4:airOutlet ns2:70764 ; - ns4:hotWaterInlet ns2:09895 ; - ns4:hotWaterOutlet ns2:61573 ; + ns2:cnx ns4:09895, + ns4:16627, + ns4:61573, + ns4:70764 ; + ns2:connected ns4:30312, + ns4:77381 ; + ns2:connectedFrom ns4:30312 ; + ns2:connectedThrough ns4:77406, + ns4:85676 ; + ns2:connectedTo ns4:77381 ; + ns2:hasConnectionPoint ns4:09895, + ns4:16627, + ns4:61573, + ns4:70764 ; + ns2:hasRole ns2:Role-Heating ; + ns2:isConnectionPointOf ns4:70764 ; + ns3:airInlet ns4:16627 ; + ns3:airOutlet ns4:70764 ; + ns3:hotWaterInlet ns4:09895 ; + ns3:hotWaterOutlet ns4:61573 ; rdfs:comment "hw_coil" . -ns2:77887 a ns1:Connectable, - ns1:DomainSpace, - ns1:ObservableProperty, - ns1:Property, - ns1:QuantifiableObservableProperty, - ns1:QuantifiableProperty, - ns2:UFTZone, - ns4:DifferentialStaticPressure ; +ns4:77887 a ns2:Connectable, + ns2:DomainSpace, + ns2:ObservableProperty, + ns2:Property, + ns2:QuantifiableObservableProperty, + ns2:QuantifiableProperty, + ns4:UFTZone, + ns3:DifferentialStaticPressure ; rdfs:label "0-24.zone", "pf_press.DifferentialStaticPressure" ; - ns1:cnx ns2:70008, - ns2:87151 ; - ns1:connected ns2:37302, - ns2:69111 ; - ns1:connectedFrom ns2:37302 ; - ns1:connectedThrough ns2:53655, - ns2:76264 ; - ns1:connectedTo ns2:69111 ; - ns1:hasConnectionPoint ns2:70008, - ns2:87151 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns1:hasProperty ns2:80369 ; - ns1:ofMedium ; - ns2:returnOutlet ns2:87151 ; - ns2:supplyInlet ns2:70008 ; - ns2:temperature ns2:80369 ; - ns3:hasQuantityKind ; - ns3:hasUnit . - -ns2:84053 a ns1:Connectable, - ns1:Equipment, - ns1:Filter ; + ns2:cnx ns4:70008, + ns4:87151 ; + ns2:connected ns4:37302, + ns4:69111 ; + ns2:connectedFrom ns4:37302 ; + ns2:connectedThrough ns4:53655, + ns4:76264 ; + ns2:connectedTo ns4:69111 ; + ns2:hasConnectionPoint ns4:70008, + ns4:87151 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns2:hasProperty ns4:80369 ; + ns2:ofMedium ; + ns4:returnOutlet ns4:87151 ; + ns4:supplyInlet ns4:70008 ; + ns4:temperature ns4:80369 ; + ns1:hasQuantityKind ; + ns1:hasUnit . + +ns4:84053 a ns2:Connectable, + ns2:Equipment, + ns2:Filter ; rdfs:label "pre_filter" ; - ns1:cnx ns2:15204, - ns2:44513 ; - ns1:connected ns2:39848, - ns2:45817, - ns2:57522, - ns2:77251 ; - ns1:connectedFrom ns2:39848, - ns2:77251 ; - ns1:connectedThrough ns2:21343, - ns2:36633 ; - ns1:connectedTo ns2:45817, - ns2:57522 ; - ns1:hasConnectionPoint ns2:15204, - ns2:44513 ; - ns1:hasProperty ns2:77887 ; - ns4:airInlet ns2:44513 ; - ns4:airOutlet ns2:15204 ; + ns2:cnx ns4:15204, + ns4:44513 ; + ns2:connected ns4:39848, + ns4:45817, + ns4:57522, + ns4:77251 ; + ns2:connectedFrom ns4:39848, + ns4:77251 ; + ns2:connectedThrough ns4:21343, + ns4:36633 ; + ns2:connectedTo ns4:45817, + ns4:57522 ; + ns2:hasConnectionPoint ns4:15204, + ns4:44513 ; + ns2:hasProperty ns4:77887 ; + ns3:airInlet ns4:44513 ; + ns3:airOutlet ns4:15204 ; rdfs:comment "pre_filter" . -ns2:97321 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:97321 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:09247, - ns2:09895, - ns2:57368, - ns2:95888 ; - ns1:connected ns2:16051, - ns2:34355, - ns2:58251 ; - ns1:connectedFrom ns2:58251 ; - ns1:connectedThrough ns2:77758, - ns2:79346 ; - ns1:connectedTo ns2:16051 ; - ns1:hasConnectionPoint ns2:09247, - ns2:09895, - ns2:57368, - ns2:95888 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:57368 ; - ns4:airOutlet ns2:09895 ; - ns4:hotWaterInlet ns2:95888 ; - ns4:hotWaterOutlet ns2:09247 ; + ns2:cnx ns4:09247, + ns4:09895, + ns4:57368, + ns4:95888 ; + ns2:connected ns4:16051, + ns4:34355, + ns4:58251 ; + ns2:connectedFrom ns4:58251 ; + ns2:connectedThrough ns4:77758, + ns4:79346 ; + ns2:connectedTo ns4:16051 ; + ns2:hasConnectionPoint ns4:09247, + ns4:09895, + ns4:57368, + ns4:95888 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:57368 ; + ns3:airOutlet ns4:09895 ; + ns3:hotWaterInlet ns4:95888 ; + ns3:hotWaterOutlet ns4:09247 ; rdfs:comment "hw_coil" . -ns2:97969 a ns1:Connectable, - ns1:ConnectionPoint, - ns1:Equipment, - ns1:Fan, - ns1:OutletConnectionPoint, - ns4:AirConnectionPoint ; +ns4:97969 a ns2:Connectable, + ns2:ConnectionPoint, + ns2:Equipment, + ns2:Fan, + ns2:OutletConnectionPoint, + ns3:AirConnectionPoint ; rdfs:label "4-28A.airOutlet", "fan" ; - ns1:cnx ns2:03055, - ns2:24801, - ns2:56887, - ns2:67207, - ns2:72643 ; - ns1:connectsThrough ns2:56887 ; - ns1:hasConnectionPoint ns2:03055, - ns2:24801, - ns2:56887, - ns2:67207, - ns2:72643 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:03055 ; - ns4:airInlet ns2:67207 ; - ns4:airOutlet ns2:24801 ; + ns2:cnx ns4:03055, + ns4:24801, + ns4:56887, + ns4:67207, + ns4:72643 ; + ns2:connectsThrough ns4:56887 ; + ns2:hasConnectionPoint ns4:03055, + ns4:24801, + ns4:56887, + ns4:67207, + ns4:72643 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:03055 ; + ns3:airInlet ns4:67207 ; + ns3:airOutlet ns4:24801 ; rdfs:comment "Fan Powered Terminal Fan" . -ns2:98539 a ns1:Connectable, - ns1:ConnectionPoint, - ns1:Damper, - ns1:Equipment, - ns1:InletConnectionPoint, - ns2:RTUDamper, - ns4:AirConnectionPoint ; +ns4:98539 a ns2:Connectable, + ns2:ConnectionPoint, + ns2:Damper, + ns2:Equipment, + ns2:InletConnectionPoint, + ns4:RTUDamper, + ns3:AirConnectionPoint ; rdfs:label "2-74A.zone.supplyInlet", "ea_damper" ; - ns1:cnx ns2:05971, - ns2:29249, - ns2:45107, - ns2:56887 ; - ns1:connected ns2:02817, - ns2:39848 ; - ns1:connectedFrom ns2:02817 ; - ns1:connectedThrough ns2:52572 ; - ns1:connectsThrough ns2:56887 ; - ns1:hasConnectionPoint ns2:05971, - ns2:29249, - ns2:45107, - ns2:56887 ; - ns1:hasMedium ; - ns1:hasProperty ns2:24789, - ns2:91247 ; - ns1:hasRole ns1:Role-Exhaust ; - ns1:isConnectionPointOf ns2:05971 ; - ns2:positionCommand ns2:24789 ; - ns2:positionFeedback ns2:91247 ; - ns4:airInlet ns2:29249 ; - ns4:airOutlet ns2:45107 ; + ns2:cnx ns4:05971, + ns4:29249, + ns4:45107, + ns4:56887 ; + ns2:connected ns4:02817, + ns4:39848 ; + ns2:connectedFrom ns4:02817 ; + ns2:connectedThrough ns4:52572 ; + ns2:connectsThrough ns4:56887 ; + ns2:hasConnectionPoint ns4:05971, + ns4:29249, + ns4:45107, + ns4:56887 ; + ns2:hasMedium ; + ns2:hasProperty ns4:24789, + ns4:91247 ; + ns2:hasRole ns2:Role-Exhaust ; + ns2:isConnectionPointOf ns4:05971 ; + ns4:positionCommand ns4:24789 ; + ns4:positionFeedback ns4:91247 ; + ns3:airInlet ns4:29249 ; + ns3:airOutlet ns4:45107 ; rdfs:comment "exhaust_air_damper" . -ns2:57776 a ns1:Coil, - ns1:Connectable, - ns1:CoolingCoil, - ns1:Equipment, - ns2:DXCoil ; +ns4:57776 a ns2:Coil, + ns2:Connectable, + ns2:CoolingCoil, + ns2:Equipment, + ns4:DXCoil ; rdfs:label "cwc" ; - ns1:cnx ns2:17608, - ns2:39389, - ns2:49899, - ns2:73777 ; - ns1:connected ns2:15718, - ns2:61372, - ns2:62986 ; - ns1:connectedFrom ns2:15718 ; - ns1:connectedThrough ns2:42612, - ns2:57148 ; - ns1:connectedTo ns2:61372 ; - ns1:connectsThrough ns2:39389 ; - ns1:hasConnectionPoint ns2:17608, - ns2:39389, - ns2:49899, - ns2:73777 ; - ns1:hasRole ns1:Role-Cooling ; - ns2:refrigerantInlet ns2:49899 ; - ns2:refrigerantOutlet ns2:17608 ; - ns4:airInlet ns2:39389 ; - ns4:airOutlet ns2:73777 ; + ns2:cnx ns4:17608, + ns4:39389, + ns4:49899, + ns4:73777 ; + ns2:connected ns4:15718, + ns4:61372, + ns4:62986 ; + ns2:connectedFrom ns4:15718 ; + ns2:connectedThrough ns4:42612, + ns4:57148 ; + ns2:connectedTo ns4:61372 ; + ns2:connectsThrough ns4:39389 ; + ns2:hasConnectionPoint ns4:17608, + ns4:39389, + ns4:49899, + ns4:73777 ; + ns2:hasRole ns2:Role-Cooling ; + ns4:refrigerantInlet ns4:49899 ; + ns4:refrigerantOutlet ns4:17608 ; + ns3:airInlet ns4:39389 ; + ns3:airOutlet ns4:73777 ; rdfs:comment "dx_coil" . -ns2:68166 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:68166 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:55213, - ns2:83757, - ns2:88273, - ns2:88535 ; - ns1:connected ns2:00783, - ns2:15067, - ns2:83428 ; - ns1:connectedFrom ns2:00783 ; - ns1:connectedThrough ns2:57596, - ns2:77276 ; - ns1:connectedTo ns2:15067, - ns2:83428 ; - ns1:hasConnectionPoint ns2:55213, - ns2:83757, - ns2:88273, - ns2:88535 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:88535 ; - ns4:airOutlet ns2:88273 ; - ns4:hotWaterInlet ns2:83757 ; - ns4:hotWaterOutlet ns2:55213 ; + ns2:cnx ns4:55213, + ns4:83757, + ns4:88273, + ns4:88535 ; + ns2:connected ns4:00783, + ns4:15067, + ns4:83428 ; + ns2:connectedFrom ns4:00783 ; + ns2:connectedThrough ns4:57596, + ns4:77276 ; + ns2:connectedTo ns4:15067, + ns4:83428 ; + ns2:hasConnectionPoint ns4:55213, + ns4:83757, + ns4:88273, + ns4:88535 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:88535 ; + ns3:airOutlet ns4:88273 ; + ns3:hotWaterInlet ns4:83757 ; + ns3:hotWaterOutlet ns4:55213 ; rdfs:comment "hw_coil" . -ns2:87632 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil, - ns1:PhysicalSpace ; +ns4:87632 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil, + ns2:PhysicalSpace ; rdfs:label "3440A", "hw_coil" ; - ns1:cnx ns2:19364, - ns2:50858, - ns2:77736, - ns2:86539 ; - ns1:connected ns2:73024, - ns2:95090 ; - ns1:connectedFrom ns2:73024 ; - ns1:connectedThrough ns2:13472, - ns2:58818 ; - ns1:connectedTo ns2:95090 ; - ns1:hasConnectionPoint ns2:19364, - ns2:50858, - ns2:77736, - ns2:86539 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:77736 ; - ns4:airOutlet ns2:50858 ; - ns4:hotWaterInlet ns2:86539 ; - ns4:hotWaterOutlet ns2:19364 ; + ns2:cnx ns4:19364, + ns4:50858, + ns4:77736, + ns4:86539 ; + ns2:connected ns4:73024, + ns4:95090 ; + ns2:connectedFrom ns4:73024 ; + ns2:connectedThrough ns4:13472, + ns4:58818 ; + ns2:connectedTo ns4:95090 ; + ns2:hasConnectionPoint ns4:19364, + ns4:50858, + ns4:77736, + ns4:86539 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:77736 ; + ns3:airOutlet ns4:50858 ; + ns3:hotWaterInlet ns4:86539 ; + ns3:hotWaterOutlet ns4:19364 ; rdfs:comment "hw_coil" . -ns2:55672 a ns1:AirHandlingUnit, - ns1:Connectable, - ns1:Equipment ; +ns4:55672 a ns2:AirHandlingUnit, + ns2:Connectable, + ns2:Equipment ; rdfs:label "RTU_5" ; - ns1:cnx ns2:23780, - ns2:43864, - ns2:67277, - ns2:89919 ; - ns1:connected ns2:46019, - ns2:77070, - ns2:83890, - ns2:88028 ; - ns1:connectedFrom ns2:46019, - ns2:83890 ; - ns1:connectedThrough ns2:30777, - ns2:91912 ; - ns1:connectedTo ns2:77070, - ns2:88028 ; - ns1:contains ns2:02817, - ns2:06502, - ns2:14119, - ns2:17463, - ns2:22670, - ns2:22732, - ns2:25621, - ns2:38691, - ns2:39848, - ns2:45817, - ns2:56710, - ns2:57522, - ns2:77251, - ns2:79897, - ns2:84053, - ns2:88641, - ns2:91277, - ns2:98539 ; - ns1:hasConnectionPoint ns2:23780, - ns2:43864, - ns2:67277, - ns2:89919 ; - ns2:exhaustAirOutlet ns2:43864 ; - ns2:outsideAirInlet ns2:23780 ; - ns2:returnAirInlet ns2:67277 ; - ns2:supplyAirOutlet ns2:89919 . - -ns2:67780 a ns1:AirHandlingUnit, - ns1:Connectable, - ns1:Equipment ; + ns2:cnx ns4:23780, + ns4:43864, + ns4:67277, + ns4:89919 ; + ns2:connected ns4:46019, + ns4:77070, + ns4:83890, + ns4:88028 ; + ns2:connectedFrom ns4:46019, + ns4:83890 ; + ns2:connectedThrough ns4:30777, + ns4:91912 ; + ns2:connectedTo ns4:77070, + ns4:88028 ; + ns2:contains ns4:02817, + ns4:06502, + ns4:14119, + ns4:17463, + ns4:22670, + ns4:22732, + ns4:25621, + ns4:38691, + ns4:39848, + ns4:45817, + ns4:56710, + ns4:57522, + ns4:77251, + ns4:79897, + ns4:84053, + ns4:88641, + ns4:91277, + ns4:98539 ; + ns2:hasConnectionPoint ns4:23780, + ns4:43864, + ns4:67277, + ns4:89919 ; + ns4:exhaustAirOutlet ns4:43864 ; + ns4:outsideAirInlet ns4:23780 ; + ns4:returnAirInlet ns4:67277 ; + ns4:supplyAirOutlet ns4:89919 . + +ns4:67780 a ns2:AirHandlingUnit, + ns2:Connectable, + ns2:Equipment ; rdfs:label "RTU_9" ; - ns1:cnx ns2:01874, - ns2:70952, - ns2:71652, - ns2:82983 ; - ns1:connected ns2:05101, - ns2:05175, - ns2:05353, - ns2:28911 ; - ns1:connectedFrom ns2:05175, - ns2:28911 ; - ns1:connectedThrough ns2:62659, - ns2:78087 ; - ns1:connectedTo ns2:05101, - ns2:05353 ; - ns1:contains ns2:00808, - ns2:11125, - ns2:11624, - ns2:15718, - ns2:18339, - ns2:22610, - ns2:26086, - ns2:35353, - ns2:35505, - ns2:51341, - ns2:54792, - ns2:57776, - ns2:61372, - ns2:62986, - ns2:66135, - ns2:86907, - ns2:92718, - ns2:93812 ; - ns1:hasConnectionPoint ns2:01874, - ns2:70952, - ns2:71652, - ns2:82983 ; - ns2:exhaustAirOutlet ns2:82983 ; - ns2:outsideAirInlet ns2:71652 ; - ns2:returnAirInlet ns2:01874 ; - ns2:supplyAirOutlet ns2:70952 . - -ns2:69576 a ns1:AirHandlingUnit, - ns1:Connectable, - ns1:Equipment ; + ns2:cnx ns4:01874, + ns4:70952, + ns4:71652, + ns4:82983 ; + ns2:connected ns4:05101, + ns4:05175, + ns4:05353, + ns4:28911 ; + ns2:connectedFrom ns4:05175, + ns4:28911 ; + ns2:connectedThrough ns4:62659, + ns4:78087 ; + ns2:connectedTo ns4:05101, + ns4:05353 ; + ns2:contains ns4:00808, + ns4:11125, + ns4:11624, + ns4:15718, + ns4:18339, + ns4:22610, + ns4:26086, + ns4:35353, + ns4:35505, + ns4:51341, + ns4:54792, + ns4:57776, + ns4:61372, + ns4:62986, + ns4:66135, + ns4:86907, + ns4:92718, + ns4:93812 ; + ns2:hasConnectionPoint ns4:01874, + ns4:70952, + ns4:71652, + ns4:82983 ; + ns4:exhaustAirOutlet ns4:82983 ; + ns4:outsideAirInlet ns4:71652 ; + ns4:returnAirInlet ns4:01874 ; + ns4:supplyAirOutlet ns4:70952 . + +ns4:69576 a ns2:AirHandlingUnit, + ns2:Connectable, + ns2:Equipment ; rdfs:label "RTU_6" ; - ns1:cnx ns2:37517, - ns2:41846, - ns2:69130, - ns2:77220 ; - ns1:connected ns2:10117, - ns2:50126, - ns2:93276, - ns2:98159 ; - ns1:connectedFrom ns2:93276, - ns2:98159 ; - ns1:connectedThrough ns2:08315, - ns2:11294 ; - ns1:connectedTo ns2:10117, - ns2:50126 ; - ns1:contains ns2:07660, - ns2:07924, - ns2:08745, - ns2:15022, - ns2:17912, - ns2:38056, - ns2:39934, - ns2:43438, - ns2:47395, - ns2:51238, - ns2:56948, - ns2:72814, - ns2:73249, - ns2:83549, - ns2:87637, - ns2:87948, - ns2:92197, - ns2:94202 ; - ns1:hasConnectionPoint ns2:37517, - ns2:41846, - ns2:69130, - ns2:77220 ; - ns2:exhaustAirOutlet ns2:37517 ; - ns2:outsideAirInlet ns2:41846 ; - ns2:returnAirInlet ns2:69130 ; - ns2:supplyAirOutlet ns2:77220 . - -ns2:92865 a ns1:Coil, - ns1:Connectable, - ns1:CoolingCoil, - ns1:Equipment, - ns1:PhysicalSpace, - ns2:DXCoil ; + ns2:cnx ns4:37517, + ns4:41846, + ns4:69130, + ns4:77220 ; + ns2:connected ns4:10117, + ns4:50126, + ns4:93276, + ns4:98159 ; + ns2:connectedFrom ns4:93276, + ns4:98159 ; + ns2:connectedThrough ns4:08315, + ns4:11294 ; + ns2:connectedTo ns4:10117, + ns4:50126 ; + ns2:contains ns4:07660, + ns4:07924, + ns4:08745, + ns4:15022, + ns4:17912, + ns4:38056, + ns4:39934, + ns4:43438, + ns4:47395, + ns4:51238, + ns4:56948, + ns4:72814, + ns4:73249, + ns4:83549, + ns4:87637, + ns4:87948, + ns4:92197, + ns4:94202 ; + ns2:hasConnectionPoint ns4:37517, + ns4:41846, + ns4:69130, + ns4:77220 ; + ns4:exhaustAirOutlet ns4:37517 ; + ns4:outsideAirInlet ns4:41846 ; + ns4:returnAirInlet ns4:69130 ; + ns4:supplyAirOutlet ns4:77220 . + +ns4:92865 a ns2:Coil, + ns2:Connectable, + ns2:CoolingCoil, + ns2:Equipment, + ns2:PhysicalSpace, + ns4:DXCoil ; rdfs:label "3984C", "cwc" ; - ns1:cnx ns2:14012, - ns2:14188, - ns2:53361, - ns2:55857 ; - ns1:connected ns2:58489, - ns2:64314, - ns2:85645 ; - ns1:connectedFrom ns2:64314 ; - ns1:connectedThrough ns2:40562, - ns2:52992 ; - ns1:connectedTo ns2:85645 ; - ns1:hasConnectionPoint ns2:14012, - ns2:14188, - ns2:53361, - ns2:55857 ; - ns1:hasRole ns1:Role-Cooling ; - ns2:refrigerantInlet ns2:53361 ; - ns2:refrigerantOutlet ns2:55857 ; - ns4:airInlet ns2:14012 ; - ns4:airOutlet ns2:14188 ; + ns2:cnx ns4:14012, + ns4:14188, + ns4:53361, + ns4:55857 ; + ns2:connected ns4:58489, + ns4:64314, + ns4:85645 ; + ns2:connectedFrom ns4:64314 ; + ns2:connectedThrough ns4:40562, + ns4:52992 ; + ns2:connectedTo ns4:85645 ; + ns2:hasConnectionPoint ns4:14012, + ns4:14188, + ns4:53361, + ns4:55857 ; + ns2:hasRole ns2:Role-Cooling ; + ns4:refrigerantInlet ns4:53361 ; + ns4:refrigerantOutlet ns4:55857 ; + ns3:airInlet ns4:14012 ; + ns3:airOutlet ns4:14188 ; rdfs:comment "dx_coil" . -ns2:05785 a ns1:AirHandlingUnit, - ns1:Connectable, - ns1:Equipment ; +ns4:05785 a ns2:AirHandlingUnit, + ns2:Connectable, + ns2:Equipment ; rdfs:label "RTU_1" ; - ns1:cnx ns2:26559, - ns2:30223, - ns2:41260, - ns2:60599 ; - ns1:connected ns2:06275, - ns2:29599, - ns2:42308, - ns2:68886, - ns2:69111 ; - ns1:connectedFrom ns2:29599, - ns2:69111 ; - ns1:connectedThrough ns2:25082, - ns2:97787 ; - ns1:connectedTo ns2:06275, - ns2:42308 ; - ns1:contains ns2:05432, - ns2:09273, - ns2:30216, - ns2:31173, - ns2:31518, - ns2:34392, - ns2:34927, - ns2:46907, - ns2:49730, - ns2:51997, - ns2:53679, - ns2:58489, - ns2:64314, - ns2:64398, - ns2:78354, - ns2:81406, - ns2:85645, - ns2:92865 ; - ns1:hasConnectionPoint ns2:26559, - ns2:30223, - ns2:41260, - ns2:60599 ; - ns2:exhaustAirOutlet ns2:60599 ; - ns2:outsideAirInlet ns2:41260 ; - ns2:returnAirInlet ns2:26559 ; - ns2:supplyAirOutlet ns2:30223 . - -ns2:07924 a ns1:Connectable, - ns1:ConnectionPoint, - ns1:Equipment, - ns1:Fan, - ns1:OutletConnectionPoint, + ns2:cnx ns4:26559, + ns4:30223, + ns4:41260, + ns4:60599 ; + ns2:connected ns4:06275, + ns4:29599, + ns4:42308, + ns4:68886, + ns4:69111 ; + ns2:connectedFrom ns4:29599, + ns4:69111 ; + ns2:connectedThrough ns4:25082, + ns4:97787 ; + ns2:connectedTo ns4:06275, + ns4:42308 ; + ns2:contains ns4:05432, + ns4:09273, + ns4:30216, + ns4:31173, + ns4:31518, + ns4:34392, + ns4:34927, + ns4:46907, + ns4:49730, + ns4:51997, + ns4:53679, + ns4:58489, + ns4:64314, + ns4:64398, + ns4:78354, + ns4:81406, + ns4:85645, + ns4:92865 ; + ns2:hasConnectionPoint ns4:26559, + ns4:30223, + ns4:41260, + ns4:60599 ; + ns4:exhaustAirOutlet ns4:60599 ; + ns4:outsideAirInlet ns4:41260 ; + ns4:returnAirInlet ns4:26559 ; + ns4:supplyAirOutlet ns4:30223 . + +ns4:07924 a ns2:Connectable, + ns2:ConnectionPoint, + ns2:Equipment, + ns2:Fan, + ns2:OutletConnectionPoint, , - ns2:RTUFan, - ns4:AirConnectionPoint ; + ns4:RTUFan, + ns3:AirConnectionPoint ; rdfs:label "supply_fan" ; - ns1:cnx ns2:06275, - ns2:47927, - ns2:50012, - ns2:82635, - ns2:87318 ; - ns1:connected ns2:17912, - ns2:83549 ; - ns1:connectedFrom ns2:17912 ; - ns1:connectedThrough ns2:63755, - ns2:85048 ; - ns1:connectedTo ns2:83549 ; - ns1:connectsThrough ns2:47927 ; - ns1:hasConnectionPoint ns2:06275, - ns2:47927, - ns2:50012, - ns2:82635, - ns2:87318 ; - ns1:hasMedium ; - ns1:hasProperty ns2:18000, - ns2:46343, - ns2:67737, - ns2:78469, - ns2:98128 ; - ns1:hasRole ns1:Role-Supply ; - ns1:isConnectionPointOf ns2:06275 ; - ns2:airFlow ns2:67737 ; - ns2:power ns2:98128 ; - ns2:speedCommand ns2:18000 ; - ns2:speedFeedback ns2:46343 ; - ns2:vfd_start_stop ns2:78469 ; - ns4:airInlet ns2:87318 ; - ns4:airOutlet ns2:82635 ; + ns2:cnx ns4:06275, + ns4:47927, + ns4:50012, + ns4:82635, + ns4:87318 ; + ns2:connected ns4:17912, + ns4:83549 ; + ns2:connectedFrom ns4:17912 ; + ns2:connectedThrough ns4:63755, + ns4:85048 ; + ns2:connectedTo ns4:83549 ; + ns2:connectsThrough ns4:47927 ; + ns2:hasConnectionPoint ns4:06275, + ns4:47927, + ns4:50012, + ns4:82635, + ns4:87318 ; + ns2:hasMedium ; + ns2:hasProperty ns4:18000, + ns4:46343, + ns4:67737, + ns4:78469, + ns4:98128 ; + ns2:hasRole ns2:Role-Supply ; + ns2:isConnectionPointOf ns4:06275 ; + ns4:airFlow ns4:67737 ; + ns4:power ns4:98128 ; + ns4:speedCommand ns4:18000 ; + ns4:speedFeedback ns4:46343 ; + ns4:vfd_start_stop ns4:78469 ; + ns3:airInlet ns4:87318 ; + ns3:airOutlet ns4:82635 ; rdfs:comment "supply_fan" . -ns2:31318 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:31318 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:26524, - ns2:35251, - ns2:36289, - ns2:76086 ; - ns1:connected ns2:02937, - ns2:38529, - ns2:54082, - ns2:69090 ; - ns1:connectedFrom ns2:38529 ; - ns1:connectedThrough ns2:18895, - ns2:76728, - ns2:82929 ; - ns1:connectedTo ns2:54082, - ns2:69090 ; - ns1:hasConnectionPoint ns2:26524, - ns2:35251, - ns2:36289, - ns2:76086 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:36289 ; - ns4:airOutlet ns2:76086 ; - ns4:hotWaterInlet ns2:26524 ; - ns4:hotWaterOutlet ns2:35251 ; + ns2:cnx ns4:26524, + ns4:35251, + ns4:36289, + ns4:76086 ; + ns2:connected ns4:02937, + ns4:38529, + ns4:54082, + ns4:69090 ; + ns2:connectedFrom ns4:38529 ; + ns2:connectedThrough ns4:18895, + ns4:76728, + ns4:82929 ; + ns2:connectedTo ns4:54082, + ns4:69090 ; + ns2:hasConnectionPoint ns4:26524, + ns4:35251, + ns4:36289, + ns4:76086 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:36289 ; + ns3:airOutlet ns4:76086 ; + ns3:hotWaterInlet ns4:26524 ; + ns3:hotWaterOutlet ns4:35251 ; rdfs:comment "hw_coil" . -ns2:55408 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:55408 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:36398, - ns2:41417, - ns2:76964, - ns2:97101 ; - ns1:connected ns2:17361, - ns2:37324, - ns2:44133, - ns2:93276 ; - ns1:connectedFrom ns2:17361 ; - ns1:connectedThrough ns2:09278, - ns2:27115, - ns2:92091 ; - ns1:connectedTo ns2:44133, - ns2:93276 ; - ns1:hasConnectionPoint ns2:36398, - ns2:41417, - ns2:76964, - ns2:97101 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:76964 ; - ns4:airOutlet ns2:97101 ; - ns4:hotWaterInlet ns2:41417 ; - ns4:hotWaterOutlet ns2:36398 ; + ns2:cnx ns4:36398, + ns4:41417, + ns4:76964, + ns4:97101 ; + ns2:connected ns4:17361, + ns4:37324, + ns4:44133, + ns4:93276 ; + ns2:connectedFrom ns4:17361 ; + ns2:connectedThrough ns4:09278, + ns4:27115, + ns4:92091 ; + ns2:connectedTo ns4:44133, + ns4:93276 ; + ns2:hasConnectionPoint ns4:36398, + ns4:41417, + ns4:76964, + ns4:97101 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:76964 ; + ns3:airOutlet ns4:97101 ; + ns3:hotWaterInlet ns4:41417 ; + ns3:hotWaterOutlet ns4:36398 ; rdfs:comment "hw_coil" . -ns2:83428 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; +ns4:83428 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:26208, - ns2:33018, - ns2:69029, - ns2:73704 ; - ns1:connected ns2:15067, - ns2:62510, - ns2:68166, - ns2:88253 ; - ns1:connectedFrom ns2:62510, - ns2:68166 ; - ns1:connectedThrough ns2:54863, - ns2:77276, - ns2:92921 ; - ns1:connectedTo ns2:88253 ; - ns1:hasConnectionPoint ns2:26208, - ns2:33018, - ns2:69029, - ns2:73704 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:26208 ; - ns4:airOutlet ns2:33018 ; - ns4:hotWaterInlet ns2:73704 ; - ns4:hotWaterOutlet ns2:69029 ; + ns2:cnx ns4:26208, + ns4:33018, + ns4:69029, + ns4:73704 ; + ns2:connected ns4:15067, + ns4:62510, + ns4:68166, + ns4:88253 ; + ns2:connectedFrom ns4:62510, + ns4:68166 ; + ns2:connectedThrough ns4:54863, + ns4:77276, + ns4:92921 ; + ns2:connectedTo ns4:88253 ; + ns2:hasConnectionPoint ns4:26208, + ns4:33018, + ns4:69029, + ns4:73704 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:26208 ; + ns3:airOutlet ns4:33018 ; + ns3:hotWaterInlet ns4:73704 ; + ns3:hotWaterOutlet ns4:69029 ; rdfs:comment "hw_coil" . -ns2:18941 a ns1:Connectable, - ns1:Equipment, - ns1:Fan, - ns2:UFT_Fan ; +ns4:18941 a ns2:Connectable, + ns2:Equipment, + ns2:Fan, + ns4:UFT_Fan ; rdfs:label "supply_fan" ; - ns1:cnx ns2:04282, - ns2:21534, - ns2:99282 ; - ns1:connected ns2:04913, - ns2:18941, - ns2:49064, - ns2:84040 ; - ns1:connectedFrom ns2:18941, - ns2:84040 ; - ns1:connectedThrough ns2:55174, - ns2:62740 ; - ns1:connectedTo ns2:04913, - ns2:18941, - ns2:49064, - ns2:84040 ; - ns1:hasConnectionPoint ns2:04282, - ns2:21534, - ns2:99282 ; - ns1:hasProperty ns2:10629, - ns2:13949 ; - ns1:hasRole ns1:Role-Supply ; - ns2:speedCommand ns2:10629 ; - ns2:speedFeedback ns2:13949 ; - ns4:airInlet ns2:99282 ; - ns4:airOutlet ns2:21534 ; + ns2:cnx ns4:04282, + ns4:21534, + ns4:99282 ; + ns2:connected ns4:04913, + ns4:18941, + ns4:49064, + ns4:84040 ; + ns2:connectedFrom ns4:18941, + ns4:84040 ; + ns2:connectedThrough ns4:55174, + ns4:62740 ; + ns2:connectedTo ns4:04913, + ns4:18941, + ns4:49064, + ns4:84040 ; + ns2:hasConnectionPoint ns4:04282, + ns4:21534, + ns4:99282 ; + ns2:hasProperty ns4:10629, + ns4:13949 ; + ns2:hasRole ns2:Role-Supply ; + ns4:speedCommand ns4:10629 ; + ns4:speedFeedback ns4:13949 ; + ns3:airInlet ns4:99282 ; + ns3:airOutlet ns4:21534 ; rdfs:comment "supply_fan" . -ns2:37324 a ns1:Connectable, - ns1:DomainSpace, - ns2:CoreSpace ; +ns4:37324 a ns2:Connectable, + ns2:DomainSpace, + ns4:CoreSpace ; rdfs:label "Floor_2.CoreZone.core_space_8" ; - ns1:cnx ns2:14639, - ns2:36398, - ns2:97435 ; - ns1:connected ns2:44036, - ns2:44133, - ns2:50126, - ns2:55408, - ns2:93276 ; - ns1:connectedFrom ns2:44036, - ns2:50126 ; - ns1:connectedThrough ns2:09278, - ns2:27115, - ns2:88574, - ns2:97215 ; - ns1:connectedTo ns2:44133, - ns2:93276 ; - ns1:hasConnectionPoint ns2:14639, - ns2:36398, - ns2:97435 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns2:airInlet ns2:14639 ; - ns2:airOutlet ns2:36398 . - -ns2:68886 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; + ns2:cnx ns4:14639, + ns4:36398, + ns4:97435 ; + ns2:connected ns4:44036, + ns4:44133, + ns4:50126, + ns4:55408, + ns4:93276 ; + ns2:connectedFrom ns4:44036, + ns4:50126 ; + ns2:connectedThrough ns4:09278, + ns4:27115, + ns4:88574, + ns4:97215 ; + ns2:connectedTo ns4:44133, + ns4:93276 ; + ns2:hasConnectionPoint ns4:14639, + ns4:36398, + ns4:97435 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns4:airInlet ns4:14639 ; + ns4:airOutlet ns4:36398 . + +ns4:68886 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:17590, - ns2:26559, - ns2:64575, - ns2:92008 ; - ns1:connected ns2:05785, - ns2:12418, - ns2:29599, - ns2:69111, - ns2:85916 ; - ns1:connectedFrom ns2:12418, - ns2:29599, - ns2:69111 ; - ns1:connectedThrough ns2:21542, - ns2:35841, - ns2:97787 ; - ns1:connectedTo ns2:85916 ; - ns1:hasConnectionPoint ns2:17590, - ns2:26559, - ns2:64575, - ns2:92008 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:17590 ; - ns4:airOutlet ns2:64575 ; - ns4:hotWaterInlet ns2:26559 ; - ns4:hotWaterOutlet ns2:92008 ; + ns2:cnx ns4:17590, + ns4:26559, + ns4:64575, + ns4:92008 ; + ns2:connected ns4:05785, + ns4:12418, + ns4:29599, + ns4:69111, + ns4:85916 ; + ns2:connectedFrom ns4:12418, + ns4:29599, + ns4:69111 ; + ns2:connectedThrough ns4:21542, + ns4:35841, + ns4:97787 ; + ns2:connectedTo ns4:85916 ; + ns2:hasConnectionPoint ns4:17590, + ns4:26559, + ns4:64575, + ns4:92008 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:17590 ; + ns3:airOutlet ns4:64575 ; + ns3:hotWaterInlet ns4:26559 ; + ns3:hotWaterOutlet ns4:92008 ; rdfs:comment "hw_coil" . -ns2:44036 a ns1:Connectable, - ns1:DomainSpace, - ns2:CoreSpace ; +ns4:44036 a ns2:Connectable, + ns2:DomainSpace, + ns4:CoreSpace ; rdfs:label "Floor_9.CoreZone.core_space_8" ; - ns1:cnx ns2:14968, - ns2:17322, - ns2:38418 ; - ns1:connected ns2:37324, - ns2:44036, - ns2:46019, - ns2:77070, - ns2:84040 ; - ns1:connectedFrom ns2:44036, - ns2:77070, - ns2:84040 ; - ns1:connectedThrough ns2:33562, - ns2:34986, - ns2:97215 ; - ns1:connectedTo ns2:37324, - ns2:44036, - ns2:46019, - ns2:84040 ; - ns1:hasConnectionPoint ns2:14968, - ns2:17322, - ns2:38418 ; - ns1:hasDomain ns1:Domain-HVAC ; - ns2:airInlet ns2:38418 ; - ns2:airOutlet ns2:17322 . - -ns2:51853 a ns1:Connectable, - ns1:Connection, - ns1:Equipment, - ns2:FanPoweredTerminal, - ns2:UFT ; + ns2:cnx ns4:14968, + ns4:17322, + ns4:38418 ; + ns2:connected ns4:37324, + ns4:44036, + ns4:46019, + ns4:77070, + ns4:84040 ; + ns2:connectedFrom ns4:44036, + ns4:77070, + ns4:84040 ; + ns2:connectedThrough ns4:33562, + ns4:34986, + ns4:97215 ; + ns2:connectedTo ns4:37324, + ns4:44036, + ns4:46019, + ns4:84040 ; + ns2:hasConnectionPoint ns4:14968, + ns4:17322, + ns4:38418 ; + ns2:hasDomain ns2:Domain-HVAC ; + ns4:airInlet ns4:38418 ; + ns4:airOutlet ns4:17322 . + +ns4:51853 a ns2:Connectable, + ns2:Connection, + ns2:Equipment, + ns4:FanPoweredTerminal, + ns4:UFT ; rdfs:label "4-80" ; - ns1:cnx ns2:02549, - ns2:04201, - ns2:34046, - ns2:88207 ; - ns1:connected ns2:42308, - ns2:65580, - ns2:88028 ; - ns1:connectedFrom ns2:42308, - ns2:51853 ; - ns1:connectedThrough ns2:06115, - ns2:42481, - ns2:51853 ; - ns1:connectedTo ns2:51853, - ns2:65580, - ns2:88028 ; - ns1:connectsAt ns2:02549, - ns2:04201, - ns2:34046, - ns2:88207 ; - ns1:connectsFrom ns2:42308, - ns2:51853 ; - ns1:connectsTo ns2:51853, - ns2:88028 ; - ns1:contains ns2:00783, - ns2:15067, - ns2:68166, - ns2:79665 ; - ns1:hasConnectionPoint ns2:02549, - ns2:04201, - ns2:34046, - ns2:88207 ; - ns1:hasMedium ; - ns1:hasProperty ns2:03902, - ns2:65321 ; - ns2:airInlet ns2:88207 ; - ns2:airOutlet ns2:04201 . - -ns2:84040 a ns1:Coil, - ns1:Connectable, - ns1:Equipment, - ns1:HeatingCoil ; + ns2:cnx ns4:02549, + ns4:04201, + ns4:34046, + ns4:88207 ; + ns2:connected ns4:42308, + ns4:65580, + ns4:88028 ; + ns2:connectedFrom ns4:42308, + ns4:51853 ; + ns2:connectedThrough ns4:06115, + ns4:42481, + ns4:51853 ; + ns2:connectedTo ns4:51853, + ns4:65580, + ns4:88028 ; + ns2:connectsAt ns4:02549, + ns4:04201, + ns4:34046, + ns4:88207 ; + ns2:connectsFrom ns4:42308, + ns4:51853 ; + ns2:connectsTo ns4:51853, + ns4:88028 ; + ns2:contains ns4:00783, + ns4:15067, + ns4:68166, + ns4:79665 ; + ns2:hasConnectionPoint ns4:02549, + ns4:04201, + ns4:34046, + ns4:88207 ; + ns2:hasMedium ; + ns2:hasProperty ns4:03902, + ns4:65321 ; + ns4:airInlet ns4:88207 ; + ns4:airOutlet ns4:04201 . + +ns4:84040 a ns2:Coil, + ns2:Connectable, + ns2:Equipment, + ns2:HeatingCoil ; rdfs:label "hw_coil" ; - ns1:cnx ns2:04282, - ns2:17322, - ns2:67748, - ns2:69135 ; - ns1:connected ns2:04913, - ns2:18941, - ns2:44036, - ns2:46019, - ns2:61196, - ns2:84040 ; - ns1:connectedFrom ns2:18941, - ns2:44036, - ns2:61196, - ns2:84040 ; - ns1:connectedThrough ns2:33562, - ns2:41561, - ns2:62740 ; - ns1:connectedTo ns2:04913, - ns2:18941, - ns2:44036, - ns2:46019, - ns2:84040 ; - ns1:hasConnectionPoint ns2:04282, - ns2:17322, - ns2:67748, - ns2:69135 ; - ns1:hasRole ns1:Role-Heating ; - ns4:airInlet ns2:67748 ; - ns4:airOutlet ns2:69135 ; - ns4:hotWaterInlet ns2:17322 ; - ns4:hotWaterOutlet ns2:04282 ; + ns2:cnx ns4:04282, + ns4:17322, + ns4:67748, + ns4:69135 ; + ns2:connected ns4:04913, + ns4:18941, + ns4:44036, + ns4:46019, + ns4:61196, + ns4:84040 ; + ns2:connectedFrom ns4:18941, + ns4:44036, + ns4:61196, + ns4:84040 ; + ns2:connectedThrough ns4:33562, + ns4:41561, + ns4:62740 ; + ns2:connectedTo ns4:04913, + ns4:18941, + ns4:44036, + ns4:46019, + ns4:84040 ; + ns2:hasConnectionPoint ns4:04282, + ns4:17322, + ns4:67748, + ns4:69135 ; + ns2:hasRole ns2:Role-Heating ; + ns3:airInlet ns4:67748 ; + ns3:airOutlet ns4:69135 ; + ns3:hotWaterInlet ns4:17322 ; + ns3:hotWaterOutlet ns4:04282 ; rdfs:comment "hw_coil" . -ns2:05175 a ns1:Connectable, - ns1:Junction, - ns2:CeilingSpace ; +ns4:05175 a ns2:Connectable, + ns2:Junction, + ns4:CeilingSpace ; rdfs:label "Floor_3.RTU_4.Ceiling" ; - ns1:cnx ns2:01718, - ns2:02583, - ns2:12960, - ns2:25265, - ns2:36341, - ns2:49391, - ns2:70362, - ns2:73303 ; - ns1:connected ns2:04698, - ns2:16454, - ns2:28911, - ns2:43841, - ns2:58953, - ns2:67780, - ns2:93162, - ns2:97668, - ns2:98159 ; - ns1:connectedFrom ns2:04698, - ns2:16454, - ns2:43841, - ns2:58953, - ns2:93162, - ns2:97668, - ns2:98159 ; - ns1:connectedThrough ns2:32081, - ns2:42054, - ns2:57984, - ns2:73994, - ns2:78087, - ns2:86102, - ns2:86986, - ns2:97276 ; - ns1:connectedTo ns2:67780 ; - ns1:hasConnectionPoint ns2:01718, - ns2:02583, - ns2:12960, - ns2:25265, - ns2:36341, - ns2:49391, - ns2:70362, - ns2:73303 ; - ns2:returnOutlet ns2:02583 . - -ns2:28911 a ns1:Connectable, - ns1:Junction, - ns2:CeilingSpace ; + ns2:cnx ns4:01718, + ns4:02583, + ns4:12960, + ns4:25265, + ns4:36341, + ns4:49391, + ns4:70362, + ns4:73303 ; + ns2:connected ns4:04698, + ns4:16454, + ns4:28911, + ns4:43841, + ns4:58953, + ns4:67780, + ns4:93162, + ns4:97668, + ns4:98159 ; + ns2:connectedFrom ns4:04698, + ns4:16454, + ns4:43841, + ns4:58953, + ns4:93162, + ns4:97668, + ns4:98159 ; + ns2:connectedThrough ns4:32081, + ns4:42054, + ns4:57984, + ns4:73994, + ns4:78087, + ns4:86102, + ns4:86986, + ns4:97276 ; + ns2:connectedTo ns4:67780 ; + ns2:hasConnectionPoint ns4:01718, + ns4:02583, + ns4:12960, + ns4:25265, + ns4:36341, + ns4:49391, + ns4:70362, + ns4:73303 ; + ns4:returnOutlet ns4:02583 . + +ns4:28911 a ns2:Connectable, + ns2:Junction, + ns4:CeilingSpace ; rdfs:label "Floor_2.RTU_8.Ceiling" ; - ns1:cnx ns2:11687, - ns2:23378, - ns2:25549, - ns2:27784, - ns2:40142, - ns2:52083, - ns2:97222, - ns2:99378 ; - ns1:connected ns2:05175, - ns2:12692, - ns2:26040, - ns2:26799, - ns2:63334, - ns2:67780, - ns2:80151, - ns2:93276, - ns2:96506 ; - ns1:connectedFrom ns2:12692, - ns2:26040, - ns2:26799, - ns2:63334, - ns2:80151, - ns2:93276, - ns2:96506 ; - ns1:connectedThrough ns2:25473, - ns2:34639, - ns2:38917, - ns2:39361, - ns2:55685, - ns2:78087, - ns2:85171, - ns2:86286 ; - ns1:connectedTo ns2:67780 ; - ns1:hasConnectionPoint ns2:11687, - ns2:23378, - ns2:25549, - ns2:27784, - ns2:40142, - ns2:52083, - ns2:97222, - ns2:99378 ; - ns2:returnOutlet ns2:27784 . - -ns2:05101 a ns1:Connectable, - ns1:Junction, - ns2:Plenum ; + ns2:cnx ns4:11687, + ns4:23378, + ns4:25549, + ns4:27784, + ns4:40142, + ns4:52083, + ns4:97222, + ns4:99378 ; + ns2:connected ns4:05175, + ns4:12692, + ns4:26040, + ns4:26799, + ns4:63334, + ns4:67780, + ns4:80151, + ns4:93276, + ns4:96506 ; + ns2:connectedFrom ns4:12692, + ns4:26040, + ns4:26799, + ns4:63334, + ns4:80151, + ns4:93276, + ns4:96506 ; + ns2:connectedThrough ns4:25473, + ns4:34639, + ns4:38917, + ns4:39361, + ns4:55685, + ns4:78087, + ns4:85171, + ns4:86286 ; + ns2:connectedTo ns4:67780 ; + ns2:hasConnectionPoint ns4:11687, + ns4:23378, + ns4:25549, + ns4:27784, + ns4:40142, + ns4:52083, + ns4:97222, + ns4:99378 ; + ns4:returnOutlet ns4:27784 . + +ns4:05101 a ns2:Connectable, + ns2:Junction, + ns4:Plenum ; rdfs:label "Floor_2.RTU_5.Plenum" ; - ns1:cnx ns2:02029, - ns2:04219, - ns2:20269, - ns2:36302, - ns2:45401, - ns2:60443, - ns2:60850, - ns2:69174 ; - ns1:connected ns2:05353, - ns2:41694, - ns2:46191, - ns2:50126, - ns2:58117, - ns2:67780, - ns2:69011, - ns2:77743, - ns2:88818 ; - ns1:connectedFrom ns2:50126, - ns2:67780 ; - ns1:connectedThrough ns2:07095, - ns2:45908, - ns2:62659, - ns2:65267, - ns2:70045, - ns2:70319, - ns2:95073, - ns2:95914 ; - ns1:connectedTo ns2:41694, - ns2:46191, - ns2:58117, - ns2:69011, - ns2:77743, - ns2:88818 ; - ns1:hasConnectionPoint ns2:02029, - ns2:04219, - ns2:20269, - ns2:36302, - ns2:45401, - ns2:60443, - ns2:60850, - ns2:69174 ; - ns1:hasProperty ns2:52674 ; - ns2:supplyInlet ns2:02029 . - -ns2:05353 a ns1:Connectable, - ns1:Junction, - ns2:Plenum ; + ns2:cnx ns4:02029, + ns4:04219, + ns4:20269, + ns4:36302, + ns4:45401, + ns4:60443, + ns4:60850, + ns4:69174 ; + ns2:connected ns4:05353, + ns4:41694, + ns4:46191, + ns4:50126, + ns4:58117, + ns4:67780, + ns4:69011, + ns4:77743, + ns4:88818 ; + ns2:connectedFrom ns4:50126, + ns4:67780 ; + ns2:connectedThrough ns4:07095, + ns4:45908, + ns4:62659, + ns4:65267, + ns4:70045, + ns4:70319, + ns4:95073, + ns4:95914 ; + ns2:connectedTo ns4:41694, + ns4:46191, + ns4:58117, + ns4:69011, + ns4:77743, + ns4:88818 ; + ns2:hasConnectionPoint ns4:02029, + ns4:04219, + ns4:20269, + ns4:36302, + ns4:45401, + ns4:60443, + ns4:60850, + ns4:69174 ; + ns2:hasProperty ns4:52674 ; + ns4:supplyInlet ns4:02029 . + +ns4:05353 a ns2:Connectable, + ns2:Junction, + ns4:Plenum ; rdfs:label "Floor_4.RTU_9.Plenum" ; - ns1:cnx ns2:02007, - ns2:02332, - ns2:18358, - ns2:27741, - ns2:40367, - ns2:67251, - ns2:72478, - ns2:96338 ; - ns1:connected ns2:02533, - ns2:05101, - ns2:06962, - ns2:10117, - ns2:15332, - ns2:52428, - ns2:67780, - ns2:86545, - ns2:97674 ; - ns1:connectedFrom ns2:10117, - ns2:67780 ; - ns1:connectedThrough ns2:29089, - ns2:48815, - ns2:62659, - ns2:70337, - ns2:70668, - ns2:83065, - ns2:87484, - ns2:90835 ; - ns1:connectedTo ns2:02533, - ns2:06962, - ns2:15332, - ns2:52428, - ns2:86545, - ns2:97674 ; - ns1:hasConnectionPoint ns2:02007, - ns2:02332, - ns2:18358, - ns2:27741, - ns2:40367, - ns2:67251, - ns2:72478, - ns2:96338 ; - ns1:hasProperty ns2:38133 ; - ns2:supplyInlet ns2:96338 . - -ns2:42308 a ns1:Connectable, - ns1:Junction, - ns2:Plenum ; + ns2:cnx ns4:02007, + ns4:02332, + ns4:18358, + ns4:27741, + ns4:40367, + ns4:67251, + ns4:72478, + ns4:96338 ; + ns2:connected ns4:02533, + ns4:05101, + ns4:06962, + ns4:10117, + ns4:15332, + ns4:52428, + ns4:67780, + ns4:86545, + ns4:97674 ; + ns2:connectedFrom ns4:10117, + ns4:67780 ; + ns2:connectedThrough ns4:29089, + ns4:48815, + ns4:62659, + ns4:70337, + ns4:70668, + ns4:83065, + ns4:87484, + ns4:90835 ; + ns2:connectedTo ns4:02533, + ns4:06962, + ns4:15332, + ns4:52428, + ns4:86545, + ns4:97674 ; + ns2:hasConnectionPoint ns4:02007, + ns4:02332, + ns4:18358, + ns4:27741, + ns4:40367, + ns4:67251, + ns4:72478, + ns4:96338 ; + ns2:hasProperty ns4:38133 ; + ns4:supplyInlet ns4:96338 . + +ns4:42308 a ns2:Connectable, + ns2:Junction, + ns4:Plenum ; rdfs:label "Floor_1.RTU_3.Plenum" ; - ns1:cnx ns2:06301, - ns2:07708, - ns2:09315, - ns2:10397, - ns2:25300, - ns2:34046, - ns2:47100, - ns2:54602, - ns2:75031 ; - ns1:connected ns2:05785, - ns2:06275, - ns2:18875, - ns2:25831, - ns2:34533, - ns2:37302, - ns2:51853, - ns2:85453, - ns2:88028, - ns2:92286 ; - ns1:connectedFrom ns2:05785 ; - ns1:connectedThrough ns2:07051, - ns2:25082, - ns2:29892, - ns2:42481, - ns2:42650, - ns2:51853, - ns2:52944, - ns2:66983, - ns2:81744 ; - ns1:connectedTo ns2:18875, - ns2:25831, - ns2:34533, - ns2:37302, - ns2:51853, - ns2:85453, - ns2:88028, - ns2:92286 ; - ns1:hasConnectionPoint ns2:06301, - ns2:07708, - ns2:09315, - ns2:10397, - ns2:25300, - ns2:34046, - ns2:47100, - ns2:54602, - ns2:75031 ; - ns1:hasProperty ns2:00687 ; - ns2:supplyInlet ns2:47100 . - -ns2:06275 a ns1:Connectable, - ns1:Junction, - ns2:Plenum ; + ns2:cnx ns4:06301, + ns4:07708, + ns4:09315, + ns4:10397, + ns4:25300, + ns4:34046, + ns4:47100, + ns4:54602, + ns4:75031 ; + ns2:connected ns4:05785, + ns4:06275, + ns4:18875, + ns4:25831, + ns4:34533, + ns4:37302, + ns4:51853, + ns4:85453, + ns4:88028, + ns4:92286 ; + ns2:connectedFrom ns4:05785 ; + ns2:connectedThrough ns4:07051, + ns4:25082, + ns4:29892, + ns4:42481, + ns4:42650, + ns4:51853, + ns4:52944, + ns4:66983, + ns4:81744 ; + ns2:connectedTo ns4:18875, + ns4:25831, + ns4:34533, + ns4:37302, + ns4:51853, + ns4:85453, + ns4:88028, + ns4:92286 ; + ns2:hasConnectionPoint ns4:06301, + ns4:07708, + ns4:09315, + ns4:10397, + ns4:25300, + ns4:34046, + ns4:47100, + ns4:54602, + ns4:75031 ; + ns2:hasProperty ns4:00687 ; + ns4:supplyInlet ns4:47100 . + +ns4:06275 a ns2:Connectable, + ns2:Junction, + ns4:Plenum ; rdfs:label "Floor_4.RTU_9.Plenum" ; - ns1:cnx ns2:07924, - ns2:11204, - ns2:12638, - ns2:21587, - ns2:30170, - ns2:33614, - ns2:59934, - ns2:64698, - ns2:78283 ; - ns1:connected ns2:05785, - ns2:09432, - ns2:15538, - ns2:25047, - ns2:27011, - ns2:29807, - ns2:42308, - ns2:49192, - ns2:77070, - ns2:83621 ; - ns1:connectedFrom ns2:05785 ; - ns1:connectedThrough ns2:25082, - ns2:47927, - ns2:48548, - ns2:58341, - ns2:59800, - ns2:64179, - ns2:64380, - ns2:66163, - ns2:69552 ; - ns1:connectedTo ns2:09432, - ns2:15538, - ns2:25047, - ns2:27011, - ns2:29807, - ns2:49192, - ns2:77070, - ns2:83621 ; - ns1:hasConnectionPoint ns2:07924, - ns2:11204, - ns2:12638, - ns2:21587, - ns2:30170, - ns2:33614, - ns2:59934, - ns2:64698, - ns2:78283 ; - ns1:hasProperty ns2:85308 ; - ns1:isConnectionPointOf ns2:07924 ; - ns2:supplyInlet ns2:21587 . - -ns2:69111 a ns1:Connectable, - ns1:Junction, - ns2:CeilingSpace ; + ns2:cnx ns4:07924, + ns4:11204, + ns4:12638, + ns4:21587, + ns4:30170, + ns4:33614, + ns4:59934, + ns4:64698, + ns4:78283 ; + ns2:connected ns4:05785, + ns4:09432, + ns4:15538, + ns4:25047, + ns4:27011, + ns4:29807, + ns4:42308, + ns4:49192, + ns4:77070, + ns4:83621 ; + ns2:connectedFrom ns4:05785 ; + ns2:connectedThrough ns4:25082, + ns4:47927, + ns4:48548, + ns4:58341, + ns4:59800, + ns4:64179, + ns4:64380, + ns4:66163, + ns4:69552 ; + ns2:connectedTo ns4:09432, + ns4:15538, + ns4:25047, + ns4:27011, + ns4:29807, + ns4:49192, + ns4:77070, + ns4:83621 ; + ns2:hasConnectionPoint ns4:07924, + ns4:11204, + ns4:12638, + ns4:21587, + ns4:30170, + ns4:33614, + ns4:59934, + ns4:64698, + ns4:78283 ; + ns2:hasProperty ns4:85308 ; + ns2:isConnectionPointOf ns4:07924 ; + ns4:supplyInlet ns4:21587 . + +ns4:69111 a ns2:Connectable, + ns2:Junction, + ns4:CeilingSpace ; rdfs:label "Floor_8.RTU_9.Ceiling" ; - ns1:cnx ns2:06476, - ns2:24918, - ns2:26283, - ns2:40402, - ns2:41699, - ns2:55180, - ns2:58482, - ns2:99160, - ns2:99249 ; - ns1:connected ns2:05785, - ns2:29599, - ns2:43967, - ns2:50418, - ns2:55654, - ns2:65580, - ns2:68886, - ns2:77887, - ns2:83890, - ns2:94119, - ns2:96232 ; - ns1:connectedFrom ns2:43967, - ns2:50418, - ns2:55654, - ns2:65580, - ns2:77887, - ns2:94119, - ns2:96232 ; - ns1:connectedThrough ns2:16070, - ns2:53655, - ns2:54382, - ns2:72322, - ns2:78502, - ns2:87912, - ns2:95463, - ns2:97787, - ns2:98060 ; - ns1:connectedTo ns2:05785, - ns2:68886, - ns2:83890 ; - ns1:hasConnectionPoint ns2:06476, - ns2:24918, - ns2:26283, - ns2:40402, - ns2:41699, - ns2:55180, - ns2:58482, - ns2:99160, - ns2:99249 ; - ns2:returnOutlet ns2:58482 . - -ns2:98159 a ns1:Connectable, - ns1:Junction, - ns2:CeilingSpace ; + ns2:cnx ns4:06476, + ns4:24918, + ns4:26283, + ns4:40402, + ns4:41699, + ns4:55180, + ns4:58482, + ns4:99160, + ns4:99249 ; + ns2:connected ns4:05785, + ns4:29599, + ns4:43967, + ns4:50418, + ns4:55654, + ns4:65580, + ns4:68886, + ns4:77887, + ns4:83890, + ns4:94119, + ns4:96232 ; + ns2:connectedFrom ns4:43967, + ns4:50418, + ns4:55654, + ns4:65580, + ns4:77887, + ns4:94119, + ns4:96232 ; + ns2:connectedThrough ns4:16070, + ns4:53655, + ns4:54382, + ns4:72322, + ns4:78502, + ns4:87912, + ns4:95463, + ns4:97787, + ns4:98060 ; + ns2:connectedTo ns4:05785, + ns4:68886, + ns4:83890 ; + ns2:hasConnectionPoint ns4:06476, + ns4:24918, + ns4:26283, + ns4:40402, + ns4:41699, + ns4:55180, + ns4:58482, + ns4:99160, + ns4:99249 ; + ns4:returnOutlet ns4:58482 . + +ns4:98159 a ns2:Connectable, + ns2:Junction, + ns4:CeilingSpace ; rdfs:label "Floor_6.RTU_4.Ceiling" ; - ns1:cnx ns2:01697, - ns2:09291, - ns2:32049, - ns2:33657, - ns2:36177, - ns2:50604, - ns2:54692, - ns2:66870, - ns2:69060, - ns2:96174 ; - ns1:connected ns2:01240, - ns2:05175, - ns2:13461, - ns2:18693, - ns2:29499, - ns2:54090, - ns2:58975, - ns2:60471, - ns2:69576, - ns2:83890, - ns2:93276 ; - ns1:connectedFrom ns2:01240, - ns2:13461, - ns2:18693, - ns2:29499, - ns2:54090, - ns2:58975, - ns2:60471, - ns2:83890 ; - ns1:connectedThrough ns2:05672, - ns2:08315, - ns2:16445, - ns2:18257, - ns2:31065, - ns2:53271, - ns2:59512, - ns2:71687, - ns2:71928, - ns2:86986 ; - ns1:connectedTo ns2:05175, - ns2:69576 ; - ns1:hasConnectionPoint ns2:01697, - ns2:09291, - ns2:32049, - ns2:33657, - ns2:36177, - ns2:50604, - ns2:54692, - ns2:66870, - ns2:69060, - ns2:96174 ; - ns1:hasMedium ; - ns2:returnOutlet ns2:54692 . - -ns2:46019 a ns1:Connectable, - ns1:Junction, - ns2:CeilingSpace ; + ns2:cnx ns4:01697, + ns4:09291, + ns4:32049, + ns4:33657, + ns4:36177, + ns4:50604, + ns4:54692, + ns4:66870, + ns4:69060, + ns4:96174 ; + ns2:connected ns4:01240, + ns4:05175, + ns4:13461, + ns4:18693, + ns4:29499, + ns4:54090, + ns4:58975, + ns4:60471, + ns4:69576, + ns4:83890, + ns4:93276 ; + ns2:connectedFrom ns4:01240, + ns4:13461, + ns4:18693, + ns4:29499, + ns4:54090, + ns4:58975, + ns4:60471, + ns4:83890 ; + ns2:connectedThrough ns4:05672, + ns4:08315, + ns4:16445, + ns4:18257, + ns4:31065, + ns4:53271, + ns4:59512, + ns4:71687, + ns4:71928, + ns4:86986 ; + ns2:connectedTo ns4:05175, + ns4:69576 ; + ns2:hasConnectionPoint ns4:01697, + ns4:09291, + ns4:32049, + ns4:33657, + ns4:36177, + ns4:50604, + ns4:54692, + ns4:66870, + ns4:69060, + ns4:96174 ; + ns2:hasMedium ; + ns4:returnOutlet ns4:54692 . + +ns4:46019 a ns2:Connectable, + ns2:Junction, + ns4:CeilingSpace ; rdfs:label "Floor_2.RTU_9.Ceiling" ; - ns1:cnx ns2:02161, - ns2:22291, - ns2:22726, - ns2:27066, - ns2:38633, - ns2:47134, - ns2:66490, - ns2:85270, - ns2:87516, - ns2:91896 ; - ns1:connected ns2:09362, - ns2:24053, - ns2:29599, - ns2:33721, - ns2:44036, - ns2:55672, - ns2:69090, - ns2:83890, - ns2:84040, - ns2:90402, - ns2:92645, - ns2:93276 ; - ns1:connectedFrom ns2:09362, - ns2:24053, - ns2:29599, - ns2:33721, - ns2:44036, - ns2:69090, - ns2:84040, - ns2:90402, - ns2:92645 ; - ns1:connectedThrough ns2:21786, - ns2:25887, - ns2:27754, - ns2:28044, - ns2:33232, - ns2:33562, - ns2:50484, - ns2:56473, - ns2:83759, - ns2:91912 ; - ns1:connectedTo ns2:55672, - ns2:93276 ; - ns1:hasConnectionPoint ns2:02161, - ns2:22291, - ns2:22726, - ns2:27066, - ns2:38633, - ns2:47134, - ns2:66490, - ns2:85270, - ns2:87516, - ns2:91896 ; - ns1:hasMedium ; - ns2:returnOutlet ns2:66490 . - -ns2:10117 a ns1:Connectable, - ns1:Junction, - ns2:Plenum ; + ns2:cnx ns4:02161, + ns4:22291, + ns4:22726, + ns4:27066, + ns4:38633, + ns4:47134, + ns4:66490, + ns4:85270, + ns4:87516, + ns4:91896 ; + ns2:connected ns4:09362, + ns4:24053, + ns4:29599, + ns4:33721, + ns4:44036, + ns4:55672, + ns4:69090, + ns4:83890, + ns4:84040, + ns4:90402, + ns4:92645, + ns4:93276 ; + ns2:connectedFrom ns4:09362, + ns4:24053, + ns4:29599, + ns4:33721, + ns4:44036, + ns4:69090, + ns4:84040, + ns4:90402, + ns4:92645 ; + ns2:connectedThrough ns4:21786, + ns4:25887, + ns4:27754, + ns4:28044, + ns4:33232, + ns4:33562, + ns4:50484, + ns4:56473, + ns4:83759, + ns4:91912 ; + ns2:connectedTo ns4:55672, + ns4:93276 ; + ns2:hasConnectionPoint ns4:02161, + ns4:22291, + ns4:22726, + ns4:27066, + ns4:38633, + ns4:47134, + ns4:66490, + ns4:85270, + ns4:87516, + ns4:91896 ; + ns2:hasMedium ; + ns4:returnOutlet ns4:66490 . + +ns4:10117 a ns2:Connectable, + ns2:Junction, + ns4:Plenum ; rdfs:label "Floor_8.RTU_4.Plenum" ; - ns1:cnx ns2:15549, - ns2:25319, - ns2:31834, - ns2:35561, - ns2:42397, - ns2:48230, - ns2:87645, - ns2:91202, - ns2:97098, - ns2:97948 ; - ns1:connected ns2:03707, - ns2:05353, - ns2:06073, - ns2:08346, - ns2:12924, - ns2:18693, - ns2:32876, - ns2:50126, - ns2:63086, - ns2:65125, - ns2:69576, - ns2:88028 ; - ns1:connectedFrom ns2:69576, - ns2:88028 ; - ns1:connectedThrough ns2:07088, - ns2:07591, - ns2:11294, - ns2:18936, - ns2:24336, - ns2:25291, - ns2:25566, - ns2:29115, - ns2:70337, - ns2:74580, - ns2:93128 ; - ns1:connectedTo ns2:03707, - ns2:05353, - ns2:06073, - ns2:08346, - ns2:12924, - ns2:18693, - ns2:32876, - ns2:63086, - ns2:65125 ; - ns1:hasConnectionPoint ns2:15549, - ns2:25319, - ns2:31834, - ns2:35561, - ns2:42397, - ns2:48230, - ns2:87645, - ns2:91202, - ns2:97098, - ns2:97948 ; - ns1:hasMedium ; - ns1:hasProperty ns2:05144 ; - ns2:supplyInlet ns2:25319 . - -ns2:50126 a ns1:Connectable, - ns1:Junction, - ns2:Plenum ; + ns2:cnx ns4:15549, + ns4:25319, + ns4:31834, + ns4:35561, + ns4:42397, + ns4:48230, + ns4:87645, + ns4:91202, + ns4:97098, + ns4:97948 ; + ns2:connected ns4:03707, + ns4:05353, + ns4:06073, + ns4:08346, + ns4:12924, + ns4:18693, + ns4:32876, + ns4:50126, + ns4:63086, + ns4:65125, + ns4:69576, + ns4:88028 ; + ns2:connectedFrom ns4:69576, + ns4:88028 ; + ns2:connectedThrough ns4:07088, + ns4:07591, + ns4:11294, + ns4:18936, + ns4:24336, + ns4:25291, + ns4:25566, + ns4:29115, + ns4:70337, + ns4:74580, + ns4:93128 ; + ns2:connectedTo ns4:03707, + ns4:05353, + ns4:06073, + ns4:08346, + ns4:12924, + ns4:18693, + ns4:32876, + ns4:63086, + ns4:65125 ; + ns2:hasConnectionPoint ns4:15549, + ns4:25319, + ns4:31834, + ns4:35561, + ns4:42397, + ns4:48230, + ns4:87645, + ns4:91202, + ns4:97098, + ns4:97948 ; + ns2:hasMedium ; + ns2:hasProperty ns4:05144 ; + ns4:supplyInlet ns4:25319 . + +ns4:50126 a ns2:Connectable, + ns2:Junction, + ns4:Plenum ; rdfs:label "Floor_2.RTU_9.Plenum" ; - ns1:cnx ns2:04646, - ns2:13281, - ns2:14171, - ns2:16633, - ns2:17687, - ns2:19216, - ns2:23712, - ns2:27032, - ns2:42074, - ns2:66606, - ns2:88792 ; - ns1:connected ns2:01399, - ns2:02944, - ns2:03724, - ns2:05101, - ns2:07970, - ns2:08701, - ns2:10117, - ns2:31269, - ns2:37324, - ns2:60688, - ns2:69576, - ns2:77070 ; - ns1:connectedFrom ns2:69576, - ns2:77070 ; - ns1:connectedThrough ns2:11294, - ns2:18158, - ns2:28042, - ns2:37912, - ns2:45908, - ns2:47474, - ns2:54936, - ns2:71209, - ns2:77006, - ns2:88441, - ns2:88574 ; - ns1:connectedTo ns2:01399, - ns2:02944, - ns2:03724, - ns2:05101, - ns2:07970, - ns2:08701, - ns2:31269, - ns2:37324, - ns2:60688 ; - ns1:hasConnectionPoint ns2:04646, - ns2:13281, - ns2:14171, - ns2:16633, - ns2:17687, - ns2:19216, - ns2:23712, - ns2:27032, - ns2:42074, - ns2:66606, - ns2:88792 ; - ns1:hasMedium ; - ns1:hasProperty ns2:81756 ; - ns2:supplyInlet ns2:04646 . - -ns2:93276 a ns1:Connectable, - ns1:Junction, - ns2:CeilingSpace ; + ns2:cnx ns4:04646, + ns4:13281, + ns4:14171, + ns4:16633, + ns4:17687, + ns4:19216, + ns4:23712, + ns4:27032, + ns4:42074, + ns4:66606, + ns4:88792 ; + ns2:connected ns4:01399, + ns4:02944, + ns4:03724, + ns4:05101, + ns4:07970, + ns4:08701, + ns4:10117, + ns4:31269, + ns4:37324, + ns4:60688, + ns4:69576, + ns4:77070 ; + ns2:connectedFrom ns4:69576, + ns4:77070 ; + ns2:connectedThrough ns4:11294, + ns4:18158, + ns4:28042, + ns4:37912, + ns4:45908, + ns4:47474, + ns4:54936, + ns4:71209, + ns4:77006, + ns4:88441, + ns4:88574 ; + ns2:connectedTo ns4:01399, + ns4:02944, + ns4:03724, + ns4:05101, + ns4:07970, + ns4:08701, + ns4:31269, + ns4:37324, + ns4:60688 ; + ns2:hasConnectionPoint ns4:04646, + ns4:13281, + ns4:14171, + ns4:16633, + ns4:17687, + ns4:19216, + ns4:23712, + ns4:27032, + ns4:42074, + ns4:66606, + ns4:88792 ; + ns2:hasMedium ; + ns2:hasProperty ns4:81756 ; + ns4:supplyInlet ns4:04646 . + +ns4:93276 a ns2:Connectable, + ns2:Junction, + ns4:CeilingSpace ; rdfs:label "Floor_6.RTU_2.Ceiling" ; - ns1:cnx ns2:10678, - ns2:17099, - ns2:18531, - ns2:23453, - ns2:31123, - ns2:33468, - ns2:51208, - ns2:57392, - ns2:72190, - ns2:76313, - ns2:90686 ; - ns1:connected ns2:28911, - ns2:37324, - ns2:46019, - ns2:47830, - ns2:55408, - ns2:67586, - ns2:68534, - ns2:69415, - ns2:69576, - ns2:70253, - ns2:78065, - ns2:98159, - ns2:98609 ; - ns1:connectedFrom ns2:37324, - ns2:46019, - ns2:47830, - ns2:55408, - ns2:67586, - ns2:68534, - ns2:69415, - ns2:70253, - ns2:78065, - ns2:98609 ; - ns1:connectedThrough ns2:08315, - ns2:09278, - ns2:16551, - ns2:16718, - ns2:19566, - ns2:28842, - ns2:39361, - ns2:46825, - ns2:80586, - ns2:83759, - ns2:83975 ; - ns1:connectedTo ns2:28911, - ns2:69576 ; - ns1:hasConnectionPoint ns2:10678, - ns2:17099, - ns2:18531, - ns2:23453, - ns2:31123, - ns2:33468, - ns2:51208, - ns2:57392, - ns2:72190, - ns2:76313, - ns2:90686 ; - ns1:hasMedium ; - ns2:returnOutlet ns2:18531 . - -ns2:77070 a ns1:Connectable, - ns1:Junction, - ns2:Plenum ; + ns2:cnx ns4:10678, + ns4:17099, + ns4:18531, + ns4:23453, + ns4:31123, + ns4:33468, + ns4:51208, + ns4:57392, + ns4:72190, + ns4:76313, + ns4:90686 ; + ns2:connected ns4:28911, + ns4:37324, + ns4:46019, + ns4:47830, + ns4:55408, + ns4:67586, + ns4:68534, + ns4:69415, + ns4:69576, + ns4:70253, + ns4:78065, + ns4:98159, + ns4:98609 ; + ns2:connectedFrom ns4:37324, + ns4:46019, + ns4:47830, + ns4:55408, + ns4:67586, + ns4:68534, + ns4:69415, + ns4:70253, + ns4:78065, + ns4:98609 ; + ns2:connectedThrough ns4:08315, + ns4:09278, + ns4:16551, + ns4:16718, + ns4:19566, + ns4:28842, + ns4:39361, + ns4:46825, + ns4:80586, + ns4:83759, + ns4:83975 ; + ns2:connectedTo ns4:28911, + ns4:69576 ; + ns2:hasConnectionPoint ns4:10678, + ns4:17099, + ns4:18531, + ns4:23453, + ns4:31123, + ns4:33468, + ns4:51208, + ns4:57392, + ns4:72190, + ns4:76313, + ns4:90686 ; + ns2:hasMedium ; + ns4:returnOutlet ns4:18531 . + +ns4:77070 a ns2:Connectable, + ns2:Junction, + ns4:Plenum ; rdfs:label "Floor_1.RTU_3.Plenum" ; - ns1:cnx ns2:01128, - ns2:25532, - ns2:30900, - ns2:41197, - ns2:48870, - ns2:49573, - ns2:59640, - ns2:84896, - ns2:91232, - ns2:92871 ; - ns1:connected ns2:02937, - ns2:06275, - ns2:12403, - ns2:23626, - ns2:29599, - ns2:35720, - ns2:43278, - ns2:44036, - ns2:50126, - ns2:55672, - ns2:61647, - ns2:66742, - ns2:77070, - ns2:88028 ; - ns1:connectedFrom ns2:06275, - ns2:23626, - ns2:29599, - ns2:55672, - ns2:77070 ; - ns1:connectedThrough ns2:12423, - ns2:15450, - ns2:30777, - ns2:34554, - ns2:34986, - ns2:36630, - ns2:37912, - ns2:59800, - ns2:60029, - ns2:93889, - ns2:97029 ; - ns1:connectedTo ns2:02937, - ns2:12403, - ns2:29599, - ns2:35720, - ns2:43278, - ns2:44036, - ns2:50126, - ns2:61647, - ns2:66742, - ns2:77070 ; - ns1:hasConnectionPoint ns2:01128, - ns2:25532, - ns2:30900, - ns2:41197, - ns2:48870, - ns2:49573, - ns2:59640, - ns2:84896, - ns2:91232, - ns2:92871 ; - ns1:hasMedium ; - ns1:hasProperty ns2:20292 ; - ns2:supplyInlet ns2:30900 . - -ns2:29599 a ns1:Connectable, - ns1:ConnectionPoint, - ns1:InletConnectionPoint, - ns1:Junction, - ns2:CeilingSpace, - ns4:AirConnectionPoint ; + ns2:cnx ns4:01128, + ns4:25532, + ns4:30900, + ns4:41197, + ns4:48870, + ns4:49573, + ns4:59640, + ns4:84896, + ns4:91232, + ns4:92871 ; + ns2:connected ns4:02937, + ns4:06275, + ns4:12403, + ns4:23626, + ns4:29599, + ns4:35720, + ns4:43278, + ns4:44036, + ns4:50126, + ns4:55672, + ns4:61647, + ns4:66742, + ns4:77070, + ns4:88028 ; + ns2:connectedFrom ns4:06275, + ns4:23626, + ns4:29599, + ns4:55672, + ns4:77070 ; + ns2:connectedThrough ns4:12423, + ns4:15450, + ns4:30777, + ns4:34554, + ns4:34986, + ns4:36630, + ns4:37912, + ns4:59800, + ns4:60029, + ns4:93889, + ns4:97029 ; + ns2:connectedTo ns4:02937, + ns4:12403, + ns4:29599, + ns4:35720, + ns4:43278, + ns4:44036, + ns4:50126, + ns4:61647, + ns4:66742, + ns4:77070 ; + ns2:hasConnectionPoint ns4:01128, + ns4:25532, + ns4:30900, + ns4:41197, + ns4:48870, + ns4:49573, + ns4:59640, + ns4:84896, + ns4:91232, + ns4:92871 ; + ns2:hasMedium ; + ns2:hasProperty ns4:20292 ; + ns4:supplyInlet ns4:30900 . + +ns4:29599 a ns2:Connectable, + ns2:ConnectionPoint, + ns2:InletConnectionPoint, + ns2:Junction, + ns4:CeilingSpace, + ns3:AirConnectionPoint ; rdfs:label "Floor_1.RTU_5.Ceiling", "oa_flow_station.airInlet" ; - ns1:cnx ns2:00024, - ns2:01128, - ns2:31827, - ns2:35307, - ns2:44139, - ns2:49432, - ns2:54539, - ns2:77251, - ns2:82486, - ns2:85482, - ns2:99961 ; - ns1:connected ns2:02937, - ns2:03365, - ns2:05785, - ns2:10814, - ns2:15016, - ns2:23626, - ns2:29599, - ns2:45421, - ns2:46019, - ns2:68886, - ns2:69111, - ns2:73947, - ns2:76100, - ns2:77070 ; - ns1:connectedFrom ns2:03365, - ns2:10814, - ns2:15016, - ns2:23626, - ns2:29599, - ns2:45421, - ns2:73947, - ns2:76100, - ns2:77070 ; - ns1:connectedThrough ns2:15450, - ns2:16934, - ns2:27754, - ns2:28817, - ns2:32816, - ns2:33279, - ns2:36630, - ns2:57735, - ns2:92535, - ns2:97787 ; - ns1:connectedTo ns2:02937, - ns2:05785, - ns2:29599, - ns2:46019, - ns2:68886, - ns2:77070 ; - ns1:connectsThrough ns2:44139 ; - ns1:hasConnectionPoint ns2:00024, - ns2:01128, - ns2:31827, - ns2:35307, - ns2:44139, - ns2:49432, - ns2:54539, - ns2:77251, - ns2:82486, - ns2:85482, - ns2:99961 ; - ns1:hasMedium ; - ns1:isConnectionPointOf ns2:77251 ; - ns2:returnOutlet ns2:49432 . - -ns2:83890 a ns1:Connectable, - ns1:Junction, - ns2:CeilingSpace ; + ns2:cnx ns4:00024, + ns4:01128, + ns4:31827, + ns4:35307, + ns4:44139, + ns4:49432, + ns4:54539, + ns4:77251, + ns4:82486, + ns4:85482, + ns4:99961 ; + ns2:connected ns4:02937, + ns4:03365, + ns4:05785, + ns4:10814, + ns4:15016, + ns4:23626, + ns4:29599, + ns4:45421, + ns4:46019, + ns4:68886, + ns4:69111, + ns4:73947, + ns4:76100, + ns4:77070 ; + ns2:connectedFrom ns4:03365, + ns4:10814, + ns4:15016, + ns4:23626, + ns4:29599, + ns4:45421, + ns4:73947, + ns4:76100, + ns4:77070 ; + ns2:connectedThrough ns4:15450, + ns4:16934, + ns4:27754, + ns4:28817, + ns4:32816, + ns4:33279, + ns4:36630, + ns4:57735, + ns4:92535, + ns4:97787 ; + ns2:connectedTo ns4:02937, + ns4:05785, + ns4:29599, + ns4:46019, + ns4:68886, + ns4:77070 ; + ns2:connectsThrough ns4:44139 ; + ns2:hasConnectionPoint ns4:00024, + ns4:01128, + ns4:31827, + ns4:35307, + ns4:44139, + ns4:49432, + ns4:54539, + ns4:77251, + ns4:82486, + ns4:85482, + ns4:99961 ; + ns2:hasMedium ; + ns2:isConnectionPointOf ns4:77251 ; + ns4:returnOutlet ns4:49432 . + +ns4:83890 a ns2:Connectable, + ns2:Junction, + ns4:CeilingSpace ; rdfs:label "Floor_8.RTU_4.Ceiling" ; - ns1:cnx ns2:08720, - ns2:15408, - ns2:17765, - ns2:19898, - ns2:34654, - ns2:40219, - ns2:49150, - ns2:66460, - ns2:72880, - ns2:76342, - ns2:81633, - ns2:86658, - ns2:92951 ; - ns1:connected ns2:03605, - ns2:05971, - ns2:13344, - ns2:46019, - ns2:46213, - ns2:55672, - ns2:69111, - ns2:69136, - ns2:70764, - ns2:79420, - ns2:83378, - ns2:87782, - ns2:91944, - ns2:98159 ; - ns1:connectedFrom ns2:03605, - ns2:05971, - ns2:13344, - ns2:46213, - ns2:69111, - ns2:69136, - ns2:70764, - ns2:79420, - ns2:83378, - ns2:87782, - ns2:91944 ; - ns1:connectedThrough ns2:00496, - ns2:11777, - ns2:16070, - ns2:16958, - ns2:25798, - ns2:37652, - ns2:57605, - ns2:65261, - ns2:69401, - ns2:71687, - ns2:77139, - ns2:91912, - ns2:99042 ; - ns1:connectedTo ns2:55672, - ns2:98159 ; - ns1:connectsThrough ns2:81633 ; - ns1:hasConnectionPoint ns2:08720, - ns2:15408, - ns2:17765, - ns2:19898, - ns2:34654, - ns2:40219, - ns2:49150, - ns2:66460, - ns2:72880, - ns2:76342, - ns2:81633, - ns2:86658, - ns2:92951 ; - ns1:hasMedium ; - ns2:returnOutlet ns2:81633 . - -ns2:88028 a ns1:Connectable, - ns1:Junction, - ns2:Plenum ; + ns2:cnx ns4:08720, + ns4:15408, + ns4:17765, + ns4:19898, + ns4:34654, + ns4:40219, + ns4:49150, + ns4:66460, + ns4:72880, + ns4:76342, + ns4:81633, + ns4:86658, + ns4:92951 ; + ns2:connected ns4:03605, + ns4:05971, + ns4:13344, + ns4:46019, + ns4:46213, + ns4:55672, + ns4:69111, + ns4:69136, + ns4:70764, + ns4:79420, + ns4:83378, + ns4:87782, + ns4:91944, + ns4:98159 ; + ns2:connectedFrom ns4:03605, + ns4:05971, + ns4:13344, + ns4:46213, + ns4:69111, + ns4:69136, + ns4:70764, + ns4:79420, + ns4:83378, + ns4:87782, + ns4:91944 ; + ns2:connectedThrough ns4:00496, + ns4:11777, + ns4:16070, + ns4:16958, + ns4:25798, + ns4:37652, + ns4:57605, + ns4:65261, + ns4:69401, + ns4:71687, + ns4:77139, + ns4:91912, + ns4:99042 ; + ns2:connectedTo ns4:55672, + ns4:98159 ; + ns2:connectsThrough ns4:81633 ; + ns2:hasConnectionPoint ns4:08720, + ns4:15408, + ns4:17765, + ns4:19898, + ns4:34654, + ns4:40219, + ns4:49150, + ns4:66460, + ns4:72880, + ns4:76342, + ns4:81633, + ns4:86658, + ns4:92951 ; + ns2:hasMedium ; + ns4:returnOutlet ns4:81633 . + +ns4:88028 a ns2:Connectable, + ns2:Junction, + ns4:Plenum ; rdfs:label "Floor_9.RTU_4.Plenum" ; - ns1:cnx ns2:02549, - ns2:08292, - ns2:15991, - ns2:18214, - ns2:35561, - ns2:36739, - ns2:39247, - ns2:54971, - ns2:57775, - ns2:67959, - ns2:72525, - ns2:88796, - ns2:97035 ; - ns1:connected ns2:02070, - ns2:03055, - ns2:03605, - ns2:04098, - ns2:07544, - ns2:10117, - ns2:12924, - ns2:15243, - ns2:32876, - ns2:42308, - ns2:47956, - ns2:51853, - ns2:55672, - ns2:66843, - ns2:77070, - ns2:95765 ; - ns1:connectedFrom ns2:42308, - ns2:55672 ; - ns1:connectedThrough ns2:07088, - ns2:09596, - ns2:20425, - ns2:24336, - ns2:24415, - ns2:25291, - ns2:30594, - ns2:30777, - ns2:43211, - ns2:51853, - ns2:61942, - ns2:89750, - ns2:97655, - ns2:99057 ; - ns1:connectedTo ns2:02070, - ns2:03055, - ns2:03605, - ns2:04098, - ns2:07544, - ns2:10117, - ns2:12924, - ns2:15243, - ns2:32876, - ns2:47956, - ns2:66843, - ns2:95765 ; - ns1:hasConnectionPoint ns2:02549, - ns2:08292, - ns2:15991, - ns2:18214, - ns2:35561, - ns2:36739, - ns2:39247, - ns2:54971, - ns2:57775, - ns2:67959, - ns2:72525, - ns2:88796, - ns2:97035 ; - ns1:hasMedium ; - ns1:hasProperty ns2:65911 ; - ns2:supplyInlet ns2:08292 . + ns2:cnx ns4:02549, + ns4:08292, + ns4:15991, + ns4:18214, + ns4:35561, + ns4:36739, + ns4:39247, + ns4:54971, + ns4:57775, + ns4:67959, + ns4:72525, + ns4:88796, + ns4:97035 ; + ns2:connected ns4:02070, + ns4:03055, + ns4:03605, + ns4:04098, + ns4:07544, + ns4:10117, + ns4:12924, + ns4:15243, + ns4:32876, + ns4:42308, + ns4:47956, + ns4:51853, + ns4:55672, + ns4:66843, + ns4:77070, + ns4:95765 ; + ns2:connectedFrom ns4:42308, + ns4:55672 ; + ns2:connectedThrough ns4:07088, + ns4:09596, + ns4:20425, + ns4:24336, + ns4:24415, + ns4:25291, + ns4:30594, + ns4:30777, + ns4:43211, + ns4:51853, + ns4:61942, + ns4:89750, + ns4:97655, + ns4:99057 ; + ns2:connectedTo ns4:02070, + ns4:03055, + ns4:03605, + ns4:04098, + ns4:07544, + ns4:10117, + ns4:12924, + ns4:15243, + ns4:32876, + ns4:47956, + ns4:66843, + ns4:95765 ; + ns2:hasConnectionPoint ns4:02549, + ns4:08292, + ns4:15991, + ns4:18214, + ns4:35561, + ns4:36739, + ns4:39247, + ns4:54971, + ns4:57775, + ns4:67959, + ns4:72525, + ns4:88796, + ns4:97035 ; + ns2:hasMedium ; + ns2:hasProperty ns4:65911 ; + ns4:supplyInlet ns4:08292 . diff --git a/design-patterns.jsonld b/design-patterns.jsonld index 5b69fc2f..f7d2b435 100644 --- a/design-patterns.jsonld +++ b/design-patterns.jsonld @@ -1,200 +1,209 @@ [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Relay", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor1", "@type": [ - "http://data.ashrae.org/standard223#Equipment" + "http://data.ashrae.org/standard223#Motor" ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#RelayInletCP" - }, + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#RelayOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor1InletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Relay" + "@value": "Motor1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LuminaireCommand", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#Luminaire", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireInletCP" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireOutletCP" + } + ], + "http://data.ashrae.org/standard223#commandedByProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireCommand" + } + ], + "http://data.ashrae.org/standard223#connectedTo": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpace" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire command" + "@value": "Luminaire" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#TestRoom", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Junction", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#Junction" ], - "http://data.ashrae.org/standard223#encloses": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpace" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionOutletCP1" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionOutletCP2" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionOutletCP3" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Test room" + "@value": "Junction" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#BreakerOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor1InletCP", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Circuit1" - } + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Breaker outlet CP" + "@value": "Motor1Inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#MotionProperty", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#OpticalPath", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motion property" + "@value": "Optical path" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchInlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DomainSpace", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#DomainSpace" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#ElectricWireFromBreaker" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchProduct" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DomainSpaceInletCP" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Smart switch inlet" + "@value": "Domain space" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#ElectricWireDS-Lum", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#BreakerOutletCP", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Circuit1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Electric wire DS-Lum" + "@value": "Breaker outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightActuatorOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#OccupantMotionSensor", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#OccupantMotionSensor" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireInternalWire" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpace" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#MotionProperty" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Light actuator outlet CP" + "@value": "Occupant motion sensor" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightActuatorInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#SmartSwitch", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightActuator" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" - } + "http://data.ashrae.org/standard223#Equipment" ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireInletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#SmartSwitchProperty" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LightActuatorInlet CP" + "@value": "Smart switch" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#OccupantMotionSensor", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor3InletCP", "@type": [ - "http://data.ashrae.org/standard223#OccupantMotionSensor" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#DomainSpace" + "@value": "Motor3Inlet CP" } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionOutletCP2", + "@type": [ + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#MotionProperty" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#CircuitBranch2" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Occupant motion sensor" + "@value": "Junction outlet CP2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#ElectricWireToLuminaire", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#ElectricWireToLuminaire", "@type": [ "http://data.ashrae.org/standard223#ElectricWire" ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#BreakerOutletCP" + } + ], "http://data.ashrae.org/standard223#hasMedium": [ { "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" @@ -228,324 +237,307 @@ ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireCommand", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionOutletCP3", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#CircuitBranch3" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire command" + "@value": "Junction outlet CP3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Breaker", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#PhysicalSpace_1", "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#BreakerOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#DomainSpace" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Breaker" + "@value": "Physical space 1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Function1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireLogic", "@type": [ "http://data.ashrae.org/standard223#Function" ], "http://data.ashrae.org/standard223#hasInput": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#MotionProperty" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#UserInputProperty" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#MotionProperty" } ], "http://data.ashrae.org/standard223#hasOutput": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LuminaireCommand" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireCommand" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Function block1\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t" + "@value": "Luminaire logic" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#UserSwitch", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#CircuitBranch2", "@type": [ - "http://data.ashrae.org/standard223#Equipment" + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#UserSwitchProperty" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor2InletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "User switch" + "@value": "Circuit branch2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#Breaker1", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#ElectricWireBothSwitches-Lum" - } + "http://data.ashrae.org/standard223#ElectricBreaker" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#ElectricWireToLuminaire" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LuminaireInlet CP" + "@value": "Breaker1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#Luminaire", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Function1", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#Function" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasInput": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireInletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#MotionProperty" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireOutletCP" - } - ], - "http://data.ashrae.org/standard223#commandedByProperty": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireCommand" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#UserInputProperty" } ], - "http://data.ashrae.org/standard223#connectedTo": [ + "http://data.ashrae.org/standard223#hasOutput": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpace" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LuminaireCommand" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire" + "@value": "Function block1\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#BreakerOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchOutlet", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Circuit1" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#WireToLightFixture" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Breaker outlet CP" + "@value": "Smart switch outlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#MotionProperty", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#UserInputSwitch", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + "http://data.ashrae.org/standard223#Equipment" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#UserInputProperty" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motion property" + "@value": "User input switch" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#DumbSwitchOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#Room", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#ElectricWireDS-Lum" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#RoomDomainSpace" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@value": "Room" + } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Breaker", + "@type": [ + "http://data.ashrae.org/standard223#ElectricBreaker" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#BreakerOutletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Dumb switchOutlet CP" + "@value": "Breaker" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LightActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#BreakerOutletConnectionPoint_1", "@type": [ - "http://data.ashrae.org/standard223#Actuator" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#actuates": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Relay" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#ElectricWireToLuminaire" } ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LuminaireCommand" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Light actuator" + "@value": "Breaker outlet connection point 1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#UserInputProperty", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#OpticalPath", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpace" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-Unknown" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "UserInputProperty" + "@value": "Optical path" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchProduct", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireOutletCP", "@type": [ - "http://data.ashrae.org/standard223#Equipment" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchOutlet" - } - ], - "http://data.ashrae.org/standard223#contains": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Controller" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LightActuator" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#OccupantMotionSensor" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Relay" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#UserInputSwitch" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#OpticalPath" } ], - "http://data.ashrae.org/standard223#hasConnectionPoint": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchInlet" - }, + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchOutlet" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Smart switch product" + "@value": "Luminaire outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#ElectricWireBothSwitches-Lum", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Breaker1", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#ElectricBreaker" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#connectedThrough": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#ElectricWireFromBreaker" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Electric wire BothSwitches-Lum" + "@value": "Breaker1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#SmartSwitch", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#MotionProperty", "@type": [ - "http://data.ashrae.org/standard223#Equipment" + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#SmartSwitchProperty" + "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Smart switch" + "@value": "Motion property" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#RelayInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LuminaireOutletCP", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#OpticalPath" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchInlet" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "RelayInlet CP" + "@value": "luminaire outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#ElectricWireToLuminaire", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LuminaireInletCP", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#BreakerOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#WireToLightFixture" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -555,7 +547,7 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "ElectricWireToLuminaire" + "@value": "Luminaire inlet CP" } ] }, @@ -579,119 +571,118 @@ ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#SmartSwitchProperty", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#DomainSpaceInletCP", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#OpticalPath" } ], - "http://data.ashrae.org/standard223#hasValue": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#OnOff-Unknown" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "SmartSwitchProperty" + "@value": "Domain space inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#RelayOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightActuatorOutletCP", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireInternalWire" } ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchOutlet" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Relay outlet CP" + "@value": "Light actuator outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor2InletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#OccupantMotionSensor", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OccupantMotionSensor" ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@value": "Motor2Inlet CP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#DomainSpace" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#OpticalPath", - "@type": [ - "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#MotionProperty" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Optical path" + "@value": "Occupant motion sensor" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionOutletCP3", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightActuatorInletCP", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#CircuitBranch3" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightActuator" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + } + ], + "http://data.ashrae.org/standard223#mapsTo": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireInletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Junction outlet CP3" + "@value": "LightActuatorInlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireLogic", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#BreakerOutletCP", "@type": [ - "http://data.ashrae.org/standard223#Function" - ], - "http://data.ashrae.org/standard223#hasInput": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#MotionProperty" - } + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#hasOutput": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireCommand" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Circuit1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire logic" + "@value": "Breaker outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LuminaireInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#DumbSwitchOutletCP", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#WireToLightFixture" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#ElectricWireDS-Lum" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -701,101 +692,94 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire inlet CP" + "@value": "Dumb switchOutlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulb", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor2", "@type": [ - "http://data.ashrae.org/standard223#Equipment" + "http://data.ashrae.org/standard223#Motor" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulbInletCP" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulbOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor2InletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Light bulb" + "@value": "Motor2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#DomainSpaceInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionInletCP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#OpticalPath" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Junction" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Domain space inlet CP" + "@value": "Junction inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightActuator", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireInletCP", "@type": [ - "http://data.ashrae.org/standard223#Actuator" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightActuatorOutletCP" - } - ], - "http://data.ashrae.org/standard223#commandedByProperty": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireCommand" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#ElectricWireBothSwitches-Lum" } ], - "http://data.ashrae.org/standard223#connectedTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulb" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Light actuator" + "@value": "LuminaireInlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Controller", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireOutletCP", "@type": [ - "http://data.ashrae.org/standard223#Controller" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#executes": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Function1" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Controller" + "@value": "Luminaire outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpaceInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor2InletCP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#OpticalPath" + "@value": "Motor2Inlet CP" } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LightPathToRoom", + "@type": [ + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#hasMedium": [ { @@ -804,186 +788,174 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Domain space inlet CP" + "@value": "Light path to room" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DomainSpaceInletCP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#ElectricWireToLuminaire" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#OpticalPath" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LuminaireInlet CP" + "@value": "Domain space inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#Luminaire", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#ElectricBreaker_1", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#ElectricBreaker" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LuminaireInletCP" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LuminaireOutletCP" - } - ], - "http://www.w3.org/2000/01/rdf-schema#label": [ - { - "@value": "Luminaire" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#BreakerOutletConnectionPoint_1" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor1InletCP", - "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motor1Inlet CP" + "@value": "Electric breaker 1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#ElectricWireFromBreaker", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#Luminaire", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#Luminaire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#BreakerOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireInletCP" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireOutletCP" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireCommand" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#connected": [ { - "@value": "ElectricWireFromBreaker" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DumbSwitch" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Breaker", - "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#connectedTo": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#BreakerOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DomainSpace" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Breaker" + "@value": "Luminaire" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#OccupantMotionSensor", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#MotionProperty", "@type": [ - "http://data.ashrae.org/standard223#OccupantMotionSensor" - ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DomainSpace" - } + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#MotionProperty" + "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Occupant motion sensor" + "@value": "Motion property" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Junction", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireInletCP", "@type": [ - "http://data.ashrae.org/standard223#Junction" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionOutletCP1" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#ElectricWireToLuminaire" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionOutletCP2" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#Luminaire" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionOutletCP3" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Junction" + "@value": "Luminaire inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#UserInputSwitch", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireInternalWire", "@type": [ - "http://data.ashrae.org/standard223#Equipment" + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#hasProperty": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#UserInputProperty" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulbInletCP" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "User input switch" + "@value": "Luminaire internal wire" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#BreakerOutletConnectionPoint_1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#RelayOutletCP", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#ElectricWireToLuminaire" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#mapsTo": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchOutlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Breaker outlet connection point 1" + "@value": "Relay outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LuminaireInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchInlet", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#ElectricWireDS-Lum" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#ElectricWireFromBreaker" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchProduct" } ], "http://data.ashrae.org/standard223#hasMedium": [ @@ -993,84 +965,76 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "LuminaireInlet CP" + "@value": "Smart switch inlet" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchOutlet", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireCommand", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#WireToLightFixture" - } + "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Smart switch outlet" + "@value": "Luminaire command" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#TestRoom", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpace" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire outlet CP" + "@value": "Test room" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#DumbSwitch", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor3", "@type": [ - "http://data.ashrae.org/standard223#Equipment" + "http://data.ashrae.org/standard223#Motor" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#DumbSwitchOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor3InletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Dumb switch" + "@value": "Motor3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#Function1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#RoomDomainSpace", "@type": [ - "http://data.ashrae.org/standard223#Function" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#hasInput": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#MotionProperty" - }, + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#UserSwitchProperty" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#DomainSpaceInletCP" } ], - "http://data.ashrae.org/standard223#hasOutput": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireCommand" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Function block1" + "@value": "Room domain space" } ] }, @@ -1096,562 +1060,600 @@ ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LightPathToRoom", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireCommand", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Light path to room" + "@value": "Luminaire command" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#WireToLightFixture", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#Luminaire", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LuminaireInletCP" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LuminaireOutletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Wire to light fixture" + "@value": "Luminaire" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor3", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Breaker", "@type": [ - "http://data.ashrae.org/standard223#Motor" + "http://data.ashrae.org/standard223#ElectricBreaker" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor3InletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#BreakerOutletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motor3" + "@value": "Breaker" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#UserInputProperty", "@type": [ - "http://data.ashrae.org/standard223#Motor" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor1InletCP" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + } + ], + "http://data.ashrae.org/standard223#hasValue": [ + { + "@id": "http://data.ashrae.org/standard223#OnOff-Unknown" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motor1" + "@value": "UserInputProperty" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionOutletCP1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LuminaireInletCP", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#CircuitBranch1" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#ElectricWireDS-Lum" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@value": "Junction outlet CP1" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#DomainSpace", - "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#DomainSpaceInletCP" + "@value": "LuminaireInlet CP" } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Controller", + "@type": [ + "http://data.ashrae.org/standard223#Controller" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#executes": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Function1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Domain space" + "@value": "Controller" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Circuit1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#OpticalPath", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#Connection" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor1InletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpaceInletCP" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor2InletCP" - }, + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireOutletCP" + } + ], + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor3InletCP" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Circuit1" + "@value": "Optical path" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireInternalWire", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#OpticalPath", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#Connection" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#connectsTo": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulbInletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#DomainSpace" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire internal wire" + "@value": "Optical path" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionOutletCP2", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulbOutletCP", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#CircuitBranch2" + "@id": "http://data.ashrae.org/standard223#Light-Visible" + } + ], + "http://data.ashrae.org/standard223#mapsTo": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireOutletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Junction outlet CP2" + "@value": "Light bulb outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#DomainSpaceInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#DomainSpace", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#DomainSpace" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LightPathToRoom" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#DomainSpaceInletCP" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Domain space inlet CP" + "@value": "Domain space" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#CircuitBranch2", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#DumbSwitch", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#Equipment" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor2InletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#DumbSwitchOutletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Circuit branch2" + "@value": "Dumb switch" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#BreakerOutletCP", "@type": [ "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#OpticalPath" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#Breaker1" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire outlet CP" + "@value": "Breaker outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor2InletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulbInletCP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], + "http://data.ashrae.org/standard223#hasMedium": [ + { + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + } + ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motor2Inlet CP" + "@value": "Light bulb inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor2InletCP", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#OpticalPath" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#Light-Visible" - } + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire outlet CP" + "@value": "Motor2Inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#OpticalPath", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchProduct", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#Equipment" ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#DomainSpace" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchOutlet" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#contains": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Controller" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LightActuator" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#OccupantMotionSensor" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Relay" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#UserInputSwitch" + } + ], + "http://data.ashrae.org/standard223#hasConnectionPoint": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchInlet" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchOutlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Optical path" + "@value": "Smart switch product" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#RoomDomainSpace", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DumbSwitchOutletCP", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#DomainSpaceInletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#ElectricWireBothSwitches-Lum" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Room domain space" + "@value": "Dumb switchOutlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#ElectricWireBothSwitches-Lum", "@type": [ - "http://data.ashrae.org/standard223#Motor" + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor1InletCP" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motor1" + "@value": "Electric wire BothSwitches-Lum" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#Room", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#Luminaire", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#Luminaire" ], - "http://data.ashrae.org/standard223#encloses": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#RoomDomainSpace" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireOutletCP" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://data.ashrae.org/standard223#commandedByProperty": [ { - "@value": "Room" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireCommand" } - ] - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#Breaker1", - "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" ], - "http://data.ashrae.org/standard223#connectedThrough": [ + "http://data.ashrae.org/standard223#contains": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#ElectricWireToLuminaire" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightActuator" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulb" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Breaker1" + "@value": "Luminaire" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#ElectricBreaker_1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#TestRoom", "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#BreakerOutletConnectionPoint_1" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpace" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Electric breaker 1" + "@value": "Test room" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireCommand", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#Function1", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" + "http://data.ashrae.org/standard223#Function" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#hasInput": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#SmartSwitchProperty" + } + ], + "http://data.ashrae.org/standard223#hasOutput": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireCommand" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire command" + "@value": "Function block1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpace", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" + "http://www.w3.org/2002/07/owl#Ontology" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://www.w3.org/2000/01/rdf-schema#comment": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpaceInletCP" + "@value": "pt1: A simple, manual switch with no electronic signals (Properties)\npt2: A Luminaire that is controlled by both a simple light switch and a motion sensor\npt3: A Luminaire controlled by a combination of a smart switch and a motion sensor\npt4: A Luminaire controlled by a combination of a smart switch and a motion sensor - expanded components\npt6: Updated Luminaire controlled by a combination of a smart switch and a motion sensor - expanded\n" } ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://www.w3.org/2002/07/owl#imports": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223/1.0/model/all" } ], - "http://www.w3.org/2000/01/rdf-schema#label": [ + "http://www.w3.org/2002/07/owl#versionInfo": [ { - "@value": "Domain space" + "@value": "Created with TopBraid Composer" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#OpticalPath", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#OccupantMotionSensor", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#OccupantMotionSensor" ], - "http://data.ashrae.org/standard223#connectsTo": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpace" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#observes": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#MotionProperty" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Optical path" + "@value": "Occupant motion sensor" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#OccupantMotionSensor", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#MotionProperty", "@type": [ - "http://data.ashrae.org/standard223#OccupantMotionSensor" - ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpace" - } + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#MotionProperty" + "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Occupant motion sensor" + "@value": "Motion property" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#UserSwitchProperty", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#CircuitBranch3", "@type": [ - "http://data.ashrae.org/standard223#EnumerableProperty" + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor3InletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "UserSwitchProperty" + "@value": "Circuit branch3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#OpticalPath", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#ElectricWireFromBreaker", "@type": [ - "http://data.ashrae.org/standard223#Connection" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpaceInletCP" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#BreakerOutletCP" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Optical path" + "@value": "ElectricWireFromBreaker" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor3", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionOutletCP1", "@type": [ - "http://data.ashrae.org/standard223#Motor" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor3InletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#CircuitBranch1" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motor3" + "@value": "Junction outlet CP1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LuminaireOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Relay", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Equipment" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasConnectionPoint": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LightPathToRoom" - } - ], - "http://data.ashrae.org/standard223#hasMedium": [ + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#RelayInletCP" + }, { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#RelayOutletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire outlet CP" + "@value": "Relay" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#TestRoom", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#OccupantMotionSensor", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#OccupantMotionSensor" ], - "http://data.ashrae.org/standard223#encloses": [ + "http://data.ashrae.org/standard223#hasObservationLocation": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpace" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DomainSpace" + } + ], + "http://data.ashrae.org/standard223#observes": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#MotionProperty" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Test room" + "@value": "Occupant motion sensor" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor3InletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Circuit1", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#ElectricWire" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor1InletCP" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor2InletCP" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor3InletCP" + } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motor3Inlet CP" + "@value": "Circuit1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#OccupantMotionSensor", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#SmartSwitchProperty", "@type": [ - "http://data.ashrae.org/standard223#OccupantMotionSensor" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#hasObservationLocation": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpace" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], - "http://data.ashrae.org/standard223#observes": [ + "http://data.ashrae.org/standard223#hasValue": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#MotionProperty" + "@id": "http://data.ashrae.org/standard223#OnOff-Unknown" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Occupant motion sensor" + "@value": "SmartSwitchProperty" } ] }, @@ -1667,310 +1669,313 @@ ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulbInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpaceInletCP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Light bulb inlet CP" + "@value": "Domain space inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor2", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#WireToLightFixture", "@type": [ - "http://data.ashrae.org/standard223#Motor" + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor2InletCP" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motor2" + "@value": "Wire to light fixture" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#CircuitBranch3", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#RelayInletCP", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor3InletCP" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + } + ], + "http://data.ashrae.org/standard223#mapsTo": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#SmartSwitchInlet" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Circuit branch3" + "@value": "RelayInlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor2", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Circuit1", "@type": [ - "http://data.ashrae.org/standard223#Motor" + "http://data.ashrae.org/standard223#ElectricWire" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor2InletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionInletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motor2" + "@value": "Circuit1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireOutletCP", "@type": [ - "http://www.w3.org/2002/07/owl#Ontology" + "http://data.ashrae.org/standard223#OutletConnectionPoint" ], - "http://www.w3.org/2000/01/rdf-schema#comment": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@value": "pt1: A simple, manual switch with no electronic signals (Properties)\npt2: A Luminaire that is controlled by both a simple light switch and a motion sensor\npt3: A Luminaire controlled by a combination of a smart switch and a motion sensor\npt4: A Luminaire controlled by a combination of a smart switch and a motion sensor - expanded components\npt6: Updated Luminaire controlled by a combination of a smart switch and a motion sensor - expanded\n" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#OpticalPath" } ], - "http://www.w3.org/2002/07/owl#imports": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/model/all" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], - "http://www.w3.org/2002/07/owl#versionInfo": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Created with TopBraid Composer" + "@value": "Luminaire outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LuminaireOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#TestRoom", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#OpticalPath" - } + "http://data.ashrae.org/standard223#PhysicalSpace" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#encloses": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DomainSpace" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "luminaire outlet CP" + "@value": "Test room" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Breaker1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpace", "@type": [ - "http://data.ashrae.org/standard223#ElectricBreaker" + "http://data.ashrae.org/standard223#DomainSpace" ], - "http://data.ashrae.org/standard223#connectedThrough": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#ElectricWireFromBreaker" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpaceInletCP" + } + ], + "http://data.ashrae.org/standard223#hasDomain": [ + { + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Breaker1" + "@value": "Domain space" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor1InletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#TestRoom", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#PhysicalSpace" + ], + "http://data.ashrae.org/standard223#encloses": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpace" + } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motor1Inlet CP" + "@value": "Test room" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireCommand", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpace", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" + "http://data.ashrae.org/standard223#DomainSpace" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpaceInletCP" + } ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#hasDomain": [ { - "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" + "@id": "http://data.ashrae.org/standard223#Domain-Lighting" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire command" + "@value": "Domain space" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#PhysicalSpace_1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#CircuitBranch1", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#encloses": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#DomainSpace" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor1InletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Physical space 1" + "@value": "Circuit branch1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DomainSpaceInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireInletCP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#OpticalPath" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#ElectricWireToLuminaire" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Light-Visible" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Domain space inlet CP" + "@value": "LuminaireInlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#TestRoom", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor2", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#Motor" ], - "http://data.ashrae.org/standard223#encloses": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpace" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor2InletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Test room" + "@value": "Motor2" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#BreakerOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#UserSwitch", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#Breaker1" - } + "http://data.ashrae.org/standard223#Equipment" ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasProperty": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#UserSwitchProperty" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Breaker outlet CP" + "@value": "User switch" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Circuit1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireCommand", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionInletCP" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Circuit1" + "@value": "Luminaire command" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#Function1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor1InletCP", "@type": [ - "http://data.ashrae.org/standard223#Function" - ], - "http://data.ashrae.org/standard223#hasInput": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#SmartSwitchProperty" - } - ], - "http://data.ashrae.org/standard223#hasOutput": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireCommand" - } + "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Function block1" + "@value": "Motor1Inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DumbSwitchOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#Function1", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" + "http://data.ashrae.org/standard223#Function" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasInput": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#ElectricWireBothSwitches-Lum" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#MotionProperty" + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#UserSwitchProperty" } ], - "http://data.ashrae.org/standard223#hasMedium": [ + "http://data.ashrae.org/standard223#hasOutput": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#LuminaireCommand" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Dumb switchOutlet CP" + "@value": "Function block1" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#TestRoom", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#MotionProperty", "@type": [ - "http://data.ashrae.org/standard223#PhysicalSpace" + "http://data.ashrae.org/standard223#EnumeratedObservableProperty" ], - "http://data.ashrae.org/standard223#encloses": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DomainSpace" + "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Test room" + "@value": "Motion property" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#Luminaire", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightActuator", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#Actuator" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightActuatorOutletCP" } ], "http://data.ashrae.org/standard223#commandedByProperty": [ @@ -1978,24 +1983,26 @@ "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireCommand" } ], - "http://data.ashrae.org/standard223#contains": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightActuator" - }, + "http://data.ashrae.org/standard223#connectedTo": [ { "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulb" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire" + "@value": "Light actuator" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpaceInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LuminaireOutletCP", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#OutletConnectionPoint" + ], + "http://data.ashrae.org/standard223#cnx": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LightPathToRoom" + } ], "http://data.ashrae.org/standard223#hasMedium": [ { @@ -2004,192 +2011,185 @@ ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Domain space inlet CP" + "@value": "Luminaire outlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DomainSpace", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#ElectricWireDS-Lum", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DomainSpaceInletCP" - } + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Domain space" + "@value": "Electric wire DS-Lum" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#JunctionInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#ElectricWireToLuminaire", "@type": [ - "http://data.ashrae.org/standard223#InletConnectionPoint" + "http://data.ashrae.org/standard223#ElectricWire" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Junction" + "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Junction inlet CP" + "@value": "ElectricWireToLuminaire" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#CircuitBranch1", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#UserSwitchProperty", "@type": [ - "http://data.ashrae.org/standard223#ElectricWire" + "http://data.ashrae.org/standard223#EnumerableProperty" ], - "http://data.ashrae.org/standard223#cnx": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor1InletCP" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Circuit branch1" + "@value": "UserSwitchProperty" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#MotionProperty", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LightActuator", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + "http://data.ashrae.org/standard223#Actuator" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#actuates": [ { - "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#Relay" + } + ], + "http://data.ashrae.org/standard223#commandedByProperty": [ + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LuminaireCommand" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motion property" + "@value": "Light actuator" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpace", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#LuminaireCommand", "@type": [ - "http://data.ashrae.org/standard223#DomainSpace" - ], - "http://data.ashrae.org/standard223#cnx": [ - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario3#DomainSpaceInletCP" - } + "http://data.ashrae.org/standard223#EnumeratedActuatableProperty" ], - "http://data.ashrae.org/standard223#hasDomain": [ + "http://data.ashrae.org/standard223#hasEnumerationKind": [ { - "@id": "http://data.ashrae.org/standard223#Domain-Lighting" + "@id": "http://data.ashrae.org/standard223#EnumerationKind-OnOff" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Domain space" + "@value": "Luminaire command" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulbOutletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor3", "@type": [ - "http://data.ashrae.org/standard223#OutletConnectionPoint" - ], - "http://data.ashrae.org/standard223#hasMedium": [ - { - "@id": "http://data.ashrae.org/standard223#Light-Visible" - } + "http://data.ashrae.org/standard223#Motor" ], - "http://data.ashrae.org/standard223#mapsTo": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario7#Motor3InletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Light bulb outlet CP" + "@value": "Motor3" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LuminaireInletCP", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#DomainSpaceInletCP", "@type": [ "http://data.ashrae.org/standard223#InletConnectionPoint" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#ElectricWireToLuminaire" - }, - { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#Luminaire" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario1#LightPathToRoom" } ], "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223#AC-120VLN-1Ph-60Hz" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire inlet CP" + "@value": "Domain space inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#Luminaire", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulb", "@type": [ - "http://data.ashrae.org/standard223#Luminaire" + "http://data.ashrae.org/standard223#Equipment" ], "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireInletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulbInletCP" }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireOutletCP" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#LightBulbOutletCP" } ], - "http://data.ashrae.org/standard223#commandedByProperty": [ + "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#LuminaireCommand" + "@value": "Light bulb" } + ] + }, + { + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#DomainSpaceInletCP", + "@type": [ + "http://data.ashrae.org/standard223#InletConnectionPoint" ], - "http://data.ashrae.org/standard223#connected": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DumbSwitch" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario4#OpticalPath" } ], - "http://data.ashrae.org/standard223#connectedTo": [ + "http://data.ashrae.org/standard223#hasMedium": [ { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario2#DomainSpace" + "@id": "http://data.ashrae.org/standard223#Light-Visible" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Luminaire" + "@value": "Domain space inlet CP" } ] }, { - "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario6#MotionProperty", + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor1", "@type": [ - "http://data.ashrae.org/standard223#EnumeratedObservableProperty" + "http://data.ashrae.org/standard223#Motor" ], - "http://data.ashrae.org/standard223#hasEnumerationKind": [ + "http://data.ashrae.org/standard223#cnx": [ { - "@id": "http://data.ashrae.org/standard223#Occupancy-Motion" + "@id": "http://data.ashrae.org/standard223/1.0/data/patterns-scenario8#Motor1InletCP" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { - "@value": "Motion property" + "@value": "Motor1" } ] } diff --git a/examples/NREL-example.html b/examples/NREL-example.html index c2757767..73c7242c 100644 --- a/examples/NREL-example.html +++ b/examples/NREL-example.html @@ -34,7 +34,7 @@ - + diff --git a/examples/bdg1-1.html b/examples/bdg1-1.html index 1e27f4f1..7c5404cc 100644 --- a/examples/bdg1-1.html +++ b/examples/bdg1-1.html @@ -34,7 +34,7 @@ - + @@ -397,6 +397,7 @@

Contents

  • Downloads
  • Queries
  • Model Components
  • +
  • Load and Validate Model
  • @@ -609,6 +610,62 @@

    Model Components +

    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.

    + +
    +
    +
    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:bdg1-1")
    +model.graph.parse("https://models.open223.info/compiled/bdg1-1.ttl")
    +
    +# validate the model against 223P ontology
    +ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False)
    +if not ctx.valid:
    +    print(ctx.report_string)
    +
    +
    +
    +
    +
    ---------------------------------------------------------------------------
    +ModuleNotFoundError                       Traceback (most recent call last)
    +Cell In[1], line 1
    +----> 1 from buildingmotif import BuildingMOTIF
    +      2 from buildingmotif.dataclasses import Library, Model
    +      3 import logging
    +
    +ModuleNotFoundError: No module named 'buildingmotif'
    +
    +
    +
    +
    +