From 8c653005f9477e2056cfd0c91f05295e80bfec72 Mon Sep 17 00:00:00 2001 From: Gabe Fierro Date: Mon, 28 Aug 2023 23:44:44 -0600 Subject: [PATCH 01/11] updating docs; adding update_manifest function --- buildingmotif/dataclasses/model.py | 33 ++++++++++++++++++-- docs/tutorials/model_validation.md | 49 ++++++++++++++++++++++++------ 2 files changed, 70 insertions(+), 12 deletions(-) diff --git a/buildingmotif/dataclasses/model.py b/buildingmotif/dataclasses/model.py index 22a43ed83..3e85d0f0c 100644 --- a/buildingmotif/dataclasses/model.py +++ b/buildingmotif/dataclasses/model.py @@ -1,11 +1,12 @@ from dataclasses import dataclass -from typing import TYPE_CHECKING, Dict, List, Optional +from typing import TYPE_CHECKING, Dict, List, Optional, Union import pyshacl import rdflib import rfc3987 from buildingmotif import get_building_motif +from buildingmotif.dataclasses.library import Library from buildingmotif.dataclasses.shape_collection import ShapeCollection from buildingmotif.dataclasses.validation import ValidationContext from buildingmotif.namespaces import A @@ -162,8 +163,8 @@ def validate( shape_collections = [self.get_manifest()] # aggregate shape graphs for sc in shape_collections: - # inline sh:node for interpretability - shapeg += sc.graph + shapeg += sc.resolve_imports().graph + # inline sh:node for interpretability shapeg = rewrite_shape_graph(shapeg) # TODO: do we want to preserve the materialized triples added to data_graph via reasoning? data_graph = copy_graph(self.graph) @@ -296,3 +297,29 @@ def get_manifest(self) -> ShapeCollection: :rtype: ShapeCollection """ return ShapeCollection.load(self._manifest_id) + + def update_manifest(self, manifest: Union[ShapeCollection, Library]): + """Updates the manifest for this model by replacing + it with the provided ShapeCollection. If a library is + provided instead, fetch the shape collection for that + library with Library.get_shape_collection() + + :param manifest: the ShapeCollection containing all the shapes against which to validate this model + :type manifest: Union[ShapeCollection, Library] + """ + if isinstance(manifest, Library): + sc = manifest.get_shape_collection() + if sc.id is None: + # manifest is a ShapeCollection + raise Exception( + "Provided manifest does not have an 'id'. Make sure it is part of a Library!" + ) + self._manifest_id = sc.id + elif manifest.id is None: + # manifest is a ShapeCollection + raise Exception( + "Provided manifest does not have an 'id'. Make sure it is part of a Library!" + ) + else: + # manifest is a ShapeCollection + self._manifest_id = manifest.id diff --git a/docs/tutorials/model_validation.md b/docs/tutorials/model_validation.md index 680696be4..f444df4c3 100644 --- a/docs/tutorials/model_validation.md +++ b/docs/tutorials/model_validation.md @@ -40,7 +40,8 @@ Validating a model is the process of ensuring that the model is both *correct* ( ## Setup -We create an in-memory BuildingMOTIF instance, load the model from the previous tutorial, and load some libraries to create the manifest with. The `constraints.ttl` library we load is a special library with some custom constraints defined that are helpful for writing manifests. +We create an in-memory BuildingMOTIF instance, load the model from the previous tutorial, and load some libraries to create the manifest with. +The `constraints.ttl` library we load is a special library with some custom constraints defined that are helpful for writing manifests. ```{margin} ```{warning} @@ -75,7 +76,7 @@ g36 = Library.load(directory="../../libraries/ashrae/guideline36") ## Model Validation - Ontology -BuildingMOTIF organizes Shapes into `Shape Collections`. The shape collection associated with a library (if there is one) can be retrieved with the `get_shape_collection` property. Below, we use Brick's shape collection to ensure that the model is using Brick correctly: +BuildingMOTIF organizes Shapes into `Shape Collections`. The shape collection associated with a library (if there is one) can be retrieved with the `get_shape_collection` method. Below, we use Brick's shape collection to ensure that the model is using Brick correctly: ```{code-cell} # pass a list of shape collections to .validate() @@ -94,7 +95,8 @@ Success! The model is valid according to the Brick ontology. A `manifest` is an RDF graph with a set of `Shapes` inside, which place constraints and requirements on what metadata must be contained within a metadata model. ``` -For now, we will write a `manifest` file directly; in the future, BuildingMOTIF will contain features that make manifests easier to write. Here is the header of a manifest file. This should also suffice for most of your own manifests. +For now, we will write a `manifest` file directly; in the future, BuildingMOTIF will contain features that make manifests easier to write. +Here is the header of a manifest file. This should also suffice for most of your own manifests. ```ttl @prefix brick: . @@ -103,7 +105,10 @@ For now, we will write a `manifest` file directly; in the future, BuildingMOTIF @prefix constraint: . @prefix : . -: a owl:Ontology . +: a owl:Ontology ; + owl:imports , + , + . ``` We will now add a constraint stating that the model should contain exactly 1 Brick AHU. @@ -119,7 +124,7 @@ We will now add a constraint stating that the model should contain exactly 1 Bri This basic structure can be changed to require different numbers of different Brick classes. Just don't forget to change the name of the shape (`:ahu-count`, above) when you copy-paste! ```{attention} -As an exercise, try writing shapes that require the model to have the following. +As an exercise, try writing shapes that require the model to contain the following. - (1) Brick Supply_Fan - (1) Brick Damper - (1) Brick Cooling_Coil @@ -166,6 +171,8 @@ As an exercise, try writing shapes that require the model to have the following. Put all of the above in a new file called `tutorial2_manifest.ttl`. We'll also add a shape called `sz-vav-ahu-control-sequences`, which is a use case shape to validate the model against in the next section. +The following block of code puts all of the above in the `tutorial2_manifest.ttl` file for you: + ```{code-cell} with open("tutorial2_manifest.ttl", "w") as f: f.write(""" @@ -175,7 +182,10 @@ with open("tutorial2_manifest.ttl", "w") as f: @prefix constraint: . @prefix : . -: a owl:Ontology . +: a owl:Ontology ; + owl:imports , + , + . :ahu-count a sh:NodeShape ; sh:message "need 1 AHU" ; @@ -214,13 +224,34 @@ with open("tutorial2_manifest.ttl", "w") as f: """) ``` -### Validating the Model +### Adding the Manifest to the Model + +We associate the manifest with our model so that BuildingMOTIF knows that we want validate the model against these specific shapes. +We can always update this manifest, or validate our model against other shapes; however, validating a model against its manifest is +the most common use case, so this is treated specially in BuildingMOTIF. -We can now ask BuildingMOTIF to validate the model against the manifest and ask BuildingMOTIF for some details if it fails. We also have to be sure to include the supporting shape collections containing the definitions used in the manifest. ```{code-cell} # load manifest into BuildingMOTIF as its own library! manifest = Library.load(ontology_graph="tutorial2_manifest.ttl") +# set it as the manifest for the model +model.update_manifest(manifest) +``` + +### Validating the Model + +We can now ask BuildingMOTIF to validate the model against the manifest and ask BuildingMOTIF for some details if it fails. We also have to be sure to include the supporting shape collections containing the definitions used in the manifest. + +```{code-cell} +validation_result = model.validate() +print(f"Model is valid? {validation_result.valid}") + +# print reasons +for diff in validation_result.diffset: + print(f" - {diff.reason()}") +``` + +```{code-cell} # gather shape collections into a list for ease of use shape_collections = [ @@ -231,7 +262,7 @@ shape_collections = [ ] # pass a list of shape collections to .validate() -validation_result = model.validate(shape_collections) +validation_result = model.validate() print(f"Model is valid? {validation_result.valid}") # print reasons From b147fd6557a43c777cd8e27b645661de7b4ac622 Mon Sep 17 00:00:00 2001 From: Gabe Fierro Date: Tue, 29 Aug 2023 13:45:44 -0600 Subject: [PATCH 02/11] add some helpful flags for importing dependencies in shape collections --- buildingmotif/dataclasses/model.py | 19 ++++-- buildingmotif/dataclasses/shape_collection.py | 61 +++++++++++++++++-- 2 files changed, 70 insertions(+), 10 deletions(-) diff --git a/buildingmotif/dataclasses/model.py b/buildingmotif/dataclasses/model.py index 3e85d0f0c..bbf0b220d 100644 --- a/buildingmotif/dataclasses/model.py +++ b/buildingmotif/dataclasses/model.py @@ -6,7 +6,6 @@ import rfc3987 from buildingmotif import get_building_motif -from buildingmotif.dataclasses.library import Library from buildingmotif.dataclasses.shape_collection import ShapeCollection from buildingmotif.dataclasses.validation import ValidationContext from buildingmotif.namespaces import A @@ -14,6 +13,7 @@ if TYPE_CHECKING: from buildingmotif import BuildingMOTIF + from buildingmotif.dataclasses import Library def _validate_uri(uri: str): @@ -138,7 +138,9 @@ def add_graph(self, graph: rdflib.Graph) -> None: self.graph += graph def validate( - self, shape_collections: Optional[List[ShapeCollection]] = None + self, + shape_collections: Optional[List[ShapeCollection]] = None, + error_on_missing_imports: bool = True, ) -> "ValidationContext": """Validates this model against the given list of ShapeCollections. If no list is provided, the model will be validated against the model's "manifest". @@ -151,6 +153,10 @@ def validate( graph should be validated. If an empty list or None is provided, the model will be validated against the model's manifest. :type shape_collections: List[ShapeCollection] + :param error_on_missing_imports: if True, raises an error if any of the dependency + ontologies are missing (i.e. they need to be loaded into BuildingMOTIF), defaults + to True + :type error_on_missing_imports: bool, optional :return: An object containing useful properties/methods to deal with the validation results :rtype: ValidationContext @@ -163,7 +169,9 @@ def validate( shape_collections = [self.get_manifest()] # aggregate shape graphs for sc in shape_collections: - shapeg += sc.resolve_imports().graph + shapeg += sc.resolve_imports( + error_on_missing_imports=error_on_missing_imports + ).graph # inline sh:node for interpretability shapeg = rewrite_shape_graph(shapeg) # TODO: do we want to preserve the materialized triples added to data_graph via reasoning? @@ -298,7 +306,7 @@ def get_manifest(self) -> ShapeCollection: """ return ShapeCollection.load(self._manifest_id) - def update_manifest(self, manifest: Union[ShapeCollection, Library]): + def update_manifest(self, manifest: Union[ShapeCollection, "Library"]): """Updates the manifest for this model by replacing it with the provided ShapeCollection. If a library is provided instead, fetch the shape collection for that @@ -307,6 +315,9 @@ def update_manifest(self, manifest: Union[ShapeCollection, Library]): :param manifest: the ShapeCollection containing all the shapes against which to validate this model :type manifest: Union[ShapeCollection, Library] """ + # import Library here to avoid circular import + from buildingmotif.dataclasses.library import Library + if isinstance(manifest, Library): sc = manifest.get_shape_collection() if sc.id is None: diff --git a/buildingmotif/dataclasses/shape_collection.py b/buildingmotif/dataclasses/shape_collection.py index b5d4a5f01..c3eaf1d9c 100644 --- a/buildingmotif/dataclasses/shape_collection.py +++ b/buildingmotif/dataclasses/shape_collection.py @@ -65,6 +65,15 @@ def id(self) -> Optional[int]: def id(self, new_id): raise AttributeError("Cannot modify db id") + @property + def graph_name(self) -> Optional[URIRef]: + """ + Returns the name of the graph (subject of "a owl:Ontology") + if one exists + """ + # will be None if this is not found + return self.graph.value(predicate=RDF.type, object=OWL.Ontology) # type: ignore + def add_triples(self, *triples: Triple) -> None: """Add the given triples to the graph. @@ -97,7 +106,9 @@ def _cbd(self, shape_name, self_contained=True): cbd = new_cbd return cbd - def resolve_imports(self, recursive_limit: int = -1) -> "ShapeCollection": + def resolve_imports( + self, recursive_limit: int = -1, error_on_missing_imports: bool = True + ) -> "ShapeCollection": """Resolves `owl:imports` to as many levels as requested. By default, all `owl:imports` are recursively resolved. This limit can @@ -107,11 +118,20 @@ def resolve_imports(self, recursive_limit: int = -1) -> "ShapeCollection": :param recursive_limit: how many levels of `owl:imports` to resolve, defaults to -1 (all) :type recursive_limit: int, optional + :param error_on_missing_imports: if True, raises an error if any of the dependency + ontologies are missing (i.e. they need to be loaded into BuildingMOTIF), defaults + to True + :type error_on_missing_imports: bool, optional :return: a new ShapeCollection with the types resolved :rtype: ShapeCollection """ resolved_namespaces: Set[rdflib.URIRef] = set() - resolved = _resolve_imports(self.graph, recursive_limit, resolved_namespaces) + resolved = _resolve_imports( + self.graph, + recursive_limit, + resolved_namespaces, + error_on_missing_imports=error_on_missing_imports, + ) new_sc = ShapeCollection.create() new_sc.add_graph(resolved) return new_sc @@ -223,10 +243,15 @@ def get_shapes_about_class( def _resolve_imports( - graph: rdflib.Graph, recursive_limit: int, seen: Set[rdflib.URIRef] + graph: rdflib.Graph, + recursive_limit: int, + seen: Set[rdflib.URIRef], + error_on_missing_imports: bool = True, ) -> rdflib.Graph: from buildingmotif.dataclasses.library import Library + bm = get_building_motif() + logger = logging.getLogger(__name__) if recursive_limit == 0: @@ -240,13 +265,37 @@ def _resolve_imports( # go find the graph definition from our libraries try: lib = Library.load(name=ontology) + sc_to_add = lib.get_shape_collection() except Exception as e: logger.error( - "Could not resolve import of library/shape collection: %s", ontology + "Could not resolve import of %s from Libraries (%s). Trying shape collections", + ontology, + e, ) - raise e + sc_to_add = None + + # search through our shape collections for a graph with the provided name + if sc_to_add is None: + for shape_collection in bm.table_connection.get_all_db_shape_collections(): + sc = ShapeCollection.load(shape_collection.id) + if sc.graph_name == ontology: + sc_to_add = sc + break + logger.error( + "Could not resolve import of %s from Libraries. Trying shape collections", + ontology, + ) + + if sc_to_add is None: + if error_on_missing_imports: + raise Exception("Could not resolve import of %s", ontology) + continue + dependency = _resolve_imports( - lib.get_shape_collection().graph, recursive_limit - 1, seen + sc_to_add.graph, + recursive_limit - 1, + seen, + error_on_missing_imports=error_on_missing_imports, ) new_g += dependency print(f"graph size now {len(new_g)}") From a88b8d2aa645b1c882f702d7b19b6e050c2df904 Mon Sep 17 00:00:00 2001 From: Gabe Fierro Date: Tue, 29 Aug 2023 13:46:35 -0600 Subject: [PATCH 03/11] update tests to cover new validation behavior --- tests/unit/dataclasses/test_model.py | 92 +- tests/unit/fixtures/Brick.ttl | 44261 ++----------------------- 2 files changed, 2177 insertions(+), 42176 deletions(-) diff --git a/tests/unit/dataclasses/test_model.py b/tests/unit/dataclasses/test_model.py index ac1509aa4..b9ed457b1 100644 --- a/tests/unit/dataclasses/test_model.py +++ b/tests/unit/dataclasses/test_model.py @@ -44,7 +44,97 @@ def test_load_model(clean_building_motif): assert isomorphic(result.graph, m.graph) -def test_validate_model(clean_building_motif): +def test_update_model_manifest(clean_building_motif): + m = Model.create(name="https://example.com", description="a very good model") + with pytest.raises(Exception): + # should be empty _manifest_id, so no ShapeCollection can be found + m.get_manifest() + lib = Library.load(ontology_graph="tests/unit/fixtures/shapes/shape1.ttl") + assert lib is not None + # update with library + m.update_manifest(lib) + assert m.get_manifest().id == lib.get_shape_collection().id + # update with ShapeCollection + m.update_manifest(lib.get_shape_collection()) + assert m.get_manifest().id == lib.get_shape_collection().id + + +def test_validate_model_manifest(clean_building_motif): + m = Model.create(name="https://example.com", description="a very good model") + m.graph.add((URIRef("https://example.com/vav1"), A, BRICK.VAV)) + + lib = Library.load(ontology_graph="tests/unit/fixtures/shapes/shape1.ttl") + assert lib is not None + + m.update_manifest(lib) + + # validate against manifest -- should fail + result = m.validate() + assert not result.valid + + # add triples to graph to validate + m.graph.add( + ( + URIRef("https://example.com/vav1"), + BRICK.hasPoint, + URIRef("https://example.com/flow"), + ) + ) + m.graph.add((URIRef("https://example.com/flow"), A, BRICK.Air_Flow_Sensor)) + m.graph.add( + ( + URIRef("https://example.com/vav1"), + BRICK.hasPoint, + URIRef("https://example.com/temp"), + ) + ) + m.graph.add((URIRef("https://example.com/temp"), A, BRICK.Temperature_Sensor)) + + # validate against manifest -- should pass + result = m.validate() + assert result.valid + + +def test_validate_model_manifest_with_imports(clean_building_motif): + m = Model.create(name="https://example.com", description="a very good model") + m.graph.add((URIRef("https://example.com/vav1"), A, BRICK.VAV)) + + # import brick + Library.load(ontology_graph="tests/unit/fixtures/Brick.ttl") + + # shape2.ttl attaches an import statement to the manifest + lib = Library.load(ontology_graph="tests/unit/fixtures/shapes/shape2.ttl") + assert lib is not None + + m.update_manifest(lib) + + # add triples to graph to validate + # using subclasses here -- buildingmotif must resolve the library import in order for these to validate correctly + m.graph.add( + ( + URIRef("https://example.com/vav1"), + BRICK.hasPoint, + URIRef("https://example.com/flow"), + ) + ) + m.graph.add((URIRef("https://example.com/flow"), A, BRICK.Supply_Air_Flow_Sensor)) + m.graph.add( + ( + URIRef("https://example.com/vav1"), + BRICK.hasPoint, + URIRef("https://example.com/temp"), + ) + ) + m.graph.add( + (URIRef("https://example.com/temp"), A, BRICK.Supply_Air_Temperature_Sensor) + ) + + # validate against manifest -- should pass now + result = m.validate(error_on_missing_imports=False) + assert result.valid, result.report_string + + +def test_validate_model_explicit_shapes(clean_building_motif): # load library lib = Library.load(ontology_graph="tests/unit/fixtures/shapes/shape1.ttl") assert lib is not None diff --git a/tests/unit/fixtures/Brick.ttl b/tests/unit/fixtures/Brick.ttl index d7db7bdb7..9a5983337 100644 --- a/tests/unit/fixtures/Brick.ttl +++ b/tests/unit/fixtures/Brick.ttl @@ -1,4295 +1,532 @@ -@prefix bacnet: . @prefix brick: . -@prefix bsh: . -@prefix dcterms1: . @prefix owl: . -@prefix qudt: . -@prefix qudtqk: . -@prefix rdf: . @prefix rdfs: . -@prefix ref: . -@prefix s223: . -@prefix sdo: . @prefix sh: . @prefix skos: . -@prefix sosa: . -@prefix tag: . -@prefix unit: . -@prefix vcard: . -@prefix xsd: . - -skos:narrower owl:inverseOf skos:broader . - -brick:Ablutions_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Ablutions Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A room for performing cleansing rituals before prayer"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Ablutions ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Ablutions, - tag:Location, - tag:Room, - tag:Space . - -brick:Absolute_Humidity a brick:Quantity ; - rdfs:label "Absolute Humidity" ; - qudt:applicableUnit unit:GRAIN-PER-GAL, - unit:KiloGM-PER-M3, - unit:LB-PER-FT3, - unit:LB-PER-GAL, - unit:LB-PER-GAL_UK, - unit:LB-PER-GAL_US, - unit:LB-PER-IN3, - unit:LB-PER-M3, - unit:LB-PER-YD3, - unit:MilliGM-PER-DeciL, - unit:OZ_PER-GAL, - unit:OZ_PER-IN3, - unit:PlanckDensity, - unit:SLUG-PER-FT3, - unit:TON_LONG-PER-YD3, - unit:TON_SHORT-PER-YD3, - unit:TON_UK-PER-YD3, - unit:TON_US-PER-YD3 ; - skos:broader brick:Humidity ; - brick:hasQUDTReference qudtqk:AbsoluteHumidity . - -brick:Absorption_Chiller a owl:Class, - sh:NodeShape ; - rdfs:label "Absorption Chiller" ; - rdfs:subClassOf brick:Chiller ; - skos:definition "A chiller that utilizes a thermal or/and chemical process to produce the refrigeration effect necessary to provide chilled water. There is no mechanical compression of the refrigerant taking place within the machine, as occurs within more traditional vapor compression type chillers."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Absorption ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Chiller ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Absorption, - tag:Chiller, - tag:Equipment . - -brick:Acceleration_Time a brick:Quantity ; - rdfs:label "Acceleration Time" ; - skos:broader brick:Time . + + a owl:Ontology . brick:Acceleration_Time_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Acceleration Time Setpoint" ; - rdfs:subClassOf brick:Time_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Acceleration ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Acceleration, - tag:Point, - tag:Setpoint, - tag:Time . - -brick:Access_Reader a owl:Class, - sh:NodeShape ; - rdfs:label "Access Reader" ; - rdfs:subClassOf brick:Access_Control_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Access ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Control ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reader ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Security ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Access, - tag:Control, - tag:Equipment, - tag:Reader, - tag:Security . - -brick:Active_Chilled_Beam a owl:Class, - sh:NodeShape ; - rdfs:label "Active Chilled Beam" ; - rdfs:subClassOf brick:Chilled_Beam ; - skos:definition "A Chilled Beam with an integral primary air connection that induces air flow through the device."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Active ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Beam ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Active, - tag:Beam, - tag:Chilled, - tag:Equipment . - -brick:Active_Energy a brick:Quantity ; - rdfs:label "Active_Energy" ; - qudt:applicableUnit unit:KiloW-HR, - unit:MegaW-HR, - unit:W-HR ; - rdfs:isDefinedBy ; - skos:broader brick:Electric_Energy ; - skos:definition "The integral of the active power over a time interval" . + rdfs:subClassOf brick:Time_Setpoint . brick:Active_Power_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Active Power Sensor" ; - rdfs:seeAlso ; rdfs:subClassOf brick:Electric_Power_Sensor ; - skos:definition "Measures the portion of power that, averaged over a complete cycle of the AC waveform, results in net transfer of energy in one direction"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electric ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Real ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electric, - tag:Point, - tag:Power, - tag:Real, - tag:Sensor ; - brick:hasQuantity brick:Active_Power . + skos:definition "Measures the portion of power that, averaged over a complete cycle of the AC waveform, results in net transfer of energy in one direction"@en . brick:Air_Flow_Loss_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Air Flow Loss Alarm" ; rdfs:subClassOf brick:Air_Flow_Alarm ; - skos:definition "An alarm that indicates loss in air flow."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Loss ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Flow, - tag:Loss, - tag:Point . - -brick:Air_Loop a owl:Class, - sh:NodeShape ; - rdfs:label "Air Loop" ; - rdfs:subClassOf brick:Loop ; - skos:definition "The set of connected equipment serving one path of air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Loop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Loop . + skos:definition "An alarm that indicates loss in air flow."@en . brick:Alarm_Delay_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Alarm Delay Parameter" ; rdfs:subClassOf brick:Delay_Parameter ; - skos:definition "A parameter determining how long to delay an alarm after sufficient conditions have been met"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Delay ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Delay, - tag:Parameter, - tag:Point . - -brick:Alternating_Current_Frequency a brick:Quantity ; - rdfs:label "Alternating_Current_Frequency" ; - qudt:applicableUnit unit:GigaHZ, - unit:HZ, - unit:KiloHZ, - unit:MegaHZ ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Frequency, - brick:Frequency ; - skos:definition "The frequency of the oscillations of alternating current", - "The frequency of the oscillations of alternating current"@en ; - skos:related brick:Electric_Current . + skos:definition "A parameter determining how long to delay an alarm after sufficient conditions have been met"@en . + +brick:Alarm_Sensitivity_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Alarm Sensitivity Parameter" ; + rdfs:subClassOf brick:Parameter ; + skos:definition "A parameter indicates the sensitivity to activate an alarm."@en . brick:Ammonia_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Ammonia Sensor" ; - rdfs:subClassOf brick:Air_Quality_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Ammonia ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Ammonia, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Ammonia_Concentration ; - brick:hasSubstance brick:Air . - -brick:Apparent_Energy a brick:Quantity ; - rdfs:label "Apparent_Energy" ; - qudt:applicableUnit unit:KiloV-A-HR, - unit:MegaV-A-HR, - unit:V-A-HR ; - rdfs:isDefinedBy ; - skos:broader brick:Electric_Energy ; - skos:definition "The integral of the apparent power over a time interval" . - -brick:Apparent_Power a brick:Quantity ; - rdfs:label "Apparent Power" ; - qudt:applicableUnit unit:KiloV-A, - unit:MegaV-A, - unit:V-A ; - skos:broader brick:Electric_Power ; - skos:definition "Apparent Power is the product of the rms voltage (U) between the terminals of a two-terminal element or two-terminal circuit and the rms electric current I in the element or circuit. Under sinusoidal conditions, the apparent power is the modulus of the complex power."@en ; - brick:hasQUDTReference qudtqk:ApparentPower . - -brick:Atmospheric_Pressure a brick:Quantity ; - rdfs:label "Atmospheric Pressure" ; - qudt:applicableUnit unit:ATM, - unit:ATM_T, - unit:BAR, - unit:BARAD, - unit:BARYE, - unit:CM_H2O, - unit:CentiBAR, - unit:CentiM_H2O, - unit:CentiM_HG, - unit:DYN-PER-CentiM2, - unit:DecaPA, - unit:DeciBAR, - unit:FT_H2O, - unit:FT_HG, - unit:GM_F-PER-CentiM2, - unit:GigaPA, - unit:HectoBAR, - unit:HectoPA, - unit:IN_H2O, - unit:IN_HG, - unit:KIP_F-PER-IN2, - unit:KiloBAR, - unit:KiloGM-PER-M-SEC2, - unit:KiloGM_F-PER-CentiM2, - unit:KiloGM_F-PER-M2, - unit:KiloGM_F-PER-MilliM2, - unit:KiloLB_F-PER-IN2, - unit:KiloPA, - unit:KiloPA_A, - unit:LB_F-PER-FT2, - unit:LB_F-PER-IN2, - unit:MegaBAR, - unit:MegaPA, - unit:MicroATM, - unit:MicroBAR, - unit:MicroPA, - unit:MicroTORR, - unit:MilliBAR, - unit:MilliM_H2O, - unit:MilliM_HG, - unit:MilliM_HGA, - unit:MilliPA, - unit:MilliTORR, - unit:N-PER-CentiM2, - unit:N-PER-M2, - unit:N-PER-MilliM2, - unit:PA, - unit:PDL-PER-FT2, - unit:PSI, - unit:PlanckPressure, - unit:TORR ; - skos:broader brick:Pressure ; - skos:definition "The pressure exerted by the weight of the air above it at any point on the earth's surface. At sea level the atmosphere will support a column of mercury about (760 mm) high. This decreases with increasing altitude. The standard value for the atmospheric pressure at sea level in SI units is (101,325 pascals)."@en ; - brick:hasQUDTReference qudtqk:AtmosphericPressure . - -brick:Atrium a owl:Class, - sh:NodeShape ; - rdfs:label "Atrium" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Common_Space ; - skos:definition "a large open-air or skylight covered space surrounded by a building."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Atrium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Common ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Atrium, - tag:Common, - tag:Location, - tag:Space . - -brick:Auditorium a owl:Class, - sh:NodeShape ; - rdfs:label "Auditorium" ; - rdfs:subClassOf brick:Common_Space ; - skos:definition "A space for performances or larger gatherings"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Auditorium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Common ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Auditorium, - tag:Common, - tag:Location, - tag:Space . + rdfs:subClassOf brick:Air_Quality_Sensor . brick:Automatic_Mode_Command a owl:Class, sh:NodeShape ; rdfs:label "Automatic Mode Command" ; rdfs:subClassOf brick:Mode_Command ; - skos:definition "Controls whether or not a device or controller is operating in \"Automatic\" mode"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Automatic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Automatic, - tag:Command, - tag:Mode, - tag:Point . - -brick:Automatic_Tint_Window a owl:Class, - sh:NodeShape ; - rdfs:label "Automatic Tint Window" ; - rdfs:subClassOf brick:Shading_Equipment ; - skos:definition "A window with tint control."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Automatic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shade ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Tint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Window ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Automatic, - tag:Equipment, - tag:Shade, - tag:Tint, - tag:Window . + skos:definition "Controls whether or not a device or controller is operating in \"Automatic\" mode"@en . brick:Availability_Status a owl:Class, sh:NodeShape ; rdfs:label "Availability Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates if a piece of equipment, system, or functionality is available for operation"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Availability ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Availability, - tag:Point, - tag:Status . + skos:definition "Indicates if a piece of equipment, system, or functionality is available for operation"@en . brick:Average_Cooling_Demand_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Average Cooling Demand Sensor" ; rdfs:subClassOf brick:Cooling_Demand_Sensor ; - skos:definition "Measures the average power consumed by a cooling process as the amount of power consumed over some interval"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Average ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Average, - tag:Cool, - tag:Demand, - tag:Point, - tag:Sensor . + skos:definition "Measures the average power consumed by a cooling process as the amount of power consumed over some interval"@en . + +brick:Average_Discharge_Air_Flow_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Average Discharge Air Flow Sensor" ; + rdfs:subClassOf brick:Discharge_Air_Flow_Sensor ; + skos:definition "The computed average flow of discharge air over some interval"@en . brick:Average_Exhaust_Air_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Average Exhaust Air Static Pressure Sensor" ; rdfs:subClassOf brick:Exhaust_Air_Static_Pressure_Sensor ; - skos:definition "The computed average static pressure of air in exhaust regions of an HVAC system over some period of time"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Average ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Average, - tag:Exhaust, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Static . + skos:definition "The computed average static pressure of air in exhaust regions of an HVAC system over some period of time"@en . brick:Average_Heating_Demand_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Average Heating Demand Sensor" ; rdfs:subClassOf brick:Heating_Demand_Sensor ; - skos:definition "Measures the average power consumed by a heating process as the amount of power consumed over some interval"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Average ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Average, - tag:Demand, - tag:Heat, - tag:Point, - tag:Sensor . + skos:definition "Measures the average power consumed by a heating process as the amount of power consumed over some interval"@en . brick:Average_Supply_Air_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Average Supply Air Flow Sensor" ; rdfs:subClassOf brick:Supply_Air_Flow_Sensor ; - owl:equivalentClass brick:Average_Discharge_Air_Flow_Sensor ; - skos:definition "The computed average flow of supply air over some interval"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Average ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Average, - tag:Flow, - tag:Point, - tag:Sensor, - tag:Supply . + skos:definition "The computed average flow of supply air over some interval"@en . brick:Average_Zone_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Average Zone Air Temperature Sensor" ; rdfs:subClassOf brick:Zone_Air_Temperature_Sensor ; - skos:definition "The computed average temperature of air in a zone, over some period of time"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Average ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Average, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Zone . - -brick:Basement a owl:Class, - sh:NodeShape ; - rdfs:label "Basement" ; - rdfs:subClassOf brick:Floor ; - skos:definition "The floor of a building which is partly or entirely below ground level."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Basement ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Floor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Basement, - tag:Floor, - tag:Location . - -brick:Battery a owl:Class, - sh:NodeShape ; - rdfs:label "Battery" ; - rdfs:subClassOf brick:Energy_Storage ; - skos:definition "A container that stores chemical energy that can be converted into electricity and used as a source of power"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Battery ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Energy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Storage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Battery, - tag:Energy, - tag:Equipment, - tag:Storage . - -brick:Battery_Energy_Storage_System a owl:Class, - sh:NodeShape ; - rdfs:label "Battery Energy Storage System" ; - rdfs:subClassOf brick:Energy_Storage_System ; - skos:definition "A collection of batteries that provides energy storage, along with their supporting equipment"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Battery ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Energy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Storage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Battery, - tag:Energy, - tag:Storage, - tag:System . - -brick:Battery_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Battery Room" ; - rdfs:subClassOf brick:Electrical_Room ; - skos:definition "A room used to hold batteries for backup power"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Battery ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Electrical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Service ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Battery, - tag:Electrical, - tag:Location, - tag:Room, - tag:Service, - tag:Space . + skos:definition "The computed average temperature of air in a zone, over some period of time"@en . brick:Battery_Voltage_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Battery Voltage Sensor" ; rdfs:subClassOf brick:Voltage_Sensor ; - skos:definition "Measures the capacity of a battery"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Battery ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Voltage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Battery, - tag:Point, - tag:Sensor, - tag:Voltage . - -brick:Bench_Space a owl:Class, - sh:NodeShape ; - rdfs:label "Bench Space" ; - rdfs:subClassOf brick:Outdoor_Area ; - skos:definition "For areas of play in a stadium, the area for partcipants and referees by the side of the field"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Area ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Bench ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outdoor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Area, - tag:Bench, - tag:Location, - tag:Outdoor . - -brick:Boiler_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Boiler Command" ; - rdfs:subClassOf brick:Command ; - skos:definition "A command to control a boiler"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Boiler ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Boiler, - tag:Command, - tag:Point . - -brick:Booster_Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Booster Fan" ; - rdfs:subClassOf brick:Fan ; - skos:definition "Fan activated to increase airflow beyond what is provided by the default configuration"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Booster ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Booster, - tag:Equipment, - tag:Fan . + skos:definition "Measures the capacity of a battery"@en . brick:Box_Mode_Command a owl:Class, sh:NodeShape ; rdfs:label "Box Mode Command" ; - rdfs:subClassOf brick:Mode_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Box ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Box, - tag:Command, - tag:Mode, - tag:Point . - -brick:Breaker_Panel a owl:Class, - sh:NodeShape ; - rdfs:label "Breaker Panel" ; - rdfs:subClassOf brick:Electrical_Equipment ; - skos:definition "Breaker Panel distributes power into various end-uses."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Breaker ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Breaker, - tag:Equipment . - -brick:Broadcast_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Broadcast Room" ; - rdfs:subClassOf brick:Media_Room ; - skos:definition "A space to organize and manage a broadcast. Separate from studio"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Broadcast ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Media ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Broadcast, - tag:Location, - tag:Media, - tag:Room, - tag:Space . + rdfs:subClassOf brick:Mode_Command . brick:Building_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Building Air Humidity Setpoint" ; rdfs:subClassOf brick:Humidity_Setpoint ; - skos:definition "Setpoint for humidity in a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Building, - tag:Humidity, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Humidity ; - brick:hasSubstance brick:Building_Air . + skos:definition "Setpoint for humidity in a building"@en . brick:Building_Air_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Building Air Static Pressure Sensor" ; rdfs:subClassOf brick:Static_Pressure_Sensor ; - skos:definition "The static pressure of air within a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Building, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Static ; - brick:hasQuantity brick:Static_Pressure ; - brick:hasSubstance brick:Building_Air . + skos:definition "The static pressure of air within a building"@en . brick:Building_Air_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Building Air Static Pressure Setpoint" ; rdfs:subClassOf brick:Static_Pressure_Setpoint ; - skos:definition "Sets static pressure of the entire building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Building, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static ; - brick:hasQuantity brick:Static_Pressure ; - brick:hasSubstance brick:Building_Air . - -brick:Building_Chilled_Water_Meter a owl:Class, - sh:NodeShape ; - rdfs:label "Building Chilled Water Meter" ; - rdfs:subClassOf brick:Building_Meter, - brick:Chilled_Water_Meter ; - skos:definition "A meter that measures the usage or consumption of chilled water of a whole building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Building, - tag:Chilled, - tag:Equipment, - tag:Meter, - tag:Water . - -brick:Building_Electrical_Meter a owl:Class, - sh:NodeShape ; - rdfs:label "Building Electrical Meter" ; - rdfs:subClassOf brick:Building_Meter, - brick:Electrical_Meter ; - skos:definition "A meter that measures the usage or consumption of electricity of a whole building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Electrical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Building, - tag:Electrical, - tag:Equipment, - tag:Meter . - -brick:Building_Gas_Meter a owl:Class, - sh:NodeShape ; - rdfs:label "Building Gas Meter" ; - rdfs:subClassOf brick:Building_Meter, - brick:Gas_Meter ; - skos:definition "A meter that measures the usage or consumption of gas of a whole building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Building, - tag:Equipment, - tag:Gas, - tag:Meter . - -brick:Building_Hot_Water_Meter a owl:Class, - sh:NodeShape ; - rdfs:label "Building Hot Water Meter" ; - rdfs:subClassOf brick:Building_Meter, - brick:Hot_Water_Meter ; - skos:definition "A meter that measures the usage or consumption of hot water of a whole building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Building, - tag:Equipment, - tag:Hot, - tag:Meter, - tag:Water . - -brick:Building_Water_Meter a owl:Class, - sh:NodeShape ; - rdfs:label "Building Water Meter" ; - rdfs:subClassOf brick:Building_Meter, - brick:Water_Meter ; - skos:definition "A meter that measures the usage or consumption of water of a whole building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Building, - tag:Equipment, - tag:Meter, - tag:Water . - -brick:Bus_Riser a owl:Class, - sh:NodeShape ; - rdfs:label "Bus Riser" ; - rdfs:subClassOf brick:Electrical_Equipment ; - skos:definition "Bus Risers are commonly fed from a switchgear and rise up through a series of floors to the main power distribution source for each floor."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Riser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Riser . + skos:definition "Sets static pressure of the entire building"@en . brick:Bypass_Air_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Bypass Air Flow Sensor" ; rdfs:subClassOf brick:Air_Flow_Sensor ; - skos:definition "Measures the rate of flow of bypass air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Bypass ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Bypass, - tag:Flow, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Bypass_Air . + skos:definition "Measures the rate of flow of bypass air"@en . brick:Bypass_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Bypass Air Humidity Setpoint" ; rdfs:subClassOf brick:Humidity_Setpoint ; - skos:definition "Humidity setpoint for bypass air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Bypass ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Bypass, - tag:Humidity, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Humidity ; - brick:hasSubstance brick:Bypass_Air . + skos:definition "Humidity setpoint for bypass air"@en . brick:Bypass_Command a owl:Class, sh:NodeShape ; rdfs:label "Bypass Command" ; - rdfs:subClassOf brick:Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Bypass ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Bypass, - tag:Command, - tag:Point . + rdfs:subClassOf brick:Command . brick:Bypass_Water_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Bypass Water Flow Sensor" ; rdfs:subClassOf brick:Water_Flow_Sensor ; - skos:definition "Measures the rate of flow of bypass water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Bypass ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Bypass, - tag:Flow, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Bypass_Water . + skos:definition "Measures the rate of flow of bypass water"@en . brick:Bypass_Water_Flow_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Bypass Water Flow Setpoint" ; rdfs:subClassOf brick:Water_Flow_Setpoint ; - skos:definition "Sets the target flow rate of bypass water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Bypass ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Bypass, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Bypass_Water . - -brick:CO2_Alarm_Sensitivity_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "CO2 Alarm Sensitivity Parameter" ; - rdfs:subClassOf brick:Alarm_Sensitivity_Parameter ; - skos:definition "A parameter indicates the sensitivity to activate a CO2 alarm."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:CO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensitivity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:CO2, - tag:Parameter, - tag:Point, - tag:Sensitivity . + skos:definition "Sets the target flow rate of bypass water"@en . brick:CO2_Differential_Sensor a owl:Class, sh:NodeShape ; rdfs:label "CO2 Differential Sensor" ; rdfs:subClassOf brick:CO2_Sensor ; - skos:definition "Measures the difference between CO2 levels of inside and outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CO2, - tag:Differential, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Differential_CO2_Concentration ; - brick:hasSubstance brick:Air . + skos:definition "Measures the difference between CO2 levels of inside and outside air"@en . brick:CO2_Level_Sensor a owl:Class, sh:NodeShape ; rdfs:label "CO2 Level Sensor" ; rdfs:subClassOf brick:CO2_Sensor ; - skos:definition "Measures the concentration of CO2 in air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CO2, - tag:Level, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:CO2_Concentration ; - brick:hasSubstance brick:Air . + skos:definition "Measures the concentration of CO2 in air"@en . brick:CO_Differential_Sensor a owl:Class, sh:NodeShape ; rdfs:label "CO Differential Sensor" ; - rdfs:subClassOf brick:CO_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CO ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CO, - tag:Differential, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Differential_CO_Concentration ; - brick:hasSubstance brick:Air . + rdfs:subClassOf brick:CO_Sensor . brick:CO_Level_Sensor a owl:Class, sh:NodeShape ; rdfs:label "CO Level Sensor" ; rdfs:subClassOf brick:CO_Sensor ; - skos:definition "Measures the concentration of CO"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CO ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CO, - tag:Level, - tag:Point, - tag:Sensor . - -brick:Cafeteria a owl:Class, - sh:NodeShape ; - rdfs:label "Cafeteria" ; - rdfs:subClassOf brick:Common_Space ; - skos:definition "A space to serve food and beverages"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cafeteria ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Common ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cafeteria, - tag:Common, - tag:Location, - tag:Space . + skos:definition "Measures the concentration of CO"@en . brick:Capacity_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Capacity Sensor" ; - rdfs:subClassOf brick:Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Capacity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Capacity, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Capacity . - -brick:Ceiling_Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Ceiling Fan" ; - rdfs:subClassOf brick:Fan ; - skos:definition "A fan installed on the ceiling of a room for the purpose of air circulation"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Ceiling ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Ceiling, - tag:Equipment, - tag:Fan . - -brick:Centrifugal_Chiller a owl:Class, - sh:NodeShape ; - rdfs:label "Centrifugal Chiller" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Chiller ; - skos:definition "A chiller that uses the vapor compression cycle to chill water. It throws off the heat collected from the chilled water plus the heat from the compressor to a water loop"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Centrifugal ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Chiller ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Centrifugal, - tag:Chiller, - tag:Equipment . + rdfs:subClassOf brick:Sensor . brick:Change_Filter_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Change Filter Alarm" ; rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates that a filter must be changed"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Change ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Filter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Change, - tag:Filter, - tag:Point . - -brick:Chilled_Water_Coil a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Water Coil" ; - rdfs:subClassOf brick:Cooling_Coil ; - skos:definition "A cooling element made of pipe or tube that removes heat from equipment, machines or airflows that is filled with chilled water."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Coil ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Coil, - tag:Cool, - tag:Equipment, - tag:Water . + skos:definition "An alarm that indicates that a filter must be changed"@en . brick:Chilled_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Differential Pressure Deadband Setpoint" ; rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of differential pressure of chilled water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Deadband, - tag:Differential, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Chilled_Water . + skos:definition "Sets the size of a deadband of differential pressure of chilled water"@en . brick:Chilled_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Differential Pressure Integral Time Parameter" ; - rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Differential, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Time, - tag:Water . + rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter . brick:Chilled_Water_Differential_Pressure_Load_Shed_Reset_Status a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Differential Pressure Load Shed Reset Status" ; - rdfs:subClassOf brick:Chilled_Water_Differential_Pressure_Load_Shed_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Differential, - tag:Load, - tag:Point, - tag:Pressure, - tag:Reset, - tag:Shed, - tag:Status, - tag:Water . + rdfs:subClassOf brick:Chilled_Water_Differential_Pressure_Load_Shed_Status . brick:Chilled_Water_Differential_Pressure_Load_Shed_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Differential Pressure Load Shed Setpoint" ; rdfs:subClassOf brick:Chilled_Water_Differential_Pressure_Setpoint, - brick:Load_Shed_Differential_Pressure_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Differential, - tag:Load, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Shed, - tag:Water . + brick:Load_Shed_Differential_Pressure_Setpoint . brick:Chilled_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Differential Pressure Proportional Band Parameter" ; - rdfs:subClassOf brick:Differential_Pressure_Proportional_Band ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Band, - tag:Chilled, - tag:Differential, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Proportional, - tag:Water . + rdfs:subClassOf brick:Differential_Pressure_Proportional_Band . brick:Chilled_Water_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Differential Pressure Sensor" ; rdfs:subClassOf brick:Differential_Pressure_Sensor ; - skos:definition "Measures the difference in water pressure on either side of a chilled water valve"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Differential, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Chilled_Water . + skos:definition "Measures the difference in water pressure on either side of a chilled water valve"@en . brick:Chilled_Water_Differential_Pressure_Step_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Differential Pressure Step Parameter" ; - rdfs:subClassOf brick:Differential_Pressure_Step_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Step ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Differential, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Step, - tag:Water . + rdfs:subClassOf brick:Differential_Pressure_Step_Parameter . brick:Chilled_Water_Differential_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Differential Temperature Sensor" ; rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor, brick:Water_Differential_Temperature_Sensor ; - skos:definition "Measures the difference in temperature between the entering water to the chiller or other water cooling device and leaving water from the same chiller or other water cooling device"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Differential, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Chilled_Water ; - brick:hasSubstance brick:Differential_Temperature . - -brick:Chilled_Water_Loop a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Water Loop" ; - rdfs:subClassOf brick:Water_Loop ; - skos:definition "A collection of equipment that transport and regulate chilled water among each other"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Loop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Loop, - tag:Water . + skos:definition "Measures the difference in temperature between the entering water to the chiller or other water cooling device and leaving water from the same chiller or other water cooling device"@en . + +brick:Chilled_Water_Discharge_Flow_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Chilled Water Discharge Flow Sensor" ; + rdfs:subClassOf brick:Discharge_Water_Flow_Sensor ; + skos:definition "Measures the rate of flow of chilled discharge water"@en . + +brick:Chilled_Water_Discharge_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Chilled Water Discharge Flow Setpoint" ; + rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint, + brick:Discharge_Water_Flow_Setpoint ; + skos:definition "Sets the target flow rate of chilled discharge water"@en . + +brick:Chilled_Water_Discharge_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Chilled Water Discharge Temperature Sensor" ; + rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor . brick:Chilled_Water_Pump a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Pump" ; rdfs:subClassOf brick:Water_Pump ; - skos:definition "A pump that performs work on chilled water; typically part of a chilled water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pump ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Equipment, - tag:Pump, - tag:Water . + skos:definition "A pump that performs work on chilled water; typically part of a chilled water system"@en . brick:Chilled_Water_Return_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Return Flow Sensor" ; rdfs:subClassOf brick:Chilled_Water_Flow_Sensor, brick:Return_Water_Flow_Sensor ; - skos:definition "Measures the rate of flow of chilled return water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Flow, - tag:Point, - tag:Return, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Return_Chilled_Water . + skos:definition "Measures the rate of flow of chilled return water"@en . brick:Chilled_Water_Return_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Return Temperature Sensor" ; rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor, brick:Return_Water_Temperature_Sensor ; - skos:definition "Measures the temperature of chilled water that is returned to a cooling tower"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Point, - tag:Return, - tag:Sensor, - tag:Temperature, - tag:Water . + skos:definition "Measures the temperature of chilled water that is returned to a cooling tower"@en . brick:Chilled_Water_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Static Pressure Setpoint" ; rdfs:subClassOf brick:Static_Pressure_Setpoint ; - skos:definition "Sets static pressure of chilled water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static, - tag:Water ; - brick:hasQuantity brick:Static_Pressure ; - brick:hasSubstance brick:Chilled_Water . + skos:definition "Sets static pressure of chilled water"@en . brick:Chilled_Water_Supply_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Supply Flow Sensor" ; rdfs:subClassOf brick:Chilled_Water_Flow_Sensor, brick:Supply_Water_Flow_Sensor ; - owl:equivalentClass brick:Chilled_Water_Discharge_Flow_Sensor ; - skos:definition "Measures the rate of flow of chilled supply water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Flow, - tag:Point, - tag:Sensor, - tag:Supply, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Supply_Chilled_Water . + skos:definition "Measures the rate of flow of chilled supply water"@en . brick:Chilled_Water_Supply_Flow_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Supply Flow Setpoint" ; rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint, brick:Supply_Water_Flow_Setpoint ; - owl:equivalentClass brick:Chilled_Water_Discharge_Flow_Setpoint ; - skos:definition "Sets the target flow rate of chilled supply water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Water . + skos:definition "Sets the target flow rate of chilled supply water"@en . brick:Chilled_Water_Supply_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Supply Temperature Sensor" ; rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor ; - owl:equivalentClass brick:Chilled_Water_Discharge_Temperature_Sensor ; - skos:definition "Measures the temperature of chilled water that is supplied from a chiller"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Point, - tag:Sensor, - tag:Supply, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Chilled_Water . - -brick:Chilled_Water_System a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Water System" ; - rdfs:subClassOf brick:Water_System ; - skos:definition "The equipment, devices and conduits that handle the production and distribution of chilled water in a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:System, - tag:Water . + skos:definition "Measures the temperature of chilled water that is supplied from a chiller"@en . brick:Chilled_Water_System_Enable_Command a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water System Enable Command" ; rdfs:subClassOf brick:System_Enable_Command ; - skos:definition "Enables operation of the chilled water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Command, - tag:Enable, - tag:Point, - tag:System, - tag:Water . - -brick:Chilled_Water_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Water Valve" ; - rdfs:subClassOf brick:HVAC_Valve, - brick:Water_Valve ; - skos:definition "A valve that modulates the flow of chilled water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Equipment, - tag:Valve, - tag:Water . + skos:definition "Enables operation of the chilled water system"@en . brick:Close_Limit a owl:Class, sh:NodeShape ; rdfs:label "Close Limit" ; rdfs:subClassOf brick:Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Close_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Close ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Close, - tag:Limit, - tag:Parameter, - tag:Point . - -brick:Cloudage a brick:Quantity ; - rdfs:label "Cloudage" ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Dimensionless ; - skos:definition "The fraction of the sky obscured by clouds when observed from a particular location", - "The fraction of the sky obscured by clouds when observed from a particular location"@en . - -brick:Cold_Box a owl:Class, - sh:NodeShape ; - rdfs:label "Cold Box" ; - rdfs:subClassOf brick:Laboratory ; - skos:definition "in a gas separation unit, the insulated section that contains the low-temperature heat exchangers and distillation columns."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Box ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cold ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Laboratory ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Box, - tag:Cold, - tag:Laboratory, - tag:Location, - tag:Room . + skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Close_Setpoint."@en . brick:Coldest_Zone_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Coldest Zone Air Temperature Sensor" ; rdfs:subClassOf brick:Zone_Air_Temperature_Sensor ; - skos:definition "The zone temperature that is coldest; drives the supply temperature of hot air. A computed value rather than a physical sensor. Also referred to as a 'Lowest Zone Air Temperature Sensor'"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Coldest ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Coldest, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Zone . - -brick:Collection_Basin_Water_Heater a owl:Class, - sh:NodeShape ; - rdfs:label "Collection Basin Water Heater" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Water_Heater ; - skos:definition "Basin heaters prevent cold water basin freeze-up, e.g. in cooling towers, closed circuit fluid coolers, or evaporative condensers"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Basin ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Collection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heater ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Basin, - tag:Collection, - tag:Equipment, - tag:Heater, - tag:Water . + skos:definition "The zone temperature that is coldest; drives the supply temperature of hot air. A computed value rather than a physical sensor. Also referred to as a 'Lowest Zone Air Temperature Sensor'"@en . brick:Collection_Basin_Water_Level_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Collection Basin Water Level Alarm" ; rdfs:subClassOf brick:Water_Level_Alarm ; - skos:definition "An alarm that indicates a high or low level of water in the collection basin, e.g. within a Cooling_Tower"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Basin ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Collection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Basin, - tag:Collection, - tag:Level, - tag:Point, - tag:Water . + skos:definition "An alarm that indicates a high or low level of water in the collection basin, e.g. within a Cooling_Tower"@en . brick:Collection_Basin_Water_Level_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Collection Basin Water Level Sensor" ; rdfs:subClassOf brick:Water_Level_Sensor ; - skos:definition "Measures the level of the water in the collection basin, e.g. within a Cooling_Tower"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Basin ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Collection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Basin, - tag:Collection, - tag:Level, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Level ; - brick:hasSubstance brick:Collection_Basin_Water . + skos:definition "Measures the level of the water in the collection basin, e.g. within a Cooling_Tower"@en . brick:Collection_Basin_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Collection Basin Water Temperature Sensor" ; rdfs:subClassOf brick:Water_Temperature_Sensor ; - skos:definition "Measures the temperature of the water in the collection basin, e.g. within a Cooling_Tower"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Basin ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Collection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Basin, - tag:Collection, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Collection_Basin_Water . + skos:definition "Measures the temperature of the water in the collection basin, e.g. within a Cooling_Tower"@en . brick:Communication_Loss_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Communication Loss Alarm" ; rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates a loss of communication e.g. with a device or controller"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Communication ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Loss ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Communication, - tag:Loss, - tag:Point . - -brick:Complex_Power a brick:Quantity ; - rdfs:label "Complex Power" ; - qudt:applicableUnit unit:KiloV-A, - unit:MegaV-A, - unit:V-A ; - skos:broader brick:Electric_Power ; - skos:definition "Complex Power, under sinusoidal conditions, is the product of the phasor (U) representing the voltage between the terminals of a linear two-terminal element or two-terminal circuit and the complex conjugate of the phasor (I) representing the electric current in the element or circuit."@en ; - brick:hasQUDTReference qudtqk:ComplexPower . - -brick:Compressor a owl:Class, - sh:NodeShape ; - rdfs:label "Compressor" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "(1) device for mechanically increasing the pressure of a gas. (2) often described as being either open, hermetic, or semihermetic to describe how the compressor and motor drive is situated in relation to the gas or vapor being compressed. Types include centrifugal, axial flow, reciprocating, rotary screw, rotary vane, scroll, or diaphragm. 1. device for mechanically increasing the pressure of a gas. 2. specific machine, with or without accessories, for compressing refrigerant vapor."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Compressor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Compressor, - tag:Equipment . - -brick:Concession a owl:Class, - sh:NodeShape ; - rdfs:label "Concession" ; - rdfs:subClassOf brick:Food_Service_Room ; - skos:definition "A space to sell food and beverages. Usually embedded in a larger space and does not include a space where people consume their purchases"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Concessions ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Food ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Service ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Concessions, - tag:Food, - tag:Location, - tag:Room, - tag:Service, - tag:Space . + skos:definition "An alarm that indicates a loss of communication e.g. with a device or controller"@en . brick:Condensate_Leak_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Condensate Leak Alarm" ; rdfs:subClassOf brick:Leak_Alarm ; - skos:definition "An alarm that indicates a leak of condensate from a cooling system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Condensate ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Leak ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Condensate, - tag:Leak, - tag:Point . - -brick:Condenser a owl:Class, - sh:NodeShape ; - rdfs:label "Condenser" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "A heat exchanger in which the primary heat transfer vapor changes its state to a liquid phase."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Equipment . - -brick:Condenser_Heat_Exchanger a owl:Class, - sh:NodeShape ; - rdfs:label "Condenser Heat Exchanger" ; - rdfs:subClassOf brick:Heat_Exchanger ; - skos:definition "A heat exchanger in which the primary heat transfer vapor changes its state to a liquid phase."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exchanger ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Equipment, - tag:Exchanger, - tag:Heat . - -brick:Condenser_Water_Bypass_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Condenser Water Bypass Valve" ; - rdfs:subClassOf brick:Bypass_Valve ; - skos:definition "A valve installed in a bypass line of a condenser water loop"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Bypass ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Bypass, - tag:Condenser, - tag:Equipment, - tag:Valve, - tag:Water . - -brick:Condenser_Water_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Condenser Water Flow Setpoint" ; - rdfs:subClassOf brick:Water_Flow_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Condenser_Water . - -brick:Condenser_Water_Isolation_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Condenser Water Isolation Valve" ; - rdfs:subClassOf brick:Isolation_Valve ; - skos:definition "An isolation valve installed in the condenser water loop"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Isolation ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Equipment, - tag:Isolation, - tag:Valve, - tag:Water . + skos:definition "An alarm that indicates a leak of condensate from a cooling system"@en . brick:Condenser_Water_Pump a owl:Class, sh:NodeShape ; rdfs:label "Condenser Water Pump" ; rdfs:subClassOf brick:Water_Pump ; - skos:definition "A pump that is part of a condenser system; the pump circulates condenser water from the chiller back to the cooling tower"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pump ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Equipment, - tag:Pump, - tag:Water . - -brick:Condenser_Water_System a owl:Class, - sh:NodeShape ; - rdfs:label "Condenser Water System" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Water_System ; - skos:definition "A heat rejection system consisting of (typically) cooling towers, condenser water pumps, chillers and the piping connecting the components"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:System, - tag:Water . - -brick:Condenser_Water_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Condenser Water Valve" ; - rdfs:subClassOf brick:HVAC_Valve, - brick:Water_Valve ; - skos:definition "A valve that modulates the flow of condenser water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Equipment, - tag:Valve, - tag:Water . - -brick:Condensing_Natural_Gas_Boiler a owl:Class, - sh:NodeShape ; - rdfs:label "Condensing Natural Gas Boiler" ; - rdfs:subClassOf brick:Natural_Gas_Boiler ; - skos:definition "A closed, pressure vessel that uses natural gas and heat exchanger that capture and reuse any latent heat for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Boiler ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Condensing ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Natural ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Boiler, - tag:Condensing, - tag:Equipment, - tag:Gas, - tag:Natural . - -brick:Conference_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Conference Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A space dedicated in which to hold a meetings"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Conference ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Conference, - tag:Location, - tag:Room, - tag:Space . - -brick:Constant_Air_Volume_Box a owl:Class, - sh:NodeShape ; - rdfs:label "Constant Air Volume Box" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Terminal_Unit ; - owl:equivalentClass brick:CAV ; - skos:definition "A terminal unit for which supply air flow rate is constant and the supply air temperature is varied to meet thermal load"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Box ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Constant ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Volume ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Box, - tag:Constant, - tag:Equipment, - tag:Volume . + skos:definition "A pump that is part of a condenser system; the pump circulates condenser water from the chiller back to the cooling tower"@en . brick:Contact_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Contact Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Senses or detects contact, such as for determining if a door is closed."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Contact ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Contact, - tag:Point, - tag:Sensor . - -brick:Control_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Control Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A space from which operations are managed"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Control ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Control, - tag:Location, - tag:Room, - tag:Space . + skos:definition "Senses or detects contact, such as for determining if a door is closed."@en . brick:Cooling_Command a owl:Class, sh:NodeShape ; rdfs:label "Cooling Command" ; rdfs:subClassOf brick:Command ; - skos:definition "Controls the amount of cooling to be delivered (typically as a proportion of total cooling output)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Cool, - tag:Point . + skos:definition "Controls the amount of cooling to be delivered (typically as a proportion of total cooling output)"@en . brick:Cooling_Demand_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Cooling Demand Setpoint" ; rdfs:subClassOf brick:Demand_Setpoint ; - skos:definition "Sets the rate required for cooling"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Demand, - tag:Point, - tag:Setpoint . + skos:definition "Sets the rate required for cooling"@en . + +brick:Cooling_Discharge_Air_Temperature_Deadband_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Cooling Discharge Air Temperature Deadband Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Cooling_Setpoint, + brick:Discharge_Air_Temperature_Deadband_Setpoint ; + skos:definition "Sets the size of a deadband of temperature of cooling discharge air"@en . + +brick:Cooling_Discharge_Air_Temperature_Integral_Time_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Cooling Discharge Air Temperature Integral Time Parameter" ; + rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter . + +brick:Cooling_Discharge_Air_Temperature_Proportional_Band_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Cooling Discharge Air Temperature Proportional Band Parameter" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Proportional_Band_Parameter . brick:Cooling_Enable_Command a owl:Class, sh:NodeShape ; rdfs:label "Cooling Enable Command" ; rdfs:subClassOf brick:Enable_Command ; - skos:definition "Command that enables cooling functionality in equipment but certain condition(s) must be met first before actively cooling. For the actively cooling control, see Cooling_Command."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cooling ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Cooling, - tag:Enable, - tag:Point . + skos:definition "Command that enables cooling functionality in equipment but certain condition(s) must be met first before actively cooling. For the actively cooling control, see Cooling_Command."@en . brick:Cooling_Start_Stop_Status a owl:Class, sh:NodeShape ; rdfs:label "Cooling Start Stop Status" ; - rdfs:subClassOf brick:Start_Stop_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Start ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Point, - tag:Start, - tag:Status, - tag:Stop . + rdfs:subClassOf brick:Start_Stop_Status . brick:Cooling_Supply_Air_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Cooling Supply Air Temperature Deadband Setpoint" ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, brick:Supply_Air_Temperature_Deadband_Setpoint ; - owl:equivalentClass brick:Cooling_Discharge_Air_Temperature_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of temperature of supply air for cooling"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Deadband, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature . + skos:definition "Sets the size of a deadband of temperature of supply air for cooling"@en . brick:Cooling_Supply_Air_Temperature_Integral_Time_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Cooling Supply Air Temperature Integral Time Parameter" ; - rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter ; - owl:equivalentClass brick:Cooling_Discharge_Air_Temperature_Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Supply, - tag:Temperature, - tag:Time . + rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter . brick:Cooling_Supply_Air_Temperature_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Cooling Supply Air Temperature Proportional Band Parameter" ; - rdfs:subClassOf brick:Supply_Air_Temperature_Proportional_Band_Parameter ; - owl:equivalentClass brick:Cooling_Discharge_Air_Temperature_Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Band, - tag:Cool, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional, - tag:Supply, - tag:Temperature . - -brick:Cooling_Tower a owl:Class, - sh:NodeShape ; - rdfs:label "Cooling Tower" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "A cooling tower is a heat rejection device that rejects waste heat to the atmosphere through the cooling of a water stream to a lower temperature. Cooling towers may either use the evaporation of water to remove process heat and cool the working fluid to near the wet-bulb air temperature or, in the case of closed circuit dry cooling towers, rely solely on air to cool the working fluid to near the dry-bulb air temperature."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Tower ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Equipment, - tag:Tower . - -brick:Cooling_Tower_Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Cooling Tower Fan" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Fan ; - skos:definition "A fan that pulls air through a cooling tower and across the louvers where the water falls to aid in heat exchange by the process of evaporation"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Tower ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Equipment, - tag:Fan, - tag:Tower . - -brick:Cooling_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Cooling Valve" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "A valve that controls air temperature by modulating the amount of cold water flowing through a cooling coil"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Equipment, - tag:Valve . - -brick:Copy_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Copy Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A room set aside for common office equipment, including printers and copiers"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Copy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Copy, - tag:Location, - tag:Room, - tag:Space . + rdfs:subClassOf brick:Supply_Air_Temperature_Proportional_Band_Parameter . brick:Core_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Core Temperature Sensor" ; rdfs:subClassOf brick:Embedded_Temperature_Sensor ; - skos:definition "Measures the internal temperature of the radiant layer at the heat source or sink level of the radiant heating and cooling HVAC system."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Core ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Core, - tag:Point, - tag:Sensor, - tag:Temperature . + skos:definition "Measures the internal temperature of the radiant layer at the heat source or sink level of the radiant heating and cooling HVAC system."@en . brick:Core_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Core Temperature Setpoint" ; rdfs:subClassOf brick:Embedded_Temperature_Setpoint ; - skos:definition "Sets temperature for the core, i.e. the temperature at the heat source or sink level, of the radiant panel."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Core ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Core, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Cubicle a owl:Class, - sh:NodeShape ; - rdfs:label "Cubicle" ; - rdfs:subClassOf brick:Office ; - skos:definition "A smaller space set aside for an individual, but not with a door and without full-height walls"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cubicle ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Office ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cubicle, - tag:Location, - tag:Office, - tag:Room, - tag:Space . - -brick:Current_Angle a brick:Quantity ; - rdfs:label "CurrentAngle" ; - qudt:applicableUnit unit:ARCMIN, - unit:ARCSEC, - unit:DEG, - unit:GON, - unit:GRAD, - unit:MIL, - unit:MicroRAD, - unit:MilliARCSEC, - unit:MilliRAD, - unit:RAD, - unit:REV ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader brick:Phasor_Angle ; - skos:definition "Angle of current phasor", - "Angle of current phasor"@en ; - skos:related brick:Electric_Current . + skos:definition "Sets temperature for the core, i.e. the temperature at the heat source or sink level, of the radiant panel."@en . brick:Current_Imbalance_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Current Imbalance Sensor" ; rdfs:subClassOf brick:Imbalance_Sensor ; - skos:definition "A sensor which measures the current difference (imbalance) between phases of an electrical system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Current ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Imbalance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Current, - tag:Imbalance, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Current_Imbalance . + skos:definition "A sensor which measures the current difference (imbalance) between phases of an electrical system"@en . brick:Current_Limit a owl:Class, sh:NodeShape ; rdfs:label "Current Limit" ; rdfs:subClassOf brick:Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Current_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Current ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Current, - tag:Limit, - tag:Parameter, - tag:Point . - -brick:Current_Ratio_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Current Ratio Setpoint" ; - rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets the ratio of currents in a transformer"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Current ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Electric ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Ratio ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Current, - tag:Electric, - tag:Point, - tag:Ratio, - tag:Setpoint . - -brick:Current_Total_Harmonic_Distortion a brick:Quantity ; - rdfs:label "CurrentTotalHarmonicDistortion" ; - qudt:applicableUnit unit:DeciB_M, - unit:PERCENT ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Dimensionless ; - skos:definition "Measurement of harmonic distortion present in a signal defined as the sum of the powers of all harmonic components to the power of the fundamental frequency. (https://en.wikipedia.org/wiki/Total_harmonic_distortion)", - "Measurement of harmonic distortion present in a signal defined as the sum of the powers of all harmonic components to the power of the fundamental frequency. (https://en.wikipedia.org/wiki/Total_harmonic_distortion)"@en ; - skos:related brick:Electric_Current . + skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Current_Setpoint."@en . brick:Curtailment_Override_Command a owl:Class, sh:NodeShape ; rdfs:label "Curtailment Override Command" ; - rdfs:subClassOf brick:Override_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Curtailment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Override ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Curtailment, - tag:Override, - tag:Point . + rdfs:subClassOf brick:Override_Command . brick:DC_Bus_Voltage_Sensor a owl:Class, sh:NodeShape ; rdfs:label "DC Bus Voltage Sensor" ; rdfs:subClassOf brick:Voltage_Sensor ; - skos:definition "Measures the voltage across a DC bus"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Bus ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Dc ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Voltage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Bus, - tag:Dc, - tag:Point, - tag:Sensor, - tag:Voltage . + skos:definition "Measures the voltage across a DC bus"@en . brick:Damper_Position_Command a owl:Class, sh:NodeShape ; rdfs:label "Damper Position Command" ; rdfs:subClassOf brick:Damper_Command, brick:Position_Command ; - skos:definition "Controls the position (the degree of openness) of a damper"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Damper ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Position ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Damper, - tag:Point, - tag:Position ; - brick:hasQuantity brick:Position . + skos:definition "Controls the position (the degree of openness) of a damper"@en . brick:Damper_Position_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Damper Position Sensor" ; rdfs:subClassOf brick:Position_Sensor ; - skos:definition "Measures the current position of a damper in terms of the percent of fully open"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Damper ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Position ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Damper, - tag:Point, - tag:Position, - tag:Sensor ; - brick:hasQuantity brick:Position . + skos:definition "Measures the current position of a damper in terms of the percent of fully open"@en . brick:Damper_Position_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Damper Position Setpoint" ; rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets the position of damper"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Damper ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Position ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Damper, - tag:Point, - tag:Position, - tag:Setpoint ; - brick:hasQuantity brick:Position . - -brick:Damper_Position_Status a owl:Class ; - rdfs:label "Damper Position Status" ; - rdfs:subClassOf brick:Status ; - brick:hasQuantity brick:Position . - -brick:Deceleration_Time a brick:Quantity ; - rdfs:label "Deceleration Time" ; - skos:broader brick:Time . + skos:definition "Sets the position of damper"@en . brick:Deceleration_Time_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Deceleration Time Setpoint" ; - rdfs:subClassOf brick:Time_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deceleration ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deceleration, - tag:Point, - tag:Setpoint, - tag:Time . + rdfs:subClassOf brick:Time_Setpoint . brick:Dehumidification_Start_Stop_Status a owl:Class, sh:NodeShape ; rdfs:label "Dehumidification Start Stop Status" ; - rdfs:subClassOf brick:Start_Stop_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Dehumidification ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Start ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Dehumidification, - tag:Point, - tag:Start, - tag:Status, - tag:Stop . + rdfs:subClassOf brick:Start_Stop_Status . brick:Deionised_Water_Conductivity_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Deionised Water Conductivity Sensor" ; rdfs:subClassOf brick:Conductivity_Sensor ; - skos:definition "Measures the electrical conductance of deionised water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Conductivity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deionised ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Conductivity, - tag:Deionised, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Conductivity ; - brick:hasSubstance brick:Deionized_Water . + skos:definition "Measures the electrical conductance of deionised water"@en . brick:Deionised_Water_Level_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Deionised Water Level Sensor" ; rdfs:subClassOf brick:Water_Level_Sensor ; - skos:definition "Measures the height/level of deionised water in some container"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deionised ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deionised, - tag:Level, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Level ; - brick:hasSubstance brick:Deionized_Water . + skos:definition "Measures the height/level of deionised water in some container"@en . brick:Deionized_Water_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Deionized Water Alarm" ; rdfs:subClassOf brick:Water_Alarm ; - skos:definition "An alarm that indicates deionized water leaks."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deionized ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Deionized, - tag:Point, - tag:Water . + skos:definition "An alarm that indicates deionized water leaks."@en . brick:Derivative_Gain_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Derivative Gain Parameter" ; - rdfs:subClassOf brick:Gain_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Derivative ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gain ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Derivative, - tag:Gain, - tag:PID, - tag:Parameter, - tag:Point . + rdfs:subClassOf brick:Gain_Parameter . brick:Derivative_Time_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Derivative Time Parameter" ; - rdfs:subClassOf brick:Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Derivative ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Derivative, - tag:PID, - tag:Parameter, - tag:Point, - tag:Time . - -brick:Detention_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Detention Room" ; - rdfs:subClassOf brick:Security_Service_Room ; - skos:definition "A space for the temporary involuntary confinement of people"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Detention ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Detention, - tag:Location, - tag:Room, - tag:Space . + rdfs:subClassOf brick:Time_Parameter . brick:Dewpoint_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Dewpoint Setpoint" ; rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets dew point"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Dewpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Dewpoint, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Dewpoint . + skos:definition "Sets dew point"@en . brick:Differential_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Differential Air Temperature Setpoint" ; rdfs:subClassOf brick:Differential_Temperature_Setpoint ; - skos:definition "Sets temperature of diffrential air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Differential_Temperature ; - brick:hasSubstance brick:Air . - -brick:Differential_Dry_Bulb_Temperature a brick:Quantity ; - rdfs:label "Differential Dry Bulb Temperature" ; - qudt:isDeltaQuantity true ; - skos:broader brick:Dry_Bulb_Temperature ; - brick:hasQUDTReference qudtqk:Dry_Bulb_Temperature . - -brick:Differential_Dynamic_Pressure a brick:Quantity ; - rdfs:label "Differential Dynamic Pressure" ; - qudt:applicableUnit unit:ATM, - unit:ATM_T, - unit:BAR, - unit:BARAD, - unit:BARYE, - unit:CM_H2O, - unit:CentiBAR, - unit:CentiM_H2O, - unit:CentiM_HG, - unit:DYN-PER-CentiM2, - unit:DecaPA, - unit:DeciBAR, - unit:FT_H2O, - unit:FT_HG, - unit:GM_F-PER-CentiM2, - unit:GigaPA, - unit:HectoBAR, - unit:HectoPA, - unit:IN_H2O, - unit:IN_HG, - unit:KIP_F-PER-IN2, - unit:KiloBAR, - unit:KiloGM-PER-M-SEC2, - unit:KiloGM_F-PER-CentiM2, - unit:KiloGM_F-PER-M2, - unit:KiloGM_F-PER-MilliM2, - unit:KiloLB_F-PER-IN2, - unit:KiloPA, - unit:KiloPA_A, - unit:LB_F-PER-FT2, - unit:LB_F-PER-IN2, - unit:MegaBAR, - unit:MegaPA, - unit:MicroATM, - unit:MicroBAR, - unit:MicroPA, - unit:MicroTORR, - unit:MilliBAR, - unit:MilliM_H2O, - unit:MilliM_HG, - unit:MilliM_HGA, - unit:MilliPA, - unit:MilliTORR, - unit:N-PER-CentiM2, - unit:N-PER-M2, - unit:N-PER-MilliM2, - unit:PA, - unit:PDL-PER-FT2, - unit:PSI, - unit:PlanckPressure, - unit:TORR ; - qudt:isDeltaQuantity true ; - skos:broader brick:Differential_Pressure, - brick:Velocity_Pressure ; - brick:hasQUDTReference qudtqk:DynamicPressure . - -brick:Differential_Pressure_Bypass_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Differential Pressure Bypass Valve" ; - rdfs:subClassOf brick:Bypass_Valve ; - skos:definition "A 2-way, self contained proportional valve with an integral differential pressure adjustment setting."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Bypass ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Bypass, - tag:Differential, - tag:Equipment, - tag:Pressure, - tag:Valve . + skos:definition "Sets temperature of diffrential air"@en . + +brick:Differential_Discharge_Return_Water_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Differential Discharge Return Water Temperature Sensor" ; + rdfs:subClassOf brick:Discharge_Water_Temperature_Sensor, + brick:Return_Water_Temperature_Sensor, + brick:Water_Differential_Temperature_Sensor . brick:Differential_Speed_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Differential Speed Sensor" ; - rdfs:subClassOf brick:Speed_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Point, - tag:Sensor, - tag:Speed . + rdfs:subClassOf brick:Speed_Sensor . brick:Differential_Speed_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Differential Speed Setpoint" ; rdfs:subClassOf brick:Differential_Setpoint ; - skos:definition "Sets differential speed"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Point, - tag:Setpoint, - tag:Speed . - -brick:Differential_Static_Pressure a brick:Quantity ; - rdfs:label "Differential Static Pressure" ; - qudt:applicableUnit unit:ATM, - unit:ATM_T, - unit:BAR, - unit:BARAD, - unit:BARYE, - unit:CM_H2O, - unit:CentiBAR, - unit:CentiM_H2O, - unit:CentiM_HG, - unit:DYN-PER-CentiM2, - unit:DecaPA, - unit:DeciBAR, - unit:FT_H2O, - unit:FT_HG, - unit:GM_F-PER-CentiM2, - unit:GigaPA, - unit:HectoBAR, - unit:HectoPA, - unit:IN_H2O, - unit:IN_HG, - unit:KIP_F-PER-IN2, - unit:KiloBAR, - unit:KiloGM-PER-M-SEC2, - unit:KiloGM_F-PER-CentiM2, - unit:KiloGM_F-PER-M2, - unit:KiloGM_F-PER-MilliM2, - unit:KiloLB_F-PER-IN2, - unit:KiloPA, - unit:KiloPA_A, - unit:LB_F-PER-FT2, - unit:LB_F-PER-IN2, - unit:MegaBAR, - unit:MegaPA, - unit:MicroATM, - unit:MicroBAR, - unit:MicroPA, - unit:MicroTORR, - unit:MilliBAR, - unit:MilliM_H2O, - unit:MilliM_HG, - unit:MilliM_HGA, - unit:MilliPA, - unit:MilliTORR, - unit:N-PER-CentiM2, - unit:N-PER-M2, - unit:N-PER-MilliM2, - unit:PA, - unit:PDL-PER-FT2, - unit:PSI, - unit:PlanckPressure, - unit:TORR ; - qudt:isDeltaQuantity true ; - skos:broader brick:Differential_Pressure, - brick:Static_Pressure ; - brick:hasQUDTReference qudtqk:StaticPressure . + skos:definition "Sets differential speed"@en . brick:Differential_Supply_Return_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; @@ -4297,4857 +534,764 @@ brick:Differential_Supply_Return_Water_Temperature_Sensor a owl:Class, rdfs:subClassOf brick:Return_Water_Temperature_Sensor, brick:Supply_Water_Temperature_Sensor, brick:Water_Differential_Temperature_Sensor ; - owl:equivalentClass brick:Differential_Discharge_Return_Water_Temperature_Sensor ; - skos:definition "Measures the difference in temperature between return and supply water of water a circuit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Point, - tag:Return, - tag:Sensor, - tag:Supply, - tag:Temperature ; - brick:hasQuantity brick:Differential_Temperature ; - brick:hasSubstance brick:Return_Water, - brick:Supply_Water . - -brick:Dimmer a owl:Class, - sh:NodeShape ; - rdfs:label "Dimmer" ; - rdfs:subClassOf brick:Switch ; - skos:definition "A switch providing continuous control over all or part of a lighting installation; typically potentiometer-based"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Dimmer ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Interface ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Switch ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Dimmer, - tag:Equipment, - tag:Interface, - tag:Switch . - -brick:Direct_Expansion_Cooling_Coil a owl:Class, - sh:NodeShape ; - rdfs:label "Direct Expansion Cooling Coil" ; - rdfs:subClassOf brick:Cooling_Coil ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Coil ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Direct ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Expansion ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Coil, - tag:Cool, - tag:Direct, - tag:Equipment, - tag:Expansion . - -brick:Direct_Expansion_Heating_Coil a owl:Class, - sh:NodeShape ; - rdfs:label "Direct Expansion Heating Coil" ; - rdfs:subClassOf brick:Heating_Coil ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Coil ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Direct ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Expansion ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Coil, - tag:Direct, - tag:Equipment, - tag:Expansion, - tag:Heat . - -brick:Direction_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Direction Command" ; - rdfs:subClassOf brick:Command ; - skos:definition "Commands that affect the direction of some phenomenon"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Direction ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Direction, - tag:Point ; - brick:hasQuantity brick:Direction . + skos:definition "Measures the difference in temperature between return and supply water of water a circuit"@en . brick:Disable_Differential_Enthalpy_Command a owl:Class, sh:NodeShape ; rdfs:label "Disable Differential Enthalpy Command" ; rdfs:subClassOf brick:Disable_Command ; - skos:definition "Disables the use of differential enthalpy control"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Disable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enthalpy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Differential, - tag:Disable, - tag:Enthalpy, - tag:Point . + skos:definition "Disables the use of differential enthalpy control"@en . brick:Disable_Differential_Temperature_Command a owl:Class, sh:NodeShape ; rdfs:label "Disable Differential Temperature Command" ; rdfs:subClassOf brick:Disable_Command ; - skos:definition "Disables the use of differential temperature control"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Disable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Differential, - tag:Disable, - tag:Point, - tag:Temperature . + skos:definition "Disables the use of differential temperature control"@en . brick:Disable_Fixed_Enthalpy_Command a owl:Class, sh:NodeShape ; rdfs:label "Disable Fixed Enthalpy Command" ; rdfs:subClassOf brick:Disable_Command ; - skos:definition "Disables the use of fixed enthalpy control"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Disable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enthalpy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Disable, - tag:Enthalpy, - tag:Fixed, - tag:Point . + skos:definition "Disables the use of fixed enthalpy control"@en . brick:Disable_Fixed_Temperature_Command a owl:Class, sh:NodeShape ; rdfs:label "Disable Fixed Temperature Command" ; rdfs:subClassOf brick:Disable_Command ; - skos:definition "Disables the use of fixed temperature temperature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Disable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Disable, - tag:Fixed, - tag:Point, - tag:Temperature . + skos:definition "Disables the use of fixed temperature temperature"@en . brick:Disable_Hot_Water_System_Outside_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Disable Hot Water System Outside Air Temperature Setpoint" ; rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint ; - skos:definition "Disables hot water system when outside air temperature reaches the indicated value"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Disable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Disable, - tag:Hot, - tag:Outside, - tag:Point, - tag:Setpoint, - tag:System, - tag:Temperature, - tag:Water . + skos:definition "Disables hot water system when outside air temperature reaches the indicated value"@en . brick:Disable_Status a owl:Class, sh:NodeShape ; rdfs:label "Disable Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates if functionality has been disabled"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Disable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Disable, - tag:Point, - tag:Status . - -brick:Discharge_Air_Differential_Pressure_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Differential Pressure Setpoint" ; - rdfs:subClassOf brick:Air_Differential_Pressure_Setpoint ; - owl:equivalentClass brick:Supply_Air_Differential_Pressure_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Discharge, - tag:Point, - tag:Pressure, - tag:Setpoint ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Supply_Air . - -brick:Disconnect_Switch a owl:Class, - sh:NodeShape ; - rdfs:label "Disconnect Switch" ; - rdfs:subClassOf brick:Electrical_Equipment ; - skos:definition "Building power is most commonly provided by utility company through a master disconnect switch (sometimes called a service disconnect) in the main electrical room of a building. The Utility Company provided master disconnect switch often owns or restricts access to this switch. There can also be other cases where a disconnect is placed into an electrical system to allow service cut-off to a portion of the building."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Disconnect ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Switch ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Disconnect, - tag:Equipment, - tag:Switch . - -brick:Displacement_Flow_Air_Diffuser a owl:Class, - sh:NodeShape ; - rdfs:label "Displacement Flow Air Diffuser" ; - rdfs:subClassOf brick:Air_Diffuser ; - skos:definition "An air diffuser that is designed for low discharge air speeds to minimize turbulence and induction of room air. This diffuser is used with displacement ventilation systems."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Diffuser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Displacement ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Diffuser, - tag:Displacement, - tag:Equipment, - tag:Flow . + skos:definition "Indicates if functionality has been disabled"@en . + +brick:Discharge_Air_Dewpoint_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Dewpoint Sensor" ; + rdfs:subClassOf brick:Dewpoint_Sensor ; + skos:definition "Measures dewpoint of discharge air"@en . + +brick:Discharge_Air_Differential_Pressure_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Differential Pressure Sensor" ; + rdfs:subClassOf brick:Air_Differential_Pressure_Sensor . + +brick:Discharge_Air_Duct_Pressure_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Duct Pressure Status" ; + rdfs:subClassOf brick:Pressure_Status ; + skos:definition "Indicates if air pressure in discharge duct is within expected bounds"@en . + +brick:Discharge_Air_Flow_Demand_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Flow Demand Setpoint" ; + rdfs:subClassOf brick:Air_Flow_Demand_Setpoint, + brick:Discharge_Air_Flow_Setpoint ; + skos:definition "Sets the rate of discharge air flow required for a process"@en . + +brick:Discharge_Air_Flow_High_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Flow High Reset Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Flow_Reset_Setpoint . + +brick:Discharge_Air_Flow_Low_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Flow Low Reset Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Flow_Reset_Setpoint . + +brick:Discharge_Air_Humidity_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Humidity Sensor" ; + rdfs:subClassOf brick:Relative_Humidity_Sensor ; + skos:definition "Measures the relative humidity of discharge air"@en . + +brick:Discharge_Air_Humidity_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Humidity Setpoint" ; + rdfs:subClassOf brick:Humidity_Setpoint ; + skos:definition "Humidity setpoint for discharge air"@en . + +brick:Discharge_Air_Integral_Gain_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Integral Gain Parameter" ; + rdfs:subClassOf brick:Integral_Gain_Parameter . + +brick:Discharge_Air_Proportional_Gain_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Proportional Gain Parameter" ; + rdfs:subClassOf brick:Proportional_Gain_Parameter . + +brick:Discharge_Air_Smoke_Detection_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Smoke Detection Alarm" ; + rdfs:subClassOf brick:Air_Alarm, + brick:Smoke_Detection_Alarm . + +brick:Discharge_Air_Static_Pressure_Deadband_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Static Pressure Deadband Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Static_Pressure_Setpoint, + brick:Static_Pressure_Deadband_Setpoint ; + skos:definition "Sets the size of a deadband of static pressure of discharge air"@en . + +brick:Discharge_Air_Static_Pressure_Integral_Time_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Static Pressure Integral Time Parameter" ; + rdfs:subClassOf brick:Static_Pressure_Integral_Time_Parameter . + +brick:Discharge_Air_Static_Pressure_Proportional_Band_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Static Pressure Proportional Band Parameter" ; + rdfs:subClassOf brick:Static_Pressure_Proportional_Band_Parameter . + +brick:Discharge_Air_Static_Pressure_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Static Pressure Sensor" ; + rdfs:subClassOf brick:Static_Pressure_Sensor ; + skos:definition "The static pressure of air within discharge regions of an HVAC system"@en . + +brick:Discharge_Air_Static_Pressure_Step_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Static Pressure Step Parameter" ; + rdfs:subClassOf brick:Air_Static_Pressure_Step_Parameter . + +brick:Discharge_Air_Temperature_High_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Temperature High Reset Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Reset_Differential_Setpoint . + +brick:Discharge_Air_Temperature_Low_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Temperature Low Reset Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Reset_Differential_Setpoint . + +brick:Discharge_Air_Temperature_Step_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Temperature Step Parameter" ; + rdfs:subClassOf brick:Air_Temperature_Step_Parameter . + +brick:Discharge_Air_Velocity_Pressure_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Velocity Pressure Sensor" ; + rdfs:subClassOf brick:Velocity_Pressure_Sensor . + +brick:Discharge_Chilled_Water_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Chilled Water Temperature Setpoint" ; + rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint, + brick:Discharge_Water_Temperature_Setpoint . + +brick:Discharge_Condenser_Water_Flow_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Condenser Water Flow Sensor" ; + rdfs:subClassOf brick:Discharge_Water_Flow_Sensor . + +brick:Discharge_Condenser_Water_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Condenser Water Temperature Sensor" ; + rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor . + +brick:Discharge_Condenser_Water_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Condenser Water Temperature Setpoint" ; + rdfs:subClassOf brick:Discharge_Water_Temperature_Setpoint . + +brick:Discharge_Hot_Water_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Hot Water Temperature Setpoint" ; + rdfs:subClassOf brick:Discharge_Water_Temperature_Setpoint, + brick:Hot_Water_Temperature_Setpoint . + +brick:Discharge_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Water Differential Pressure Deadband Setpoint" ; + rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ; + skos:definition "Sets the size of a deadband of differential pressure of discharge water"@en . + +brick:Discharge_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Water Differential Pressure Integral Time Parameter" ; + rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter . + +brick:Discharge_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Water Differential Pressure Proportional Band Parameter" ; + rdfs:subClassOf brick:Differential_Pressure_Proportional_Band . + +brick:Discharge_Water_Temperature_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Water Temperature Alarm" ; + rdfs:subClassOf brick:Water_Temperature_Alarm ; + skos:definition "An alarm that indicates the off-normal conditions associated with temperature of the discharge water."@en . + +brick:Discharge_Water_Temperature_Deadband_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Water Temperature Deadband Setpoint" ; + rdfs:subClassOf brick:Supply_Water_Temperature_Setpoint, + brick:Temperature_Deadband_Setpoint . + +brick:Discharge_Water_Temperature_Integral_Time_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Water Temperature Integral Time Parameter" ; + rdfs:subClassOf brick:Integral_Time_Parameter, + brick:Temperature_Parameter . + +brick:Discharge_Water_Temperature_Proportional_Band_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Water Temperature Proportional Band Parameter" ; + rdfs:subClassOf brick:Proportional_Band_Parameter, + brick:Temperature_Parameter . + +brick:Domestic_Hot_Water_Discharge_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Domestic Hot Water Discharge Temperature Sensor" ; + rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Sensor . + +brick:Domestic_Hot_Water_Discharge_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Domestic Hot Water Discharge Temperature Setpoint" ; + rdfs:subClassOf brick:Discharge_Water_Temperature_Setpoint, + brick:Domestic_Hot_Water_Temperature_Setpoint . brick:Domestic_Hot_Water_Supply_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Domestic Hot Water Supply Temperature Sensor" ; rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Sensor ; - owl:equivalentClass brick:Domestic_Hot_Water_Discharge_Temperature_Sensor ; - skos:definition "Measures the temperature of domestic water supplied by a hot water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Domestic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Domestic, - tag:Hot, - tag:Point, - tag:Sensor, - tag:Supply, - tag:Temperature, - tag:Water . + skos:definition "Measures the temperature of domestic water supplied by a hot water system"@en . brick:Domestic_Hot_Water_Supply_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Domestic Hot Water Supply Temperature Setpoint" ; rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Setpoint, brick:Supply_Water_Temperature_Setpoint ; - owl:equivalentClass brick:Domestic_Hot_Water_Discharge_Temperature_Setpoint ; - skos:definition "Sets temperature of supplying part of domestic hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Domestic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Domestic, - tag:Hot, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature, - tag:Water . - -brick:Domestic_Hot_Water_System a owl:Class, - sh:NodeShape ; - rdfs:label "Domestic Hot Water System" ; - rdfs:subClassOf brick:System ; - skos:definition "The equipment, devices and conduits that handle the production and distribution of domestic hot water in a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Domestic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Domestic, - tag:Hot, - tag:System, - tag:Water . + skos:definition "Sets temperature of supplying part of domestic hot water"@en . brick:Domestic_Hot_Water_System_Enable_Command a owl:Class, sh:NodeShape ; rdfs:label "Domestic Hot Water System Enable Command" ; rdfs:subClassOf brick:Hot_Water_System_Enable_Command ; - skos:definition "Enables operation of the domestic hot water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Domestic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Domestic, - tag:Enable, - tag:Hot, - tag:Point, - tag:System, - tag:Water . - -brick:Domestic_Hot_Water_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Domestic Hot Water Valve" ; - rdfs:subClassOf brick:Hot_Water_Valve ; - skos:definition "A valve regulating the flow of domestic hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Domestic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Domestic, - tag:Equipment, - tag:Heat, - tag:Hot, - tag:Valve, - tag:Water . - -brick:Domestic_Water_Loop a owl:Class, - sh:NodeShape ; - rdfs:label "Domestic Water Loop" ; - rdfs:subClassOf brick:Water_Loop ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Domestic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Loop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Domestic, - tag:Loop, - tag:Water . - -brick:Drench_Hose a owl:Class, - sh:NodeShape ; - rdfs:label "Drench Hose" ; - rdfs:subClassOf brick:Emergency_Wash_Station ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Drench ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hose ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Station ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Wash ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Drench, - tag:Emergency, - tag:Equipment, - tag:Hose, - tag:Safety, - tag:Station, - tag:Wash . + skos:definition "Enables operation of the domestic hot water system"@en . brick:Drive_Ready_Status a owl:Class, sh:NodeShape ; rdfs:label "Drive Ready Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates if a hard drive or other storage device is ready to be used, e.g. in the context of RAID"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Drive ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Ready ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Drive, - tag:Point, - tag:Ready, - tag:Status . - -brick:Dry_Cooler a owl:Class, - sh:NodeShape ; - rdfs:label "Dry Cooler" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "A dry cooler is a fluid cooler that uses air, a relatively dry, non-liquid fluid to accomplish process cooling. (https://submer.com/submer-academy/library/dry-cooler/)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Dry ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Dry, - tag:Equipment . + skos:definition "Indicates if a hard drive or other storage device is ready to be used, e.g. in the context of RAID"@en . brick:EconCycle_Start_Stop_Status a owl:Class, sh:NodeShape ; rdfs:label "EconCycle Start Stop Status" ; - rdfs:subClassOf brick:Start_Stop_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Econcycle ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Start ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Econcycle, - tag:Point, - tag:Start, - tag:Status, - tag:Stop . - -brick:Economizer a owl:Class, - sh:NodeShape ; - rdfs:label "Economizer" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "Device that, on proper variable sensing, initiates control signals or actions to conserve energy. A control system that reduces the mechanical heating and cooling requirement."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Economizer ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Economizer, - tag:Equipment . - -brick:Economizer_Damper a owl:Class, - sh:NodeShape ; - rdfs:label "Economizer Damper" ; - rdfs:subClassOf brick:Damper ; - skos:definition "A damper that is part of an economizer that is used to module the flow of air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Damper ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Economizer ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Damper, - tag:Economizer, - tag:Equipment . + rdfs:subClassOf brick:Start_Stop_Status . brick:Effective_Air_Temperature_Cooling_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Effective Air Temperature Cooling Setpoint" ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, - brick:Effective_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Effective ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Effective, - tag:Point, - tag:Setpoint, - tag:Temperature . + brick:Effective_Air_Temperature_Setpoint . brick:Effective_Air_Temperature_Heating_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Effective Air Temperature Heating Setpoint" ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint, - brick:Heating_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Effective ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Effective, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Temperature . + brick:Heating_Temperature_Setpoint . + +brick:Effective_Discharge_Air_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Effective Discharge Air Temperature Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint, + brick:Effective_Air_Temperature_Setpoint . brick:Effective_Return_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Effective Return Air Temperature Setpoint" ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint, - brick:Return_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Effective ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Effective, - tag:Heat, - tag:Point, - tag:Return, - tag:Setpoint, - tag:Temperature . + brick:Return_Air_Temperature_Setpoint . brick:Effective_Room_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Effective Room Air Temperature Setpoint" ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint, - brick:Room_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Effective ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Effective, - tag:Heat, - tag:Point, - tag:Room, - tag:Setpoint, - tag:Temperature . + brick:Room_Air_Temperature_Setpoint . brick:Effective_Supply_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Effective Supply Air Temperature Setpoint" ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint, - brick:Supply_Air_Temperature_Setpoint ; - owl:equivalentClass brick:Effective_Discharge_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Effective ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Effective, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature . + brick:Supply_Air_Temperature_Setpoint . brick:Effective_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Effective Zone Air Temperature Setpoint" ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint, - brick:Zone_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Effective ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Effective, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Zone . - -brick:Electric_Baseboard_Radiator a owl:Class, - sh:NodeShape ; - rdfs:label "Electric Baseboard Radiator" ; - rdfs:subClassOf brick:Baseboard_Radiator, - brick:Electric_Radiator ; - skos:definition "Electric heating device located at or near the floor"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Baseboard ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Electric ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Baseboard, - tag:Electric, - tag:Equipment, - tag:Radiator . - -brick:Electric_Boiler a owl:Class, - sh:NodeShape ; - rdfs:label "Electric Boiler" ; - rdfs:subClassOf brick:Boiler ; - skos:definition "A closed, pressure vessel that uses electricity for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Boiler ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Electric ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Boiler, - tag:Electric, - tag:Equipment . - -brick:Elevator a owl:Class, - sh:NodeShape ; - rdfs:label "Elevator" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Equipment ; - skos:definition "A device that provides vertical transportation between floors, levels or decks of a building, vessel or other structure"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Elevator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Elevator, - tag:Equipment . - -brick:Embedded_Surface_System_Panel a owl:Class, - sh:NodeShape ; - rdfs:label "Embedded Surface System Panel" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Radiant_Panel ; - owl:equivalentClass brick:ESS_Panel ; - skos:definition "Radiant panel heating and cooling system where the energy heat source or sink is embedded in a radiant layer which is thermally insulated from the building structure."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Embedded ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Surface ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Embedded, - tag:Equipment, - tag:Panel, - tag:Surface, - tag:System . - -brick:Emergency_Air_Flow_System a owl:Class, - sh:NodeShape ; - rdfs:label "Emergency Air Flow System" ; - rdfs:subClassOf brick:Safety_System ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Emergency, - tag:Flow, - tag:System . + brick:Zone_Air_Temperature_Setpoint . brick:Emergency_Air_Flow_System_Status a owl:Class, sh:NodeShape ; rdfs:label "Emergency Air Flow System Status" ; - rdfs:subClassOf brick:System_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Emergency, - tag:Flow, - tag:Point, - tag:Status, - tag:System . + rdfs:subClassOf brick:System_Status . brick:Emergency_Generator_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Emergency Generator Alarm" ; rdfs:subClassOf brick:Emergency_Alarm ; - skos:definition "An alarm that indicates off-normal conditions associated with an emergency generator"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Generator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Emergency, - tag:Generator, - tag:Point . + skos:definition "An alarm that indicates off-normal conditions associated with an emergency generator"@en . brick:Emergency_Generator_Status a owl:Class, sh:NodeShape ; rdfs:label "Emergency Generator Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates if an emergency generator is active"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Generator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Emergency, - tag:Generator, - tag:Point, - tag:Status . - -brick:Emergency_Phone a owl:Class, - sh:NodeShape ; - rdfs:label "Emergency Phone" ; - rdfs:subClassOf brick:Intercom_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Intercom ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Phone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Security ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Emergency, - tag:Equipment, - tag:Intercom, - tag:Phone, - tag:Security . - -brick:Emergency_Power_Off_System a owl:Class, - sh:NodeShape ; - rdfs:label "Emergency Power Off System" ; - rdfs:subClassOf brick:Safety_System ; - skos:definition "A system that can power down a single piece of equipment or a single system from a single point"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Emergency, - tag:Off, - tag:Power, - tag:System . + skos:definition "Indicates if an emergency generator is active"@en . brick:Emergency_Power_Off_System_Activated_By_High_Temperature_Status a owl:Class, sh:NodeShape ; rdfs:label "Emergency Power Off System Activated By High Temperature Status" ; - rdfs:subClassOf brick:Emergency_Power_Off_System_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Emergency, - tag:High, - tag:Off, - tag:Point, - tag:Power, - tag:Status, - tag:System, - tag:Temperature . + rdfs:subClassOf brick:Emergency_Power_Off_System_Status . brick:Emergency_Power_Off_System_Activated_By_Leak_Detection_System_Status a owl:Class, sh:NodeShape ; rdfs:label "Emergency Power Off System Activated By Leak Detection System Status" ; - rdfs:subClassOf brick:Emergency_Power_Off_System_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Detection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Leak ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Detection, - tag:Emergency, - tag:Leak, - tag:Off, - tag:Point, - tag:Power, - tag:Status, - tag:System . + rdfs:subClassOf brick:Emergency_Power_Off_System_Status . brick:Emergency_Push_Button_Status a owl:Class, sh:NodeShape ; rdfs:label "Emergency Push Button Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates if an emergency button has been pushed"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Button ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Push ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Button, - tag:Emergency, - tag:Point, - tag:Push, - tag:Status . - -brick:Employee_Entrance_Lobby a owl:Class, - sh:NodeShape ; - rdfs:label "Employee Entrance Lobby" ; - rdfs:subClassOf brick:Lobby ; - skos:definition "An open space near an entrance that is typicaly only used for employees"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Common ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Employee ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Entrance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lobby ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Common, - tag:Employee, - tag:Entrance, - tag:Lobby, - tag:Location, - tag:Space . + skos:definition "Indicates if an emergency button has been pushed"@en . brick:Enable_Differential_Enthalpy_Command a owl:Class, sh:NodeShape ; rdfs:label "Enable Differential Enthalpy Command" ; rdfs:subClassOf brick:Enable_Command ; - skos:definition "Enables the use of differential enthalpy control"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enthalpy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Differential, - tag:Enable, - tag:Enthalpy, - tag:Point . + skos:definition "Enables the use of differential enthalpy control"@en . brick:Enable_Differential_Temperature_Command a owl:Class, sh:NodeShape ; rdfs:label "Enable Differential Temperature Command" ; rdfs:subClassOf brick:Enable_Command ; - skos:definition "Enables the use of differential temperature control"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Differential, - tag:Enable, - tag:Point, - tag:Temperature . + skos:definition "Enables the use of differential temperature control"@en . brick:Enable_Fixed_Enthalpy_Command a owl:Class, sh:NodeShape ; rdfs:label "Enable Fixed Enthalpy Command" ; rdfs:subClassOf brick:Enable_Command ; - skos:definition "Enables the use of fixed enthalpy control"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enthalpy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Enable, - tag:Enthalpy, - tag:Fixed, - tag:Point . + skos:definition "Enables the use of fixed enthalpy control"@en . brick:Enable_Fixed_Temperature_Command a owl:Class, sh:NodeShape ; rdfs:label "Enable Fixed Temperature Command" ; rdfs:subClassOf brick:Enable_Command ; - skos:definition "Enables the use of fixed temperature control"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Enable, - tag:Fixed, - tag:Point, - tag:Temperature . + skos:definition "Enables the use of fixed temperature control"@en . brick:Enable_Hot_Water_System_Outside_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Enable Hot Water System Outside Air Temperature Setpoint" ; rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint ; - skos:definition "Enables hot water system when outside air temperature reaches the indicated value"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Enable, - tag:Hot, - tag:Outside, - tag:Point, - tag:Setpoint, - tag:System, - tag:Temperature, - tag:Water . - -brick:Energy_Generation_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Energy Generation Sensor" ; - rdfs:subClassOf brick:Generation_Sensor ; - skos:definition "A sensor measuring the amount of generated energy."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Energy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Generation ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Energy, - tag:Generation, - tag:Point, - tag:Sensor . + skos:definition "Enables hot water system when outside air temperature reaches the indicated value"@en . brick:Energy_Usage_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Energy Usage Sensor" ; rdfs:subClassOf brick:Energy_Sensor, brick:Usage_Sensor ; - skos:definition "Measures the total amount of energy used over some period of time"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Energy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Usage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Energy, - tag:Point, - tag:Sensor, - tag:Usage . - -brick:Energy_Zone a owl:Class, - sh:NodeShape ; - rdfs:label "Energy Zone" ; - rdfs:subClassOf brick:Zone ; - skos:definition "A space or group of spaces that are managed or monitored as one unit for energy purposes"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Energy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Energy, - tag:Location, - tag:Zone . + skos:definition "Measures the total amount of energy used over some period of time"@en . brick:Entering_Water_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Entering Water Flow Sensor" ; rdfs:subClassOf brick:Water_Flow_Sensor ; - skos:definition "Measures the rate of flow of water entering a piece of equipment or system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Entering ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Entering, - tag:Flow, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Entering_Water . + skos:definition "Measures the rate of flow of water entering a piece of equipment or system"@en . brick:Entering_Water_Flow_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Entering Water Flow Setpoint" ; rdfs:subClassOf brick:Water_Flow_Setpoint ; - skos:definition "Sets the target flow rate of entering water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Entering ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Entering, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Water . + skos:definition "Sets the target flow rate of entering water"@en . brick:Entering_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Entering Water Temperature Sensor" ; rdfs:subClassOf brick:Water_Temperature_Sensor ; - skos:definition "Measures the temperature of water entering a piece of equipment or system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Entering ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Entering, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Entering_Water . + skos:definition "Measures the temperature of water entering a piece of equipment or system"@en . brick:Entering_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Entering Water Temperature Setpoint" ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; - skos:definition "Sets temperature of entering water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Entering ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Entering, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Entering_Water . + skos:definition "Sets temperature of entering water"@en . brick:Enthalpy_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Enthalpy Setpoint" ; rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets enthalpy"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Enthalpy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Enthalpy, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Enthalpy . - -brick:Entrance a owl:Class, - sh:NodeShape ; - rdfs:label "Entrance" ; - rdfs:subClassOf brick:Space ; - skos:definition "The location and space of a building where people enter and exit the building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Entrance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Entrance, - tag:Location, - tag:Space . - -brick:Environment_Box a owl:Class, - sh:NodeShape ; - rdfs:label "Environment Box" ; - rdfs:subClassOf brick:Laboratory ; - skos:definition "(also known as climatic chamber), enclosed space designed to create a particular environment."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Box ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Environment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Laboratory ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Box, - tag:Environment, - tag:Laboratory, - tag:Location, - tag:Room . - -brick:Equipment_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Equipment Room" ; - rdfs:subClassOf brick:Telecom_Room ; - skos:definition "A telecommunications room where equipment that serves the building is stored"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Telecom ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Location, - tag:Room, - tag:Space, - tag:Telecom . - -brick:Evaporative_Heat_Exchanger a owl:Class, - sh:NodeShape ; - rdfs:label "Evaporative Heat Exchanger" ; - rdfs:subClassOf brick:Heat_Exchanger ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Evaporative ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exchanger ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Evaporative, - tag:Exchanger, - tag:Heat . + skos:definition "Sets enthalpy"@en . brick:Even_Month_Status a owl:Class, sh:NodeShape ; rdfs:label "Even Month Status" ; - rdfs:subClassOf brick:Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Even ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Month ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Even, - tag:Month, - tag:Point, - tag:Status . - -brick:Exercise_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Exercise Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "An indoor room used for exercise and physical activities"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Exercise ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Exercise, - tag:Location, - tag:Room, - tag:Space . + rdfs:subClassOf brick:Status . brick:Exhaust_Air_Dewpoint_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Dewpoint Sensor" ; rdfs:subClassOf brick:Dewpoint_Sensor ; - skos:definition "Measures dewpoint of exhaust air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Dewpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Dewpoint, - tag:Exhaust, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Dewpoint ; - brick:hasSubstance brick:Exhaust_Air . + skos:definition "Measures dewpoint of exhaust air"@en . brick:Exhaust_Air_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Differential Pressure Sensor" ; rdfs:subClassOf brick:Air_Differential_Pressure_Sensor ; - skos:definition "Measures the difference in pressure between an upstream and downstream of an air duct or other air conduit used to exhaust air from the building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Exhaust, - tag:Point, - tag:Pressure, - tag:Sensor ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Exhaust_Air . + skos:definition "Measures the difference in pressure between an upstream and downstream of an air duct or other air conduit used to exhaust air from the building"@en . brick:Exhaust_Air_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Differential Pressure Setpoint" ; rdfs:subClassOf brick:Air_Differential_Pressure_Setpoint ; - skos:definition "Sets the target air differential pressure between an upstream and downstream point in a exhaust air duct or conduit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Exhaust, - tag:Point, - tag:Pressure, - tag:Setpoint ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Exhaust_Air . + skos:definition "Sets the target air differential pressure between an upstream and downstream point in a exhaust air duct or conduit"@en . brick:Exhaust_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Humidity Sensor" ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; - skos:definition "Measures the relative humidity of exhaust air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Relative ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Humidity, - tag:Point, - tag:Relative, - tag:Sensor ; - brick:hasQuantity brick:Relative_Humidity ; - brick:hasSubstance brick:Exhaust_Air . + skos:definition "Measures the relative humidity of exhaust air"@en . brick:Exhaust_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Humidity Setpoint" ; rdfs:subClassOf brick:Humidity_Setpoint ; - skos:definition "Humidity setpoint for exhaust air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Humidity, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Humidity ; - brick:hasSubstance brick:Exhaust_Air . + skos:definition "Humidity setpoint for exhaust air"@en . brick:Exhaust_Air_Stack_Flow_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Stack Flow Deadband Setpoint" ; rdfs:subClassOf brick:Air_Flow_Deadband_Setpoint, brick:Exhaust_Air_Stack_Flow_Setpoint ; - skos:definition "Sets the size of a deadband of exhaust air stack flow"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stack ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Deadband, - tag:Exhaust, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Stack . + skos:definition "Sets the size of a deadband of exhaust air stack flow"@en . brick:Exhaust_Air_Stack_Flow_Integral_Time_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Stack Flow Integral Time Parameter" ; - rdfs:subClassOf brick:Exhaust_Air_Flow_Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stack ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Flow, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Stack, - tag:Time . + rdfs:subClassOf brick:Exhaust_Air_Flow_Integral_Time_Parameter . brick:Exhaust_Air_Stack_Flow_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Stack Flow Proportional Band Parameter" ; - rdfs:subClassOf brick:Exhaust_Air_Flow_Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stack ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Band, - tag:Exhaust, - tag:Flow, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional, - tag:Stack . + rdfs:subClassOf brick:Exhaust_Air_Flow_Proportional_Band_Parameter . brick:Exhaust_Air_Stack_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Stack Flow Sensor" ; rdfs:subClassOf brick:Exhaust_Air_Flow_Sensor ; - skos:definition "Measures the rate of flow of air in the exhaust air stack"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stack ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Flow, - tag:Point, - tag:Sensor, - tag:Stack . + skos:definition "Measures the rate of flow of air in the exhaust air stack"@en . brick:Exhaust_Air_Static_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Static Pressure Proportional Band Parameter" ; - rdfs:subClassOf brick:Static_Pressure_Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Band, - tag:Exhaust, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Proportional, - tag:Static . + rdfs:subClassOf brick:Static_Pressure_Proportional_Band_Parameter . brick:Exhaust_Air_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Static Pressure Setpoint" ; rdfs:subClassOf brick:Static_Pressure_Setpoint ; - skos:definition "Sets static pressure of exhaust air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static ; - brick:hasQuantity brick:Static_Pressure ; - brick:hasSubstance brick:Exhaust_Air . + skos:definition "Sets static pressure of exhaust air"@en . brick:Exhaust_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Temperature Sensor" ; rdfs:subClassOf brick:Air_Temperature_Sensor ; - skos:definition "Measures the temperature of exhaust air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Point, - tag:Sensor, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Exhaust_Air . + skos:definition "Measures the temperature of exhaust air"@en . brick:Exhaust_Air_Velocity_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Exhaust Air Velocity Pressure Sensor" ; - rdfs:subClassOf brick:Velocity_Pressure_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Velocity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Velocity ; - brick:hasQuantity brick:Velocity_Pressure ; - brick:hasSubstance brick:Exhaust_Air . - -brick:Exhaust_Damper a owl:Class, - sh:NodeShape ; - rdfs:label "Exhaust Damper" ; - rdfs:subClassOf brick:Damper ; - skos:definition "A damper that modulates the flow of exhaust air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Damper ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Damper, - tag:Equipment, - tag:Exhaust . - -brick:Exhaust_Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Exhaust Fan" ; - rdfs:subClassOf brick:Fan ; - skos:definition "Fan moving exhaust air -- air that must be removed from a space due to contaminants"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Exhaust, - tag:Fan . - -brick:Eye_Wash_Station a owl:Class, - sh:NodeShape ; - rdfs:label "Eye Wash Station" ; - rdfs:subClassOf brick:Emergency_Wash_Station ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Eye ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Station ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Wash ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Emergency, - tag:Equipment, - tag:Eye, - tag:Safety, - tag:Station, - tag:Wash . - -brick:Fan_Coil_Unit a owl:Class, - sh:NodeShape ; - rdfs:label "Fan Coil Unit" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Terminal_Unit ; - owl:equivalentClass brick:FCU ; - skos:definition "Terminal device consisting of a heating and/or cooling heat exchanger or 'coil' and fan that is used to control the temperature in the space where it is installed"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Coil ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Coil, - tag:Equipment, - tag:Fan, - tag:Unit . + rdfs:subClassOf brick:Velocity_Pressure_Sensor . + +brick:Exhaust_Fan_Disable_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Exhaust Fan Disable Command" ; + rdfs:subClassOf brick:Disable_Command ; + skos:definition "Disables operation of the exhaust fan"@en . + +brick:Exhaust_Fan_Enable_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Exhaust Fan Enable Command" ; + rdfs:subClassOf brick:Enable_Command ; + skos:definition "Enables operation of the exhaust fan"@en . brick:Fan_On_Off_Status a owl:Class, sh:NodeShape ; rdfs:label "Fan On Off Status" ; rdfs:subClassOf brick:Fan_Status, - brick:On_Off_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fan, - tag:Off, - tag:On, - tag:Point, - tag:Status . - -brick:Fan_Speed_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Fan Speed Command" ; - rdfs:subClassOf brick:Fan_Command ; - skos:definition "Controls the speed of fans"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Fan, - tag:Point, - tag:Speed . - -brick:Fan_VFD a owl:Class, - sh:NodeShape ; - rdfs:label "Fan VFD" ; - rdfs:subClassOf brick:VFD ; - skos:definition "Variable-frequency drive for fans"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:VFD ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Fan, - tag:VFD . + brick:On_Off_Status . brick:Fault_Reset_Command a owl:Class, sh:NodeShape ; rdfs:label "Fault Reset Command" ; rdfs:subClassOf brick:Reset_Command ; - skos:definition "Clears a fault status"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fault ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Fault, - tag:Point, - tag:Reset . - -brick:Field_Of_Play a owl:Class, - sh:NodeShape ; - rdfs:label "Field Of Play" ; - rdfs:subClassOf brick:Outdoor_Area ; - skos:definition "The area of a stadium where athletic events occur, e.g. the soccer pitch"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Area ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Field ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outdoor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Play ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Area, - tag:Field, - tag:Location, - tag:Outdoor, - tag:Play . + skos:definition "Clears a fault status"@en . brick:Filter_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Filter Differential Pressure Sensor" ; rdfs:subClassOf brick:Differential_Pressure_Sensor ; - skos:definition "Measures the difference in pressure on either side of a filter"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Filter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Filter, - tag:Point, - tag:Pressure, - tag:Sensor . + skos:definition "Measures the difference in pressure on either side of a filter"@en . brick:Filter_Reset_Command a owl:Class, sh:NodeShape ; rdfs:label "Filter Reset Command" ; - rdfs:subClassOf brick:Reset_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Filter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Filter, - tag:Point, - tag:Reset . - -brick:Final_Filter a owl:Class, - sh:NodeShape ; - rdfs:label "Final Filter" ; - rdfs:subClassOf brick:Filter ; - skos:definition "The last, high-efficiency filter installed in a sequence to remove the finest particulates from the substance being filtered"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Filter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Final ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Filter, - tag:Final . - -brick:Fire_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Fire Alarm" ; - rdfs:subClassOf brick:Fire_Safety_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Equipment, - tag:Fire, - tag:Safety . - -brick:Fire_Alarm_Control_Panel a owl:Class, - sh:NodeShape ; - rdfs:label "Fire Alarm Control Panel" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Fire_Safety_Equipment ; - skos:definition "Fire alarm panel is the controlling component of a fire alarm system."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Control ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Control, - tag:Equipment, - tag:Fire, - tag:Panel, - tag:Safety . - -brick:Fire_Alarm_Manual_Call_Point a owl:Class, - sh:NodeShape ; - rdfs:label "Fire Alarm Manual Call Point" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Manual_Fire_Alarm_Activation_Equipment ; - skos:definition "Manual alarm call points are designed for the purpose of raising an alarm manually once verification of a fire or emergency condition exists. by operating the push button or break glass the alarm signal can be raised."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Call ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Manual ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Station ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Call, - tag:Equipment, - tag:Fire, - tag:Manual, - tag:Safety, - tag:Station . - -brick:Fire_Alarm_Pull_Station a owl:Class, - sh:NodeShape ; - rdfs:label "Fire Alarm Pull Station" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Manual_Fire_Alarm_Activation_Equipment ; - skos:definition "An active fire protection device (usually wall-mounted) that when activated initiates an alarm on a fire alarm system. In its simplest form the user activates the alarm by pulling the handle down."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Manual ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pull ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Station ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Equipment, - tag:Fire, - tag:Manual, - tag:Pull, - tag:Safety, - tag:Station . - -brick:Fire_Control_Panel a owl:Class, - sh:NodeShape ; - rdfs:label "Fire Control Panel" ; - rdfs:subClassOf brick:Fire_Safety_Equipment ; - skos:definition "A panel-mounted device that provides status and control of a fire safety system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Control ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Control, - tag:Equipment, - tag:Fire, - tag:Panel, - tag:Safety . - -brick:Fire_Safety_System a owl:Class, - sh:NodeShape ; - rdfs:label "Fire Safety System" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Safety_System ; - skos:definition "A system containing devices and equipment that monitor, detect and suppress fire hazards"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fire, - tag:Safety, - tag:System . + rdfs:subClassOf brick:Reset_Command . brick:Fire_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Fire Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the presence of fire"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fire, - tag:Point, - tag:Sensor . - -brick:Fire_Zone a owl:Class, - sh:NodeShape ; - rdfs:label "Fire Zone" ; - rdfs:subClassOf brick:Zone ; - skos:definition "combustion chamber in a furnace or boiler."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fire, - tag:Location, - tag:Zone . - -brick:First_Aid_Kit a owl:Class, - sh:NodeShape ; - rdfs:label "First Aid Kit" ; - rdfs:subClassOf brick:Safety_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Aid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:FirstAid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Aid, - tag:Equipment, - tag:FirstAid, - tag:Safety . - -brick:First_Aid_Room a owl:Class, - sh:NodeShape ; - rdfs:label "First Aid Room" ; - rdfs:subClassOf brick:Medical_Room ; - skos:definition "A room for a person with minor injuries can be treated or temporarily treated until transferred to a more advanced medical facility"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Aid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:First ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meidcal ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Aid, - tag:First, - tag:Location, - tag:Meidcal, - tag:Room, - tag:Space . - -brick:Flow_Loss a brick:Quantity ; - rdfs:label "FlowLoss" ; - qudt:applicableUnit unit:M3-PER-SEC ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader brick:Flow ; - skos:definition "The amount of flow rate that is lost during distribution" . + skos:definition "Measures the presence of fire"@en . brick:Formaldehyde_Level_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Formaldehyde Level Sensor" ; rdfs:subClassOf brick:Air_Quality_Sensor ; - skos:definition "Measures the concentration of formaldehyde in air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Formaldehyde ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Formaldehyde, - tag:Level, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Formaldehyde_Concentration ; - brick:hasSubstance brick:Air . + skos:definition "Measures the concentration of formaldehyde in air"@en . brick:Freeze_Status a owl:Class, sh:NodeShape ; rdfs:label "Freeze Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates if a substance contained within a vessel has frozen"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Freeze ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Freeze, - tag:Point, - tag:Status . - -brick:Freezer a owl:Class, - sh:NodeShape ; - rdfs:label "Freezer" ; - rdfs:subClassOf brick:Laboratory ; - skos:definition "cold chamber usually kept at a temperature of 22°F to 31°F (–5°C to –1°C), with high-volume air circulation."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Freezer ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Laboratory ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Freezer, - tag:Laboratory, - tag:Location, - tag:Room . - -brick:Frequency_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Frequency Setpoint" ; - rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets frequency"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Frequency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Frequency, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Frequency . + skos:definition "Indicates if a substance contained within a vessel has frozen"@en . brick:Frost_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Frost Sensor" ; rdfs:subClassOf brick:Sensor, brick:Temperature_Sensor ; - skos:definition "Senses the presence of frost or conditions that may cause frost"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Frost ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Frost, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Frost ; - brick:hasSubstance brick:Temperature . - -brick:Fume_Hood a owl:Class, - sh:NodeShape ; - rdfs:label "Fume Hood" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "A fume-collection device mounted over a work space, table, or shelf and serving to conduct unwanted gases away from the area enclosed."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fume ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hood ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Fume, - tag:Hood . + skos:definition "Senses the presence of frost or conditions that may cause frost"@en . brick:Fume_Hood_Air_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Fume Hood Air Flow Sensor" ; rdfs:subClassOf brick:Air_Flow_Sensor ; - skos:definition "Measures the rate of flow of air in a fume hood"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fume ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hood ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Fume, - tag:Hood, - tag:Point, - tag:Sensor . - -brick:Gas_Distribution a owl:Class, - sh:NodeShape ; - rdfs:label "Gas Distribution" ; - rdfs:subClassOf brick:Equipment ; - skos:definition "Utilize a gas distribution source to represent how gas is distributed across multiple destinations"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Distribution ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Distribution, - tag:Equipment, - tag:Gas . + skos:definition "Measures the rate of flow of air in a fume hood"@en . brick:Gas_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Gas Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Measures gas concentration (other than CO2)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Gas, - tag:Point, - tag:Sensor . - -brick:Gas_System a owl:Class, - sh:NodeShape ; - rdfs:label "Gas System" ; - rdfs:subClassOf brick:System ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Gas, - tag:System . - -brick:Gas_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Gas Valve" ; - rdfs:subClassOf brick:Valve ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Gas, - tag:Valve . - -brick:Gatehouse a owl:Class, - sh:NodeShape ; - rdfs:label "Gatehouse" ; - rdfs:subClassOf brick:Space ; - skos:definition "The standalone building used to manage the entrance to a campus or building grounds"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Gatehouse ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Gatehouse, - tag:Location, - tag:Space . - -brick:Generator_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Generator Room" ; - rdfs:subClassOf brick:Electrical_Room ; - skos:definition "A room for electrical equipment, specifically electrical generators."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electrical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Generator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Service ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electrical, - tag:Generator, - tag:Location, - tag:Room, - tag:Service, - tag:Space . + skos:definition "Measures gas concentration (other than CO2)"@en . brick:HVAC_Zone a owl:Class, sh:NodeShape ; rdfs:label "HVAC Zone" ; rdfs:subClassOf brick:Zone ; - skos:definition "a space or group of spaces, within a building with heating, cooling, and ventilating requirements, that are sufficiently similar so that desired conditions (e.g., temperature) can be maintained throughout using a single sensor (e.g., thermostat or temperature sensor)."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:HVAC ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:HVAC, - tag:Location, - tag:Zone . + skos:definition "a space or group of spaces, within a building with heating, cooling, and ventilating requirements, that are sufficiently similar so that desired conditions (e.g., temperature) can be maintained throughout using a single sensor (e.g., thermostat or temperature sensor)."@en . brick:Hail_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Hail Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Measures hail in terms of its size and damage potential"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hail ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hail, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Hail . - -brick:Hallway a owl:Class, - sh:NodeShape ; - rdfs:label "Hallway" ; - rdfs:subClassOf brick:Common_Space ; - skos:definition "A common space, used to connect other parts of a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Common ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hallway ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Common, - tag:Hallway, - tag:Location, - tag:Space . - -brick:Hazardous_Materials_Storage a owl:Class, - sh:NodeShape ; - rdfs:label "Hazardous Materials Storage" ; - rdfs:subClassOf brick:Storage_Room ; - skos:definition "A storage space set aside (usually with restricted access) for the storage of materials that can be hazardous to living beings or the environment"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hazardous ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Materials ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Storage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hazardous, - tag:Location, - tag:Materials, - tag:Room, - tag:Space, - tag:Storage . - -brick:Heat_Detector a owl:Class, - sh:NodeShape ; - rdfs:label "Heat Detector" ; - rdfs:subClassOf brick:Fire_Safety_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Detector ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Detector, - tag:Equipment, - tag:Fire, - tag:Heat, - tag:Safety . + skos:definition "Measures hail in terms of its size and damage potential"@en . -brick:Heat_Exchanger_Supply_Water_Temperature_Sensor a owl:Class, +brick:Heat_Exchanger_Discharge_Water_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Heat Exchanger Discharge Water Temperature Sensor" ; + rdfs:subClassOf brick:Water_Temperature_Sensor . + +brick:Heat_Exchanger_Supply_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Heat Exchanger Supply Water Temperature Sensor" ; rdfs:subClassOf brick:Water_Temperature_Sensor ; - owl:equivalentClass brick:Heat_Exchanger_Discharge_Water_Temperature_Sensor ; - skos:definition "Measures the temperature of water supplied by a heat exchanger"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Exchanger ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Exchanger, - tag:Heat, - tag:Point, - tag:Sensor, - tag:Supply, - tag:Temperature, - tag:Water . + skos:definition "Measures the temperature of water supplied by a heat exchanger"@en . brick:Heat_Exchanger_System_Enable_Status a owl:Class, sh:NodeShape ; rdfs:label "Heat Exchanger System Enable Status" ; rdfs:subClassOf brick:Enable_Status, brick:System_Status ; - skos:definition "Indicates if the heat exchanger system has been enabled"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exchanger ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Enable, - tag:Exchanger, - tag:Heat, - tag:Point, - tag:Status, - tag:System . - -brick:Heat_Recovery_Hot_Water_System a owl:Class, - sh:NodeShape ; - rdfs:label "Heat Recovery Hot Water System" ; - rdfs:subClassOf brick:Hot_Water_System ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Recovery ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Heat, - tag:Hot, - tag:Recovery, - tag:System, - tag:Water . + skos:definition "Indicates if the heat exchanger system has been enabled"@en . brick:Heat_Sink_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Heat Sink Temperature Sensor" ; rdfs:subClassOf brick:Temperature_Sensor ; - skos:definition "Measure temperature of the heat sink on a device such as a VFD."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Heat_Sink ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Heat_Sink, - tag:Point, - tag:Sensor, - tag:Temperature . - -brick:Heat_Wheel a owl:Class, - sh:NodeShape ; - rdfs:label "Heat Wheel" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Heat_Exchanger ; - skos:definition "A rotary heat exchanger positioned within the supply and exhaust air streams of an air handling system in order to recover heat energy"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Wheel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Heat, - tag:Wheel . - -brick:Heat_Wheel_VFD a owl:Class, - sh:NodeShape ; - rdfs:label "Heat Wheel VFD" ; - rdfs:subClassOf brick:VFD ; - skos:definition "A VFD that drives a heat wheel"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:VFD ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Wheel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Heat, - tag:VFD, - tag:Wheel . + skos:definition "Measure temperature of the heat sink on a device such as a VFD."@en . brick:Heating_Command a owl:Class, sh:NodeShape ; rdfs:label "Heating Command" ; rdfs:subClassOf brick:Command ; - skos:definition "Controls the amount of heating to be delivered (typically as a proportion of total heating output)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Heat, - tag:Point . + skos:definition "Controls the amount of heating to be delivered (typically as a proportion of total heating output)"@en . brick:Heating_Demand_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Heating Demand Setpoint" ; rdfs:subClassOf brick:Demand_Setpoint ; - skos:definition "Sets the rate required for heating"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Demand, - tag:Heat, - tag:Point, - tag:Setpoint . + skos:definition "Sets the rate required for heating"@en . + +brick:Heating_Discharge_Air_Temperature_Deadband_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Heating Discharge Air Temperature Deadband Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Deadband_Setpoint, + brick:Discharge_Air_Temperature_Heating_Setpoint ; + skos:definition "Sets the size of a deadband of temperature of heating discharge air"@en . + +brick:Heating_Discharge_Air_Temperature_Integral_Time_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Heating Discharge Air Temperature Integral Time Parameter" ; + rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter . + +brick:Heating_Discharge_Air_Temperature_Proportional_Band_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Heating Discharge Air Temperature Proportional Band Parameter" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Proportional_Band_Parameter . brick:Heating_Enable_Command a owl:Class, sh:NodeShape ; rdfs:label "Heating Enable Command" ; rdfs:subClassOf brick:Enable_Command ; - skos:definition "Command that enables heating functionality in equipment but certain condition(s) must be met first before actively heating. For the actively heating control, see Heating_Command."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heating ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Enable, - tag:Heating, - tag:Point . + skos:definition "Command that enables heating functionality in equipment but certain condition(s) must be met first before actively heating. For the actively heating control, see Heating_Command."@en . brick:Heating_Start_Stop_Status a owl:Class, sh:NodeShape ; rdfs:label "Heating Start Stop Status" ; - rdfs:subClassOf brick:Start_Stop_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Start ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Heat, - tag:Point, - tag:Start, - tag:Status, - tag:Stop . + rdfs:subClassOf brick:Start_Stop_Status . brick:Heating_Supply_Air_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Heating Supply Air Temperature Deadband Setpoint" ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, brick:Supply_Air_Temperature_Deadband_Setpoint ; - owl:equivalentClass brick:Heating_Discharge_Air_Temperature_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of temperature of supply air for heating"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Deadband, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature . + skos:definition "Sets the size of a deadband of temperature of supply air for heating"@en . brick:Heating_Supply_Air_Temperature_Integral_Time_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Heating Supply Air Temperature Integral Time Parameter" ; - rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter ; - owl:equivalentClass brick:Heating_Discharge_Air_Temperature_Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Supply, - tag:Temperature, - tag:Time . + rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter . brick:Heating_Supply_Air_Temperature_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Heating Supply Air Temperature Proportional Band Parameter" ; - rdfs:subClassOf brick:Supply_Air_Temperature_Proportional_Band_Parameter ; - owl:equivalentClass brick:Heating_Discharge_Air_Temperature_Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Band, - tag:Heat, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional, - tag:Supply, - tag:Temperature . + rdfs:subClassOf brick:Supply_Air_Temperature_Proportional_Band_Parameter . brick:Heating_Thermal_Power_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Heating Thermal Power Sensor" ; - rdfs:subClassOf brick:Thermal_Power_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Thermal ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Heat, - tag:Point, - tag:Power, - tag:Sensor, - tag:Thermal . + rdfs:subClassOf brick:Thermal_Power_Sensor . brick:High_Air_Flow_Alarm a owl:Class, sh:NodeShape ; rdfs:label "High Air Flow Alarm" ; rdfs:subClassOf brick:Air_Flow_Alarm ; - skos:definition "An alarm that indicates that the air flow is higher than normal."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Flow, - tag:High, - tag:Point . - -brick:High_Alarm_Threshold a owl:Class, - sh:NodeShape ; - rdfs:label "High Alarm Threshold" ; - rdfs:subClassOf brick:Alarm_Threshold ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Threshold ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:High, - tag:Parameter, - tag:Point, - tag:Threshold . + skos:definition "An alarm that indicates that the air flow is higher than normal."@en . brick:High_CO2_Alarm a owl:Class, sh:NodeShape ; rdfs:label "High CO2 Alarm" ; rdfs:subClassOf brick:CO2_Alarm ; - skos:definition "A device that indicates high concentration of carbon dioxide."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:CO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:CO2, - tag:High, - tag:Point . + skos:definition "A device that indicates high concentration of carbon dioxide."@en . + +brick:High_Discharge_Air_Temperature_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "High Discharge Air Temperature Alarm" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Alarm, + brick:High_Temperature_Alarm ; + skos:definition "An alarm that indicates that discharge air temperature is too high"@en . brick:High_Head_Pressure_Alarm a owl:Class, sh:NodeShape ; rdfs:label "High Head Pressure Alarm" ; rdfs:subClassOf brick:Pressure_Alarm ; - skos:definition "An alarm that indicates a high pressure generated on the output side of a gas compressor in a refrigeration or air conditioning system."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Head ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Head, - tag:High, - tag:Point, - tag:Pressure . + skos:definition "An alarm that indicates a high pressure generated on the output side of a gas compressor in a refrigeration or air conditioning system."@en . brick:High_Humidity_Alarm a owl:Class, sh:NodeShape ; rdfs:label "High Humidity Alarm" ; rdfs:subClassOf brick:Humidity_Alarm ; - skos:definition "An alarm that indicates high concentration of water vapor in the air."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:High, - tag:Humidity, - tag:Point . + skos:definition "An alarm that indicates high concentration of water vapor in the air."@en . brick:High_Humidity_Alarm_Parameter a owl:Class, sh:NodeShape ; rdfs:label "High Humidity Alarm Parameter" ; rdfs:subClassOf brick:Humidity_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:High, - tag:Humidity, - tag:Parameter, - tag:Point . + skos:definition "A parameter determining the humidity level at which to trigger a high humidity alarm"@en . brick:High_Outside_Air_Lockout_Temperature_Differential_Parameter a owl:Class, sh:NodeShape ; rdfs:label "High Outside Air Lockout Temperature Differential Parameter" ; rdfs:subClassOf brick:Outside_Air_Lockout_Temperature_Differential_Parameter ; - skos:definition "The upper bound of the outside air temperature lockout range"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lockout ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:High, - tag:Lockout, - tag:Outside, - tag:Parameter, - tag:Point, - tag:Temperature . + skos:definition "The upper bound of the outside air temperature lockout range"@en . brick:High_Return_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; rdfs:label "High Return Air Temperature Alarm" ; rdfs:subClassOf brick:High_Temperature_Alarm, brick:Return_Air_Temperature_Alarm ; - skos:definition "An alarm that indicates that return air temperature is too high"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:High, - tag:Point, - tag:Return, - tag:Temperature . - -brick:High_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "High Setpoint Limit" ; - rdfs:subClassOf brick:Setpoint_Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a High_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:High, - tag:Limit, - tag:Parameter, - tag:Point, - tag:Setpoint . + skos:definition "An alarm that indicates that return air temperature is too high"@en . brick:High_Static_Pressure_Cutout_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "High Static Pressure Cutout Setpoint Limit" ; rdfs:subClassOf brick:Static_Pressure_Setpoint_Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a High_Static_Pressure_Cutout_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cutout ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cutout, - tag:High, - tag:Limit, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static . + skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a High_Static_Pressure_Cutout_Setpoint."@en . brick:High_Supply_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; rdfs:label "High Supply Air Temperature Alarm" ; rdfs:subClassOf brick:High_Temperature_Alarm, - brick:Supply_Air_Temperature_Alarm ; - owl:equivalentClass brick:High_Discharge_Air_Temperature_Alarm ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:High, - tag:Point, - tag:Supply, - tag:Temperature . + brick:Supply_Air_Temperature_Alarm . + +brick:High_Temperature_Alarm_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "High Temperature Alarm Parameter" ; + rdfs:subClassOf brick:Temperature_Parameter ; + skos:definition "A parameter determining the temperature level at which to trigger a high temperature alarm"@en . + +brick:High_Temperature_Hot_Water_Discharge_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "High Temperature Hot Water Discharge Temperature Sensor" ; + rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Sensor . brick:High_Temperature_Hot_Water_Return_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "High Temperature Hot Water Return Temperature Sensor" ; rdfs:subClassOf brick:Hot_Water_Return_Temperature_Sensor ; - skos:definition "Measures the temperature of high-temperature hot water returned to a hot water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:High, - tag:Hot, - tag:Point, - tag:Return, - tag:Sensor, - tag:Temperature, - tag:Water . + skos:definition "Measures the temperature of high-temperature hot water returned to a hot water system"@en . brick:High_Temperature_Hot_Water_Supply_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "High Temperature Hot Water Supply Temperature Sensor" ; rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Sensor ; - owl:equivalentClass brick:High_Temperature_Hot_Water_Discharge_Temperature_Sensor ; - skos:definition "Measures the temperature of high-temperature hot water supplied by a hot water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:High, - tag:Hot, - tag:Point, - tag:Sensor, - tag:Supply, - tag:Temperature, - tag:Water . + skos:definition "Measures the temperature of high-temperature hot water supplied by a hot water system"@en . brick:Hold_Status a owl:Class, sh:NodeShape ; rdfs:label "Hold Status" ; - rdfs:subClassOf brick:Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hold ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hold, - tag:Point, - tag:Status . - -brick:Hospitality_Box a owl:Class, - sh:NodeShape ; - rdfs:label "Hospitality Box" ; - rdfs:subClassOf brick:Room ; - skos:definition "A room at a stadium, usually overlooking the field of play, that is physical separate from the other seating at the venue"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Box ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hospitality ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Box, - tag:Hospitality, - tag:Location, - tag:Room, - tag:Space . - -brick:Hot_Box a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Box" ; - rdfs:subClassOf brick:Laboratory ; - skos:definition "hot air chamber forming part of an air handler."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Box ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Laboratory ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Box, - tag:Hot, - tag:Laboratory, - tag:Location, - tag:Room . - -brick:Hot_Water_Baseboard_Radiator a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Baseboard Radiator" ; - rdfs:subClassOf brick:Baseboard_Radiator, - brick:Hot_Water_Radiator ; - skos:definition "Hydronic heating device located at or near the floor"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Baseboard ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Baseboard, - tag:Equipment, - tag:Hot, - tag:Radiator, - tag:Water . - -brick:Hot_Water_Coil a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Coil" ; - rdfs:subClassOf brick:Heating_Coil ; - skos:definition "A heating element typically made of pipe, tube or wire that emits heat that is filled with hot water."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Coil ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Coil, - tag:Equipment, - tag:Heat, - tag:Hot, - tag:Water . + rdfs:subClassOf brick:Status . brick:Hot_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Hot Water Differential Pressure Deadband Setpoint" ; rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of differential pressure of hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deadband, - tag:Differential, - tag:Hot, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Hot_Water . + skos:definition "Sets the size of a deadband of differential pressure of hot water"@en . brick:Hot_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Hot Water Differential Pressure Integral Time Parameter" ; - rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Hot, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Time, - tag:Water . + rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter . brick:Hot_Water_Differential_Pressure_Load_Shed_Reset_Status a owl:Class, sh:NodeShape ; rdfs:label "Hot Water Differential Pressure Load Shed Reset Status" ; - rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Load_Shed_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Hot, - tag:Load, - tag:Point, - tag:Pressure, - tag:Reset, - tag:Shed, - tag:Status, - tag:Water . + rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Load_Shed_Status . brick:Hot_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Hot Water Differential Pressure Proportional Band Parameter" ; - rdfs:subClassOf brick:Differential_Pressure_Proportional_Band ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Band, - tag:Differential, - tag:Hot, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Proportional, - tag:Water . + rdfs:subClassOf brick:Differential_Pressure_Proportional_Band . brick:Hot_Water_Differential_Temperature_Sensor a owl:Class, sh:NodeShape ; @@ -9155,33660 +1299,3400 @@ brick:Hot_Water_Differential_Temperature_Sensor a owl:Class, rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Sensor, brick:Hot_Water_Supply_Temperature_Sensor, brick:Water_Differential_Temperature_Sensor ; - skos:definition "Measures the difference in temperature between the entering water to the boiler or other water heating device and leaving water from the same boiler or other water heating device"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Hot, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water . - -brick:Hot_Water_Loop a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Loop" ; - rdfs:subClassOf brick:Water_Loop ; - skos:definition "A collection of equipment that transport and regulate hot water among each other"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Loop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Loop, - tag:Water . - -brick:Hot_Water_Pump a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Pump" ; - rdfs:subClassOf brick:Water_Pump ; - skos:definition "A pump that performs work on hot water; typically part of a hot water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pump ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Hot, - tag:Pump, - tag:Water . + skos:definition "Measures the difference in temperature between the entering water to the boiler or other water heating device and leaving water from the same boiler or other water heating device"@en . + +brick:Hot_Water_Discharge_Flow_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Discharge Flow Sensor" ; + rdfs:subClassOf brick:Discharge_Water_Flow_Sensor ; + skos:definition "Measures the rate of flow of hot discharge water"@en . + +brick:Hot_Water_Discharge_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Discharge Flow Setpoint" ; + rdfs:subClassOf brick:Discharge_Water_Flow_Setpoint, + brick:Hot_Water_Flow_Setpoint ; + skos:definition "Sets the target flow rate of hot discharge water"@en . brick:Hot_Water_Return_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Hot Water Return Flow Sensor" ; rdfs:subClassOf brick:Hot_Water_Flow_Sensor, brick:Return_Water_Flow_Sensor ; - skos:definition "Measures the rate of flow of hot return water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Hot, - tag:Point, - tag:Return, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Return_Hot_Water . + skos:definition "Measures the rate of flow of hot return water"@en . brick:Hot_Water_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Hot Water Static Pressure Setpoint" ; rdfs:subClassOf brick:Static_Pressure_Setpoint ; - skos:definition "Sets static pressure of hot air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static, - tag:Water ; - brick:hasQuantity brick:Static_Pressure ; - brick:hasSubstance brick:Hot_Water . + skos:definition "Sets static pressure of hot air"@en . brick:Hot_Water_Supply_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Hot Water Supply Flow Sensor" ; rdfs:subClassOf brick:Hot_Water_Flow_Sensor, brick:Supply_Water_Flow_Sensor ; - owl:equivalentClass brick:Hot_Water_Discharge_Flow_Sensor ; - skos:definition "Measures the rate of flow of hot supply water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Hot, - tag:Point, - tag:Sensor, - tag:Supply, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Supply_Hot_Water . + skos:definition "Measures the rate of flow of hot supply water"@en . brick:Hot_Water_Supply_Flow_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Hot Water Supply Flow Setpoint" ; rdfs:subClassOf brick:Hot_Water_Flow_Setpoint, brick:Supply_Water_Flow_Setpoint ; - owl:equivalentClass brick:Hot_Water_Discharge_Flow_Setpoint ; - skos:definition "Sets the target flow rate of hot supply water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Hot, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Water . + skos:definition "Sets the target flow rate of hot supply water"@en . brick:Hot_Water_Usage_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Hot Water Usage Sensor" ; rdfs:subClassOf brick:Water_Usage_Sensor ; - skos:definition "Measures the amount of hot water that is consumed, over some period of time"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Usage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Point, - tag:Sensor, - tag:Usage, - tag:Water . + skos:definition "Measures the amount of hot water that is consumed, over some period of time"@en . brick:Humidification_Start_Stop_Status a owl:Class, sh:NodeShape ; rdfs:label "Humidification Start Stop Status" ; - rdfs:subClassOf brick:Start_Stop_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Humidification ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Start ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Humidification, - tag:Point, - tag:Start, - tag:Status, - tag:Stop . - -brick:Humidifier a owl:Class, - sh:NodeShape ; - rdfs:label "Humidifier" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "A device that adds moisture to air or other gases"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidifier ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Humidifier . + rdfs:subClassOf brick:Start_Stop_Status . brick:Humidifier_Fault_Status a owl:Class, sh:NodeShape ; rdfs:label "Humidifier Fault Status" ; rdfs:subClassOf brick:Fault_Status ; - skos:definition "Indicates the presence of a fault in a humidifier"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fault ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidifier ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fault, - tag:Humidifier, - tag:Point, - tag:Status . + skos:definition "Indicates the presence of a fault in a humidifier"@en . brick:Humidify_Command a owl:Class, sh:NodeShape ; rdfs:label "Humidify Command" ; - rdfs:subClassOf brick:Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidify ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Humidify, - tag:Point ; - brick:hasQuantity brick:Humidity . - -brick:Humidity_Deadband_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Humidity Deadband Setpoint" ; - rdfs:subClassOf brick:Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of humidity"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deadband, - tag:Humidity, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Humidity . + rdfs:subClassOf brick:Command . brick:Humidity_Tolerance_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Humidity Tolerance Parameter" ; rdfs:subClassOf brick:Humidity_Parameter, brick:Tolerance_Parameter ; - skos:definition "A parameter determining the difference between upper and lower limits of humidity."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Tolerance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Humidity, - tag:Parameter, - tag:Point, - tag:Tolerance . - -brick:IDF a owl:Class, - sh:NodeShape ; - rdfs:label "IDF" ; - rdfs:subClassOf brick:Distribution_Frame ; - skos:definition "An room for an intermediate distribution frame, where cables carrying signals from the main distrubtion frame terminate and then feed out to endpoints"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Distribution ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Frame ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:IDF ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Telecom ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Distribution, - tag:Frame, - tag:IDF, - tag:Location, - tag:Room, - tag:Space, - tag:Telecom . + skos:definition "A parameter determining the difference between upper and lower limits of humidity."@en . brick:Ice_Tank_Leaving_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Ice Tank Leaving Water Temperature Sensor" ; rdfs:subClassOf brick:Leaving_Water_Temperature_Sensor ; - skos:definition "Measures the temperature of water leaving an ice tank"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Ice ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Leaving ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Tank ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Ice, - tag:Leaving, - tag:Point, - tag:Sensor, - tag:Tank, - tag:Temperature, - tag:Water . + skos:definition "Measures the temperature of water leaving an ice tank"@en . brick:Illuminance_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Illuminance Setpoint" ; rdfs:subClassOf brick:Setpoint ; - skos:definition "Target Illuminance of the zone."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Illuminance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Illuminance, - tag:Point, - tag:Setpoint . - -brick:Induction_Unit a owl:Class, - sh:NodeShape ; - rdfs:label "Induction Unit" ; - rdfs:subClassOf brick:Terminal_Unit ; - skos:definition "A device with an primary air connection and integrated coil and condensate pan that performs sensible and latent cooling of a space. Essentially an Active Chilled Beam with a built in condensate pan."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Induction ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Induction, - tag:Unit . - -brick:Information_Area a owl:Class, - sh:NodeShape ; - rdfs:label "Information Area" ; - rdfs:subClassOf brick:Outdoor_Area ; - skos:definition "An information booth or kiosk where visitors would look for information"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Area ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Information ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outdoor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Area, - tag:Information, - tag:Location, - tag:Outdoor . + skos:definition "Target Illuminance of the zone."@en . brick:Inside_Face_Surface_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Inside Face Surface Temperature Sensor" ; rdfs:subClassOf brick:Radiant_Panel_Temperature_Sensor ; - skos:definition "Measures the inside surface (relative to the space) of the radiant panel of the radiant heating and cooling HVAC system."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Face ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Inside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Surface ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Face, - tag:Inside, - tag:Point, - tag:Sensor, - tag:Surface, - tag:Temperature . + skos:definition "Measures the inside surface (relative to the space) of the radiant panel of the radiant heating and cooling HVAC system."@en . brick:Inside_Face_Surface_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Inside Face Surface Temperature Setpoint" ; rdfs:subClassOf brick:Radiant_Panel_Temperature_Setpoint ; - skos:definition "Sets temperature for the inside face surface temperature of the radiant panel."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Face ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Inside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Surface ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Face, - tag:Inside, - tag:Point, - tag:Setpoint, - tag:Surface, - tag:Temperature . - -brick:Intake_Air_Filter a owl:Class, - sh:NodeShape ; - rdfs:label "Intake Air Filter" ; - rdfs:subClassOf brick:Filter ; - skos:definition "Filters air intake"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Filter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Intake ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Equipment, - tag:Filter, - tag:Intake . + skos:definition "Sets temperature for the inside face surface temperature of the radiant panel."@en . brick:Intake_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Intake Air Temperature Sensor" ; rdfs:subClassOf brick:Outside_Air_Temperature_Sensor ; - skos:definition "Measures air at the interface between the building and the outside"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Intake ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Intake, - tag:Outside, - tag:Point, - tag:Sensor, - tag:Temperature . - -brick:Intrusion_Detection_Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "Intrusion Detection Equipment" ; - rdfs:subClassOf brick:Security_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Detection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Intrusion ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Security ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Detection, - tag:Equipment, - tag:Intrusion, - tag:Security . - -brick:Inverter a owl:Class, - sh:NodeShape ; - rdfs:label "Inverter" ; - rdfs:subClassOf brick:Electrical_Equipment ; - skos:definition "A device that changes direct current into alternating current"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Inverter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Inverter . - -brick:Janitor_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Janitor Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A room set aside for the storage of cleaning equipment and supplies"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Janitor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Janitor, - tag:Location, - tag:Room, - tag:Space . - -brick:Jet_Nozzle_Air_Diffuser a owl:Class, - sh:NodeShape ; - rdfs:label "Jet Nozzle Air Diffuser" ; - rdfs:subClassOf brick:Air_Diffuser ; - skos:definition "An air diffuser that is designed to produce high velocity discharge air stream to throw the air over a large distance or target the air stream to a localize area"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Diffuser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Jet ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Nozzle ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Diffuser, - tag:Equipment, - tag:Jet, - tag:Nozzle . - -brick:Laminar_Flow_Air_Diffuser a owl:Class, - sh:NodeShape ; - rdfs:label "Laminar Flow Air Diffuser" ; - rdfs:subClassOf brick:Air_Diffuser ; - skos:definition "An air diffuser that is designed for low discharge air speeds to provide uniform and unidirectional air pattern which minimizes room air entrainment"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Diffuser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Laminar ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Diffuser, - tag:Equipment, - tag:Flow, - tag:Laminar . + skos:definition "Measures air at the interface between the building and the outside"@en . brick:Last_Fault_Code_Status a owl:Class, sh:NodeShape ; rdfs:label "Last Fault Code Status" ; rdfs:subClassOf brick:Fault_Status ; - skos:definition "Indicates the last fault code that occurred"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Code ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fault ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Last ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Code, - tag:Fault, - tag:Last, - tag:Point, - tag:Status . + skos:definition "Indicates the last fault code that occurred"@en . brick:Lead_Lag_Command a owl:Class, sh:NodeShape ; rdfs:label "Lead Lag Command" ; rdfs:subClassOf brick:Command ; - skos:definition "Enables lead/lag operation"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lag ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lead ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Lag, - tag:Lead, - tag:Point . + skos:definition "Enables lead/lag operation"@en . brick:Lead_Lag_Status a owl:Class, sh:NodeShape ; rdfs:label "Lead Lag Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates if lead/lag operation is enabled"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Lag ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lead ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Lag, - tag:Lead, - tag:Point, - tag:Status . + skos:definition "Indicates if lead/lag operation is enabled"@en . brick:Lead_On_Off_Command a owl:Class, sh:NodeShape ; rdfs:label "Lead On Off Command" ; rdfs:subClassOf brick:On_Off_Command ; - skos:definition "Controls the active/inactive status of the \"lead\" part of a lead/lag system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lead ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Lead, - tag:Off, - tag:On, - tag:Point . + skos:definition "Controls the active/inactive status of the \"lead\" part of a lead/lag system"@en . brick:Leaving_Water_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Leaving Water Flow Sensor" ; rdfs:subClassOf brick:Water_Flow_Sensor ; - skos:definition "Measures the rate of flow of water that is leaving a piece of equipment or system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Leaving ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Leaving, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Leaving_Water . + skos:definition "Measures the rate of flow of water that is leaving a piece of equipment or system"@en . brick:Leaving_Water_Flow_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Leaving Water Flow Setpoint" ; rdfs:subClassOf brick:Water_Flow_Setpoint ; - skos:definition "Sets the target flow rate of leaving water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Leaving ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Leaving, - tag:Point, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Leaving_Water . + skos:definition "Sets the target flow rate of leaving water"@en . brick:Leaving_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Leaving Water Temperature Setpoint" ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; - skos:definition "Sets temperature of leaving water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Leaving ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Leaving, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Leaving_Water . - -brick:Library a owl:Class, - sh:NodeShape ; - rdfs:label "Library" ; - rdfs:subClassOf brick:Room ; - skos:definition "A place for the storage and/or consumption of physical media, e.g. books, periodicals, and DVDs/CDs"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Library ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Library, - tag:Location, - tag:Room, - tag:Space . - -brick:Light_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Light Command" ; - rdfs:subClassOf brick:Command ; - skos:definition "Controls the amount of the light provided by the device"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Light ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Light, - tag:Point . - -brick:Lighting_System a owl:Class, - sh:NodeShape ; - rdfs:label "Lighting System" ; - rdfs:subClassOf brick:System ; - skos:definition "The equipment, devices and interfaces that serve or are a part of the lighting subsystem in a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Lighting ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Lighting, - tag:System . - -brick:Lighting_Zone a owl:Class, - sh:NodeShape ; - rdfs:label "Lighting Zone" ; - rdfs:subClassOf brick:Zone ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Lighting ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Lighting, - tag:Location, - tag:Zone . + skos:definition "Sets temperature of leaving water"@en . brick:Liquid_Detection_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Liquid Detection Alarm" ; - rdfs:subClassOf brick:Alarm ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Detection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Detection, - tag:Liquid, - tag:Point . + rdfs:subClassOf brick:Alarm . brick:Load_Current_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Load Current Sensor" ; rdfs:subClassOf brick:Current_Sensor ; - skos:definition "Measures the current consumed by a load"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Current ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Current, - tag:Load, - tag:Point, - tag:Sensor . - -brick:Loading_Dock a owl:Class, - sh:NodeShape ; - rdfs:label "Loading Dock" ; - rdfs:subClassOf brick:Room ; - skos:definition "A part of a facility where delivery trucks can load and unload. Usually partially enclosed with specific traffic lanes leading to the dock"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Dock ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Loading ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Dock, - tag:Loading, - tag:Location, - tag:Room, - tag:Space . + skos:definition "Measures the current consumed by a load"@en . brick:Locally_On_Off_Status a owl:Class, sh:NodeShape ; rdfs:label "Locally On Off Status" ; - rdfs:subClassOf brick:On_Off_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Locally ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Locally, - tag:Off, - tag:On, - tag:Point, - tag:Status . + rdfs:subClassOf brick:On_Off_Status . brick:Lockout_Status a owl:Class, sh:NodeShape ; rdfs:label "Lockout Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates if a piece of equipment, system, or functionality has been locked out from operation"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Lockout ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Lockout, - tag:Point, - tag:Status . - -brick:Louver a owl:Class, - sh:NodeShape ; - rdfs:label "Louver" ; - rdfs:subClassOf brick:Shading_Equipment ; - skos:definition "Device consisting of an assembly of parallel sloping vanes, intended to permit the passage of air while providing a measure of protection against environmental influences"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Louver ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shade ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Louver, - tag:Shade . - -brick:Low_Alarm_Threshold a owl:Class, - sh:NodeShape ; - rdfs:label "Low Alarm Threshold" ; - rdfs:subClassOf brick:Alarm_Threshold ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Threshold ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Low, - tag:Parameter, - tag:Point, - tag:Threshold . - -brick:Low_Battery_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Low Battery Alarm" ; - rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates the battery is low."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Battery ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Battery, - tag:Low, - tag:Point . + skos:definition "Indicates if a piece of equipment, system, or functionality has been locked out from operation"@en . + +brick:Low_Discharge_Air_Flow_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Low Discharge Air Flow Alarm" ; + rdfs:subClassOf brick:Low_Air_Flow_Alarm ; + skos:definition "An alarm that indicates that the discharge air flow is lower than normal."@en . + +brick:Low_Discharge_Air_Temperature_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Low Discharge Air Temperature Alarm" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Alarm, + brick:Low_Temperature_Alarm . brick:Low_Freeze_Protect_Temperature_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Low Freeze Protect Temperature Parameter" ; - rdfs:subClassOf brick:Temperature_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Freeze ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Protect ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Freeze, - tag:Low, - tag:Parameter, - tag:Point, - tag:Protect, - tag:Temperature . + rdfs:subClassOf brick:Temperature_Parameter . brick:Low_Humidity_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Low Humidity Alarm" ; rdfs:subClassOf brick:Humidity_Alarm ; - skos:definition "An alarm that indicates low concentration of water vapor in the air."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Humidity, - tag:Low, - tag:Point . + skos:definition "An alarm that indicates low concentration of water vapor in the air."@en . brick:Low_Humidity_Alarm_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Low Humidity Alarm Parameter" ; rdfs:subClassOf brick:Humidity_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Humidity, - tag:Low, - tag:Parameter, - tag:Point . + skos:definition "A parameter determining the humidity level at which to trigger a low humidity alarm"@en . brick:Low_Outside_Air_Lockout_Temperature_Differential_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Low Outside Air Lockout Temperature Differential Parameter" ; rdfs:subClassOf brick:Outside_Air_Lockout_Temperature_Differential_Parameter ; - skos:definition "The lower bound of the outside air temperature lockout range"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lockout ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Lockout, - tag:Low, - tag:Outside, - tag:Parameter, - tag:Point, - tag:Temperature . + skos:definition "The lower bound of the outside air temperature lockout range"@en . brick:Low_Outside_Air_Temperature_Enable_Differential_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Low Outside Air Temperature Enable Differential Sensor" ; - rdfs:subClassOf brick:Outside_Air_Temperature_Enable_Differential_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Enable, - tag:Low, - tag:Outside, - tag:Point, - tag:Sensor, - tag:Temperature . + rdfs:subClassOf brick:Outside_Air_Temperature_Enable_Differential_Sensor . brick:Low_Outside_Air_Temperature_Enable_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Low Outside Air Temperature Enable Setpoint" ; - rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Enable, - tag:Low, - tag:Outside, - tag:Point, - tag:Setpoint, - tag:Temperature . + rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint . brick:Low_Return_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Low Return Air Temperature Alarm" ; rdfs:subClassOf brick:Low_Temperature_Alarm, brick:Return_Air_Temperature_Alarm ; - skos:definition "An alarm that indicates that return air temperature is too low"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Low, - tag:Point, - tag:Return, - tag:Temperature . - -brick:Low_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Low Setpoint Limit" ; - rdfs:subClassOf brick:Setpoint_Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Low_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Low, - tag:Parameter, - tag:Point, - tag:Setpoint . + skos:definition "An alarm that indicates that return air temperature is too low"@en . brick:Low_Suction_Pressure_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Low Suction Pressure Alarm" ; rdfs:subClassOf brick:Pressure_Alarm ; - skos:definition "An alarm that indicates a low suction pressure in the compressor in a refrigeration or air conditioning system."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Suction ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Low, - tag:Point, - tag:Pressure, - tag:Suction . + skos:definition "An alarm that indicates a low suction pressure in the compressor in a refrigeration or air conditioning system."@en . brick:Low_Supply_Air_Flow_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Low Supply Air Flow Alarm" ; - rdfs:subClassOf brick:Low_Air_Flow_Alarm ; - owl:equivalentClass brick:Low_Discharge_Air_Flow_Alarm ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Flow, - tag:Low, - tag:Point, - tag:Supply . + rdfs:subClassOf brick:Low_Air_Flow_Alarm . brick:Low_Supply_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Low Supply Air Temperature Alarm" ; rdfs:subClassOf brick:Low_Temperature_Alarm, - brick:Supply_Air_Temperature_Alarm ; - owl:equivalentClass brick:Low_Discharge_Air_Temperature_Alarm ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Low, - tag:Point, - tag:Supply, - tag:Temperature . + brick:Supply_Air_Temperature_Alarm . + +brick:Low_Temperature_Alarm_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Low Temperature Alarm Parameter" ; + rdfs:subClassOf brick:Temperature_Parameter ; + skos:definition "A parameter determining the temperature level at which to trigger a low temperature alarm"@en . brick:Low_Voltage_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Low Voltage Alarm" ; rdfs:subClassOf brick:Voltage_Alarm ; - skos:definition "An alarm that indicates the voltage is lower than its normal state."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Voltage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Low, - tag:Point, - tag:Voltage . + skos:definition "An alarm that indicates the voltage is lower than its normal state."@en . brick:Lowest_Exhaust_Air_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Lowest Exhaust Air Static Pressure Sensor" ; rdfs:subClassOf brick:Exhaust_Air_Static_Pressure_Sensor ; - skos:definition "The lowest observed static pressure of air in exhaust regions of an HVAC system over some period of time"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lowest ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Lowest, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Static . - -brick:Luminaire a owl:Class, - sh:NodeShape ; - rdfs:label "Luminaire" ; - rdfs:subClassOf brick:Lighting ; - skos:definition "A complete lighting unit consisting of a lamp or lamps and ballast(s) (when applicable) together with the parts designed to distribute the light, to position and protect the lamps, and to connect the lamps to the power supply."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Luminaire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Luminaire . - -brick:Luminaire_Driver a owl:Class, - sh:NodeShape ; - rdfs:label "Luminaire Driver" ; - rdfs:subClassOf brick:Lighting ; - skos:definition "A power source for a luminaire"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Driver ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Luminaire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Driver, - tag:Equipment, - tag:Luminaire . + skos:definition "The lowest observed static pressure of air in exhaust regions of an HVAC system over some period of time"@en . brick:Luminance_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Luminance Alarm" ; - rdfs:subClassOf brick:Alarm ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Luminance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Luminance, - tag:Point . + rdfs:subClassOf brick:Alarm . brick:Luminance_Command a owl:Class, sh:NodeShape ; rdfs:label "Luminance Command" ; rdfs:subClassOf brick:Command ; - skos:definition "Controls the amount of luminance delivered by a lighting system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Luminance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Luminance, - tag:Point . + skos:definition "Controls the amount of luminance delivered by a lighting system"@en . brick:Luminance_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Luminance Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the luminous intensity per unit area of light travelling in a given direction"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Luminance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Luminance, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Luminance . + skos:definition "Measures the luminous intensity per unit area of light travelling in a given direction"@en . brick:Luminance_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Luminance Setpoint" ; rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets luminance"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Luminance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Luminance, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Luminance . - -brick:Luminous_Flux a brick:Quantity ; - rdfs:label "Luminous Flux" ; - qudt:applicableUnit unit:LM ; - skos:broader brick:Luminance ; - brick:hasQUDTReference qudtqk:LuminousFlux . - -brick:Luminous_Intensity a brick:Quantity ; - rdfs:label "Luminous Intensity" ; - qudt:applicableUnit unit:CD, - unit:CP ; - skos:broader brick:Luminance ; - brick:hasQUDTReference qudtqk:LuminousIntensity . - -brick:MDF a owl:Class, - sh:NodeShape ; - rdfs:label "MDF" ; - rdfs:subClassOf brick:Distribution_Frame ; - skos:definition "A room for the Main Distribution Frame, the central place of a building where cables carrying signals meet and connect to the outside world"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Distribution ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Frame ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:MDF ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Telecom ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Distribution, - tag:Frame, - tag:Location, - tag:MDF, - tag:Room, - tag:Space, - tag:Telecom . - -brick:Mail_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Mail Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A room where mail is recieved and sorted for distribution to the rest of the building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mail ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Mail, - tag:Room, - tag:Space . + skos:definition "Sets luminance"@en . brick:Maintenance_Mode_Command a owl:Class, sh:NodeShape ; rdfs:label "Maintenance Mode Command" ; rdfs:subClassOf brick:Mode_Command ; - skos:definition "Controls whether or not a device or controller is operating in \"Maintenance\" mode"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Maintenance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Maintenance, - tag:Mode, - tag:Point . + skos:definition "Controls whether or not a device or controller is operating in \"Maintenance\" mode"@en . brick:Maintenance_Required_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Maintenance Required Alarm" ; rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates that repair/maintenance is required on an associated device or equipment"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Maintenance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Required ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Maintenance, - tag:Point, - tag:Required . - -brick:Majlis a owl:Class, - sh:NodeShape ; - rdfs:label "Majlis" ; - rdfs:subClassOf brick:Lounge ; - skos:definition "In Arab countries, an Majlis is a private lounge where visitors are recieved and entertained"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Common ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lounge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Majlis ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Common, - tag:Location, - tag:Lounge, - tag:Majlis, - tag:Space . - -brick:Makeup_Water_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Makeup Water Valve" ; - rdfs:subClassOf brick:HVAC_Valve, - brick:Water_Valve ; - skos:definition "A valve regulating the flow of makeup water into a water holding tank, e.g. a cooling tower, hot water tank"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Makeup ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Fluid, - tag:Liquid, - tag:Makeup, - tag:Valve, - tag:Water . + skos:definition "An alarm that indicates that repair/maintenance is required on an associated device or equipment"@en . brick:Manual_Auto_Status a owl:Class, sh:NodeShape ; rdfs:label "Manual Auto Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates if a system is under manual or automatic operation"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Auto ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Manual ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Auto, - tag:Manual, - tag:Point, - tag:Status . - -brick:Massage_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Massage Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "Usually adjunct to an athletic facility, a private/semi-private space where massages are performed"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Massage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Massage, - tag:Room, - tag:Space . + skos:definition "Indicates if a system is under manual or automatic operation"@en . brick:Max_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Max Air Temperature Setpoint" ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; - skos:definition "Setpoint for maximum air temperature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Max, - tag:Point, - tag:Setpoint, - tag:Temperature . + skos:definition "Setpoint for maximum air temperature"@en . brick:Max_Chilled_Water_Differential_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Chilled Water Differential Pressure Setpoint Limit" ; rdfs:subClassOf brick:Differential_Pressure_Setpoint_Limit, brick:Max_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Chilled_Water_Differential_Pressure_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Differential, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Water . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Chilled_Water_Differential_Pressure_Setpoint."@en . + +brick:Max_Discharge_Air_Static_Pressure_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Max Discharge Air Static Pressure Setpoint Limit" ; + rdfs:subClassOf brick:Max_Limit, + brick:Max_Static_Pressure_Setpoint_Limit ; + skos:definition "A parameter that places an upper bound on the range of permitted values of a Discharge_Air_Static_Pressure_Setpoint."@en . + +brick:Max_Discharge_Air_Temperature_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Max Discharge Air Temperature Setpoint Limit" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint_Limit, + brick:Max_Temperature_Setpoint_Limit ; + skos:definition "A parameter that places an upper bound on the range of permitted values of a Discharge_Air_Temperature_Setpoint."@en . brick:Max_Frequency_Command a owl:Class, sh:NodeShape ; rdfs:label "Max Frequency Command" ; rdfs:subClassOf brick:Frequency_Command ; - skos:definition "Sets the maximum permitted frequency"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fequency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Fequency, - tag:Max, - tag:Point . + skos:definition "Sets the maximum permitted frequency"@en . brick:Max_Fresh_Air_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Fresh Air Setpoint Limit" ; rdfs:subClassOf brick:Fresh_Air_Setpoint_Limit, brick:Max_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Fresh_Air_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fresh ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Fresh, - tag:Limit, - tag:Max, - tag:Point, - tag:Setpoint . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Fresh_Air_Setpoint."@en . brick:Max_Hot_Water_Differential_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Hot Water Differential Pressure Setpoint Limit" ; rdfs:subClassOf brick:Differential_Pressure_Setpoint_Limit, brick:Max_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Hot_Water_Differential_Pressure_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Hot, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Water . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Hot_Water_Differential_Pressure_Setpoint."@en . brick:Max_Load_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Max Load Setpoint" ; - rdfs:subClassOf brick:Load_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Load, - tag:Max, - tag:Parameter, - tag:Point, - tag:Setpoint . + rdfs:subClassOf brick:Load_Parameter . + +brick:Max_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Max Occupied Cooling Discharge Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Max_Cooling_Discharge_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Cooling_Discharge_Air_Flow_Setpoint."@en . brick:Max_Occupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Occupied Cooling Supply Air Flow Setpoint Limit" ; rdfs:subClassOf brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit ; - owl:equivalentClass brick:Max_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Cooling_Supply_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Flow, - tag:Limit, - tag:Max, - tag:Occupied, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Supply . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Cooling_Supply_Air_Flow_Setpoint."@en . + +brick:Max_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Max Occupied Heating Discharge Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Max_Heating_Discharge_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Heating_Discharge_Air_Flow_Setpoint."@en . brick:Max_Occupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Occupied Heating Supply Air Flow Setpoint Limit" ; rdfs:subClassOf brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit ; - owl:equivalentClass brick:Max_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Heating_Supply_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Heat, - tag:Limit, - tag:Max, - tag:Occupied, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Supply . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Heating_Supply_Air_Flow_Setpoint."@en . brick:Max_Outside_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Outside Air Flow Setpoint Limit" ; rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Outside_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Limit, - tag:Max, - tag:Outside, - tag:Parameter, - tag:Point, - tag:Setpoint . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Outside_Air_Flow_Setpoint."@en . brick:Max_Position_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Position Setpoint Limit" ; rdfs:subClassOf brick:Max_Limit, brick:Position_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Position_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Position ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Max, - tag:Point, - tag:Position, - tag:Setpoint . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Position_Setpoint."@en . brick:Max_Speed_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Speed Setpoint Limit" ; rdfs:subClassOf brick:Max_Limit, brick:Speed_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Speed_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Speed . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Speed_Setpoint."@en . brick:Max_Supply_Air_Static_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Supply Air Static Pressure Setpoint Limit" ; rdfs:subClassOf brick:Max_Limit, brick:Max_Static_Pressure_Setpoint_Limit ; - owl:equivalentClass brick:Max_Discharge_Air_Static_Pressure_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Supply_Air_Static_Pressure_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static, - tag:Supply . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Supply_Air_Static_Pressure_Setpoint."@en . brick:Max_Supply_Air_Temperature_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Supply Air Temperature Setpoint Limit" ; rdfs:subClassOf brick:Max_Temperature_Setpoint_Limit, brick:Supply_Air_Temperature_Setpoint_Limit ; - owl:equivalentClass brick:Max_Discharge_Air_Temperature_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Supply_Air_Temperature_Setpoint."@en, - "Parameter for the maximum value of a Supply_Air_Temperature_Setpoint"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Limit, - tag:Max, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature . + "Parameter for the maximum value of a Supply_Air_Temperature_Setpoint"@en . + +brick:Max_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Max Unoccupied Cooling Discharge Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Max_Cooling_Discharge_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Cooling_Discharge_Air_Flow_Setpoint."@en . brick:Max_Unoccupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Unoccupied Cooling Supply Air Flow Setpoint Limit" ; rdfs:subClassOf brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit ; - owl:equivalentClass brick:Max_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Cooling_Supply_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Flow, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Unoccupied . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Cooling_Supply_Air_Flow_Setpoint."@en . + +brick:Max_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Max Unoccupied Heating Discharge Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Max_Heating_Discharge_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Heating_Discharge_Air_Flow_Setpoint."@en . brick:Max_Unoccupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Unoccupied Heating Supply Air Flow Setpoint Limit" ; rdfs:subClassOf brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit ; - owl:equivalentClass brick:Max_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Heating_Supply_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Heat, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Unoccupied . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Heating_Supply_Air_Flow_Setpoint."@en . brick:Max_Water_Level_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Max Water Level Alarm" ; rdfs:subClassOf brick:Water_Level_Alarm ; - skos:definition "Alarm indicating that the maximum water level was reached"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Level, - tag:Max, - tag:Point, - tag:Water . + skos:definition "Alarm indicating that the maximum water level was reached"@en . brick:Max_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Max Water Temperature Setpoint" ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; - skos:definition "Setpoint for max water temperature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Max, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Water . - -brick:Media_Hot_Desk a owl:Class, - sh:NodeShape ; - rdfs:label "Media Hot Desk" ; - rdfs:subClassOf brick:Space ; - skos:definition "A non-enclosed space used by members of the media temporarily to cover an event while they are present at a venue"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Desk ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Media ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Desk, - tag:Location, - tag:Media, - tag:Space . - -brick:Media_Production_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Media Production Room" ; - rdfs:subClassOf brick:Media_Room ; - skos:definition "A enclosed space used by media professionals for the production of media"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Media ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Production ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Media, - tag:Production, - tag:Room, - tag:Space . + skos:definition "Setpoint for max water temperature"@en . brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Reset_Status a owl:Class, sh:NodeShape ; rdfs:label "Medium Temperature Hot Water Differential Pressure Load Shed Reset Status" ; - rdfs:subClassOf brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Load, - tag:Medium, - tag:Point, - tag:Pressure, - tag:Reset, - tag:Shed, - tag:Status, - tag:Temperature . + rdfs:subClassOf brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Status . brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Medium Temperature Hot Water Differential Pressure Load Shed Setpoint" ; - rdfs:subClassOf brick:Differential_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Hot, - tag:Load, - tag:Medium, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Shed, - tag:Temperature, - tag:Water . + rdfs:subClassOf brick:Differential_Setpoint . brick:Medium_Temperature_Hot_Water_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Medium Temperature Hot Water Differential Pressure Sensor" ; rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Sensor ; - skos:definition "Measures the difference in water pressure between sections of a medium temperature hot water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Hot, - tag:Medium, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Temperature, - tag:Water . + skos:definition "Measures the difference in water pressure between sections of a medium temperature hot water system"@en . brick:Medium_Temperature_Hot_Water_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Medium Temperature Hot Water Differential Pressure Setpoint" ; - rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Hot, - tag:Medium, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Temperature, - tag:Water . + rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Setpoint . + +brick:Medium_Temperature_Hot_Water_Discharge_Temperature_High_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Medium Temperature Hot Water Discharge Temperature High Reset Setpoint" ; + rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_High_Reset_Setpoint, + brick:Hot_Water_Supply_Temperature_High_Reset_Setpoint . + +brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Load_Shed_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Medium Temperature Hot Water Discharge Temperature Load Shed Setpoint" ; + rdfs:subClassOf brick:Load_Shed_Setpoint . + +brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Load_Shed_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Medium Temperature Hot Water Discharge Temperature Load Shed Status" ; + rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Load_Shed_Status . + +brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Low_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Medium Temperature Hot Water Discharge Temperature Low Reset Setpoint" ; + rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Low_Reset_Setpoint . + +brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Medium Temperature Hot Water Discharge Temperature Sensor" ; + rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Sensor . brick:Medium_Temperature_Hot_Water_Return_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Medium Temperature Hot Water Return Temperature Sensor" ; rdfs:subClassOf brick:Hot_Water_Return_Temperature_Sensor ; - skos:definition "Measures the temperature of medium-temperature hot water returned to a hot water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Medium, - tag:Point, - tag:Return, - tag:Sensor, - tag:Temperature, - tag:Water . - -brick:Medium_Temperature_Hot_Water_Supply_Temperature_High_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Medium Temperature Hot Water Supply Temperature High Reset Setpoint" ; - rdfs:subClassOf brick:Hot_Water_Supply_Temperature_High_Reset_Setpoint ; - owl:equivalentClass brick:Medium_Temperature_Hot_Water_Discharge_Temperature_High_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:High, - tag:Hot, - tag:Medium, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Supply, - tag:Temperature, - tag:Water . + skos:definition "Measures the temperature of medium-temperature hot water returned to a hot water system"@en . brick:Medium_Temperature_Hot_Water_Supply_Temperature_Load_Shed_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Medium Temperature Hot Water Supply Temperature Load Shed Setpoint" ; - rdfs:subClassOf brick:Load_Shed_Setpoint ; - owl:equivalentClass brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Load_Shed_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Load, - tag:Medium, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Shed, - tag:Supply, - tag:Temperature, - tag:Water . + rdfs:subClassOf brick:Load_Shed_Setpoint . brick:Medium_Temperature_Hot_Water_Supply_Temperature_Load_Shed_Status a owl:Class, sh:NodeShape ; rdfs:label "Medium Temperature Hot Water Supply Temperature Load Shed Status" ; - rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Load_Shed_Status ; - owl:equivalentClass brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Load_Shed_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Load, - tag:Medium, - tag:Point, - tag:Shed, - tag:Status, - tag:Supply, - tag:Temperature, - tag:Water . + rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Load_Shed_Status . brick:Medium_Temperature_Hot_Water_Supply_Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Medium Temperature Hot Water Supply Temperature Low Reset Setpoint" ; - rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Low_Reset_Setpoint ; - owl:equivalentClass brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Low_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Low, - tag:Medium, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Supply, - tag:Temperature, - tag:Water . + rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Low_Reset_Setpoint . brick:Medium_Temperature_Hot_Water_Supply_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Medium Temperature Hot Water Supply Temperature Sensor" ; rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Sensor ; - owl:equivalentClass brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Sensor ; - skos:definition "Measures the temperature of medium-temperature hot water supplied by a hot water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Medium, - tag:Point, - tag:Sensor, - tag:Supply, - tag:Temperature, - tag:Water . + skos:definition "Measures the temperature of medium-temperature hot water supplied by a hot water system"@en . brick:Methane_Level_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Methane Level Sensor" ; rdfs:subClassOf brick:Air_Quality_Sensor ; - skos:definition "Measures the concentration of methane in air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Methane ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Level, - tag:Methane, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Methane_Concentration ; - brick:hasSubstance brick:Air . + skos:definition "Measures the concentration of methane in air"@en . brick:Min_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Min Air Temperature Setpoint" ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; - skos:definition "Setpoint for minimum air temperature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Min, - tag:Point, - tag:Setpoint, - tag:Temperature . + skos:definition "Setpoint for minimum air temperature"@en . brick:Min_Chilled_Water_Differential_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Chilled Water Differential Pressure Setpoint Limit" ; rdfs:subClassOf brick:Differential_Pressure_Setpoint_Limit, brick:Min_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Chilled_Water_Differential_Pressure_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Differential, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Water . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Chilled_Water_Differential_Pressure_Setpoint."@en . + +brick:Min_Discharge_Air_Static_Pressure_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Min Discharge Air Static Pressure Setpoint Limit" ; + rdfs:subClassOf brick:Min_Limit, + brick:Min_Static_Pressure_Setpoint_Limit ; + skos:definition "A parameter that places a lower bound on the range of permitted values of a Discharge_Air_Static_Pressure_Setpoint."@en . + +brick:Min_Discharge_Air_Temperature_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Min Discharge Air Temperature Setpoint Limit" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint_Limit, + brick:Min_Temperature_Setpoint_Limit ; + skos:definition "A parameter that places a lower bound on the range of permitted values of a Discharge_Air_Temperature_Setpoint."@en . brick:Min_Frequency_Command a owl:Class, sh:NodeShape ; rdfs:label "Min Frequency Command" ; - rdfs:subClassOf brick:Frequency_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fequency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Fequency, - tag:Min, - tag:Point . + rdfs:subClassOf brick:Frequency_Command . brick:Min_Fresh_Air_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Fresh Air Setpoint Limit" ; rdfs:subClassOf brick:Fresh_Air_Setpoint_Limit, brick:Min_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Fresh_Air_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fresh ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Fresh, - tag:Limit, - tag:Min, - tag:Point, - tag:Setpoint . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Fresh_Air_Setpoint."@en . brick:Min_Hot_Water_Differential_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Hot Water Differential Pressure Setpoint Limit" ; rdfs:subClassOf brick:Differential_Pressure_Setpoint_Limit, brick:Min_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Hot_Water_Differential_Pressure_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Hot, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Water . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Hot_Water_Differential_Pressure_Setpoint."@en . brick:Min_Load_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Min Load Setpoint" ; - rdfs:subClassOf brick:Load_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Load, - tag:Min, - tag:Parameter, - tag:Point, - tag:Setpoint . + rdfs:subClassOf brick:Load_Parameter . + +brick:Min_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Min Occupied Cooling Discharge Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Min_Cooling_Discharge_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Cooling_Discharge_Air_Flow_Setpoint."@en . brick:Min_Occupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Occupied Cooling Supply Air Flow Setpoint Limit" ; rdfs:subClassOf brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit ; - owl:equivalentClass brick:Min_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Cooling_Supply_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Flow, - tag:Limit, - tag:Min, - tag:Occupied, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Supply . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Cooling_Supply_Air_Flow_Setpoint."@en . + +brick:Min_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Min Occupied Heating Discharge Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Min_Heating_Discharge_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Heating_Discharge_Air_Flow_Setpoint."@en . brick:Min_Occupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Occupied Heating Supply Air Flow Setpoint Limit" ; rdfs:subClassOf brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit ; - owl:equivalentClass brick:Min_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Heating_Supply_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Heat, - tag:Limit, - tag:Min, - tag:Occupied, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Supply . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Heating_Supply_Air_Flow_Setpoint."@en . brick:Min_Outside_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Outside Air Flow Setpoint Limit" ; rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Outside_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Limit, - tag:Min, - tag:Outside, - tag:Parameter, - tag:Point, - tag:Setpoint . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Outside_Air_Flow_Setpoint."@en . brick:Min_Position_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Position Setpoint Limit" ; rdfs:subClassOf brick:Min_Limit, brick:Position_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Position_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Position ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Min, - tag:Point, - tag:Position, - tag:Setpoint . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Position_Setpoint."@en . brick:Min_Speed_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Speed Setpoint Limit" ; rdfs:subClassOf brick:Min_Limit, brick:Speed_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Speed_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Speed . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Speed_Setpoint."@en . brick:Min_Supply_Air_Static_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Supply Air Static Pressure Setpoint Limit" ; rdfs:subClassOf brick:Min_Limit, brick:Min_Static_Pressure_Setpoint_Limit ; - owl:equivalentClass brick:Min_Discharge_Air_Static_Pressure_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Supply_Air_Static_Pressure_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static, - tag:Supply . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Supply_Air_Static_Pressure_Setpoint."@en . brick:Min_Supply_Air_Temperature_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Supply Air Temperature Setpoint Limit" ; rdfs:subClassOf brick:Min_Temperature_Setpoint_Limit, brick:Supply_Air_Temperature_Setpoint_Limit ; - owl:equivalentClass brick:Min_Discharge_Air_Temperature_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Supply_Air_Temperature_Setpoint."@en, - "Parameter for the minimum value of a Supply_Air_Temperature_Setpoint"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Limit, - tag:Min, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature . + "Parameter for the minimum value of a Supply_Air_Temperature_Setpoint"@en . + +brick:Min_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Min Unoccupied Cooling Discharge Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Min_Cooling_Discharge_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Cooling_Discharge_Air_Flow_Setpoint."@en . brick:Min_Unoccupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Unoccupied Cooling Supply Air Flow Setpoint Limit" ; rdfs:subClassOf brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit ; - owl:equivalentClass brick:Min_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Cooling_Supply_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Flow, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Unoccupied . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Cooling_Supply_Air_Flow_Setpoint."@en . + +brick:Min_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Min Unoccupied Heating Discharge Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Min_Heating_Discharge_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Heating_Discharge_Air_Flow_Setpoint."@en . brick:Min_Unoccupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Unoccupied Heating Supply Air Flow Setpoint Limit" ; rdfs:subClassOf brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit ; - owl:equivalentClass brick:Min_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Heating_Supply_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Heat, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Unoccupied . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Heating_Supply_Air_Flow_Setpoint."@en . brick:Min_Water_Level_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Min Water Level Alarm" ; rdfs:subClassOf brick:Water_Level_Alarm ; - skos:definition "Alarm indicating that the minimum water level was reached"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Level, - tag:Min, - tag:Point, - tag:Water . + skos:definition "Alarm indicating that the minimum water level was reached"@en . brick:Min_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Min Water Temperature Setpoint" ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; - skos:definition "Setpoint for min water temperature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Min, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Water . - -brick:Mixed_Air_Filter a owl:Class, - sh:NodeShape ; - rdfs:label "Mixed Air Filter" ; - rdfs:subClassOf brick:Filter ; - skos:definition "A filter that is applied to the mixture of recirculated and outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Filter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Equipment, - tag:Filter, - tag:Mixed . + skos:definition "Setpoint for min water temperature"@en . brick:Mixed_Air_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Mixed Air Flow Sensor" ; rdfs:subClassOf brick:Air_Flow_Sensor ; - skos:definition "Measures the rate of flow of mixed air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Mixed, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Mixed_Air . + skos:definition "Measures the rate of flow of mixed air"@en . brick:Mixed_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Mixed Air Humidity Sensor" ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; - skos:definition "Measures the humidity of mixed air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Relative ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Humidity, - tag:Mixed, - tag:Point, - tag:Relative, - tag:Sensor ; - brick:hasQuantity brick:Relative_Humidity ; - brick:hasSubstance brick:Mixed_Air . + skos:definition "Measures the humidity of mixed air"@en . brick:Mixed_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Mixed Air Humidity Setpoint" ; rdfs:subClassOf brick:Humidity_Setpoint ; - skos:definition "Humidity setpoint for mixed air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Humidity, - tag:Mixed, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Humidity ; - brick:hasSubstance brick:Mixed_Air . + skos:definition "Humidity setpoint for mixed air"@en . brick:Mixed_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Mixed Air Temperature Sensor" ; rdfs:subClassOf brick:Air_Temperature_Sensor ; - skos:definition "Measures the temperature of mixed air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Mixed, - tag:Point, - tag:Sensor, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Mixed_Air . + skos:definition "Measures the temperature of mixed air"@en . brick:Mixed_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Mixed Air Temperature Setpoint" ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; - skos:definition "Sets temperature of mixed air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Mixed, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Mixed_Air . - -brick:Mixed_Damper a owl:Class, - sh:NodeShape ; - rdfs:label "Mixed Damper" ; - rdfs:subClassOf brick:Damper ; - skos:definition "A damper that modulates the flow of the mixed outside and return air streams"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Damper ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Damper, - tag:Equipment, - tag:Mixed . - -brick:Motor_Control_Center a owl:Class, - sh:NodeShape ; - rdfs:label "Motor Control Center" ; - rdfs:subClassOf brick:Electrical_Equipment ; - skos:definition "The Motor Control Center is a specialized type of switchgear which provides electrical power to major mechanical systems in the building such as HVAC components."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Center ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Control ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Center, - tag:Control, - tag:Equipment . + skos:definition "Sets temperature of mixed air"@en . brick:Motor_Current_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Motor Current Sensor" ; rdfs:subClassOf brick:Current_Sensor ; - skos:definition "Measures the current consumed by a motor"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Current ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Motor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Current, - tag:Motor, - tag:Point, - tag:Sensor . + skos:definition "Measures the current consumed by a motor"@en . brick:Motor_Direction_Status a owl:Class, sh:NodeShape ; rdfs:label "Motor Direction Status" ; rdfs:subClassOf brick:Direction_Status ; - skos:definition "Indicates which direction a motor is operating in, e.g. forward or reverse"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Direction ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Motor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Direction, - tag:Motor, - tag:Point, - tag:Status . + skos:definition "Indicates which direction a motor is operating in, e.g. forward or reverse"@en . brick:Motor_On_Off_Status a owl:Class, sh:NodeShape ; rdfs:label "Motor On Off Status" ; - rdfs:subClassOf brick:On_Off_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Motor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Motor, - tag:Off, - tag:On, - tag:Point, - tag:Status . + rdfs:subClassOf brick:On_Off_Status . brick:Motor_Speed_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Motor Speed Sensor" ; - rdfs:subClassOf brick:Speed_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Motor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Motor, - tag:Point, - tag:Sensor, - tag:Speed . + rdfs:subClassOf brick:Speed_Sensor . brick:Motor_Torque_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Motor Torque Sensor" ; rdfs:subClassOf brick:Torque_Sensor ; - skos:definition "Measures the torque, or rotating power, of a motor"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Motor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Torque ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Motor, - tag:Point, - tag:Sensor, - tag:Torque . + skos:definition "Measures the torque, or rotating power, of a motor"@en . brick:NO2_Level_Sensor a owl:Class, sh:NodeShape ; rdfs:label "NO2 Level Sensor" ; rdfs:subClassOf brick:Air_Quality_Sensor ; - skos:definition "Measures the concentration of NO2 in air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:NO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Level, - tag:NO2, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Air ; - brick:hasSubstance brick:NO2_Concentration . - -brick:Natural_Gas_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Natural Gas Flow Sensor" ; - rdfs:subClassOf brick:Flow_Sensor, - brick:Sensor ; - skos:definition "Measures the rate of flow of natural gas"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Natural ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Gas, - tag:Natural, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Natrual_Gas, - brick:Natural_Gas . - -brick:Natural_Gas_Seismic_Shutoff_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Natural Gas Seismic Shutoff Valve" ; - rdfs:subClassOf brick:Valve ; - skos:definition "Valves that automatically shut off your natural gas service when an earthquake of a sufficient magnitude occurs at the location."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Natural ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Seismic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shutoff ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Gas, - tag:Natural, - tag:Seismic, - tag:Shutoff, - tag:Valve . - -brick:Natural_Gas_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Natural Gas Temperature Sensor" ; - rdfs:subClassOf brick:Temperature_Sensor ; - skos:definition "Measures the temperature of natural gas"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Natural ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Gas, - tag:Natural, - tag:Point, - tag:Sensor, - tag:Temperature ; - brick:hasSubstance brick:Natural_Gas . - -brick:Natural_Gas_Usage_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Natural Gas Usage Sensor" ; - rdfs:subClassOf brick:Usage_Sensor ; - skos:definition "Measures the amount of natural gas that is consumed or used, over some period of time"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Natural ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Usage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Gas, - tag:Natural, - tag:Point, - tag:Sensor, - tag:Usage . + skos:definition "Measures the concentration of NO2 in air"@en . brick:No_Water_Alarm a owl:Class, sh:NodeShape ; rdfs:label "No Water Alarm" ; rdfs:subClassOf brick:Water_Alarm ; - skos:definition "Alarm indicating that there is no water in the equipment or system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:No ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:No, - tag:Point, - tag:Water . - -brick:Noncondensing_Natural_Gas_Boiler a owl:Class, - sh:NodeShape ; - rdfs:label "Noncondensing Natural Gas Boiler" ; - rdfs:subClassOf brick:Natural_Gas_Boiler ; - skos:definition "A closed, pressure vessel that uses natural gas with no system to capture latent heat for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Boiler ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Natural ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Noncondensing ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Boiler, - tag:Equipment, - tag:Gas, - tag:Natural, - tag:Noncondensing . + skos:definition "Alarm indicating that there is no water in the equipment or system"@en . brick:Occupancy_Command a owl:Class, sh:NodeShape ; rdfs:label "Occupancy Command" ; rdfs:subClassOf brick:Command ; - skos:definition "Controls whether or not a device or controller is operating in \"Occupied\" mode"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupancy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Occupancy, - tag:Point . - -brick:Occupancy_Count_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Occupancy Count Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Sensors measuring the number of people in an area"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Count ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupancy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Count, - tag:Occupancy, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Occupancy_Count . - -brick:Occupancy_Percentage a brick:Quantity ; - rdfs:label "Occupancy_Percentage" ; - qudt:applicableUnit unit:PERCENT ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Dimensionless, - brick:Occupancy ; - skos:definition "Percent of total occupancy of space that is occupied", - "Percent of total occupancy of space that is occupied"@en . + skos:definition "Controls whether or not a device or controller is operating in \"Occupied\" mode"@en . brick:Occupied_Air_Temperature_Cooling_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Air Temperature Cooling Setpoint" ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, - brick:Occupied_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Temperature . + brick:Occupied_Air_Temperature_Setpoint . brick:Occupied_Air_Temperature_Heating_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Air Temperature Heating Setpoint" ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, - brick:Occupied_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Occupied_Cooling_Mode_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Occupied Cooling Mode Status" ; - rdfs:subClassOf brick:Cooling_Mode_Status, - brick:Occupied_Mode_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Mode, - tag:Occupied, - tag:Point, - tag:Status . + brick:Occupied_Air_Temperature_Setpoint . + +brick:Occupied_Cooling_Discharge_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Occupied Cooling Discharge Air Flow Setpoint" ; + rdfs:subClassOf brick:Cooling_Discharge_Air_Flow_Setpoint, + brick:Occupied_Discharge_Air_Flow_Setpoint ; + skos:definition "Sets discharge air flow for cooling when occupied"@en . brick:Occupied_Cooling_Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Cooling Supply Air Flow Setpoint" ; rdfs:subClassOf brick:Cooling_Supply_Air_Flow_Setpoint, brick:Occupied_Supply_Air_Flow_Setpoint ; - owl:equivalentClass brick:Occupied_Cooling_Discharge_Air_Flow_Setpoint ; - skos:definition "Sets supply air flow rate for cooling when occupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Flow, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Supply . + skos:definition "Sets supply air flow rate for cooling when occupied"@en . brick:Occupied_Cooling_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Cooling Temperature Deadband Setpoint" ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, brick:Temperature_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of temperature for cooling when occupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Deadband, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature . + skos:definition "Sets the size of a deadband of temperature for cooling when occupied"@en . brick:Occupied_Cooling_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Cooling Temperature Setpoint" ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint ; - skos:definition "Sets temperature for cooling when occupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Occupied_Heating_Mode_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Occupied Heating Mode Status" ; - rdfs:subClassOf brick:Heating_Mode_Status, - brick:Occupied_Mode_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Heat, - tag:Mode, - tag:Occupied, - tag:Point, - tag:Status . + skos:definition "Sets temperature for cooling when occupied"@en . + +brick:Occupied_Discharge_Air_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Occupied Discharge Air Temperature Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint, + brick:Occupied_Air_Temperature_Setpoint . + +brick:Occupied_Heating_Discharge_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Occupied Heating Discharge Air Flow Setpoint" ; + rdfs:subClassOf brick:Heating_Discharge_Air_Flow_Setpoint, + brick:Occupied_Discharge_Air_Flow_Setpoint ; + skos:definition "Sets discharge air flow for heating when occupied"@en . brick:Occupied_Heating_Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Heating Supply Air Flow Setpoint" ; rdfs:subClassOf brick:Heating_Supply_Air_Flow_Setpoint, brick:Occupied_Supply_Air_Flow_Setpoint ; - owl:equivalentClass brick:Occupied_Heating_Discharge_Air_Flow_Setpoint ; - skos:definition "Sets supply air flow rate for heating when occupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Heat, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Supply . + skos:definition "Sets supply air flow rate for heating when occupied"@en . brick:Occupied_Heating_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Heating Temperature Deadband Setpoint" ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, brick:Temperature_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of temperature for heating when occupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deadband, - tag:Heat, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature . + skos:definition "Sets the size of a deadband of temperature for heating when occupied"@en . brick:Occupied_Heating_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Heating Temperature Setpoint" ; rdfs:subClassOf brick:Heating_Temperature_Setpoint ; - skos:definition "Sets temperature for heating when occupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Heat, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Temperature . + skos:definition "Sets temperature for heating when occupied"@en . brick:Occupied_Humidity_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Humidity Setpoint" ; rdfs:subClassOf brick:Humidity_Setpoint ; - skos:definition "Target humidity level when the location is occupied."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Humidity, - tag:Occupied, - tag:Point, - tag:Setpoint . + skos:definition "Target humidity level when the location is occupied."@en . + +brick:Occupied_Mode_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Occupied Mode Status" ; + rdfs:subClassOf brick:Mode_Status ; + skos:definition "Indicates if a system, device or control loop is in \"Occupied\" mode"@en . brick:Occupied_Return_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Return Air Temperature Setpoint" ; rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint, - brick:Return_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Occupied, - tag:Point, - tag:Return, - tag:Setpoint, - tag:Temperature . + brick:Return_Air_Temperature_Setpoint . brick:Occupied_Room_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Room Air Temperature Setpoint" ; rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint, - brick:Room_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Occupied, - tag:Point, - tag:Room, - tag:Setpoint, - tag:Temperature . + brick:Room_Air_Temperature_Setpoint . brick:Occupied_Supply_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Supply Air Temperature Setpoint" ; rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint, - brick:Supply_Air_Temperature_Setpoint ; - owl:equivalentClass brick:Occupied_Discharge_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature . + brick:Supply_Air_Temperature_Setpoint . brick:Occupied_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Zone Air Temperature Setpoint" ; rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint, - brick:Zone_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Zone . + brick:Zone_Air_Temperature_Setpoint . brick:Off_Command a owl:Class, sh:NodeShape ; rdfs:label "Off Command" ; rdfs:subClassOf brick:On_Off_Command ; - skos:definition "An Off Command controls or reports the binary 'off' status of a control loop, relay or equipment activity. It can only be used to stop/deactivate an associated equipment or process, or determine that the related entity is 'off'"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Off, - tag:Point . - -brick:Office_Kitchen a owl:Class, - sh:NodeShape ; - rdfs:label "Office Kitchen" ; - rdfs:subClassOf brick:Room ; - skos:definition "A common space, usually near or in a breakroom, where minor food preperation occurs"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Kitchen ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Office ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Kitchen, - tag:Location, - tag:Office, - tag:Room, - tag:Space . + skos:definition "An Off Command controls or reports the binary 'off' status of a control loop, relay or equipment activity. It can only be used to stop/deactivate an associated equipment or process, or determine that the related entity is 'off'"@en . brick:On_Command a owl:Class, sh:NodeShape ; rdfs:label "On Command" ; rdfs:subClassOf brick:On_Off_Command ; - skos:definition "An On Command controls or reports the binary 'on' status of a control loop, relay or equipment activity. It can only be used to start/activate an associated equipment or process, or determine that the related entity is 'on'"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:On, - tag:Point . + skos:definition "An On Command controls or reports the binary 'on' status of a control loop, relay or equipment activity. It can only be used to start/activate an associated equipment or process, or determine that the related entity is 'on'"@en . brick:On_Timer_Sensor a owl:Class, sh:NodeShape ; rdfs:label "On Timer Sensor" ; rdfs:subClassOf brick:Duration_Sensor ; - owl:equivalentClass brick:Run_Time_Sensor ; - skos:definition "Measures the duration for which a device was in an active or \"on\" state"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Timer ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:On, - tag:Point, - tag:Sensor, - tag:Timer . + skos:definition "Measures the duration for which a device was in an active or \"on\" state"@en . brick:Open_Close_Status a owl:Class, sh:NodeShape ; rdfs:label "Open Close Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates the open/close status of a device such as a damper or valve"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Close ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Open ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Close, - tag:Open, - tag:Point, - tag:Status . + skos:definition "Indicates the open/close status of a device such as a damper or valve"@en . brick:Open_Heating_Valve_Outside_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Open Heating Valve Outside Air Temperature Setpoint" ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, - brick:Outside_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Open ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Open, - tag:Outside, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Valve . - -brick:Open_Office a owl:Class, - sh:NodeShape ; - rdfs:label "Open Office" ; - rdfs:subClassOf brick:Office ; - skos:definition "An open space used for work or study by mulitple people. Usuaully subdivided into cubicles or desks"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Office ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Open ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Office, - tag:Open, - tag:Room, - tag:Space . - -brick:Operative_Temperature a brick:Quantity ; - rdfs:label "Operative_Temperature" ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:K ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Temperature, - brick:Temperature ; - skos:definition "The uniform temperature of an imaginary black enclosure in which an occupant would exchange the same amount of heat by radiation plus convection as in the actual nonuniform environment (https://en.wikipedia.org/wiki/Operative_temperature)", - "The uniform temperature of an imaginary black enclosure in which an occupant would exchange the same amount of heat by radiation plus convection as in the actual nonuniform environment (https://en.wikipedia.org/wiki/Operative_temperature)"@en . + brick:Outside_Air_Temperature_Setpoint . brick:Output_Frequency_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Output Frequency Sensor" ; - rdfs:subClassOf brick:Frequency_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Frequency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Output ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Frequency, - tag:Output, - tag:Point, - tag:Sensor . + rdfs:subClassOf brick:Frequency_Sensor . brick:Output_Voltage_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Output Voltage Sensor" ; rdfs:subClassOf brick:Voltage_Sensor ; - skos:definition "Measures the voltage output by some process or device"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Output ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Voltage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Output, - tag:Point, - tag:Sensor, - tag:Voltage . - -brick:Outside a owl:Class, - sh:NodeShape ; - rdfs:label "Outside" ; - rdfs:subClassOf brick:Location ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Outside . + skos:definition "Measures the voltage output by some process or device"@en . brick:Outside_Air_CO2_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Outside Air CO2 Sensor" ; rdfs:subClassOf brick:CO2_Sensor ; - skos:definition "Measures the concentration of CO2 in outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:CO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:CO2, - tag:Outside, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:CO2_Concentration ; - brick:hasSubstance brick:Outside_Air . + skos:definition "Measures the concentration of CO2 in outside air"@en . brick:Outside_Air_CO_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Outside Air CO Sensor" ; rdfs:subClassOf brick:CO_Sensor ; - skos:definition "Measures the concentration of CO in outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:CO ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:CO, - tag:Outside, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:CO_Concentration ; - brick:hasSubstance brick:Outside_Air . + skos:definition "Measures the concentration of CO in outside air"@en . brick:Outside_Air_Dewpoint_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Dewpoint Sensor" ; rdfs:subClassOf brick:Dewpoint_Sensor ; - skos:definition "Senses the dewpoint temperature of outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Dewpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Dewpoint, - tag:Outside, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Dewpoint ; - brick:hasSubstance brick:Outside_Air . + skos:definition "Senses the dewpoint temperature of outside air"@en . brick:Outside_Air_Enthalpy_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Enthalpy Sensor" ; rdfs:subClassOf brick:Air_Enthalpy_Sensor ; - skos:definition "Measures the total heat content of outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enthalpy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Enthalpy, - tag:Outside, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Enthalpy ; - brick:hasSubstance brick:Outside_Air . + skos:definition "Measures the total heat content of outside air"@en . brick:Outside_Air_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Flow Sensor" ; rdfs:subClassOf brick:Air_Flow_Sensor ; - skos:definition "Measures the rate of flow of outside air into the system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Outside, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Outside_Air . + skos:definition "Measures the rate of flow of outside air into the system"@en . brick:Outside_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Flow Setpoint" ; rdfs:subClassOf brick:Air_Flow_Setpoint ; - skos:definition "Sets outside air flow rate"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Outside, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Outside_Air . + skos:definition "Sets outside air flow rate"@en . brick:Outside_Air_Grains_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Grains Sensor" ; rdfs:subClassOf brick:Air_Grains_Sensor ; - skos:definition "Measures the mass of water vapor in outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Grains ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Grains, - tag:Outside, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:GrainsOfMoisture ; - brick:hasSubstance brick:Outside_Air . + skos:definition "Measures the mass of water vapor in outside air"@en . brick:Outside_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Humidity Sensor" ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; - skos:definition "Measures the relative humidity of outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Relative ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Humidity, - tag:Outside, - tag:Point, - tag:Relative, - tag:Sensor ; - brick:hasQuantity brick:Relative_Humidity ; - brick:hasSubstance brick:Outside_Air . + skos:definition "Measures the relative humidity of outside air"@en . brick:Outside_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Humidity Setpoint" ; rdfs:subClassOf brick:Humidity_Setpoint ; - skos:definition "Humidity setpoint for outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Humidity, - tag:Outside, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Humidity ; - brick:hasSubstance brick:Outside_Air . + skos:definition "Humidity setpoint for outside air"@en . brick:Outside_Air_Lockout_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Lockout Temperature Setpoint" ; - rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lockout ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Lockout, - tag:Outside, - tag:Point, - tag:Setpoint, - tag:Temperature . + rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint . brick:Outside_Air_Temperature_High_Reset_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Temperature High Reset Setpoint" ; - rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:High, - tag:Outside, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Outside_Air . + rdfs:subClassOf brick:Temperature_High_Reset_Setpoint . brick:Outside_Air_Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Temperature Low Reset Setpoint" ; - rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Low, - tag:Outside, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Outside_Air . + rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint . brick:Outside_Air_Wet_Bulb_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Wet Bulb Temperature Sensor" ; rdfs:subClassOf brick:Air_Wet_Bulb_Temperature_Sensor, brick:Outside_Air_Temperature_Sensor ; - skos:definition "A sensor measuring the wet-bulb temperature of outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Bulb ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Wet ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Bulb, - tag:Outside, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Wet ; - brick:hasQuantity brick:Wet_Bulb_Temperature ; - brick:hasSubstance brick:Outside_Air . - -brick:Outside_Damper a owl:Class, - sh:NodeShape ; - rdfs:label "Outside Damper" ; - rdfs:subClassOf brick:Damper ; - skos:definition "A damper that modulates the flow of outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Damper ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Damper, - tag:Equipment, - tag:Outside . + skos:definition "A sensor measuring the wet-bulb temperature of outside air"@en . brick:Outside_Face_Surface_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Outside Face Surface Temperature Sensor" ; rdfs:subClassOf brick:Radiant_Panel_Temperature_Sensor ; - skos:definition "Measures the outside surface (relative to the space) of the radiant panel of a radiant heating and cooling HVAC system."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Face ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Surface ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Face, - tag:Outside, - tag:Point, - tag:Sensor, - tag:Surface, - tag:Temperature . + skos:definition "Measures the outside surface (relative to the space) of the radiant panel of a radiant heating and cooling HVAC system."@en . brick:Outside_Face_Surface_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Outside Face Surface Temperature Setpoint" ; rdfs:subClassOf brick:Radiant_Panel_Temperature_Setpoint ; - skos:definition "Sets temperature for the outside face surface temperature of the radiant panel."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Face ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Surface ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Face, - tag:Outside, - tag:Point, - tag:Setpoint, - tag:Surface, - tag:Temperature . - -brick:Outside_Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Outside Fan" ; - rdfs:subClassOf brick:Fan ; - skos:definition "Fan moving outside air; air that is supplied into the building from the outdoors"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Fan, - tag:Outside . + skos:definition "Sets temperature for the outside face surface temperature of the radiant panel."@en . brick:Outside_Illuminance_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Outside Illuminance Sensor" ; rdfs:subClassOf brick:Illuminance_Sensor ; - skos:definition "Measures the total luminous flux incident on an outside, per unit area"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Illuminance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Illuminance, - tag:Outside, - tag:Point, - tag:Sensor . + skos:definition "Measures the total luminous flux incident on an outside, per unit area"@en . brick:Overload_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Overload Alarm" ; rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that can indicate when a full-load current is exceeded."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Overload ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Overload, - tag:Point . + skos:definition "An alarm that can indicate when a full-load current is exceeded."@en . brick:Overridden_Off_Status a owl:Class, sh:NodeShape ; rdfs:label "Overridden Off Status" ; rdfs:subClassOf brick:Off_Status, brick:Overridden_Status ; - skos:definition "Indicates if a control loop, relay or equipment has been turned off when it would otherwise be scheduled to be on"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Overridden ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Off, - tag:Overridden, - tag:Point, - tag:Status . + skos:definition "Indicates if a control loop, relay or equipment has been turned off when it would otherwise be scheduled to be on"@en . brick:Overridden_On_Status a owl:Class, sh:NodeShape ; rdfs:label "Overridden On Status" ; rdfs:subClassOf brick:On_Status, brick:Overridden_Status ; - skos:definition "Indicates if a control loop, relay or equipment has been turned on when it would otherwise be scheduled to be off"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Overridden ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:On, - tag:Overridden, - tag:Point, - tag:Status . + skos:definition "Indicates if a control loop, relay or equipment has been turned on when it would otherwise be scheduled to be off"@en . brick:Ozone_Level_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Ozone Level Sensor" ; rdfs:subClassOf brick:Air_Quality_Sensor ; - skos:definition "Measures the concentration of ozone in air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Ozone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Level, - tag:Ozone, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Ozone_Concentration ; - brick:hasSubstance brick:Air . - -brick:PAU a owl:Class, - sh:NodeShape ; - rdfs:label "PAU" ; - rdfs:subClassOf brick:AHU ; - skos:definition "A type of AHU, use to pre-treat the outdoor air before feed to AHU"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PAU ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:PAU . + skos:definition "Measures the concentration of ozone in air"@en . brick:PIR_Sensor a owl:Class, sh:NodeShape ; rdfs:label "PIR Sensor" ; rdfs:subClassOf brick:Motion_Sensor, brick:Occupancy_Sensor ; - skos:definition "Detects the presense of motion in some area using the differential change in infrared intensity between two or more receptors"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:PIR ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:PIR, - tag:Point, - tag:Sensor . + skos:definition "Detects the presense of motion in some area using the differential change in infrared intensity between two or more receptors"@en . brick:PM10_Level_Sensor a owl:Class, sh:NodeShape ; rdfs:label "PM10 Level Sensor" ; rdfs:subClassOf brick:PM10_Sensor ; - skos:definition "Detects level of particulates of size 10 microns"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Matter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PM10 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Particulate ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Level, - tag:Matter, - tag:PM10, - tag:Particulate, - tag:Point, - tag:Sensor . + skos:definition "Detects level of particulates of size 10 microns"@en . brick:PM1_Level_Sensor a owl:Class, sh:NodeShape ; rdfs:label "PM1 Level Sensor" ; rdfs:subClassOf brick:PM1_Sensor ; - skos:definition "Detects level of particulates of size 1 microns"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Matter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PM1 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Particulate ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Level, - tag:Matter, - tag:PM1, - tag:Particulate, - tag:Point, - tag:Sensor . + skos:definition "Detects level of particulates of size 1 microns"@en . brick:PM2.5_Level_Sensor a owl:Class, sh:NodeShape ; rdfs:label "PM2.5 Level Sensor" ; rdfs:subClassOf brick:PM2.5_Sensor ; - skos:definition "Detects level of particulates of size 2.5 microns"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Matter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PM2.5 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Particulate ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Level, - tag:Matter, - tag:PM2.5, - tag:Particulate, - tag:Point, - tag:Sensor . - -brick:PVT_Panel a owl:Class, - sh:NodeShape ; - rdfs:label "PVT Panel" ; - rdfs:subClassOf brick:PV_Panel, - brick:Solar_Thermal_Collector ; - skos:definition "A type of solar panels that convert solar radiation into usable thermal and electrical energy"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Collector ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PV ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Solar ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Thermal ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Collector, - tag:Equipment, - tag:PV, - tag:Panel, - tag:Solar, - tag:Thermal . - -brick:PV_Generation_System a owl:Class ; - rdfs:label "PV Generation System" ; - rdfs:subClassOf brick:Energy_Generation_System ; - skos:definition "A collection of photovoltaic devices that generates energy"@en . - -brick:Parking_Level a owl:Class, - sh:NodeShape ; - rdfs:label "Parking Level" ; - rdfs:subClassOf brick:Floor ; - skos:definition "A floor of a parking structure"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Floor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parking ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Floor, - tag:Level, - tag:Location, - tag:Parking . - -brick:Parking_Space a owl:Class, - sh:NodeShape ; - rdfs:label "Parking Space" ; - rdfs:subClassOf brick:Space ; - skos:definition "An area large enough to park an individual vehicle"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parking ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Parking, - tag:Space . - -brick:Parking_Structure a owl:Class, - sh:NodeShape ; - rdfs:label "Parking Structure" ; - rdfs:subClassOf brick:Building ; - skos:definition "A building or part of a building devoted to vehicle parking"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parking ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Structure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Building, - tag:Location, - tag:Parking, - tag:Structure . - -brick:Passive_Chilled_Beam a owl:Class, - sh:NodeShape ; - rdfs:label "Passive Chilled Beam" ; - rdfs:subClassOf brick:Chilled_Beam ; - skos:definition "A chilled beam that does not have an integral air supply and instead relies on natural convection to draw air through the device."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Beam ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Passive ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Beam, - tag:Chilled, - tag:Equipment, - tag:Passive . + skos:definition "Detects level of particulates of size 2.5 microns"@en . + +brick:PV_Current_Output_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "PV Current Output Sensor" ; + rdfs:subClassOf brick:Current_Output_Sensor ; + skos:definition "See Photovoltaic_Current_Output_Sensor"@en . brick:Peak_Power_Demand_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Peak Power Demand Sensor" ; rdfs:subClassOf brick:Demand_Sensor, brick:Electric_Power_Sensor ; - skos:definition "The peak power consumed by a process over some period of time"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Electric ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Peak ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Demand, - tag:Electric, - tag:Peak, - tag:Point, - tag:Power, - tag:Sensor ; - brick:hasQuantity brick:Peak_Power . - -brick:Phasor_Magnitude a brick:Quantity ; - rdfs:label "PhasorMagnitude" ; - qudt:applicableUnit unit:ARCMIN, - unit:ARCSEC, - unit:DEG, - unit:GON, - unit:GRAD, - unit:MIL, - unit:MicroRAD, - unit:MilliARCSEC, - unit:MilliRAD, - unit:RAD, - unit:REV ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:definition "Magnitude component of a phasor" ; - skos:related brick:Phasor . + skos:definition "The peak power consumed by a process over some period of time"@en . brick:Photovoltaic_Current_Output_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Photovoltaic Current Output Sensor" ; rdfs:subClassOf brick:Current_Output_Sensor ; - owl:equivalentClass brick:PV_Current_Output_Sensor ; - skos:definition "Senses the amperes of electrical current produced as output by a photovoltaic device"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Current ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Output ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Photovoltaic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Current, - tag:Output, - tag:Photovoltaic, - tag:Point, - tag:Sensor . + skos:definition "Senses the amperes of electrical current produced as output by a photovoltaic device"@en . brick:Piezoelectric_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Piezoelectric Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Senses changes pressure, acceleration, temperature, force or strain via the piezoelectric effect"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Piezoelectric ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Piezoelectric, - tag:Point, - tag:Sensor . - -brick:PlugStrip a owl:Class, - sh:NodeShape ; - rdfs:label "PlugStrip" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Electrical_Equipment ; - skos:definition "A device containing a block of electrical sockets allowing multiple electrical devices to be powered from a single electrical socket."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PlugStrip ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:PlugStrip . - -brick:Plumbing_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Plumbing Room" ; - rdfs:subClassOf brick:Service_Room ; - skos:definition "A service room devoted to the operation and routing of water in a building. Usually distinct from the HVAC subsystems."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Plumbing ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Service ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Plumbing, - tag:Room, - tag:Service, - tag:Space . - -brick:Portfolio a owl:Class, - sh:NodeShape ; - rdfs:label "Portfolio" ; - rdfs:subClassOf brick:Collection ; - skos:definition "A collection of sites"@en ; - sh:property [ sh:or ( [ sh:class brick:Site ] ) ; - sh:path brick:hasPart ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Collection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Portfolio ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Collection, - tag:Portfolio . - -brick:Power_Factor_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Power Factor Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Sensors measuring power Factor, under periodic conditions, is the ratio of the absolute value of the active power (P) to the apparent power (S)."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Factor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Factor, - tag:Point, - tag:Power, - tag:Sensor ; - brick:hasQuantity brick:Power_Factor . + skos:definition "Senses changes pressure, acceleration, temperature, force or strain via the piezoelectric effect"@en . brick:Power_Loss_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Power Loss Alarm" ; rdfs:subClassOf brick:Power_Alarm ; - skos:definition "An alarm that indicates a power failure."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Loss ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Loss, - tag:Point, - tag:Power . - -brick:Prayer_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Prayer Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A room set aside for prayer"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Prayer ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Prayer, - tag:Room, - tag:Space . - -brick:Pre_Filter a owl:Class, - sh:NodeShape ; - rdfs:label "Pre Filter" ; - rdfs:subClassOf brick:Filter ; - skos:definition "A filter installed in front of a more efficient filter to extend the life of the more expensive higher efficiency filter"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Filter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pre ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Filter, - tag:Pre . + skos:definition "An alarm that indicates a power failure."@en . brick:Pre_Filter_Status a owl:Class, sh:NodeShape ; rdfs:label "Pre Filter Status" ; rdfs:subClassOf brick:Filter_Status ; - skos:definition "Indicates if a prefilter needs to be replaced"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Filter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pre ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Filter, - tag:Point, - tag:Pre, - tag:Status . - -brick:Preheat_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Preheat Command" ; - rdfs:subClassOf brick:Command ; - skos:definition "A command to activate preheating"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Preheat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Point, - tag:Preheat . + skos:definition "Indicates if a prefilter needs to be replaced"@en . brick:Preheat_Demand_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Preheat Demand Setpoint" ; rdfs:subClassOf brick:Demand_Setpoint ; - skos:definition "Sets the rate required for preheat"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Preheat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Demand, - tag:Point, - tag:Preheat, - tag:Setpoint . - -brick:Preheat_Hot_Water_System a owl:Class, - sh:NodeShape ; - rdfs:label "Preheat Hot Water System" ; - rdfs:subClassOf brick:Hot_Water_System ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Preheat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Preheat, - tag:System, - tag:Water . - -brick:Preheat_Hot_Water_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Preheat Hot Water Valve" ; - rdfs:subClassOf brick:Hot_Water_Valve ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Preheat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Heat, - tag:Hot, - tag:Preheat, - tag:Valve, - tag:Water . + skos:definition "Sets the rate required for preheat"@en . + +brick:Preheat_Discharge_Air_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Preheat Discharge Air Temperature Sensor" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Sensor ; + skos:definition "Measures the temperature of discharge air before heating is applied"@en . brick:Preheat_Supply_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Preheat Supply Air Temperature Sensor" ; rdfs:subClassOf brick:Supply_Air_Temperature_Sensor ; - owl:equivalentClass brick:Preheat_Discharge_Air_Temperature_Sensor ; - skos:definition "Measures the temperature of supply air before it is heated"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Preheat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Preheat, - tag:Sensor, - tag:Supply, - tag:Temperature . - -brick:Private_Office a owl:Class, - sh:NodeShape ; - rdfs:label "Private Office" ; - rdfs:subClassOf brick:Enclosed_Office ; - skos:definition "An office devoted to a single individual, with walls and door"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Enclosed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Office ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Private ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Enclosed, - tag:Location, - tag:Office, - tag:Private, - tag:Room, - tag:Space . + skos:definition "Measures the temperature of supply air before it is heated"@en . brick:Pump_Command a owl:Class, sh:NodeShape ; rdfs:label "Pump Command" ; rdfs:subClassOf brick:Command ; - skos:definition "Controls or reports the speed of a pump (typically as a proportion of its full pumping capacity)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pump ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Point, - tag:Pump . + skos:definition "Controls or reports the speed of a pump (typically as a proportion of its full pumping capacity)"@en . brick:Pump_On_Off_Status a owl:Class, sh:NodeShape ; rdfs:label "Pump On Off Status" ; - rdfs:subClassOf brick:On_Off_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pump ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Off, - tag:On, - tag:Point, - tag:Pump, - tag:Status . - -brick:Pump_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Pump Room" ; - rdfs:subClassOf brick:Mechanical_Room ; - skos:definition "A mechanical room that houses pumps"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mechanical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pump ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Service ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Mechanical, - tag:Pump, - tag:Room, - tag:Service, - tag:Space . - -brick:Pump_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Pump Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Status of a pump"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pump ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Pump, - tag:Status . - -brick:Pump_VFD a owl:Class, - sh:NodeShape ; - rdfs:label "Pump VFD" ; - rdfs:subClassOf brick:VFD ; - skos:definition "Variable-frequency drive for pumps"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pump ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:VFD ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Pump, - tag:VFD . - -brick:Radiant_Ceiling_Panel a owl:Class, - sh:NodeShape ; - rdfs:label "Radiant Ceiling Panel" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Radiant_Panel ; - owl:equivalentClass brick:RC_Panel ; - skos:definition "Radiant panel heating and cooling system that are usually made from metal and suspended under the ceiling or insulated from the building structure."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Ceiling ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiant ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Ceiling, - tag:Equipment, - tag:Panel, - tag:Radiant . - -brick:Radiant_Temperature a brick:Quantity ; - rdfs:label "Radiant_Temperature" ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:K ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Temperature, - brick:Temperature ; - skos:definition "the uniform temperature of an imaginary enclosure in which the radiant heat transfer from the human body is equal to the radiant heat transfer in the actual non-uniform enclosure. (https://en.wikipedia.org/wiki/Mean_radiant_temperature)", - "the uniform temperature of an imaginary enclosure in which the radiant heat transfer from the human body is equal to the radiant heat transfer in the actual non-uniform enclosure. (https://en.wikipedia.org/wiki/Mean_radiant_temperature)"@en . - -brick:Radiation_Hot_Water_System a owl:Class, - sh:NodeShape ; - rdfs:label "Radiation Hot Water System" ; - rdfs:subClassOf brick:Hot_Water_System ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiation ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Radiation, - tag:System, - tag:Water . + rdfs:subClassOf brick:On_Off_Status . brick:Radon_Concentration_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Radon Concentration Sensor" ; rdfs:subClassOf brick:Radioactivity_Concentration_Sensor ; - skos:definition "Measures the concentration of radioactivity due to radon"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Concentration ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radon ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Concentration, - tag:Point, - tag:Radon, - tag:Sensor ; - brick:hasQuantity brick:Radon_Concentration ; - brick:hasSubstance brick:Air . + skos:definition "Measures the concentration of radioactivity due to radon"@en . brick:Rain_Duration_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Rain Duration Sensor" ; rdfs:subClassOf brick:Duration_Sensor, brick:Rain_Sensor ; - skos:definition "Measures the duration of precipitation within some time frame"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Duration ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Rain ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Duration, - tag:Point, - tag:Rain, - tag:Sensor . + skos:definition "Measures the duration of precipitation within some time frame"@en . brick:Rated_Speed_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Rated Speed Setpoint" ; rdfs:subClassOf brick:Speed_Setpoint ; - skos:definition "Sets rated speed"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Rated ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Rated, - tag:Setpoint, - tag:Speed . - -brick:Reactive_Energy_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Reactive Energy Sensor" ; - rdfs:subClassOf brick:Electric_Energy_Sensor ; - skos:definition "Measures the integral of reactive power"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electric ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Energy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reactive ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electric, - tag:Energy, - tag:Point, - tag:Reactive, - tag:Sensor ; - brick:hasQuantity brick:Reactive_Energy . + skos:definition "Sets rated speed"@en . brick:Reactive_Power_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Reactive Power Sensor" ; rdfs:subClassOf brick:Electric_Power_Sensor ; - skos:definition "Measures the portion of power that, averaged over a complete cycle of the AC waveform, is due to stored energy which returns to the source in each cycle"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electric ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reactive ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electric, - tag:Point, - tag:Power, - tag:Reactive, - tag:Sensor ; - brick:hasQuantity brick:Reactive_Power . - -brick:Reception a owl:Class, - sh:NodeShape ; - rdfs:label "Reception" ; - rdfs:subClassOf brick:Room ; - skos:definition "A space, usually in a lobby, where visitors to a building or space can go to after arriving at a building and inform building staff that they have arrived"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reception ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Reception, - tag:Room, - tag:Space . - -brick:Refrigerant_Level_Sensor a owl:Class ; - rdfs:label "Refrigerant Level Sensor" ; - rdfs:subClassOf brick:Sensor ; - brick:hasQuantity brick:Level ; - brick:hasSubstance brick:Refrigerant . - -brick:Reheat_Hot_Water_System a owl:Class, - sh:NodeShape ; - rdfs:label "Reheat Hot Water System" ; - rdfs:subClassOf brick:Hot_Water_System ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reheat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Reheat, - tag:System, - tag:Water . - -brick:Reheat_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Reheat Valve" ; - rdfs:subClassOf brick:Heating_Valve ; - skos:definition "A valve that controls air temperature by modulating the amount of hot water flowing through a reheat coil"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reheat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Heat, - tag:Reheat, - tag:Valve . - -brick:Relay a owl:Class, - sh:NodeShape ; - rdfs:label "Relay" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Equipment ; - skos:definition "an electrically operated switch"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Relay ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Relay . - -brick:Relay_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Relay Command" ; - rdfs:subClassOf brick:Command ; - skos:definition "Commands to switch the relay"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Relay ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Point, - tag:Relay . - -brick:Relief_Damper a owl:Class, - sh:NodeShape ; - rdfs:label "Relief Damper" ; - rdfs:subClassOf brick:Damper ; - skos:definition "A damper that is a component of a Relief Air System, ensuring building doesn't become over-pressurised"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Damper ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Relief ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Damper, - tag:Equipment, - tag:Relief . - -brick:Relief_Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Relief Fan" ; - rdfs:subClassOf brick:Fan ; - skos:definition "A fan that is a component of a Relief Air System, ensuring building doesn't become over-pressurised"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Relief ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Fan, - tag:Relief . + skos:definition "Measures the portion of power that, averaged over a complete cycle of the AC waveform, is due to stored energy which returns to the source in each cycle"@en . brick:Remotely_On_Off_Status a owl:Class, sh:NodeShape ; rdfs:label "Remotely On Off Status" ; - rdfs:subClassOf brick:On_Off_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Remotely ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Off, - tag:On, - tag:Point, - tag:Remotely, - tag:Status . - -brick:Retail_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Retail Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A space set aside for retail in a larger establishment, e.g. a gift shop in a hospital"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Retail ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Retail, - tag:Room, - tag:Space . + rdfs:subClassOf brick:On_Off_Status . brick:Return_Air_CO2_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Air CO2 Sensor" ; rdfs:subClassOf brick:CO2_Sensor ; - skos:definition "Measures the concentration of CO2 in return air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:CO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:CO2, - tag:Point, - tag:Return, - tag:Sensor ; - brick:hasQuantity brick:CO2_Concentration ; - brick:hasSubstance brick:Return_Air . + skos:definition "Measures the concentration of CO2 in return air"@en . brick:Return_Air_CO2_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Return Air CO2 Setpoint" ; rdfs:subClassOf brick:CO2_Setpoint ; - skos:definition "Sets some property of CO2 in Return Air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:CO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:CO2, - tag:Point, - tag:Return, - tag:Setpoint . + skos:definition "Sets some property of CO2 in Return Air"@en . brick:Return_Air_CO_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Air CO Sensor" ; rdfs:subClassOf brick:CO_Sensor ; - skos:definition "Measures the concentration of CO in return air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:CO ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:CO, - tag:Point, - tag:Return, - tag:Sensor ; - brick:hasQuantity brick:CO_Concentration ; - brick:hasSubstance brick:Return_Air . + skos:definition "Measures the concentration of CO in return air"@en . brick:Return_Air_Dewpoint_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Air Dewpoint Sensor" ; rdfs:subClassOf brick:Dewpoint_Sensor ; - skos:definition "Senses the dewpoint temperature of return air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Dewpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Dewpoint, - tag:Point, - tag:Return, - tag:Sensor ; - brick:hasQuantity brick:Dewpoint ; - brick:hasSubstance brick:Return_Air . + skos:definition "Senses the dewpoint temperature of return air"@en . brick:Return_Air_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Air Differential Pressure Sensor" ; rdfs:subClassOf brick:Air_Differential_Pressure_Sensor ; - skos:definition "Measures the difference in pressure between the return and supply side"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Point, - tag:Pressure, - tag:Return, - tag:Sensor ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Return_Air . + skos:definition "Measures the difference in pressure between the return and supply side"@en . brick:Return_Air_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Return Air Differential Pressure Setpoint" ; rdfs:subClassOf brick:Air_Differential_Pressure_Setpoint ; - skos:definition "Sets the target air differential pressure between an upstream and downstream point in a return air duct or conduit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Point, - tag:Pressure, - tag:Return, - tag:Setpoint ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Return_Air . + skos:definition "Sets the target air differential pressure between an upstream and downstream point in a return air duct or conduit"@en . brick:Return_Air_Enthalpy_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Air Enthalpy Sensor" ; rdfs:subClassOf brick:Air_Enthalpy_Sensor ; - skos:definition "Measures the total heat content of return air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enthalpy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Enthalpy, - tag:Point, - tag:Return, - tag:Sensor ; - brick:hasQuantity brick:Enthalpy ; - brick:hasSubstance brick:Return_Air . - -brick:Return_Air_Filter a owl:Class, - sh:NodeShape ; - rdfs:label "Return Air Filter" ; - rdfs:subClassOf brick:Filter ; - skos:definition "Filters return air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Filter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Equipment, - tag:Filter, - tag:Return . + skos:definition "Measures the total heat content of return air"@en . brick:Return_Air_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Air Flow Sensor" ; rdfs:subClassOf brick:Air_Flow_Sensor ; - skos:definition "Measures the rate of flow of return air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Point, - tag:Return, - tag:Sensor ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Return_Air . + skos:definition "Measures the rate of flow of return air"@en . brick:Return_Air_Grains_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Air Grains Sensor" ; rdfs:subClassOf brick:Air_Grains_Sensor ; - skos:definition "Measures the mass of water vapor in return air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Grains ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Grains, - tag:Point, - tag:Return, - tag:Sensor ; - brick:hasQuantity brick:GrainsOfMoisture ; - brick:hasSubstance brick:Return_Air . + skos:definition "Measures the mass of water vapor in return air"@en . brick:Return_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Air Humidity Sensor" ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; - skos:definition "Measures the relative humidity of return air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Relative ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Humidity, - tag:Point, - tag:Relative, - tag:Return, - tag:Sensor ; - brick:hasQuantity brick:Relative_Humidity ; - brick:hasSubstance brick:Return_Air . + skos:definition "Measures the relative humidity of return air"@en . brick:Return_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Return Air Humidity Setpoint" ; rdfs:subClassOf brick:Humidity_Setpoint ; - skos:definition "Humidity setpoint for return air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Humidity, - tag:Point, - tag:Return, - tag:Setpoint ; - brick:hasQuantity brick:Humidity ; - brick:hasSubstance brick:Return_Air . - -brick:Return_Air_Plenum a owl:Class, - sh:NodeShape ; - rdfs:label "Return Air Plenum" ; - rdfs:subClassOf brick:Air_Plenum ; - skos:definition "A component of the HVAC the receives air from the room to recirculate or exhaust to or from the building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Plenum ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Equipment, - tag:Plenum, - tag:Return . + skos:definition "Humidity setpoint for return air"@en . brick:Return_Air_Temperature_High_Reset_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Return Air Temperature High Reset Setpoint" ; - rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:High, - tag:Point, - tag:Reset, - tag:Return, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Return_Air . + rdfs:subClassOf brick:Temperature_High_Reset_Setpoint . brick:Return_Air_Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Return Air Temperature Low Reset Setpoint" ; - rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Low, - tag:Point, - tag:Reset, - tag:Return, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Return_Air . + rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint . brick:Return_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Air Temperature Sensor" ; rdfs:subClassOf brick:Air_Temperature_Sensor ; - skos:definition "Measures the temperature of return air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Return, - tag:Sensor, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Return_Air . + skos:definition "Measures the temperature of return air"@en . brick:Return_Chilled_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Return Chilled Water Temperature Setpoint" ; rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint, brick:Return_Water_Temperature_Setpoint ; - skos:definition "Sets the temperature of return (downstream of the chilled water load) chilled water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Point, - tag:Return, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Return_Chilled_Water . + skos:definition "Sets the temperature of return (downstream of the chilled water load) chilled water"@en . brick:Return_Condenser_Water_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Condenser Water Flow Sensor" ; - rdfs:subClassOf brick:Condenser_Water_Flow_Sensor, - brick:Return_Water_Flow_Sensor ; - skos:definition "Measures the flow of the return condenser water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Flow, - tag:Point, - tag:Return, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Return_Condenser_Water . + rdfs:subClassOf brick:Return_Water_Flow_Sensor ; + skos:definition "Measures the flow of the return condenser water"@en . brick:Return_Condenser_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Condenser Water Temperature Sensor" ; rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor ; - skos:definition "Measures the temperature of the return condenser water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Point, - tag:Return, - tag:Sensor, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Return_Condenser_Water . + skos:definition "Measures the temperature of the return condenser water"@en . brick:Return_Condenser_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Return Condenser Water Temperature Setpoint" ; rdfs:subClassOf brick:Discharge_Water_Temperature_Setpoint, brick:Supply_Water_Temperature_Setpoint ; - skos:definition "The temperature setpoint for the return condenser water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Point, - tag:Return, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Return_Condenser_Water . - -brick:Return_Damper a owl:Class, - sh:NodeShape ; - rdfs:label "Return Damper" ; - rdfs:subClassOf brick:Damper ; - skos:definition "A damper that modulates the flow of return air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Damper ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Damper, - tag:Equipment, - tag:Return . - -brick:Return_Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Return Fan" ; - rdfs:subClassOf brick:Fan ; - skos:definition "Fan moving return air -- air that is circulated from the building back into the HVAC system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Fan, - tag:Return . - -brick:Return_Heating_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Return Heating Valve" ; - rdfs:subClassOf brick:Heating_Valve ; - skos:definition "A valve installed on the return side of a heat exchanger"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Heat, - tag:Return, - tag:Valve . + skos:definition "The temperature setpoint for the return condenser water"@en . brick:Return_Hot_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Return Hot Water Temperature Setpoint" ; rdfs:subClassOf brick:Hot_Water_Temperature_Setpoint, brick:Return_Water_Temperature_Setpoint ; - skos:definition "Sets the temperature of return (downstream of the hot water load) hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Point, - tag:Return, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Return_Hot_Water . - -brick:Riser a owl:Class, - sh:NodeShape ; - rdfs:label "Riser" ; - rdfs:subClassOf brick:Vertical_Space ; - skos:definition "A vertical shaft indented for installing building infrastructure e.g., electrical wire, network communication wire, plumbing, etc"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Riser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Vertical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Riser, - tag:Space, - tag:Vertical . - -brick:Rooftop a owl:Class, - sh:NodeShape ; - rdfs:label "Rooftop" ; - rdfs:subClassOf brick:Floor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Floor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Rooftop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Floor, - tag:Location, - tag:Rooftop . - -brick:Rotational_Speed a brick:Quantity ; - rdfs:label "Rotational_Speed" ; - qudt:applicableUnit unit:DEG-PER-HR, - unit:DEG-PER-MIN, - unit:DEG-PER-SEC, - unit:RAD-PER-HR, - unit:RAD-PER-MIN, - unit:RAD-PER-SEC ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Frequency, - qudtqk:Speed, - brick:Speed ; - skos:definition "Rotational speed" . + skos:definition "Sets the temperature of return (downstream of the hot water load) hot water"@en . + +brick:Reversing_Valve_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Reversing Valve Command" ; + rdfs:subClassOf brick:Direction_Command, + brick:Valve_Command ; + skos:definition "Controls the direction of refrigerant flow in order to switch it to heating or cooling mode."@en . + +brick:Room a owl:Class, + sh:NodeShape ; + rdfs:label "Room" ; + rdfs:subClassOf brick:Space ; + skos:definition "Base class for all more specific room types."@en . brick:Run_Enable_Command a owl:Class, sh:NodeShape ; rdfs:label "Run Enable Command" ; - rdfs:subClassOf brick:Enable_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Run ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Enable, - tag:Point, - tag:Run . + rdfs:subClassOf brick:Enable_Command . brick:Run_Request_Status a owl:Class, sh:NodeShape ; rdfs:label "Run Request Status" ; rdfs:subClassOf brick:Run_Status ; - skos:definition "Indicates if a request has been filed to start a device or equipment"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Request ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Run ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Request, - tag:Run, - tag:Status . - -brick:Safety_Shower a owl:Class, - sh:NodeShape ; - rdfs:label "Safety Shower" ; - rdfs:subClassOf brick:Emergency_Wash_Station ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shower ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Station ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Wash ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Emergency, - tag:Equipment, - tag:Safety, - tag:Shower, - tag:Station, - tag:Wash . + skos:definition "Indicates if a request has been filed to start a device or equipment"@en . + +brick:Run_Time_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Run Time Sensor" ; + rdfs:subClassOf brick:Duration_Sensor ; + skos:definition "Measures the duration for which a device was in an active or \"on\" state"@en . brick:Sash_Position_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Sash Position Sensor" ; rdfs:subClassOf brick:Position_Sensor ; - skos:definition "Measures the current position of a sash in terms of the percent of fully open"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Position ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sash ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Position, - tag:Sash, - tag:Sensor ; - brick:hasQuantity brick:Position . + skos:definition "Measures the current position of a sash in terms of the percent of fully open"@en . brick:Schedule_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Schedule Temperature Setpoint" ; rdfs:subClassOf brick:Temperature_Setpoint ; - skos:definition "The current setpoint as indicated by the schedule"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Schedule ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Schedule, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature . + skos:definition "The current setpoint as indicated by the schedule"@en . brick:Sensor_Failure_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Sensor Failure Alarm" ; - rdfs:subClassOf brick:Failure_Alarm ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Failure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Failure, - tag:Point, - tag:Sensor . - -brick:Server_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Server Room" ; - rdfs:subClassOf brick:Room ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Server ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room, - tag:Server . - -brick:Shade a owl:Class, - sh:NodeShape ; - rdfs:label "Shade" ; - rdfs:subClassOf brick:Shading_Equipment ; - skos:definition "A screen on a window."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shade ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Shade . - -brick:Shade_Array a owl:Class, - sh:NodeShape ; - rdfs:label "Shade Array" ; - rdfs:subClassOf brick:Shading_System ; - skos:definition "An array of Shade commonly attached to a single controller."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Array ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shade ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Array, - tag:Shade, - tag:System . - -brick:Shared_Office a owl:Class, - sh:NodeShape ; - rdfs:label "Shared Office" ; - rdfs:subClassOf brick:Enclosed_Office ; - skos:definition "An office used by multiple people"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Enclosed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Office ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shared ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Enclosed, - tag:Location, - tag:Office, - tag:Room, - tag:Shared, - tag:Space . + rdfs:subClassOf brick:Failure_Alarm . brick:Short_Cycle_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Short Cycle Alarm" ; rdfs:subClassOf brick:Cycle_Alarm ; - skos:definition "An alarm that indicates a short cycle occurred. A short cycle occurs when a cooling cycle is prevented from completing its full cycle"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cycle ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Short ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Cycle, - tag:Point, - tag:Short . - -brick:Shower a owl:Class, - sh:NodeShape ; - rdfs:label "Shower" ; - rdfs:subClassOf brick:Room ; - skos:definition "A space containing showers, usually adjacent to an athletic or execise area"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shower ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room, - tag:Shower, - tag:Space . - -brick:Smoke_Detector a owl:Class, - sh:NodeShape ; - rdfs:label "Smoke Detector" ; - rdfs:subClassOf brick:Fire_Safety_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Detector ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Smoke ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Detector, - tag:Equipment, - tag:Fire, - tag:Safety, - tag:Smoke . - -brick:Soil_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Soil Temperature Sensor" ; - rdfs:subClassOf brick:Temperature_Sensor ; - skos:definition "Measures the temperature of soil"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Soil ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Sensor, - tag:Soil, - tag:Temperature ; - brick:hasSubstance brick:Soil . + skos:definition "An alarm that indicates a short cycle occurred. A short cycle occurs when a cooling cycle is prevented from completing its full cycle"@en . brick:Solar_Azimuth_Angle_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Solar Azimuth Angle Sensor" ; rdfs:subClassOf brick:Angle_Sensor ; - skos:definition "Measures the azimuth angle of the sun"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Angle ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Azimuth ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Solar ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Angle, - tag:Azimuth, - tag:Point, - tag:Sensor, - tag:Solar . - -brick:Solar_Irradiance a brick:Quantity ; - rdfs:label "SolarIrradiance" ; - qudt:applicableUnit unit:W-PER-CentiM2, - unit:W-PER-FT2, - unit:W-PER-IN2, - unit:W-PER-M2 ; - rdfs:isDefinedBy ; - skos:broader brick:Irradiance ; - skos:definition "The power per unit area of solar electromagnetic radiation incident on a surface", - "The power per unit area of solar electromagnetic radiation incident on a surface"@en . + skos:definition "Measures the azimuth angle of the sun"@en . brick:Solar_Radiance_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Solar Radiance Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "The amount of light that passes through or is emitted from the sun and falls within a given solid angle in a specified direction"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Solar ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Radiance, - tag:Sensor, - tag:Solar ; - brick:hasQuantity brick:Solar_Radiance . + skos:definition "The amount of light that passes through or is emitted from the sun and falls within a given solid angle in a specified direction"@en . brick:Solar_Zenith_Angle_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Solar Zenith Angle Sensor" ; rdfs:subClassOf brick:Angle_Sensor ; - skos:definition "Measures the zenith angle of the sun"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Angle ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Solar ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zenith ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Angle, - tag:Point, - tag:Sensor, - tag:Solar, - tag:Zenith . - -brick:Space_Heater a owl:Class, - sh:NodeShape ; - rdfs:label "Space Heater" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "A heater used to warm the air in an enclosed area, such as a room or office"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heater ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Heater, - tag:Space . - -brick:Speed_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Speed Command" ; - rdfs:subClassOf brick:Command ; - skos:definition "A command to set speed to a certain degree."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Point, - tag:Speed . - -brick:Speed_Mode_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Speed Mode Status" ; - rdfs:subClassOf brick:Mode_Status, - brick:Speed_Status ; - skos:definition "Status indicating the speed mode"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Mode, - tag:Point, - tag:Speed, - tag:Status . + skos:definition "Measures the zenith angle of the sun"@en . brick:Speed_Reset_Command a owl:Class, sh:NodeShape ; rdfs:label "Speed Reset Command" ; - rdfs:subClassOf brick:Reset_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Point, - tag:Reset, - tag:Speed ; - brick:hasQuantity brick:Speed . - -brick:Sports_Service_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Sports Service Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A class of spaces used in the support of sports"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Service ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sports ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room, - tag:Service, - tag:Space, - tag:Sports . + rdfs:subClassOf brick:Reset_Command . + +brick:Speed_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Speed Status" ; + rdfs:subClassOf brick:Status ; + skos:definition "Indicates the operating speed of a device or equipment, e.g. fan"@en . brick:Stage_Enable_Command a owl:Class, sh:NodeShape ; rdfs:label "Stage Enable Command" ; rdfs:subClassOf brick:Enable_Command ; - skos:definition "A point representing a discrete stage which the equipment should be operating at. The desired stage number should be identified by an entity property"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Enable, - tag:Point, - tag:Stage . - -brick:Stage_Riser a owl:Class, - sh:NodeShape ; - rdfs:label "Stage Riser" ; - rdfs:subClassOf brick:Furniture ; - skos:definition "A low platform in a space or on a stage"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Furniture ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Riser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Furniture, - tag:Riser, - tag:Stage . + skos:definition "A point representing a discrete stage which the equipment should be operating at. The desired stage number should be identified by an entity property"@en . brick:Stages_Status a owl:Class, sh:NodeShape ; rdfs:label "Stages Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates which stage a control loop or equipment is in"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stages ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Stages, - tag:Status . - -brick:Staircase a owl:Class, - sh:NodeShape ; - rdfs:label "Staircase" ; - rdfs:subClassOf brick:Vertical_Space ; - skos:definition "A vertical space containing stairs"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Staircase ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Vertical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Space, - tag:Staircase, - tag:Vertical . - -brick:Standby_CRAC a owl:Class, - sh:NodeShape ; - rdfs:label "Standby CRAC" ; - rdfs:subClassOf brick:CRAC ; - skos:definition "A CRAC that is activated as part of a lead/lag operation or when an alarm occurs in a primary unit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CRAC ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Standby ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CRAC, - tag:Equipment, - tag:Standby . - -brick:Standby_Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Standby Fan" ; - rdfs:subClassOf brick:Fan ; - skos:definition "Fan that is activated as part of a lead/lag operation or when a primary fan raises an alarm"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Standby ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Fan, - tag:Standby . + skos:definition "Indicates which stage a control loop or equipment is in"@en . brick:Standby_Glycool_Unit_On_Off_Status a owl:Class, sh:NodeShape ; rdfs:label "Standby Glycool Unit On Off Status" ; rdfs:subClassOf brick:Standby_Unit_On_Off_Status ; - skos:definition "Indicates the on/off status of a standby glycool unit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Glycool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Standby ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Glycool, - tag:Off, - tag:On, - tag:Point, - tag:Standby, - tag:Status, - tag:Unit . + skos:definition "Indicates the on/off status of a standby glycool unit"@en . brick:Start_Stop_Command a owl:Class, sh:NodeShape ; rdfs:label "Start Stop Command" ; rdfs:subClassOf brick:On_Off_Command ; - skos:definition "A Start/Stop Command controls or reports the active/inactive status of a control sequence"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Start ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Point, - tag:Start, - tag:Stop . - -brick:Steam_Baseboard_Radiator a owl:Class, - sh:NodeShape ; - rdfs:label "Steam Baseboard Radiator" ; - rdfs:subClassOf brick:Baseboard_Radiator, - brick:Steam_Radiator ; - skos:definition "Steam heating device located at or near the floor"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Baseboard ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Steam ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Baseboard, - tag:Equipment, - tag:Radiator, - tag:Steam . - -brick:Steam_Distribution a owl:Class, - sh:NodeShape ; - rdfs:label "Steam Distribution" ; - rdfs:subClassOf brick:Equipment ; - skos:definition "Utilize a steam distribution source to represent how steam is distributed across multiple destinations"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Distribution ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Steam ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Distribution, - tag:Equipment, - tag:Steam . + skos:definition "A Start/Stop Command controls or reports the active/inactive status of a control sequence"@en . brick:Steam_On_Off_Command a owl:Class, sh:NodeShape ; rdfs:label "Steam On Off Command" ; - rdfs:subClassOf brick:On_Off_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Steam ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Off, - tag:On, - tag:Point, - tag:Steam . - -brick:Steam_System a owl:Class, - sh:NodeShape ; - rdfs:label "Steam System" ; - rdfs:subClassOf brick:Heating_Ventilation_Air_Conditioning_System ; - skos:definition "The equipment, devices and conduits that handle the production and distribution of steam in a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Steam ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Steam, - tag:System . + rdfs:subClassOf brick:On_Off_Command . brick:Steam_Usage_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Steam Usage Sensor" ; rdfs:subClassOf brick:Usage_Sensor ; - skos:definition "Measures the amount of steam that is consumed or used, over some period of time"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Steam ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Usage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Sensor, - tag:Steam, - tag:Usage . - -brick:Steam_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Steam Valve" ; - rdfs:subClassOf brick:HVAC_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Steam ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Steam, - tag:Valve . - -brick:Studio a owl:Class, - sh:NodeShape ; - rdfs:label "Studio" ; - rdfs:subClassOf brick:Media_Room ; - skos:definition "A room used for the production or media, usually with either a specialized set or a specialized sound booth for recording"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Media ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Studio ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Media, - tag:Room, - tag:Space, - tag:Studio . + skos:definition "Measures the amount of steam that is consumed or used, over some period of time"@en . brick:Supply_Air_Dewpoint_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Dewpoint Sensor" ; - rdfs:subClassOf brick:Dewpoint_Sensor ; - owl:equivalentClass brick:Discharge_Air_Dewpoint_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Dewpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Dewpoint, - tag:Point, - tag:Sensor, - tag:Supply . + rdfs:subClassOf brick:Dewpoint_Sensor . brick:Supply_Air_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Differential Pressure Sensor" ; rdfs:subClassOf brick:Air_Differential_Pressure_Sensor ; - owl:equivalentClass brick:Discharge_Air_Differential_Pressure_Sensor ; - skos:definition "Measures the difference in pressure between an upstream and downstream of an air duct or other air conduit used to supply air into the building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Supply ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Supply_Air . + skos:definition "Measures the difference in pressure between an upstream and downstream of an air duct or other air conduit used to supply air into the building"@en . + +brick:Supply_Air_Differential_Pressure_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Air Differential Pressure Setpoint" ; + rdfs:subClassOf brick:Air_Differential_Pressure_Setpoint ; + skos:definition "Sets the target air differential pressure between an upstream and downstream point in a supply air duct or conduit"@en . brick:Supply_Air_Duct_Pressure_Status a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Duct Pressure Status" ; rdfs:subClassOf brick:Pressure_Status ; - owl:equivalentClass brick:Discharge_Air_Duct_Pressure_Status ; - skos:definition "Indicates if air pressure in supply duct is within expected bounds"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Duct ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Duct, - tag:Point, - tag:Pressure, - tag:Status, - tag:Supply . + skos:definition "Indicates if air pressure in supply duct is within expected bounds"@en . brick:Supply_Air_Flow_Demand_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Flow Demand Setpoint" ; rdfs:subClassOf brick:Air_Flow_Demand_Setpoint, brick:Supply_Air_Flow_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Flow_Demand_Setpoint ; - skos:definition "Sets the rate of supply air flow required for a process"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Demand, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Supply ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Supply_Air . + skos:definition "Sets the rate of supply air flow required for a process"@en . brick:Supply_Air_Flow_High_Reset_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Flow High Reset Setpoint" ; - rdfs:subClassOf brick:Supply_Air_Flow_Reset_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Flow_High_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:High, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Supply . + rdfs:subClassOf brick:Supply_Air_Flow_Reset_Setpoint . brick:Supply_Air_Flow_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Flow Low Reset Setpoint" ; - rdfs:subClassOf brick:Supply_Air_Flow_Reset_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Flow_Low_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Low, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Supply . + rdfs:subClassOf brick:Supply_Air_Flow_Reset_Setpoint . brick:Supply_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Humidity Sensor" ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; - owl:equivalentClass brick:Discharge_Air_Humidity_Sensor ; - skos:definition "Measures the relative humidity of supply air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Relative ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Humidity, - tag:Point, - tag:Relative, - tag:Sensor, - tag:Supply ; - brick:hasQuantity brick:Relative_Humidity ; - brick:hasSubstance brick:Supply_Air . + skos:definition "Measures the relative humidity of supply air"@en . brick:Supply_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Humidity Setpoint" ; rdfs:subClassOf brick:Humidity_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Humidity_Setpoint ; - skos:definition "Humidity setpoint for supply air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Humidity, - tag:Point, - tag:Setpoint, - tag:Supply ; - brick:hasQuantity brick:Humidity ; - brick:hasSubstance brick:Supply_Air . + skos:definition "Humidity setpoint for supply air"@en . brick:Supply_Air_Integral_Gain_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Integral Gain Parameter" ; - rdfs:subClassOf brick:Integral_Gain_Parameter ; - owl:equivalentClass brick:Discharge_Air_Integral_Gain_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gain ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Gain, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Supply . + rdfs:subClassOf brick:Integral_Gain_Parameter . brick:Supply_Air_Proportional_Gain_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Proportional Gain Parameter" ; - rdfs:subClassOf brick:Proportional_Gain_Parameter ; - owl:equivalentClass brick:Discharge_Air_Proportional_Gain_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gain ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Gain, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional, - tag:Supply . + rdfs:subClassOf brick:Proportional_Gain_Parameter . brick:Supply_Air_Smoke_Detection_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Smoke Detection Alarm" ; rdfs:subClassOf brick:Air_Alarm, - brick:Smoke_Detection_Alarm ; - owl:equivalentClass brick:Discharge_Air_Smoke_Detection_Alarm ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Detection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Smoke ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Detection, - tag:Point, - tag:Smoke, - tag:Supply . + brick:Smoke_Detection_Alarm . brick:Supply_Air_Static_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Static Pressure Deadband Setpoint" ; rdfs:subClassOf brick:Static_Pressure_Deadband_Setpoint, brick:Supply_Air_Static_Pressure_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Static_Pressure_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of static pressure of supply air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Deadband, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static, - tag:Supply ; - brick:hasQuantity brick:Static_Pressure ; - brick:hasSubstance brick:Supply_Air . + skos:definition "Sets the size of a deadband of static pressure of supply air"@en . brick:Supply_Air_Static_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Static Pressure Integral Time Parameter" ; - rdfs:subClassOf brick:Static_Pressure_Integral_Time_Parameter ; - owl:equivalentClass brick:Discharge_Air_Static_Pressure_Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Static, - tag:Supply, - tag:Time . + rdfs:subClassOf brick:Static_Pressure_Integral_Time_Parameter . brick:Supply_Air_Static_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Static Pressure Proportional Band Parameter" ; - rdfs:subClassOf brick:Static_Pressure_Proportional_Band_Parameter ; - owl:equivalentClass brick:Discharge_Air_Static_Pressure_Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Band, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Proportional, - tag:Static, - tag:Supply . + rdfs:subClassOf brick:Static_Pressure_Proportional_Band_Parameter . brick:Supply_Air_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Static Pressure Sensor" ; rdfs:subClassOf brick:Static_Pressure_Sensor ; - owl:equivalentClass brick:Discharge_Air_Static_Pressure_Sensor ; - skos:definition "The static pressure of air within supply regions of an HVAC system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Static, - tag:Supply ; - brick:hasQuantity brick:Static_Pressure ; - brick:hasSubstance brick:Supply_Air . + skos:definition "The static pressure of air within supply regions of an HVAC system"@en . brick:Supply_Air_Static_Pressure_Step_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Static Pressure Step Parameter" ; - rdfs:subClassOf brick:Air_Static_Pressure_Step_Parameter ; - owl:equivalentClass brick:Discharge_Air_Static_Pressure_Step_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Step ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Static, - tag:Step, - tag:Supply . + rdfs:subClassOf brick:Air_Static_Pressure_Step_Parameter . brick:Supply_Air_Temperature_Cooling_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Temperature Cooling Setpoint" ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, - brick:Supply_Air_Temperature_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Temperature_Cooling_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature . + brick:Supply_Air_Temperature_Setpoint . brick:Supply_Air_Temperature_Heating_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Temperature Heating Setpoint" ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, - brick:Supply_Air_Temperature_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Temperature_Heating_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature . + brick:Supply_Air_Temperature_Setpoint . brick:Supply_Air_Temperature_High_Reset_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Temperature High Reset Setpoint" ; - rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Temperature_High_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:High, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Supply, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Air . + rdfs:subClassOf brick:Temperature_High_Reset_Setpoint . brick:Supply_Air_Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Temperature Low Reset Setpoint" ; - rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Temperature_Low_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Low, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Supply, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Air . + rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint . brick:Supply_Air_Temperature_Reset_Differential_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Temperature Reset Differential Setpoint" ; - rdfs:subClassOf brick:Temperature_Differential_Reset_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Temperature_Reset_Differential_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Supply, - tag:Temperature ; - brick:hasSubstance brick:Supply_Air . + rdfs:subClassOf brick:Temperature_Differential_Reset_Setpoint . brick:Supply_Air_Temperature_Step_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Temperature Step Parameter" ; - rdfs:subClassOf brick:Air_Temperature_Step_Parameter ; - owl:equivalentClass brick:Discharge_Air_Temperature_Step_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Step ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Parameter, - tag:Point, - tag:Step, - tag:Supply, - tag:Temperature . + rdfs:subClassOf brick:Air_Temperature_Step_Parameter . brick:Supply_Air_Velocity_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Supply Air Velocity Pressure Sensor" ; - rdfs:subClassOf brick:Velocity_Pressure_Sensor ; - owl:equivalentClass brick:Discharge_Air_Velocity_Pressure_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Velocity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Supply, - tag:Velocity ; - brick:hasQuantity brick:Velocity_Pressure ; - brick:hasSubstance brick:Supply_Air . + rdfs:subClassOf brick:Velocity_Pressure_Sensor . brick:Supply_Chilled_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Chilled Water Temperature Setpoint" ; rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint, brick:Supply_Water_Temperature_Setpoint ; - owl:equivalentClass brick:Discharge_Chilled_Water_Temperature_Setpoint ; - skos:definition "Temperature setpoint for supply chilled water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Chilled_Water . + skos:definition "Temperature setpoint for supply chilled water"@en . brick:Supply_Condenser_Water_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Supply Condenser Water Flow Sensor" ; - rdfs:subClassOf brick:Condenser_Water_Flow_Sensor, - brick:Supply_Water_Flow_Sensor ; - owl:equivalentClass brick:Discharge_Condenser_Water_Flow_Sensor ; - skos:definition "Measures the flow of the supply condenser water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Flow, - tag:Point, - tag:Sensor, - tag:Supply, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Supply_Condenser_Water . + rdfs:subClassOf brick:Supply_Water_Flow_Sensor ; + skos:definition "Measures the flow of the supply condenser water"@en . brick:Supply_Condenser_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Supply Condenser Water Temperature Sensor" ; rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor ; - owl:equivalentClass brick:Discharge_Condenser_Water_Temperature_Sensor ; - skos:definition "Measures the temperature of the supply condenser water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Point, - tag:Sensor, - tag:Supply, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Condenser_Water . + skos:definition "Measures the temperature of the supply condenser water"@en . brick:Supply_Condenser_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Condenser Water Temperature Setpoint" ; rdfs:subClassOf brick:Supply_Water_Temperature_Setpoint ; - owl:equivalentClass brick:Discharge_Condenser_Water_Temperature_Setpoint ; - skos:definition "The temperature setpoint for the supply condenser water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Condenser_Water . - -brick:Supply_Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Fan" ; - rdfs:subClassOf brick:Fan ; - owl:equivalentClass brick:Discharge_Fan ; - skos:definition "Fan moving supply air -- air that is supplied from the HVAC system into the building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Fan, - tag:Supply . + skos:definition "The temperature setpoint for the supply condenser water"@en . brick:Supply_Hot_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Hot Water Temperature Setpoint" ; rdfs:subClassOf brick:Hot_Water_Temperature_Setpoint, brick:Supply_Water_Temperature_Setpoint ; - owl:equivalentClass brick:Discharge_Hot_Water_Temperature_Setpoint ; - skos:definition "Temperature setpoint for supply hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Hot_Water . + skos:definition "Temperature setpoint for supply hot water"@en . brick:Supply_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Water Differential Pressure Deadband Setpoint" ; rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ; - owl:equivalentClass brick:Discharge_Water_Differential_Pressure_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of differential pressure of supply water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deadband, - tag:Differential, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Supply, - tag:Water ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Supply_Water . + skos:definition "Sets the size of a deadband of differential pressure of supply water"@en . brick:Supply_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Supply Water Differential Pressure Integral Time Parameter" ; - rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter ; - owl:equivalentClass brick:Discharge_Water_Differential_Pressure_Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Supply, - tag:Time, - tag:Water . + rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter . brick:Supply_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Supply Water Differential Pressure Proportional Band Parameter" ; - rdfs:subClassOf brick:Differential_Pressure_Proportional_Band ; - owl:equivalentClass brick:Discharge_Water_Differential_Pressure_Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Band, - tag:Differential, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Proportional, - tag:Supply, - tag:Water . + rdfs:subClassOf brick:Differential_Pressure_Proportional_Band . brick:Supply_Water_Temperature_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Supply Water Temperature Alarm" ; rdfs:subClassOf brick:Water_Temperature_Alarm ; - owl:equivalentClass brick:Discharge_Water_Temperature_Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with temperature of the supply water."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Point, - tag:Supply, - tag:Temperature, - tag:Water . + skos:definition "An alarm that indicates the off-normal conditions associated with temperature of the supply water."@en . brick:Supply_Water_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Water Temperature Deadband Setpoint" ; rdfs:subClassOf brick:Supply_Water_Temperature_Setpoint, brick:Temperature_Deadband_Setpoint ; - owl:equivalentClass brick:Discharge_Water_Temperature_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of temperature of supply water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deadband, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Water . + skos:definition "Sets the size of a deadband of temperature of supply water"@en . brick:Supply_Water_Temperature_Integral_Time_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Supply Water Temperature Integral Time Parameter" ; rdfs:subClassOf brick:Integral_Time_Parameter, - brick:Temperature_Parameter ; - owl:equivalentClass brick:Discharge_Water_Temperature_Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Supply, - tag:Temperature, - tag:Time, - tag:Water . + brick:Temperature_Parameter . brick:Supply_Water_Temperature_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Supply Water Temperature Proportional Band Parameter" ; rdfs:subClassOf brick:Proportional_Band_Parameter, - brick:Temperature_Parameter ; - owl:equivalentClass brick:Discharge_Water_Temperature_Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Band, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional, - tag:Supply, - tag:Temperature, - tag:Water . - -brick:Surveillance_Camera a owl:Class, - sh:NodeShape ; - rdfs:label "Surveillance Camera" ; - rdfs:subClassOf brick:Camera, - brick:Video_Surveillance_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Camera ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Security ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Surveillance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Video ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Camera, - tag:Equipment, - tag:Security, - tag:Surveillance, - tag:Video . - -brick:Switch_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Switch Room" ; - rdfs:subClassOf brick:Telecom_Room ; - skos:definition "A telecommuncations room housing network switches"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Switch ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Telecom ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room, - tag:Space, - tag:Switch, - tag:Telecom . - -brick:Switch_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Switch Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Status of a switch"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Switch ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Status, - tag:Switch . - -brick:Switchgear a owl:Class, - sh:NodeShape ; - rdfs:label "Switchgear" ; - rdfs:subClassOf brick:Electrical_Equipment ; - skos:definition "A main disconnect or service disconnect feeds power to a switchgear, which then distributes power to the rest of the building through smaller amperage-rated disconnects."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Switchgear ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Switchgear . + brick:Temperature_Parameter . brick:System_Shutdown_Status a owl:Class, sh:NodeShape ; rdfs:label "System Shutdown Status" ; rdfs:subClassOf brick:Status, brick:System_Status ; - skos:definition "Indicates if a system has been shutdown"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shutdown ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Shutdown, - tag:Status, - tag:System . - -brick:TETRA_Room a owl:Class, - sh:NodeShape ; - rdfs:label "TETRA Room" ; - rdfs:subClassOf brick:Telecom_Room ; - skos:definition "A room used for local two-way radio networks, e.g. the portable radios carried by facilities staff"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:TETRA ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Telecom ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room, - tag:Space, - tag:TETRA, - tag:Telecom . + skos:definition "Indicates if a system has been shutdown"@en . brick:TVOC_Level_Sensor a owl:Class, sh:NodeShape ; rdfs:label "TVOC Level Sensor" ; rdfs:subClassOf brick:TVOC_Sensor ; - skos:definition "A sensor measuring the level of all VOCs in air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Matter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Particulate ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:TVOC ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Level, - tag:Matter, - tag:Particulate, - tag:Point, - tag:Sensor, - tag:TVOC . - -brick:Team_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Team Room" ; - rdfs:subClassOf brick:Enclosed_Office ; - skos:definition "An office used by multiple team members for specific work tasks. Distinct from Conference Room"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Enclosed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Office ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Team ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Enclosed, - tag:Location, - tag:Office, - tag:Room, - tag:Space, - tag:Team . - -brick:Temperature_Adjust_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Temperature Adjust Sensor" ; - rdfs:subClassOf brick:Adjust_Sensor ; - skos:definition "Measures user-provided adjustment of temperature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Adjust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Adjust, - tag:Point, - tag:Sensor, - tag:Temperature ; - brick:hasQuantity brick:Differential_Temperature . - -brick:Temperature_Alarm_Sensitivity_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Temperature Alarm Sensitivity Parameter" ; - rdfs:subClassOf brick:Alarm_Sensitivity_Parameter ; - skos:definition "A parameter indicates the sensitivity to activate a temperature alarm."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensitivity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Parameter, - tag:Point, - tag:Sensitivity, - tag:Temperature . + skos:definition "A sensor measuring the level of all VOCs in air"@en . brick:Temperature_Tolerance_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Temperature Tolerance Parameter" ; rdfs:subClassOf brick:Temperature_Parameter, brick:Tolerance_Parameter ; - skos:definition "A parameter determining the difference between upper and lower limits of temperature."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Tolerance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Parameter, - tag:Point, - tag:Temperature, - tag:Tolerance . + skos:definition "A parameter determining the difference between upper and lower limits of temperature."@en . brick:Temporary_Occupancy_Status a owl:Class, sh:NodeShape ; rdfs:label "Temporary Occupancy Status" ; rdfs:subClassOf brick:Occupancy_Status ; - skos:definition "For systems that differentiate between scheduled occupied/unoccupied mode, this indicates if a space is temporarily occupied when it would otherwise be unoccupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Occupancy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temporary ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Occupancy, - tag:Point, - tag:Status, - tag:Temporary . - -brick:Thermal_Energy a brick:Quantity ; - rdfs:label "Thermal Energy" ; - qudt:applicableUnit unit:BTU_IT, - unit:BTU_MEAN, - unit:BTU_TH, - unit:CAL_15_DEG_C, - unit:CAL_IT, - unit:CAL_MEAN, - unit:CAL_TH, - unit:GigaJ, - unit:J, - unit:KiloCAL, - unit:KiloCAL_IT, - unit:KiloCAL_Mean, - unit:KiloCAL_TH, - unit:KiloJ, - unit:MegaJ, - unit:N-M, - unit:THM_EEC, - unit:THM_US ; - skos:broader brick:Energy ; - skos:definition "Thermal Energy} is the portion of the thermodynamic or internal energy of a system that is responsible for the temperature of the system. From a macroscopic thermodynamic description, the thermal energy of a system is given by its constant volume specific heat capacity C(T), a temperature coefficient also called thermal capacity, at any given absolute temperature (T): (U_{thermal = C(T) \\cdot T)."@en ; - brick:hasQUDTReference qudtqk:ThermalEnergy . - -brick:Thermal_Power a brick:Quantity ; - rdfs:label "ThermalPower" ; - qudt:applicableUnit unit:BTU_IT, - unit:KiloW, - unit:MegaW, - unit:MilliW, - unit:W ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Power, - brick:Power ; - skos:definition "`"@en . - -brick:Thermal_Power_Meter a owl:Class, - sh:NodeShape ; - rdfs:label "Thermal Power Meter" ; - rdfs:subClassOf brick:Meter ; - skos:definition "A standalone thermal power meter"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Thermal ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Meter, - tag:Power, - tag:Thermal . - -brick:Thermally_Activated_Building_System_Panel a owl:Class, - sh:NodeShape ; - rdfs:label "Thermally Activated Building System Panel" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Radiant_Panel ; - owl:equivalentClass brick:TABS_Panel ; - skos:definition "Radiant panel heating and cooling system where the energy heat source or sink is embedded in the building structure such as in slabs and walls."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Activated ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Thermally ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Activated, - tag:Building, - tag:Equipment, - tag:Panel, - tag:System, - tag:Thermally . - -brick:Thermostat a owl:Class, - sh:NodeShape ; - rdfs:label "Thermostat" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "An automatic control device used to maintain temperature at a fixed or adjustable setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Thermostat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Thermostat . - -brick:Thermostat_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Thermostat Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Status of a thermostat"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Thermostat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Status, - tag:Thermostat . - -brick:Thermostatic_Mixing_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Thermostatic Mixing Valve" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Water_Valve ; - skos:definition "A valve that blends hot water with cold water to ensure constant, safe shower and bath outlet temperatures, preventing scalding."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Thermal ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Mixed, - tag:Thermal, - tag:Valve, - tag:Water . - -brick:Ticketing_Booth a owl:Class, - sh:NodeShape ; - rdfs:label "Ticketing Booth" ; - rdfs:subClassOf brick:Space ; - skos:definition "A room or space used to sell or distribute tickets to events at a venue"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Booth ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Ticketing ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Booth, - tag:Location, - tag:Space, - tag:Ticketing . + skos:definition "For systems that differentiate between scheduled occupied/unoccupied mode, this indicates if a space is temporarily occupied when it would otherwise be unoccupied"@en . brick:Tint_Command a owl:Class, sh:NodeShape ; rdfs:label "Tint Command" ; rdfs:subClassOf brick:Command ; - skos:definition "The target level of window tint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Tint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Point, - tag:Tint . + skos:definition "The target level of window tint."@en . brick:Tint_Status a owl:Class, sh:NodeShape ; rdfs:label "Tint Status" ; rdfs:subClassOf brick:Status ; - skos:definition "The current level of window tint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Tint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Status, - tag:Tint . - -brick:Touchpanel a owl:Class, - sh:NodeShape ; - rdfs:label "Touchpanel" ; - rdfs:subClassOf brick:Interface ; - skos:definition "A switch used to operate all or part of a lighting installation that uses a touch-based mechanism (typically resistive or capacitive) rather than a mechanical actuator"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Interface ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Touchpanel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Interface, - tag:Touchpanel . + skos:definition "The current level of window tint."@en . brick:Trace_Heat_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Trace Heat Sensor" ; rdfs:subClassOf brick:Heat_Sensor ; - skos:definition "Measures the surface temperature of pipelines carrying temperature-sensitive products; typically used to avoid frosting/freezing"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Trace ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Heat, - tag:Point, - tag:Sensor, - tag:Trace . - -brick:Transfer_Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Transfer Fan" ; - rdfs:subClassOf brick:Fan ; - skos:definition "A fan that transfers air from a space to another space."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Transfer ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Fan, - tag:Transfer . - -brick:Transformer a owl:Class, - sh:NodeShape ; - rdfs:label "Transformer" ; - rdfs:subClassOf brick:Electrical_Equipment ; - skos:definition "A Transformer is usually fed by a high-voltage source and then steps down the voltage to a lower-voltage feed for low-voltage application (such as lights). Transformers also can step up voltage, but this generally does not apply to in building distribution."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Transformer ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Transformer . - -brick:Transformer_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Transformer Room" ; - rdfs:subClassOf brick:Electrical_Room ; - skos:definition "An electrical room where electricity enters and is transformed to different voltages and currents by the equipment contained in the room"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electrical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Service ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Transformer ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electrical, - tag:Location, - tag:Room, - tag:Service, - tag:Space, - tag:Transformer . - -brick:Tunnel a owl:Class, - sh:NodeShape ; - rdfs:label "Tunnel" ; - rdfs:subClassOf brick:Space ; - skos:definition "An enclosed space that connects buildings. Often underground"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Tunnel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Space, - tag:Tunnel . - -brick:Underfloor_Air_Plenum a owl:Class, - sh:NodeShape ; - rdfs:label "Underfloor Air Plenum" ; - rdfs:subClassOf brick:Supply_Air_Plenum ; - skos:definition "An open space between a structural concrete slab and the underside of a raised access floor system that connects to an air handling unit to receive conditioned and/or ventilating air before delivery to the room(s)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Plenum ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Underfloor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Equipment, - tag:Plenum, - tag:Underfloor . + skos:definition "Measures the surface temperature of pipelines carrying temperature-sensitive products; typically used to avoid frosting/freezing"@en . brick:Underfloor_Air_Plenum_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Underfloor Air Plenum Static Pressure Sensor" ; rdfs:subClassOf brick:Static_Pressure_Sensor ; - skos:definition "Measures the outward push of air against the plenum surfaces and used to measure the resistance when air moves through the plenum"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Plenum ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Underfloor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Plenum, - tag:Pressure, - tag:Sensor, - tag:Static, - tag:Underfloor . + skos:definition "Measures the outward push of air against the plenum surfaces and used to measure the resistance when air moves through the plenum"@en . brick:Underfloor_Air_Plenum_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Underfloor Air Plenum Static Pressure Setpoint" ; rdfs:subClassOf brick:Static_Pressure_Setpoint ; - skos:definition "Sets the underfloor air plenum static pressure"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Plenum ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Underfloor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Plenum, - tag:Pressure, - tag:Setpoint, - tag:Static, - tag:Underfloor . + skos:definition "Sets the underfloor air plenum static pressure"@en . brick:Underfloor_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Underfloor Air Temperature Sensor" ; rdfs:subClassOf brick:Air_Temperature_Sensor ; - skos:definition "Measures the temperature of underfloor air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Underfloor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Underfloor . + skos:definition "Measures the temperature of underfloor air"@en . brick:Unit_Failure_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Unit Failure Alarm" ; rdfs:subClassOf brick:Failure_Alarm ; - skos:definition "An alarm that indicates the failure of an equipment or device"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Failure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Failure, - tag:Point, - tag:Unit . + skos:definition "An alarm that indicates the failure of an equipment or device"@en . brick:Unoccupied_Air_Temperature_Cooling_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Air Temperature Cooling Setpoint" ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, brick:Unoccupied_Air_Temperature_Setpoint ; - skos:definition "Sets temperature of air when unoccupied for cooling"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Unoccupied . + skos:definition "Sets temperature of air when unoccupied for cooling"@en . brick:Unoccupied_Air_Temperature_Heating_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Air Temperature Heating Setpoint" ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, brick:Unoccupied_Air_Temperature_Setpoint ; - skos:definition "Sets temperature of air when unoccupied for heating"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Unoccupied . - -brick:Unoccupied_Cooling_Mode_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Unoccupied Cooling Mode Status" ; - rdfs:subClassOf brick:Cooling_Mode_Status, - brick:Unoccupied_Mode_Status ; - skos:definition "Indicates whether a system, device or control loop is in an unoccupied cooling mode"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Mode, - tag:Point, - tag:Status, - tag:Unoccupied . + skos:definition "Sets temperature of air when unoccupied for heating"@en . + +brick:Unoccupied_Cooling_Discharge_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Unoccupied Cooling Discharge Air Flow Setpoint" ; + rdfs:subClassOf brick:Cooling_Discharge_Air_Flow_Setpoint, + brick:Unoccupied_Discharge_Air_Flow_Setpoint ; + skos:definition "Sets discharge air flow for cooling when unoccupied"@en . brick:Unoccupied_Cooling_Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Cooling Supply Air Flow Setpoint" ; rdfs:subClassOf brick:Cooling_Supply_Air_Flow_Setpoint, - brick:Unoccupied_Supply_Air_Flow_Setpoint ; - owl:equivalentClass brick:Unoccupied_Cooling_Discharge_Air_Flow_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Unoccupied . + brick:Unoccupied_Supply_Air_Flow_Setpoint . brick:Unoccupied_Cooling_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Cooling Temperature Deadband Setpoint" ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, - brick:Temperature_Deadband_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Deadband, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Unoccupied . + brick:Temperature_Deadband_Setpoint . brick:Unoccupied_Cooling_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Cooling Temperature Setpoint" ; - rdfs:subClassOf brick:Cooling_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Unoccupied . - -brick:Unoccupied_Heating_Mode_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Unoccupied Heating Mode Status" ; - rdfs:subClassOf brick:Heating_Mode_Status, - brick:Unoccupied_Mode_Status ; - skos:definition "Indicates whether a system, device or control loop is in an unoccupied heating mode"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Heat, - tag:Mode, - tag:Point, - tag:Status, - tag:Unoccupied . + rdfs:subClassOf brick:Cooling_Temperature_Setpoint . + +brick:Unoccupied_Discharge_Air_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Unoccupied Discharge Air Temperature Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint, + brick:Unoccupied_Air_Temperature_Setpoint . + +brick:Unoccupied_Heating_Discharge_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Unoccupied Heating Discharge Air Flow Setpoint" ; + rdfs:subClassOf brick:Heating_Discharge_Air_Flow_Setpoint, + brick:Unoccupied_Discharge_Air_Flow_Setpoint . brick:Unoccupied_Heating_Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Heating Supply Air Flow Setpoint" ; rdfs:subClassOf brick:Heating_Supply_Air_Flow_Setpoint, - brick:Unoccupied_Supply_Air_Flow_Setpoint ; - owl:equivalentClass brick:Unoccupied_Heating_Discharge_Air_Flow_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Unoccupied . + brick:Unoccupied_Supply_Air_Flow_Setpoint . brick:Unoccupied_Heating_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Heating Temperature Deadband Setpoint" ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, - brick:Temperature_Deadband_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deadband, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Unoccupied . + brick:Temperature_Deadband_Setpoint . brick:Unoccupied_Heating_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Heating Temperature Setpoint" ; - rdfs:subClassOf brick:Heating_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Heat, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Unoccupied . + rdfs:subClassOf brick:Heating_Temperature_Setpoint . brick:Unoccupied_Humidity_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Humidity Setpoint" ; rdfs:subClassOf brick:Humidity_Setpoint ; - skos:definition "Target humidity level when the location is unoccupied."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Humidity, - tag:Point, - tag:Setpoint, - tag:Unoccupied . + skos:definition "Target humidity level when the location is unoccupied."@en . + +brick:Unoccupied_Mode_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Unoccupied Mode Status" ; + rdfs:subClassOf brick:Mode_Status . brick:Unoccupied_Return_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Return Air Temperature Setpoint" ; rdfs:subClassOf brick:Return_Air_Temperature_Setpoint, - brick:Unoccupied_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Point, - tag:Return, - tag:Setpoint, - tag:Temperature, - tag:Unoccupied . + brick:Unoccupied_Air_Temperature_Setpoint . brick:Unoccupied_Room_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Room Air Temperature Setpoint" ; rdfs:subClassOf brick:Room_Air_Temperature_Setpoint, - brick:Unoccupied_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Point, - tag:Room, - tag:Setpoint, - tag:Temperature, - tag:Unoccupied . + brick:Unoccupied_Air_Temperature_Setpoint . brick:Unoccupied_Supply_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Supply Air Temperature Setpoint" ; rdfs:subClassOf brick:Supply_Air_Temperature_Setpoint, - brick:Unoccupied_Air_Temperature_Setpoint ; - owl:equivalentClass brick:Unoccupied_Discharge_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature, - tag:Unoccupied . + brick:Unoccupied_Air_Temperature_Setpoint . brick:Unoccupied_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Zone Air Temperature Setpoint" ; rdfs:subClassOf brick:Unoccupied_Air_Temperature_Setpoint, - brick:Zone_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Unoccupied, - tag:Zone . + brick:Zone_Air_Temperature_Setpoint . brick:VFD_Enable_Command a owl:Class, sh:NodeShape ; rdfs:label "VFD Enable Command" ; rdfs:subClassOf brick:Enable_Command ; - skos:definition "Enables operation of a variable frequency drive"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:VFD ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Enable, - tag:Point, - tag:VFD . + skos:definition "Enables operation of a variable frequency drive"@en . brick:Valve_Position_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Valve Position Alarm" ; rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates that the valve position is not in a normal state."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Position ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Point, - tag:Position, - tag:Valve . - -brick:Valve_Position_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Valve Position Command" ; - rdfs:subClassOf brick:Position_Command, - brick:Valve_Command ; - skos:definition "Controls the position (the degree of openness) of a valve"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Position ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Point, - tag:Position, - tag:Valve ; - brick:hasQuantity brick:Position . + skos:definition "An alarm that indicates that the valve position is not in a normal state."@en . brick:Valve_Position_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Valve Position Sensor" ; rdfs:subClassOf brick:Position_Sensor ; - skos:definition "Measures the current position of a valve in terms of the percent of fully open"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Position ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Position, - tag:Sensor, - tag:Valve ; - brick:hasQuantity brick:Position . + skos:definition "Measures the current position of a valve in terms of the percent of fully open"@en . brick:Valve_Status a owl:Class, sh:NodeShape ; rdfs:label "Valve Status" ; rdfs:subClassOf brick:Status ; - skos:definition "The current status of the valve."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Status, - tag:Valve . - -brick:Variable_Air_Volume_Box_With_Reheat a owl:Class, - sh:NodeShape ; - rdfs:label "Variable Air Volume Box With Reheat" ; - rdfs:subClassOf brick:Variable_Air_Volume_Box ; - owl:equivalentClass brick:RVAV ; - skos:definition "A VAV box with a reheat coil mounted on the discharge end of the unit that can heat the air delivered to a zone"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Box ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reheat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Variable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Volume ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Box, - tag:Equipment, - tag:Reheat, - tag:Variable, - tag:Volume . - -brick:Variable_Frequency_Drive a owl:Class, - sh:NodeShape ; - rdfs:label "Variable Frequency Drive" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Motor ; - owl:equivalentClass brick:VFD ; - skos:definition "Electronic device that varies its output frequency to vary the rotating speed of a motor, given a fixed input frequency. Used with fans or pumps to vary the flow in the system as a function of a maintained pressure."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Drive ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Frequency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Variable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Drive, - tag:Equipment, - tag:Frequency, - tag:Variable . + skos:definition "The current status of the valve."@en . brick:Velocity_Pressure_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Velocity Pressure Setpoint" ; rdfs:subClassOf brick:Pressure_Setpoint ; - skos:definition "Sets static veloicty pressure"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Velocity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Velocity . + skos:definition "Sets static veloicty pressure"@en . brick:Vent_Operating_Mode_Status a owl:Class, sh:NodeShape ; rdfs:label "Vent Operating Mode Status" ; rdfs:subClassOf brick:Operating_Mode_Status ; - skos:definition "Indicates the current operating mode of a vent"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Operating ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Vent ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Mode, - tag:Operating, - tag:Point, - tag:Status, - tag:Vent . + skos:definition "Indicates the current operating mode of a vent"@en . brick:Ventilation_Air_Flow_Ratio_Limit a owl:Class, sh:NodeShape ; rdfs:label "Ventilation Air Flow Ratio Limit" ; rdfs:subClassOf brick:Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Ventilation_Air_Flow_Ratio_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Ratio ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Ventilation ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Limit, - tag:Point, - tag:Ratio, - tag:Ventilation . - -brick:Ventilation_Air_System a owl:Class, - sh:NodeShape ; - rdfs:label "Ventilation Air System" ; - rdfs:subClassOf brick:Air_System ; - skos:definition "The equipment, devices, and conduits that handle the introduction and distribution of ventilation air in the building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Ventilation ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:System, - tag:Ventilation . - -brick:Video_Intercom a owl:Class, - sh:NodeShape ; - rdfs:label "Video Intercom" ; - rdfs:subClassOf brick:Intercom_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Intercom ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Security ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Video ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Intercom, - tag:Security, - tag:Video . - -brick:Visitor_Lobby a owl:Class, - sh:NodeShape ; - rdfs:label "Visitor Lobby" ; - rdfs:subClassOf brick:Lobby ; - skos:definition "A lobby for visitors to the building. Sometimes used to distinguish from an employee entrance looby"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Common ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lobby ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Visitor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Common, - tag:Lobby, - tag:Location, - tag:Space, - tag:Visitor . - -brick:Voltage_Angle a brick:Quantity ; - rdfs:label "VoltageAngle" ; - qudt:applicableUnit unit:ARCMIN, - unit:ARCSEC, - unit:DEG, - unit:GON, - unit:GRAD, - unit:MIL, - unit:MicroRAD, - unit:MilliARCSEC, - unit:MilliRAD, - unit:RAD, - unit:REV ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader brick:Phasor_Angle ; - skos:definition "Angle of voltage phasor", - "Angle of voltage phasor"@en ; - skos:related brick:Voltage . + skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Ventilation_Air_Flow_Ratio_Setpoint."@en . brick:Voltage_Imbalance_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Voltage Imbalance Sensor" ; rdfs:subClassOf brick:Imbalance_Sensor ; - skos:definition "A sensor which measures the voltage difference (imbalance) between phases of an electrical system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Imbalance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Voltage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Imbalance, - tag:Point, - tag:Sensor, - tag:Voltage ; - brick:hasQuantity brick:Voltage_Imbalance . - -brick:Voltage_Ratio_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Voltage Ratio Setpoint" ; - rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets the ratio of voltage in a transformer"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electric ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Ratio ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Voltage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electric, - tag:Point, - tag:Ratio, - tag:Setpoint, - tag:Voltage . - -brick:Wardrobe a owl:Class, - sh:NodeShape ; - rdfs:label "Wardrobe" ; - rdfs:subClassOf brick:Room ; - skos:definition "Storage for clothing, costumes, or uniforms"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Wardrobe ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room, - tag:Space, - tag:Wardrobe . + skos:definition "A sensor which measures the voltage difference (imbalance) between phases of an electrical system"@en . brick:Warm_Cool_Adjust_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Warm Cool Adjust Sensor" ; rdfs:subClassOf brick:Adjust_Sensor ; - skos:definition "User provided adjustment of zone temperature, typically in the range of +/- 5 degrees"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Adjust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Warm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Adjust, - tag:Cool, - tag:Point, - tag:Sensor, - tag:Warm . + skos:definition "User provided adjustment of zone temperature, typically in the range of +/- 5 degrees"@en . brick:Warmest_Zone_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Warmest Zone Air Temperature Sensor" ; rdfs:subClassOf brick:Zone_Air_Temperature_Sensor ; - skos:definition "The zone temperature that is warmest; drives the supply temperature of cold air. A computed value rather than a physical sensor. Also referred to as a 'Highest Zone Air Temperature Sensor'"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Warmest ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Warmest, - tag:Zone . - -brick:Waste_Storage a owl:Class, - sh:NodeShape ; - rdfs:label "Waste Storage" ; - rdfs:subClassOf brick:Storage_Room ; - skos:definition "A room used for storing waste such as trash or recycling"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Storage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Waste ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room, - tag:Space, - tag:Storage, - tag:Waste . + skos:definition "The zone temperature that is warmest; drives the supply temperature of cold air. A computed value rather than a physical sensor. Also referred to as a 'Highest Zone Air Temperature Sensor'"@en . brick:Water_Differential_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Water Differential Temperature Setpoint" ; rdfs:subClassOf brick:Differential_Temperature_Setpoint ; - skos:definition "Sets the target differential temperature between the start and end of a heat transfer cycle in a water circuit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Differential_Temperature ; - brick:hasSubstance brick:Water . - -brick:Water_Distribution a owl:Class, - sh:NodeShape ; - rdfs:label "Water Distribution" ; - rdfs:subClassOf brick:Equipment ; - skos:definition "Utilize a water distribution source to represent how water is distributed across multiple destinations (pipes)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Distribution ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Distribution, - tag:Equipment, - tag:Water . + skos:definition "Sets the target differential temperature between the start and end of a heat transfer cycle in a water circuit"@en . brick:Water_Loss_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Water Loss Alarm" ; rdfs:subClassOf brick:Water_Alarm ; - skos:definition "An alarm that indicates a loss of water e.g. during transport"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Loss ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Loss, - tag:Point, - tag:Water . - -brick:Water_Tank a owl:Class, - sh:NodeShape ; - rdfs:label "Water Tank" ; - rdfs:subClassOf brick:Space ; - skos:definition "A space used to hold water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Tank ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Space, - tag:Tank, - tag:Water . - -brick:Weather_Condition a brick:Quantity ; - rdfs:label "Weather Condition" . - -brick:Weather_Station a owl:Class, - sh:NodeShape ; - rdfs:label "Weather Station" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Equipment ; - skos:definition "A dedicated weather measurement station"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Station ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Weather ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Station, - tag:Weather . + skos:definition "An alarm that indicates a loss of water e.g. during transport"@en . brick:Wind_Direction_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Wind Direction Sensor" ; rdfs:subClassOf brick:Direction_Sensor ; - skos:definition "Measures the direction of wind in degrees relative to North"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Direction ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Wind ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Direction, - tag:Point, - tag:Sensor, - tag:Wind ; - brick:hasQuantity brick:Wind_Direction . + skos:definition "Measures the direction of wind in degrees relative to North"@en . brick:Wind_Speed_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Wind Speed Sensor" ; rdfs:subClassOf brick:Speed_Sensor ; - skos:definition "Measured speed of wind, caused by air moving from high to low pressure"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Wind ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Sensor, - tag:Speed, - tag:Wind ; - brick:hasQuantity brick:Linear_Speed . - -brick:Workshop a owl:Class, - sh:NodeShape ; - rdfs:label "Workshop" ; - rdfs:subClassOf brick:Room ; - skos:definition "A space used to house equipment that can be used to repair or fabricate things"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Workshop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room, - tag:Space, - tag:Workshop . - -brick:Zone_Air_Conditioning_Mode_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Zone Air Conditioning Mode Status" ; - rdfs:subClassOf brick:Mode_Status ; - skos:definition "Indicates the mode of AC for a zone"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Conditioning ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Conditioning, - tag:Mode, - tag:Point, - tag:Status, - tag:Zone . + skos:definition "Measured speed of wind, caused by air moving from high to low pressure"@en . brick:Zone_Air_Cooling_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Zone Air Cooling Temperature Setpoint" ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, brick:Zone_Air_Temperature_Setpoint ; - skos:definition "The upper (cooling) setpoint for zone air temperature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Zone . + skos:definition "The upper (cooling) setpoint for zone air temperature"@en . brick:Zone_Air_Dewpoint_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Zone Air Dewpoint Sensor" ; rdfs:subClassOf brick:Dewpoint_Sensor ; - skos:definition "Measures dewpoint of zone air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Dewpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Dewpoint, - tag:Point, - tag:Sensor, - tag:Zone ; - brick:hasQuantity brick:Dewpoint ; - brick:hasSubstance brick:Zone_Air . + skos:definition "Measures dewpoint of zone air"@en . brick:Zone_Air_Heating_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Zone Air Heating Temperature Setpoint" ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, brick:Zone_Air_Temperature_Setpoint ; - skos:definition "The lower (heating) setpoint for zone air temperature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heating ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Heating, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Zone . + skos:definition "The lower (heating) setpoint for zone air temperature"@en . brick:Zone_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Zone Air Humidity Sensor" ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; - skos:definition "Measures the relative humidity of zone air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Relative ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Humidity, - tag:Point, - tag:Relative, - tag:Sensor, - tag:Zone ; - brick:hasQuantity brick:Relative_Humidity ; - brick:hasSubstance brick:Zone_Air . + skos:definition "Measures the relative humidity of zone air"@en . brick:Zone_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Zone Air Humidity Setpoint" ; rdfs:subClassOf brick:Humidity_Setpoint ; - skos:definition "Humidity setpoint for zone air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Humidity, - tag:Point, - tag:Setpoint, - tag:Zone ; - brick:hasQuantity brick:Humidity ; - brick:hasSubstance brick:Zone_Air . + skos:definition "Humidity setpoint for zone air"@en . brick:Zone_Occupied_Load_Shed_Command a owl:Class, sh:NodeShape ; rdfs:label "Zone Occupied Load Shed Command" ; - rdfs:subClassOf brick:Occupied_Load_Shed_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Load, - tag:Occupied, - tag:Point, - tag:Shed, - tag:Zone . + rdfs:subClassOf brick:Occupied_Load_Shed_Command . brick:Zone_Standby_Load_Shed_Command a owl:Class, sh:NodeShape ; rdfs:label "Zone Standby Load Shed Command" ; - rdfs:subClassOf brick:Standby_Load_Shed_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Standby ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Load, - tag:Point, - tag:Shed, - tag:Standby, - tag:Zone . + rdfs:subClassOf brick:Standby_Load_Shed_Command . brick:Zone_Unoccupied_Load_Shed_Command a owl:Class, sh:NodeShape ; rdfs:label "Zone Unoccupied Load Shed Command" ; - rdfs:subClassOf brick:Unoccupied_Load_Shed_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Load, - tag:Point, - tag:Shed, - tag:Unoccupied, - tag:Zone . - -brick:aggregate a brick:EntityProperty ; - rdfs:label "Aggregate" ; - rdfs:domain brick:Point ; - rdfs:range bsh:AggregationShape ; - skos:definition "Description of how the dta for this point is aggregated" . - -brick:azimuth a brick:EntityProperty ; - rdfs:label "Azimuth" ; - rdfs:range bsh:AzimuthShape ; - skos:definition "(Horizontal) angle between a projected vector and a reference vector (typically a compass bearing). The projected vector usually indicates the direction of a face or plane." . - -brick:buildingPrimaryFunction a brick:EntityProperty ; - rdfs:label "Building primary function" ; - rdfs:domain brick:Building ; - rdfs:range bsh:BuildingPrimaryFunctionShape ; - rdfs:seeAlso "https://project-haystack.org/tag/primaryFunction" ; - skos:definition "Enumerated string applied to a site record to indicate the building's primary function. The list of primary functions is derived from the US Energy Star program (adopted from Project Haystack)" . - -brick:buildingThermalTransmittance a brick:EntityProperty ; - rdfs:label "Building thermal transmittance" ; - rdfs:domain brick:Building ; - rdfs:range bsh:ThermalTransmittanceShape ; - rdfs:seeAlso "https://www.iso.org/obp/ui/#iso:std:iso:13789:ed-3:v1:en" ; - rdfs:subPropertyOf brick:thermalTransmittance ; - skos:definition "The area-weighted average heat transfer coefficient (commonly referred to as a U-value) for a building envelope" . - -brick:coolingCapacity a brick:EntityProperty ; - rdfs:label "Cooling capacity" ; - rdfs:domain brick:Chiller ; - rdfs:range bsh:CoolingCapacityShape ; - rdfs:seeAlso "https://project-haystack.org/tag/coolingCapacity" ; - skos:definition "Measurement of a chiller ability to remove heat (adopted from Project Haystack)" . - -brick:coordinates a brick:EntityProperty ; - rdfs:label "Coordinates" ; - rdfs:range bsh:CoordinateShape ; - skos:definition "The location of an entity in latitude/longitude" . - -brick:currentFlowType a brick:EntityProperty ; - rdfs:label "Current flow type" ; - rdfs:range bsh:CurrentFlowTypeShape ; - skos:definition "The current flow type of the entity" . - -brick:electricalPhaseCount a brick:EntityProperty ; - rdfs:label "Electrical phase count" ; - rdfs:range bsh:PhaseCountShape ; - skos:definition "Entity has these phases" . - -brick:electricalPhases a brick:EntityProperty ; - rdfs:label "Electrical phases" ; - rdfs:range bsh:PhasesShape ; - skos:definition "Entity has these electrical AC phases" . - -brick:feedsAir rdfs:subPropertyOf brick:feeds ; - skos:definition "Passes air"@en . - -brick:grossArea a brick:EntityProperty ; - rdfs:label "Gross area" ; - rdfs:range bsh:AreaShape ; - rdfs:subPropertyOf brick:area ; - skos:definition "Entity has gross 2-dimensional area" . - -brick:hasAddress rdfs:label "Has address" ; - rdfs:domain brick:Building ; - rdfs:range vcard:Address ; - rdfs:subPropertyOf vcard:hasAddress ; - skos:definition "To specify the address of a building."@en . - -brick:hasInputSubstance a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Has input substance" ; - rdfs:range brick:Substance ; - skos:definition "The subject receives the given substance as an input to its internal process"@en . - -brick:hasOutputSubstance a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Has output substance" ; - rdfs:range brick:Substance ; - skos:definition "The subject produces or exports the given substance from its internal process"@en . - -brick:hasParameter a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Point has a parameter" ; - rdfs:domain brick:Point ; - rdfs:range brick:Parameter . - -brick:hasQUDTReference a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Has QUDT reference" ; - skos:definition "Points to the relevant QUDT definition"@en . - -brick:hasQuantity a owl:AsymmetricProperty, - owl:IrreflexiveProperty ; - rdfs:label "Has QUDT reference" ; - rdfs:subPropertyOf qudt:hasQuantityKind . - -brick:hasSubstance a owl:AsymmetricProperty, - owl:IrreflexiveProperty ; - rdfs:label "Has QUDT reference" . - -brick:isVirtualMeter a brick:EntityProperty ; - rdfs:label "is virtual meter" ; - rdfs:domain brick:Meter ; - rdfs:range bsh:VirtualMeterShape ; - skos:Definition "True if the associated meter is 'virtual', i.e. a logical meter which includes or aggregates information from a variety of sources such as other submeters or equipment." . - -brick:measuredModuleConversionEfficiency a brick:EntityProperty ; - rdfs:label "Measured module conversion efficiency" ; - rdfs:domain brick:PV_Panel ; - rdfs:range bsh:EfficiencyShape ; - rdfs:subPropertyOf brick:conversionEfficiency ; - skos:definition "The measured percentage of sunlight that is converted into usable power" . - -brick:measuredPowerInput a brick:EntityProperty ; - rdfs:range bsh:PowerShape ; - skos:definition "The nominal measured power input of the entity" . - -brick:measuredPowerOutput a brick:EntityProperty ; - rdfs:range bsh:PowerShape ; - skos:definition "The nominal measured power output of the entity" . - -brick:netArea a brick:EntityProperty ; - rdfs:label "Net area" ; - rdfs:range bsh:AreaShape ; - rdfs:subPropertyOf brick:area ; - skos:definition "Entity has net 2-dimensional area" . - -brick:operationalStage a brick:EntityProperty ; - rdfs:label "Operational stage" ; - rdfs:range bsh:StageShape ; - skos:definition "The associated operational stage" . - -brick:operationalStageCount a brick:EntityProperty ; - rdfs:label "Operational stage count" ; - rdfs:domain brick:Equipment ; - rdfs:range bsh:StageShape ; - skos:definition "The number of operational stages supported by this eqiupment" . - -brick:panelArea a brick:EntityProperty ; - rdfs:label "Panel area" ; - rdfs:range bsh:AreaShape ; - rdfs:subPropertyOf brick:area ; - skos:definition "Surface area of a panel, such as a PV panel" . - -brick:powerComplexity a brick:EntityProperty ; - rdfs:label "Power complexity" ; - rdfs:range bsh:PowerComplexityShape ; - skos:definition "Entity has this power complexity" . - -brick:powerFlow a brick:EntityProperty ; - rdfs:label "Power flow" ; - rdfs:range bsh:PowerFlowShape ; - skos:definition "Entity has this power flow relative to the building'" . - -brick:ratedMaximumCurrentInput a brick:EntityProperty ; - rdfs:range bsh:CurrentShape ; - rdfs:subPropertyOf brick:ratedCurrentInput ; - skos:definition "The maximum current that can be input to the entity" . - -brick:ratedMaximumCurrentOutput a brick:EntityProperty ; - rdfs:range bsh:CurrentShape ; - rdfs:subPropertyOf brick:ratedCurrentOutput ; - skos:definition "The maximum current that can be output by the entity" . - -brick:ratedMaximumVoltageInput a brick:EntityProperty ; - rdfs:range bsh:VoltageShape ; - rdfs:subPropertyOf brick:ratedVoltageInput ; - skos:definition "The maximum voltage that can be input to the entity" . - -brick:ratedMaximumVoltageOutput a brick:EntityProperty ; - rdfs:range bsh:VoltageShape ; - rdfs:subPropertyOf brick:ratedVoltageOutput ; - skos:definition "The maximum voltage that can be output by the entity" . - -brick:ratedMinimumCurrentInput a brick:EntityProperty ; - rdfs:range bsh:CurrentShape ; - rdfs:subPropertyOf brick:ratedCurrentInput ; - skos:definition "The minimum current that can be input to the entity" . - -brick:ratedMinimumCurrentOutput a brick:EntityProperty ; - rdfs:range bsh:CurrentShape ; - rdfs:subPropertyOf brick:ratedCurrentOutput ; - skos:definition "The minimum current that can be output by the entity" . - -brick:ratedMinimumVoltageInput a brick:EntityProperty ; - rdfs:range bsh:VoltageShape ; - rdfs:subPropertyOf brick:ratedVoltageInput ; - skos:definition "The minimum voltage that can be input to the entity" . - -brick:ratedMinimumVoltageOutput a brick:EntityProperty ; - rdfs:range bsh:VoltageShape ; - rdfs:subPropertyOf brick:ratedVoltageOutput ; - skos:definition "The minimum voltage that can be output by the entity" . - -brick:ratedModuleConversionEfficiency a brick:EntityProperty ; - rdfs:label "Rated module conversion efficiency" ; - rdfs:domain brick:PV_Panel ; - rdfs:range bsh:EfficiencyShape ; - rdfs:subPropertyOf brick:conversionEfficiency ; - skos:definition "The *rated* percentage of sunlight that is converted into usable power, as measured using Standard Test Conditions (STC): 1000 W/sqm irradiance, 25 degC panel temperature, no wind" . - -brick:ratedPowerInput a brick:EntityProperty ; - rdfs:range bsh:PowerShape ; - skos:definition "The nominal rated power input of the entity" . - -brick:ratedPowerOutput a brick:EntityProperty ; - rdfs:range bsh:PowerShape ; - skos:definition "The nominal rated power output of the entity" . - -brick:temperatureCoefficientofPmax a brick:EntityProperty ; - rdfs:label "Temperature coefficient" ; - rdfs:range bsh:TemperatureCoefficientPerDegreeCelsiusShape ; - skos:definition "The % change in power output for every degree celsius that the entity is hotter than 25 degrees celsius" . - -brick:tilt a brick:EntityProperty ; - rdfs:label "Tilt" ; - rdfs:range bsh:TiltShape ; - skos:definition "The direction an entity is facing in degrees above the horizon" . - -brick:volume a brick:EntityProperty ; - rdfs:label "Volume" ; - rdfs:range bsh:VolumeShape ; - skos:definition "Entity has 3-dimensional volume" . - -brick:yearBuilt a brick:EntityProperty ; - rdfs:label "Year built" ; - rdfs:domain brick:Building ; - rdfs:range bsh:YearBuiltShape ; - rdfs:seeAlso "https://project-haystack.org/tag/yearBuilt" ; - skos:definition "Four digit year that a building was first built. (adopted from Project Haystack)" . - -ref:BACnetReferenceShape a sh:NodeShape ; - skos:definition "Infers a BACnetReference instance from the object of an hasExternalReference." ; - sh:rule [ a sh:TripleRule ; - sh:condition ref:BACnetReference ; - sh:object ref:BACnetReference ; - sh:predicate rdf:type ; - sh:subject sh:this ] ; - sh:targetObjectsOf ref:hasExternalReference . - -ref:IFCReferenceShape a sh:NodeShape ; - skos:definition "Infers a IFCReference instance from the object of an hasExternalReference." ; - sh:rule [ a sh:TripleRule ; - sh:condition ref:IFCReference ; - sh:object ref:IFCReference ; - sh:predicate rdf:type ; - sh:subject sh:this ] ; - sh:targetObjectsOf ref:hasExternalReference . - -ref:TimeseriesReferenceShape a sh:NodeShape ; - skos:definition "Infers a TimeseriesReference instance from the object of an hasExternalReference." ; - sh:rule [ a sh:TripleRule ; - sh:condition ref:TimeseriesReference ; - sh:object ref:TimeseriesReference ; - sh:predicate rdf:type ; - sh:subject sh:this ] ; - sh:targetObjectsOf ref:hasExternalReference . - -ref:bacnet-read-property a owl:DatatypeProperty ; - rdfs:label "bacnet-read-property" ; - rdfs:comment "The property of the BACnet object to read to get the current value of this entity." . - -ref:hasTimeseriesReference a owl:ObjectProperty ; - rdfs:label "hasTimeseriesReference" ; - rdfs:subPropertyOf ref:hasExternalReference ; - skos:definition "Metadata for accessing related timeseries data: Relates a Brick point to the TimeseriesReference that indicates where and how the data for this point is stored"@en ; - sh:class ref:TimeseriesReference . - -bsh:BuildingMeterRule a sh:NodeShape ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ - CONSTRUCT { - $this rdf:type ?newtype . - } - WHERE { - $this brick:meters ?bldg . - ?bldg rdf:type/rdfs:subClassOf* brick:Building . - $this rdf:type ?type . - BIND(IRI(CONCAT("https://brickschema.org/schema/Brick#Building_", strafter(str(?type), "https://brickschema.org/schema/Brick#"))) as ?newtype) . - FILTER (strEnds(str(?type), "_Meter")) - } - """ ] ; - sh:targetClass brick:Meter . - -bsh:DeprecationRule a sh:NodeShape ; - sh:property [ sh:class sh:NodeShape ; - sh:maxCount 1 ; - sh:path brick:deprecationMitigationRule ], - [ sh:maxCount 0 ; - sh:message "This concept is deprecated" ; - sh:path brick:deprecation ; - sh:severity sh:Warning ], - [ sh:datatype xsd:string ; - sh:maxCount 1 ; - sh:path brick:deprecatedInVersion ], - [ sh:datatype xsd:string ; - sh:maxCount 1 ; - sh:path brick:deprecationMitigationMessage ] ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ - CONSTRUCT { $this owl:deprecated true } - WHERE { $this brick:deprecation ?dep } - """ ; - sh:prefixes owl:, - brick: ] ; - sh:targetSubjectsOf brick:deprecation . - -bsh:DeprecationRuleForInstances a sh:NodeShape ; - sh:severity sh:Warning ; - sh:sparql [ a sh:SPARQLConstraint ; - sh:message "Entity has type which is deprecated" ; - sh:prefixes rdf:, - brick: ; - sh:select "SELECT $this WHERE { $this rdf:type/owl:deprecated true }" ] ; - sh:targetClass brick:Entity . - -bsh:InferInverseProperties a sh:NodeShape ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ -CONSTRUCT { -?o ?invP $this . -$this ?p ?o . -} -WHERE { - { $this ?p ?o } UNION { ?o ?invP $this } . - ?p owl:inverseOf ?invP . -} - """ ; - sh:prefixes owl: ] ; - sh:targetClass brick:Entity . - -bsh:InferSymmetricProperties a sh:NodeShape ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ -CONSTRUCT { -?o ?prop $this . -$this ?prop ?o . -} -WHERE { - { $this ?prop ?o } UNION { ?o ?prop $this } . - ?prop a owl:SymmetricProperty . -} - """ ; - sh:prefixes rdf:, - owl: ] ; - sh:targetClass brick:Entity . - -bsh:MeterRelationshipRule a sh:NodeShape ; - sh:property [ sh:message "Relationship between meters is hasSubMeter/isSubMeterOf, not meters/isMeteredBy" ; - sh:path brick:meters ; - sh:qualifiedMaxCount 0 ; - sh:qualifiedValueShape [ sh:class brick:Meter ] ], - [ sh:message "Relationship between meters is hasSubMeter/isSubMeterOf, not meters/isMeteredBy" ; - sh:path brick:isMeteredBy ; - sh:qualifiedMaxCount 0 ; - sh:qualifiedValueShape [ sh:class brick:Meter ] ] ; - sh:targetClass brick:Meter . - -bsh:OWLEquivalentClassRule1 a sh:NodeShape ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ -CONSTRUCT { - ?s a ?t2 . -} WHERE { - ?s a $this . - { ?t2 owl:equivalentClass $this } - UNION - { $this owl:equivalentClass ?t2 } -}""" ; - sh:prefixes owl: ] ; - sh:targetSubjectsOf owl:equivalentClass . - -bsh:OWLEquivalentClassRule2 a sh:NodeShape ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ -CONSTRUCT { - ?s a ?t2 . -} WHERE { - ?s a $this . - { ?t2 owl:equivalentClass $this } - UNION - { $this owl:equivalentClass ?t2 } -}""" ; - sh:prefixes owl: ] ; - sh:targetObjectsOf owl:equivalentClass . - -bsh:OneLastKnownValuePerEntity a sh:NodeShape ; - sh:property [ sh:maxCount 1 ; - sh:message "Only one last known value per entity is allowed" ; - sh:path brick:lastKnownValue ] ; - sh:targetSubjectsOf brick:lastKnownValue . - -bsh:RDFSRangeRule a sh:NodeShape ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ -CONSTRUCT { - ?val a ?shape . -} WHERE { - $this rdfs:range ?shape . - ?shape a sh:NodeShape . - ?ent $this ?val . -}""" ; - sh:prefixes rdf:, - rdfs:, - sh: ] ; - sh:targetSubjectsOf rdfs:range . - -bsh:RDFSSubPropertyOfRule a sh:NodeShape ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ -CONSTRUCT { - ?s ?super ?o . -} WHERE { - $this rdfs:subPropertyOf ?super . - ?s $this ?o . -}""" ; - sh:prefixes rdfs: ] ; - sh:targetSubjectsOf rdfs:subPropertyOf . - -bsh:TagInferenceRule a sh:NodeShape ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ -CONSTRUCT { -$this brick:hasTag ?tag . -} WHERE { - $this rdf:type/rdfs:subClassOf* ?class . - ?class brick:hasAssociatedTag ?tag . -}""" ; - sh:prefixes rdf:, - brick: ] ; - sh:targetClass brick:Entity . - -bsh:TimeseriesReferenceOnPointsConstraint a sh:NodeShape ; - sh:sparql [ a sh:SPARQLConstraint ; - sh:message "Only Brick Points can have external timeseries references" ; - sh:prefixes rdf:, - rdfs:, - ref: ; - sh:select """ - SELECT $this - WHERE { - $this ref:hasExternalReference ?ref . - ?ref rdf:type ref:TimeseriesReference . - FILTER NOT EXISTS { $this rdf:type/rdfs:subClassOf* brick:Point } - } - """ ] ; - sh:targetSubjectsOf ref:hasExternalReference . - -bsh:VirtualMeterRule a sh:NodeShape ; - sh:sparql [ a sh:SPARQLConstraint ; - sh:message "Only meters can have the isVirtualMeter property be true" ; - sh:prefixes rdf:, - rdfs:, - brick: ; - sh:select """ - SELECT $this WHERE { - $this brick:isVirtualMeter/brick:value true . - FILTER NOT EXISTS { $this rdf:type/rdfs:subClassOf* brick:Meter } . - } - """ ] ; - sh:targetClass brick:Entity . - -bsh:domain_shape_isMeteredBy a sh:NodeShape ; - sh:or ( [ sh:class brick:Equipment ] [ sh:class brick:Location ] [ sh:class brick:Collection ] ) ; - sh:targetSubjectsOf brick:isMeteredBy . - -bsh:hasHotColdDeck a sh:NodeShape ; - sh:property [ sh:message "DDAHU must have a brick:Hot_Deck" ; - sh:path brick:hasPart ; - sh:qualifiedMaxCount 1 ; - sh:qualifiedMinCount 1 ; - sh:qualifiedValueShape [ sh:class brick:Hot_Deck ] ; - sh:qualifiedValueShapesDisjoint true ], - [ sh:message "DDAHU must have a brick:Cold_Deck" ; - sh:path brick:hasPart ; - sh:qualifiedMaxCount 1 ; - sh:qualifiedMinCount 1 ; - sh:qualifiedValueShape [ sh:class brick:Cold_Deck ] ; - sh:qualifiedValueShapesDisjoint true ] ; - sh:targetClass brick:DDAHU . - -bsh:hasLocationShape a sh:Nodeshape ; - sh:message "Points are a virtual concept and always belonging to a physical device, represented by Equipment. Thus, it cannot have a Location alone." ; - sh:not [ sh:class brick:Point ] ; - sh:targetSubjectsOf brick:hasLocation . - -bsh:range_shape_meters a sh:NodeShape ; - sh:property [ sh:minCount 1 ; - sh:or ( [ sh:class brick:Equipment ] [ sh:class brick:Location ] [ sh:class brick:Collection ] ) ; - sh:path brick:meters ] ; - sh:targetSubjectsOf brick:meters . - -bacnet:description a bacnet:StandardProperty, - owl:DatatypeProperty ; - bacnet:propertyEnum bacnet:PropertyIdentifier-description ; - bacnet:propertyName "description" ; - bacnet:propertyRef bacnet:Description ; - skos:definition "The content of the description field of the BACnet object." . - -bacnet:object-identifier a bacnet:StandardProperty, - rdf:Property, - owl:DatatypeProperty ; - rdfs:label "object-identifier" ; - bacnet:propertyEnum bacnet:PropertyIdentifier-object-identifier ; - bacnet:propertyName "object-identifier" ; - bacnet:propertyOf bacnet:Object ; - bacnet:propertyRef bacnet:Object_Identifier ; - rdfs:subPropertyOf bacnet:ReadableProperty ; - skos:definition "The BACnet object identifier" . - -bacnet:object-name a bacnet:StandardProperty, - owl:DatatypeProperty ; - bacnet:propertyEnum bacnet:PropertyIdentifier-object-name ; - bacnet:propertyName "object-name" ; - bacnet:propertyOf bacnet:Object ; - bacnet:propertyRef bacnet:Object_Name ; - rdfs:subPropertyOf bacnet:ReadableProperty ; - skos:definition "The content of the name field of the BACnet object." . - -bacnet:object-type a bacnet:StandardProperty, - rdf:Property, - owl:DatatypeProperty ; - rdfs:label "object-type" ; - bacnet:propertyEnum bacnet:PropertyIdentifier-object-type ; - bacnet:propertyName "object-type" ; - bacnet:propertyOf bacnet:Object ; - bacnet:propertyRef bacnet:Object_Type ; - rdfs:subPropertyOf bacnet:ReadableProperty ; - skos:definition "The type of the BACnet object" . - -bacnet:objectOf a owl:ObjectProperty ; - rdfs:label "objectOf" ; - rdfs:comment "The 'parent' BACnet device that hosts this BACnet object." ; - rdfs:range bacnet:BACnetDevice . - -unit:A a unit:Unit ; - rdfs:label "Ampere"@en ; - qudt:symbol "A", - "A"^^xsd:string . - -unit:AMU a unit:Unit ; - rdfs:label "Atomic mass unit"@en ; - qudt:symbol "Da"^^xsd:string, - "u"^^xsd:string, - "μ", - "μ"^^xsd:string . - -unit:A_Ab a unit:Unit ; - rdfs:label "Abampere"@en ; - qudt:symbol "Bi"^^xsd:string, - "abA", - "abA"^^xsd:string . - -unit:A_Stat a unit:Unit ; - rdfs:label "Statampere"@en ; - qudt:symbol "statA", - "statA"^^xsd:string . - -unit:AttoJ a unit:Unit ; - rdfs:label "Attojoule"@en . - -unit:BBL_UK_PET-PER-DAY a unit:Unit ; - rdfs:label "Barrel (UK Petroleum) Per Day"@en . - -unit:BBL_UK_PET-PER-HR a unit:Unit ; - rdfs:label "Barrel (UK Petroleum) Per Hour"@en . - -unit:BBL_UK_PET-PER-MIN a unit:Unit ; - rdfs:label "Barrel (UK Petroleum) Per Minute"@en . - -unit:BBL_UK_PET-PER-SEC a unit:Unit ; - rdfs:label "Barrel (UK Petroleum) Per Second"@en . - -unit:BBL_US-PER-DAY a unit:Unit ; - rdfs:label "Barrel (US) Per Day"@en . - -unit:BBL_US-PER-MIN a unit:Unit ; - rdfs:label "Barrel (US) Per Minute"@en . + rdfs:subClassOf brick:Unoccupied_Load_Shed_Command . -unit:BBL_US_PET-PER-HR a unit:Unit ; - rdfs:label "Barrel (US Petroleum) Per Hour"@en . - -unit:BBL_US_PET-PER-SEC a unit:Unit ; - rdfs:label "Barrel (US Petroleum) Per Second"@en . - -unit:BFT a unit:Unit ; - rdfs:label "Beaufort"@en . - -unit:BIOT a unit:Unit ; - rdfs:label "Biot"@en ; - qudt:symbol "Bi", - "Bi"^^xsd:string, - "abA"^^xsd:string . - -unit:BTU_MEAN a unit:Unit ; - rdfs:label "British Thermal Unit (mean)"@en . +brick:Adjust_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Adjust Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures user-provided adjustment of some value"@en . -unit:BU_UK-PER-DAY a unit:Unit ; - rdfs:label "Bushel (UK) Per Day"@en . +brick:Air_Flow_Deadband_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Air Flow Deadband Setpoint" ; + rdfs:subClassOf brick:Air_Flow_Setpoint, + brick:Deadband_Setpoint ; + skos:definition "Sets the size of a deadband of air flow"@en . -unit:BU_UK-PER-HR a unit:Unit ; - rdfs:label "Bushel (UK) Per Hour"@en . +brick:Air_Wet_Bulb_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Air Wet Bulb Temperature Sensor" ; + rdfs:subClassOf brick:Air_Temperature_Sensor, + brick:Temperature_Sensor . -unit:BU_UK-PER-MIN a unit:Unit ; - rdfs:label "Bushel (UK) Per Minute"@en . +brick:CO2_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "CO2 Alarm" ; + rdfs:subClassOf brick:Alarm ; + skos:definition "An alarm that indicates the off-normal conditions associated with the presence of carbon dioxide."@en . -unit:BU_UK-PER-SEC a unit:Unit ; - rdfs:label "Bushel (UK) Per Second"@en . +brick:CO2_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "CO2 Setpoint" ; + rdfs:subClassOf brick:Setpoint ; + skos:definition "Sets some property of CO2"@en . -unit:BU_US_DRY-PER-DAY a unit:Unit ; - rdfs:label "Bushel (US Dry) Per Day"@en . +brick:Chilled_Water_Differential_Pressure_Load_Shed_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Chilled Water Differential Pressure Load Shed Status" ; + rdfs:subClassOf brick:Differential_Pressure_Load_Shed_Status . -unit:BU_US_DRY-PER-HR a unit:Unit ; - rdfs:label "Bushel (US Dry) Per Hour"@en . +brick:Chilled_Water_Differential_Pressure_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Chilled Water Differential Pressure Setpoint" ; + rdfs:subClassOf brick:Water_Differential_Pressure_Setpoint ; + skos:definition "Sets the target water differential pressure between an upstream and downstream point in a water pipe or conduit used to carry chilled water"@en . -unit:BU_US_DRY-PER-MIN a unit:Unit ; - rdfs:label "Bushel (US Dry) Per Minute"@en . +brick:Conductivity_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Conductivity Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures electrical conductance"@en . -unit:BU_US_DRY-PER-SEC a unit:Unit ; - rdfs:label "Bushel (US Dry) Per Second"@en . +brick:Cooling_Demand_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Cooling Demand Sensor" ; + rdfs:subClassOf brick:Demand_Sensor ; + skos:definition "Measures the amount of power consumed by a cooling process; typically found by multiplying the tonnage of a unit (e.g. RTU) by the efficiency rating in kW/ton"@en . -unit:CAL_15_DEG_C a unit:Unit ; - rdfs:label "Calorie (15 Degrees C)"@en . +brick:Cycle_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Cycle Alarm" ; + rdfs:subClassOf brick:Alarm ; + skos:definition "An alarm that indicates off-normal conditions associated with HVAC cycles"@en . -unit:CAL_MEAN a unit:Unit ; - rdfs:label "Calorie (mean)"@en . +brick:Damper_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Damper Command" ; + rdfs:subClassOf brick:Command ; + skos:definition "Controls properties of dampers"@en . -unit:CARAT a unit:Unit ; - rdfs:label "Carat"@en . +brick:Delay_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Delay Parameter" ; + rdfs:subClassOf brick:Parameter ; + skos:definition "A parameter determining how long to delay a subsequent action to take place after a received signal"@en . -unit:CD-PER-IN2 a unit:Unit ; - rdfs:label "Candela per Square Inch"@en . +brick:Differential_Pressure_Step_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Differential Pressure Step Parameter" ; + rdfs:subClassOf brick:Step_Parameter . -unit:CD-PER-M2 a unit:Unit ; - rdfs:label "candela per square meter"@en-us . +brick:Direction_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Direction Command" ; + rdfs:subClassOf brick:Command ; + skos:definition "Commands that affect the direction of some phenomenon"@en . -unit:CWT_LONG a unit:Unit ; - rdfs:label "Long Hundred Weight"@en . +brick:Direction_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Direction Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures the direction in degrees in which a phenomenon is occuring"@en . -unit:CWT_SHORT a unit:Unit ; - rdfs:label "Hundred Weight - Short"@en . +brick:Direction_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Direction Status" ; + rdfs:subClassOf brick:Status ; + skos:definition "Indicates which direction a device is operating in"@en . -unit:CentiGM a unit:Unit ; - rdfs:label "Centigram"@en . +brick:Discharge_Air_Flow_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Flow Sensor" ; + rdfs:subClassOf brick:Air_Flow_Sensor ; + skos:definition "Measures the rate of flow of discharge air"@en . -unit:CentiM3-PER-DAY a unit:Unit ; - rdfs:label "Cubic Centimeter Per Day"@en-us . +brick:Discharge_Air_Static_Pressure_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Static Pressure Setpoint" ; + rdfs:subClassOf brick:Static_Pressure_Setpoint ; + skos:definition "Sets static pressure of discharge air"@en . -unit:CentiM3-PER-HR a unit:Unit ; - rdfs:label "Cubic Centimeter Per Hour"@en-us . +brick:Discharge_Air_Temperature_Cooling_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Temperature Cooling Setpoint" ; + rdfs:subClassOf brick:Cooling_Temperature_Setpoint, + brick:Discharge_Air_Temperature_Setpoint ; + skos:definition "Sets temperature of discharge air for cooling"@en . -unit:CentiM3-PER-MIN a unit:Unit ; - rdfs:label "Cubic Centimeter Per Minute"@en-us . +brick:Discharge_Air_Temperature_Heating_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Temperature Heating Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint, + brick:Heating_Temperature_Setpoint ; + skos:definition "Sets temperature of discharge air for heating"@en . -unit:CentiM3-PER-SEC a unit:Unit ; - rdfs:label "Cubic Centimeter Per Second"@en-us . +brick:Discharge_Air_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Temperature Sensor" ; + rdfs:subClassOf brick:Air_Temperature_Sensor ; + skos:definition "Measures the temperature of discharge air"@en . -unit:CentiN-M a unit:Unit ; - rdfs:label "Centinewton Meter"@en-us . +brick:Discharge_Water_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Water Temperature Sensor" ; + rdfs:subClassOf brick:Water_Temperature_Sensor ; + skos:definition "Measures the temperature of discharge water"@en . -unit:CentiPOISE-PER-BAR a unit:Unit ; - rdfs:label "Centipoise Per Bar"@en . +brick:Embedded_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Embedded Temperature Sensor" ; + rdfs:subClassOf brick:Radiant_Panel_Temperature_Sensor ; + skos:definition "Measures the internal temperature of the radiant layer of the radiant heating and cooling HVAC system."@en . -unit:DAY a unit:Unit ; - rdfs:label "Day"@en ; - qudt:symbol "d", - "d"^^xsd:string . +brick:Embedded_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Embedded Temperature Setpoint" ; + rdfs:subClassOf brick:Radiant_Panel_Temperature_Setpoint ; + skos:definition "Sets temperature for the internal material, e.g. concrete slab, of the radiant panel."@en . -unit:DAY_Sidereal a unit:Unit ; - rdfs:label "Sidereal Day"@en ; - qudt:symbol "d", - "d"^^xsd:string . +brick:Emergency_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Emergency Alarm" ; + rdfs:subClassOf brick:Alarm ; + skos:definition "Alarms that indicate off-normal conditions associated with emergency systems"@en . -unit:DRAM_UK a unit:Unit ; - rdfs:label "Dram (UK)"@en . +brick:Enable_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Enable Status" ; + rdfs:subClassOf brick:Status ; + skos:definition "Indicates if a system or piece of functionality has been enabled"@en . -unit:DRAM_US a unit:Unit ; - rdfs:label "Dram (US)"@en . +brick:Energy_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Energy Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures energy consumption"@en . -unit:DWT a unit:Unit ; - rdfs:label "Penny Weight"@en ; - qudt:symbol "dwt", - "dwt"^^xsd:string . +brick:Enthalpy_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Enthalpy Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures the total heat content of some substance"@en . -unit:DYN-CentiM a unit:Unit ; - rdfs:label "Dyne Centimeter "@en-us . +brick:Exhaust_Air_Flow_Integral_Time_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Exhaust Air Flow Integral Time Parameter" ; + rdfs:subClassOf brick:Integral_Time_Parameter . -unit:Da a unit:Unit ; - rdfs:label "Dalton"@en ; - qudt:symbol "Da", - "Da"^^xsd:string, - "u"^^xsd:string, - "μ"^^xsd:string . +brick:Exhaust_Air_Flow_Proportional_Band_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Exhaust Air Flow Proportional Band Parameter" ; + rdfs:subClassOf brick:Proportional_Band_Parameter . -unit:DecaGM a unit:Unit ; - rdfs:label "Decagram"@en . +brick:Exhaust_Air_Flow_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Exhaust Air Flow Sensor" ; + rdfs:subClassOf brick:Air_Flow_Sensor ; + skos:definition "Measures the rate of flow of exhaust air"@en . -unit:DeciGM a unit:Unit ; - rdfs:label "Decigram"@en . +brick:Exhaust_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Exhaust Air Flow Setpoint" ; + rdfs:subClassOf brick:Air_Flow_Setpoint ; + skos:definition "Sets exhaust air flow rate"@en . -unit:DeciM3-PER-DAY a unit:Unit ; - rdfs:label "Cubic Decimeter Per Day"@en-us . +brick:Exhaust_Air_Stack_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Exhaust Air Stack Flow Setpoint" ; + rdfs:subClassOf brick:Exhaust_Air_Flow_Setpoint ; + skos:definition "Sets exhaust air stack flow rate"@en . -unit:DeciM3-PER-HR a unit:Unit ; - rdfs:label "Cubic Decimeter Per Hour"@en-us . +brick:Fan_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Fan Status" ; + rdfs:subClassOf brick:Status ; + skos:definition "Indicates properties of fans"@en . -unit:DeciM3-PER-MIN a unit:Unit ; - rdfs:label "Cubic Decimeter Per Minute"@en-us . +brick:Filter_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Filter Status" ; + rdfs:subClassOf brick:Status ; + skos:definition "Indicates if a filter needs to be replaced"@en . -unit:DeciM3-PER-SEC a unit:Unit ; - rdfs:label "Cubic Decimeter Per Second"@en-us . +brick:Frequency_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Frequency Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures the frequency of a phenomenon or aspect of a phenomenon, e.g. the frequency of a fan turning"@en . -unit:DeciN-M a unit:Unit ; - rdfs:label "Decinewton Meter"@en-us . +brick:Heat_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Heat Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures heat"@en . -unit:DeciS-PER-M a unit:Unit ; - rdfs:label "decisiemens per meter"@en-us ; - qudt:symbol "ds/m", - "ds/m"^^xsd:string . +brick:Heating_Demand_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Heating Demand Sensor" ; + rdfs:subClassOf brick:Demand_Sensor ; + skos:definition "Measures the amount of power consumed by a heating process; typically found by multiplying the tonnage of a unit (e.g. RTU) by the efficiency rating in kW/ton"@en . -unit:DeciTONNE a unit:Unit ; - rdfs:label "DeciTonne"@en . +brick:Hot_Water_Differential_Pressure_Load_Shed_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Differential Pressure Load Shed Status" ; + rdfs:subClassOf brick:Differential_Pressure_Load_Shed_Status . -unit:DeciTON_Metric a unit:Unit ; - rdfs:label "Metric DeciTON"@en . +brick:Hot_Water_Differential_Pressure_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Differential Pressure Sensor" ; + rdfs:subClassOf brick:Differential_Pressure_Sensor ; + skos:definition "Measures the difference in water pressure on either side of a hot water valve"@en . -unit:ERG a unit:Unit ; - rdfs:label "Erg"@en ; - qudt:symbol "erg", - "erg"^^xsd:string . +brick:Hot_Water_Differential_Pressure_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Differential Pressure Setpoint" ; + rdfs:subClassOf brick:Water_Differential_Pressure_Setpoint ; + skos:definition "Sets the target water differential pressure between an upstream and downstream point in a water pipe or conduit used to carry hot water"@en . -unit:EV a unit:Unit ; - rdfs:label "Electron Volt"@en ; - qudt:symbol "eV", - "eV"^^xsd:string . +brick:Hot_Water_Discharge_Temperature_High_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Discharge Temperature High Reset Setpoint" ; + rdfs:subClassOf brick:Temperature_High_Reset_Setpoint . -unit:E_h a unit:Unit ; - rdfs:label "Hartree"@en ; - qudt:symbol "E_h", - "E_h"^^xsd:string . +brick:Hot_Water_Discharge_Temperature_Load_Shed_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Discharge Temperature Load Shed Status" ; + rdfs:subClassOf brick:Load_Shed_Status . -unit:EarthMass a unit:Unit ; - rdfs:label "Earth mass"@en . +brick:Hot_Water_Discharge_Temperature_Low_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Discharge Temperature Low Reset Setpoint" ; + rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint . -unit:ExaJ a unit:Unit ; - rdfs:label "Exajoule"@en . +brick:Hot_Water_Supply_Temperature_High_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Supply Temperature High Reset Setpoint" ; + rdfs:subClassOf brick:Temperature_High_Reset_Setpoint . -unit:FC a unit:Unit ; - rdfs:label "Foot Candle"@en ; - qudt:symbol "fc", - "fc"^^xsd:string . +brick:Hot_Water_Supply_Temperature_Load_Shed_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Supply Temperature Load Shed Status" ; + rdfs:subClassOf brick:Load_Shed_Status . -unit:FT-LA a unit:Unit ; - rdfs:label "Foot Lambert"@en . +brick:Hot_Water_Supply_Temperature_Low_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Supply Temperature Low Reset Setpoint" ; + rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint . -unit:FT-LB_F a unit:Unit ; - rdfs:label "Foot Pound Force"@en . +brick:Hot_Water_System_Enable_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water System Enable Command" ; + rdfs:subClassOf brick:System_Enable_Command ; + skos:definition "Enables operation of the hot water system"@en . -unit:FT-PDL a unit:Unit ; - rdfs:label "Foot Poundal"@en ; - qudt:symbol "ft-pdl", - "ft-pdl"^^xsd:string . +brick:Humidity_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Humidity Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures the concentration of water vapor in air"@en . -unit:FT3-PER-DAY a unit:Unit ; - rdfs:label "Cubic Foot Per Day"@en . +brick:Illuminance_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Illuminance Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures the total luminous flux incident on a surface, per unit area"@en . -unit:FT3-PER-HR a unit:Unit ; - rdfs:label "Cubic Foot Per Hour"@en . +brick:Leak_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Leak Alarm" ; + rdfs:subClassOf brick:Alarm ; + skos:definition "An alarm that indicates leaks occured in systems containing fluids"@en . -unit:FT3-PER-MIN a unit:Unit ; - rdfs:label "Cubic Foot per Minute"@en . +brick:Leaving_Water_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Leaving Water Temperature Sensor" ; + rdfs:subClassOf brick:Water_Temperature_Sensor ; + skos:definition "Measures the temperature of water leaving a piece of equipment or system"@en . -unit:FT3-PER-MIN-FT2 a unit:Unit ; - rdfs:label "Cubic Foot Per Minute Square Foot"@en . +brick:Load_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Load Setpoint" ; + rdfs:subClassOf brick:Setpoint . -unit:FT3-PER-SEC a unit:Unit ; - rdfs:label "Cubic Foot per Second"@en . +brick:Load_Shed_Differential_Pressure_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Load Shed Differential Pressure Setpoint" ; + rdfs:subClassOf brick:Differential_Pressure_Setpoint, + brick:Load_Shed_Setpoint . -unit:FemtoJ a unit:Unit ; - rdfs:label "Femtojoule"@en . +brick:Lockout_Temperature_Differential_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Lockout Temperature Differential Parameter" ; + rdfs:subClassOf brick:Temperature_Parameter . -unit:GAL_UK-PER-DAY a unit:Unit ; - rdfs:label "Gallon (UK) Per Day"@en . +brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Medium Temperature Hot Water Differential Pressure Load Shed Status" ; + rdfs:subClassOf brick:Differential_Pressure_Load_Shed_Status . -unit:GAL_UK-PER-HR a unit:Unit ; - rdfs:label "Gallon (UK) Per Hour"@en . - -unit:GAL_UK-PER-MIN a unit:Unit ; - rdfs:label "Gallon UK) Per Minute"@en . - -unit:GAL_UK-PER-SEC a unit:Unit ; - rdfs:label "Gallon (UK) Per Second"@en . - -unit:GAL_US-PER-DAY a unit:Unit ; - rdfs:label "US Gallon per Day"@en . - -unit:GAL_US-PER-HR a unit:Unit ; - rdfs:label "Gallon (US) Per Hour"@en . - -unit:GAL_US-PER-MIN a unit:Unit ; - rdfs:label "US Gallon per Minute"@en . - -unit:GAL_US-PER-SEC a unit:Unit ; - rdfs:label "Gallon (US Liquid) Per Second"@en . - -unit:GI_UK-PER-DAY a unit:Unit ; - rdfs:label "Gill (UK) Per Day"@en . - -unit:GI_UK-PER-HR a unit:Unit ; - rdfs:label "Gill (UK) Per Hour"@en . - -unit:GI_UK-PER-MIN a unit:Unit ; - rdfs:label "Gill (UK) Per Minute"@en . - -unit:GI_UK-PER-SEC a unit:Unit ; - rdfs:label "Gill (UK) Per Second"@en . - -unit:GI_US-PER-DAY a unit:Unit ; - rdfs:label "Gill (US) Per Day"@en . - -unit:GI_US-PER-HR a unit:Unit ; - rdfs:label "Gill (US) Per Hour"@en . - -unit:GI_US-PER-MIN a unit:Unit ; - rdfs:label "Gill (US) Per Minute"@en . - -unit:GI_US-PER-SEC a unit:Unit ; - rdfs:label "Gill (US) Per Second"@en . - -unit:GM a unit:Unit ; - rdfs:label "Gram"@en ; - qudt:symbol "g", - "g"^^xsd:string . - -unit:GRAIN-PER-GAL a unit:Unit ; - rdfs:label "Grain per Gallon"@en . - -unit:GigaC-PER-M3 a unit:Unit ; - rdfs:label "Gigacoulomb Per Cubic Meter"@en-us . - -unit:GigaEV a unit:Unit ; - rdfs:label "Giga Electron Volt"@en ; - qudt:symbol "GeV", - "GeV"^^xsd:string . - -unit:GigaHZ-M a unit:Unit ; - rdfs:label "Gigahertz Meter"@en-us . - -unit:GigaW-HR a unit:Unit ; - rdfs:label "Gigawatt Hour"@en . - -unit:H-PER-KiloOHM a unit:Unit ; - rdfs:label "Henry Per Kiloohm"@en . - -unit:H-PER-OHM a unit:Unit ; - rdfs:label "Henry Per Ohm"@en . - -unit:HR a unit:Unit ; - rdfs:label "Hour"@en ; - qudt:symbol "h", - "h"^^xsd:string . - -unit:HR_Sidereal a unit:Unit ; - rdfs:label "Sidereal Hour"@en ; - qudt:symbol "hr", - "hr"^^xsd:string . - -unit:HZ-M a unit:Unit ; - rdfs:label "Hertz Meter"@en-us . - -unit:HectoGM a unit:Unit ; - rdfs:label "Hectogram"@en . - -unit:Hundredweight_UK a unit:Unit ; - rdfs:label "Hundredweight (UK)"@en . - -unit:Hundredweight_US a unit:Unit ; - rdfs:label "Hundredweight (US)"@en . - -unit:IN3-PER-HR a unit:Unit ; - rdfs:label "Cubic Inch Per Hour"@en . - -unit:IN3-PER-MIN a unit:Unit ; - rdfs:label "Cubic Inch per Minute"@en . - -unit:IN3-PER-SEC a unit:Unit ; - rdfs:label "Cubic Inch Per Second"@en . - -unit:KiloA a unit:Unit ; - rdfs:label "kiloampere"@en ; - qudt:symbol "kA", - "kA"^^xsd:string . - -unit:KiloCAL_IT a unit:Unit ; - rdfs:label "Kilocalorie (international Table)"@en . - -unit:KiloCAL_Mean a unit:Unit ; - rdfs:label "Kilocalorie (mean)"@en . - -unit:KiloCAL_TH a unit:Unit ; - rdfs:label "Kilocalorie (thermochemical)"@en . - -unit:KiloEV a unit:Unit ; - rdfs:label "Kilo Electron Volt"@en ; - qudt:symbol "keV", - "keV"^^xsd:string . - -unit:KiloGM a unit:Unit ; - rdfs:label "Kilogram"@en ; - qudt:symbol "kg", - "kg"^^xsd:string . - -unit:KiloGM-PER-M3 a unit:Unit ; - rdfs:label "Kilogram per Cubic Meter"@en-us . - -unit:KiloGM_F-M a unit:Unit ; - rdfs:label "Kilogram?force Meter"@en-us . - -unit:KiloGM_F-PER-M a unit:Unit ; - rdfs:label "Kilogram Force Meter"@en-us . - -unit:KiloL-PER-HR a unit:Unit ; - rdfs:label "Kilolitre Per Hour"@en . - -unit:KiloN-M a unit:Unit ; - rdfs:label "Kilonewton Meter"@en-us . - -unit:KiloS-PER-M a unit:Unit ; - rdfs:label "Kilosiemens Per Meter"@en-us . - -unit:KiloSEC a unit:Unit ; - rdfs:label "kilosecond"@en ; - qudt:symbol "ks", - "ks"^^xsd:string . - -unit:KiloTONNE a unit:Unit ; - rdfs:label "KiloTonne"@en . - -unit:KiloTON_Metric a unit:Unit ; - rdfs:label "Metric KiloTON"@en . - -unit:L-PER-DAY a unit:Unit ; - rdfs:label "Liter Per Day"@en-us . - -unit:L-PER-HR a unit:Unit ; - rdfs:label "Liter Per Hour"@en-us . - -unit:L-PER-MIN a unit:Unit ; - rdfs:label "Liter Per Minute"@en-us . - -unit:L-PER-SEC a unit:Unit ; - rdfs:label "Liter Per Second"@en-us . - -unit:LA a unit:Unit ; - rdfs:label "Lambert"@en ; - qudt:symbol "L", - "L"^^xsd:string . - -unit:LB a unit:Unit ; - rdfs:label "Pound Mass"@en ; - qudt:symbol "lbm", - "lbm"^^xsd:string . - -unit:LB-PER-FT3 a unit:Unit ; - rdfs:label "Pound per Cubic Foot"@en . - -unit:LB-PER-GAL a unit:Unit ; - rdfs:label "Pound per Gallon"@en . - -unit:LB-PER-GAL_UK a unit:Unit ; - rdfs:label "Pound (avoirdupois) Per Gallon (UK)"@en . - -unit:LB-PER-GAL_US a unit:Unit ; - rdfs:label "Pound (avoirdupois) Per Gallon (US)"@en . - -unit:LB-PER-IN3 a unit:Unit ; - rdfs:label "Pound per Cubic Inch"@en . - -unit:LB-PER-M3 a unit:Unit ; - rdfs:label "Pound per Cubic Meter"@en-us . - -unit:LB-PER-YD3 a unit:Unit ; - rdfs:label "Pound per Cubic Yard"@en . - -unit:LB_F-FT a unit:Unit ; - rdfs:label "Pound Force Foot"@en . - -unit:LB_F-IN a unit:Unit ; - rdfs:label "Pound Force Inch"@en . - -unit:LB_T a unit:Unit ; - rdfs:label "Pound Troy"@en ; - qudt:symbol "lbt", - "lbt"^^xsd:string . - -unit:LUX a unit:Unit ; - rdfs:label "Lux"@en ; - qudt:symbol "lx", - "lx"^^xsd:string . - -unit:LunarMass a unit:Unit ; - rdfs:label "Lunar mass"@en . - -unit:M3-PER-DAY a unit:Unit ; - rdfs:label "Cubic Meter Per Day"@en-us . - -unit:M3-PER-HR a unit:Unit ; - rdfs:label "Cubic Meter per Hour"@en-us . - -unit:M3-PER-MIN a unit:Unit ; - rdfs:label "Cubic Meter Per Minute"@en-us . - -unit:MIN a unit:Unit ; - rdfs:label "Minute"@en ; - qudt:symbol "min", - "min"^^xsd:string . - -unit:MIN_Sidereal a unit:Unit ; - rdfs:label "Sidereal Minute"@en ; - qudt:symbol "min", - "min"^^xsd:string . - -unit:MO a unit:Unit ; - rdfs:label "Month"@en ; - qudt:symbol "mo", - "mo"^^xsd:string . - -unit:MO_MeanGREGORIAN a unit:Unit ; - rdfs:label "Mean Gregorian Month"@en . - -unit:MO_MeanJulian a unit:Unit ; - rdfs:label "Mean Julian Month"@en . - -unit:MO_Synodic a unit:Unit ; - rdfs:label "Synodic month"@en ; - qudt:symbol "mo"^^xsd:string . - -unit:MegaA a unit:Unit ; - rdfs:label "Megaampere"@en . - -unit:MegaEV a unit:Unit ; - rdfs:label "Mega Electron Volt"@en ; - qudt:symbol "MeV", - "MeV"^^xsd:string . - -unit:MegaGM a unit:Unit ; - rdfs:label "Megagram"@en . - -unit:MegaHZ-M a unit:Unit ; - rdfs:label "Megahertz Meter"@en-us . - -unit:MegaN-M a unit:Unit ; - rdfs:label "Meganewton Meter"@en-us . - -unit:MegaS-PER-M a unit:Unit ; - rdfs:label "Megasiemens Per Meter"@en-us . - -unit:MegaTOE a unit:Unit ; - rdfs:label "Megaton of Oil Equivalent"@en ; - qudt:symbol "megatoe", - "megatoe"^^xsd:string . - -unit:MegaYR a unit:Unit ; - rdfs:label "Million Years"@en ; - qudt:symbol "Myr", - "Myr"^^xsd:string . - -unit:MicroA a unit:Unit ; - rdfs:label "microampere"@en ; - qudt:symbol "µA", - "µA"^^xsd:string . - -unit:MicroGM a unit:Unit ; - rdfs:label "Microgram"@en . - -unit:MicroH-PER-KiloOHM a unit:Unit ; - rdfs:label "Microhenry Per Kiloohm"@en . - -unit:MicroH-PER-OHM a unit:Unit ; - rdfs:label "Microhenry Per Ohm"@en . - -unit:MicroN-M a unit:Unit ; - rdfs:label "Micronewton Meter"@en-us . - -unit:MicroS-PER-CentiM a unit:Unit ; - rdfs:label "Microsiemens Per Centimeter"@en-us . - -unit:MicroS-PER-M a unit:Unit ; - rdfs:label "Microsiemens Per Meter"@en-us . - -unit:MicroSEC a unit:Unit ; - rdfs:label "microsecond"@en ; - qudt:symbol "μs", - "μs"^^xsd:string . - -unit:MilliA a unit:Unit ; - rdfs:label "MilliAmpere"@en ; - qudt:symbol "mA", - "mA"^^xsd:string . - -unit:MilliGM a unit:Unit ; - rdfs:label "Milligram"@en . - -unit:MilliGM-PER-DeciL a unit:Unit ; - rdfs:label "milligrams per decilitre"@en . - -unit:MilliH-PER-KiloOHM a unit:Unit ; - rdfs:label "Millihenry Per Kiloohm"@en . - -unit:MilliH-PER-OHM a unit:Unit ; - rdfs:label "Millihenry Per Ohm"@en . - -unit:MilliJ a unit:Unit ; - rdfs:label "Millijoule"@en . - -unit:MilliL-PER-DAY a unit:Unit ; - rdfs:label "Millilitre Per Day"@en . - -unit:MilliL-PER-HR a unit:Unit ; - rdfs:label "Millilitre Per Hour"@en . - -unit:MilliL-PER-MIN a unit:Unit ; - rdfs:label "Millilitre Per Minute"@en . - -unit:MilliL-PER-SEC a unit:Unit ; - rdfs:label "Millilitre Per Second"@en . - -unit:MilliN-M a unit:Unit ; - rdfs:label "Millinewton Meter"@en-us . - -unit:MilliPA-SEC-PER-BAR a unit:Unit ; - rdfs:label "Millipascal Second Per Bar"@en . - -unit:MilliS-PER-CentiM a unit:Unit ; - rdfs:label "Millisiemens Per Centimeter"@en-us . - -unit:MilliS-PER-M a unit:Unit ; - rdfs:label "MilliSiemens per metre"@en . - -unit:MilliSEC a unit:Unit ; - rdfs:label "millisecond"@en ; - qudt:symbol "ms", - "ms"^^xsd:string . - -unit:N-CentiM a unit:Unit ; - rdfs:label "Newton Centimeter"@en-us . - -unit:NUM-PER-HR a unit:Unit ; - rdfs:label "Number per hour"@en . - -unit:NUM-PER-SEC a unit:Unit ; - rdfs:label "Counts per second"@en . - -unit:NUM-PER-YR a unit:Unit ; - rdfs:label "Number per Year"@en . - -unit:NanoA a unit:Unit ; - rdfs:label "nanoampere"@en ; - qudt:symbol "nA", - "nA"^^xsd:string . - -unit:NanoGM a unit:Unit ; - rdfs:label "Nanograms"@en . - -unit:NanoS-PER-CentiM a unit:Unit ; - rdfs:label "Nanosiemens Per Centimeter"@en-us . - -unit:NanoS-PER-M a unit:Unit ; - rdfs:label "Nanosiemens Per Meter"@en-us . - -unit:NanoSEC a unit:Unit ; - rdfs:label "nanosecond"@en ; - qudt:symbol "ns", - "ns"^^xsd:string . - -unit:OZ a unit:Unit ; - rdfs:label "Ounce Mass"@en ; - qudt:symbol "ozm", - "ozm"^^xsd:string . - -unit:OZ_F-IN a unit:Unit ; - rdfs:label "Imperial Ounce Force Inch"@en . - -unit:OZ_PER-GAL a unit:Unit ; - rdfs:label "Imperial Mass Ounce per Gallon"@en . - -unit:OZ_PER-IN3 a unit:Unit ; - rdfs:label "Imperial Mass Ounce per Cubic Inch"@en . - -unit:OZ_TROY a unit:Unit ; - rdfs:label "Ounce Troy"@en ; - qudt:symbol "oz", - "oz"^^xsd:string . - -unit:OZ_VOL_UK-PER-DAY a unit:Unit ; - rdfs:label "Ounce (UK Fluid) Per Day"@en . - -unit:OZ_VOL_UK-PER-HR a unit:Unit ; - rdfs:label "Ounce (UK Fluid) Per Hour"@en . - -unit:OZ_VOL_UK-PER-MIN a unit:Unit ; - rdfs:label "Ounce (UK Fluid) Per Minute"@en . - -unit:OZ_VOL_UK-PER-SEC a unit:Unit ; - rdfs:label "Ounce (UK Fluid) Per Second"@en . - -unit:OZ_VOL_US-PER-DAY a unit:Unit ; - rdfs:label "Ounce (US Fluid) Per Day"@en . - -unit:OZ_VOL_US-PER-HR a unit:Unit ; - rdfs:label "Ounce (US Fluid) Per Hour"@en . - -unit:OZ_VOL_US-PER-MIN a unit:Unit ; - rdfs:label "Ounce (US Fluid) Per Minute"@en . - -unit:OZ_VOL_US-PER-SEC a unit:Unit ; - rdfs:label "Ounce (US Fluid) Per Second"@en . - -unit:PA-SEC-PER-BAR a unit:Unit ; - rdfs:label "Pascal Second Per Bar"@en . - -unit:PER-DAY a unit:Unit ; - rdfs:label "Reciprocal Day"@en . - -unit:PER-HR a unit:Unit ; - rdfs:label "Reciprocal Hour"@en . - -unit:PER-MIN a unit:Unit ; - rdfs:label "Reciprocal Minute"@en . - -unit:PER-MO a unit:Unit ; - rdfs:label "Reciprocal Month"@en . - -unit:PER-MilliSEC a unit:Unit ; - rdfs:label "Reciprocal millisecond"@en . - -unit:PER-SEC a unit:Unit ; - rdfs:label "Reciprocal Second"@en ; - qudt:symbol "Hz"^^xsd:string . - -unit:PER-WK a unit:Unit ; - rdfs:label "Reciprocal Week"@en . - -unit:PER-YR a unit:Unit ; - rdfs:label "Reciprocal Year"@en . - -unit:PERCENT-PER-DAY a unit:Unit ; - rdfs:label "Percent per day"@en . - -unit:PERCENT-PER-HR a unit:Unit ; - rdfs:label "Percent per hour"@en . - -unit:PERCENT-PER-WK a unit:Unit ; - rdfs:label "Percent per week"@en . - -unit:PINT_UK-PER-DAY a unit:Unit ; - rdfs:label "Pint (UK) Per Day"@en . - -unit:PINT_UK-PER-HR a unit:Unit ; - rdfs:label "Pint (UK) Per Hour"@en . - -unit:PINT_UK-PER-MIN a unit:Unit ; - rdfs:label "Pint (UK) Per Minute"@en . - -unit:PINT_UK-PER-SEC a unit:Unit ; - rdfs:label "Pint (UK) Per Second"@en . - -unit:PINT_US-PER-DAY a unit:Unit ; - rdfs:label "Pint (US Liquid) Per Day"@en . - -unit:PINT_US-PER-HR a unit:Unit ; - rdfs:label "Pint (US Liquid) Per Hour"@en . - -unit:PINT_US-PER-MIN a unit:Unit ; - rdfs:label "Pint (US Liquid) Per Minute"@en . - -unit:PINT_US-PER-SEC a unit:Unit ; - rdfs:label "Pint (US Liquid) Per Second"@en . - -unit:PK_UK-PER-DAY a unit:Unit ; - rdfs:label "Peck (UK) Per Day"@en . - -unit:PK_UK-PER-HR a unit:Unit ; - rdfs:label "Peck (UK) Per Hour"@en . - -unit:PK_UK-PER-MIN a unit:Unit ; - rdfs:label "Peck (UK) Per Minute"@en . - -unit:PK_UK-PER-SEC a unit:Unit ; - rdfs:label "Peck (UK) Per Second"@en . - -unit:PK_US_DRY-PER-DAY a unit:Unit ; - rdfs:label "Peck (US Dry) Per Day"@en . - -unit:PK_US_DRY-PER-HR a unit:Unit ; - rdfs:label "Peck (US Dry) Per Hour"@en . - -unit:PK_US_DRY-PER-MIN a unit:Unit ; - rdfs:label "Peck (US Dry) Per Minute"@en . - -unit:PK_US_DRY-PER-SEC a unit:Unit ; - rdfs:label "Peck (US Dry) Per Second"@en . - -unit:POISE-PER-BAR a unit:Unit ; - rdfs:label "Poise Per Bar"@en . - -unit:Pennyweight a unit:Unit ; - rdfs:label "Pennyweight"@en . - -unit:PetaJ a unit:Unit ; - rdfs:label "Petajoule"@en . - -unit:Phot a unit:Unit ; - rdfs:label "Phot"@en ; - qudt:symbol "ph", - "ph"^^xsd:string . - -unit:PicoA a unit:Unit ; - rdfs:label "picoampere"@en ; - qudt:symbol "pA", - "pA"^^xsd:string . - -unit:PicoGM a unit:Unit ; - rdfs:label "Picograms"@en . - -unit:PicoS-PER-M a unit:Unit ; - rdfs:label "Picosiemens Per Meter"@en-us . - -unit:PicoSEC a unit:Unit ; - rdfs:label "Picosecond"@en . - -unit:PlanckCurrent a unit:Unit ; - rdfs:label "Planck Current"@en . - -unit:PlanckDensity a unit:Unit ; - rdfs:label "Planck Density"@en . - -unit:PlanckEnergy a unit:Unit ; - rdfs:label "Planck Energy"@en ; - qudt:symbol "Eᵨ", - "Eᵨ"^^xsd:string . - -unit:PlanckFrequency a unit:Unit ; - rdfs:label "Planck Frequency"@en . - -unit:PlanckMass a unit:Unit ; - rdfs:label "Planck Mass"@en . - -unit:PlanckTime a unit:Unit ; - rdfs:label "Planck Time"@en . - -unit:QT_UK-PER-DAY a unit:Unit ; - rdfs:label "Quart (UK Liquid) Per Day"@en . - -unit:QT_UK-PER-HR a unit:Unit ; - rdfs:label "Quart (UK Liquid) Per Hour"@en . - -unit:QT_UK-PER-MIN a unit:Unit ; - rdfs:label "Quart (UK Liquid) Per Minute"@en . - -unit:QT_UK-PER-SEC a unit:Unit ; - rdfs:label "Quart (UK Liquid) Per Second"@en . - -unit:QT_US-PER-DAY a unit:Unit ; - rdfs:label "Quart (US Liquid) Per Day"@en . - -unit:QT_US-PER-HR a unit:Unit ; - rdfs:label "Quart (US Liquid) Per Hour"@en . - -unit:QT_US-PER-MIN a unit:Unit ; - rdfs:label "Quart (US Liquid) Per Minute"@en . - -unit:QT_US-PER-SEC a unit:Unit ; - rdfs:label "Quart (US Liquid) Per Second"@en . - -unit:QUAD a unit:Unit ; - rdfs:label "Quad"@en ; - qudt:symbol "quad", - "quad"^^xsd:string . - -unit:Quarter_UK a unit:Unit ; - rdfs:label "Quarter (UK)"@en . - -unit:S-PER-CentiM a unit:Unit ; - rdfs:label "Siemens Per Centimeter"@en-us . - -unit:S-PER-M a unit:Unit ; - rdfs:label "Siemens Per Meter"@en-us . - -unit:SAMPLE-PER-SEC a unit:Unit ; - rdfs:label "Sample per second"@en . - -unit:SEC a unit:Unit ; - rdfs:label "Second"@en ; - qudt:symbol "s", - "s"^^xsd:string . - -unit:SH a unit:Unit ; - rdfs:label "Shake"@en ; - qudt:symbol "Sh", - "Sh"^^xsd:string . - -unit:SLUG a unit:Unit ; - rdfs:label "Slug"@en ; - qudt:symbol "slug", - "slug"^^xsd:string . - -unit:SLUG-PER-FT3 a unit:Unit ; - rdfs:label "Slug per Cubic Foot"@en . - -unit:STILB a unit:Unit ; - rdfs:label "Stilb"@en ; - qudt:symbol "sb", - "sb"^^xsd:string . - -unit:SolarMass a unit:Unit ; - rdfs:label "Solar mass"@en ; - qudt:symbol "S", - "S"^^xsd:string . - -unit:Stone_UK a unit:Unit ; - rdfs:label "Stone (UK)"@en . - -unit:TOE a unit:Unit ; - rdfs:label "Ton of Oil Equivalent"@en ; - qudt:symbol "toe", - "toe"^^xsd:string . - -unit:TONNE a unit:Unit ; - rdfs:label "Tonne"@en ; - qudt:symbol "mT"^^xsd:string . - -unit:TON_Assay a unit:Unit ; - rdfs:label "Assay Ton"@en ; - qudt:symbol "AT", - "AT"^^xsd:string . - -unit:TON_LONG a unit:Unit ; - rdfs:label "Long Ton"@en ; - qudt:symbol "ton", - "ton"^^xsd:string . - -unit:TON_LONG-PER-YD3 a unit:Unit ; - rdfs:label "Long Ton per Cubic Yard"@en . - -unit:TON_Metric a unit:Unit ; - rdfs:label "Metric Ton"@en ; - qudt:symbol "mT", - "mT"^^xsd:string . - -unit:TON_SHORT a unit:Unit ; - rdfs:label "Short Ton"@en ; - qudt:symbol "ton", - "ton"^^xsd:string . - -unit:TON_SHORT-PER-YD3 a unit:Unit ; - rdfs:label "Short Ton per Cubic Yard"@en . - -unit:TON_UK a unit:Unit ; - rdfs:label "Ton (UK)"@en ; - qudt:symbol "ton"^^xsd:string . - -unit:TON_UK-PER-YD3 a unit:Unit ; - rdfs:label "Long Ton (UK) Per Cubic Yard"@en . - -unit:TON_US a unit:Unit ; - rdfs:label "Ton (US)"@en ; - qudt:symbol "ton"^^xsd:string . - -unit:TON_US-PER-YD3 a unit:Unit ; - rdfs:label "Short Ton (US) Per Cubic Yard"@en . - -unit:TeraHZ a unit:Unit ; - rdfs:label "Terahertz"@en . - -unit:TeraJ a unit:Unit ; - rdfs:label "Terajoule"@en . - -unit:TeraW-HR a unit:Unit ; - rdfs:label "Terawatt Hour"@en . - -unit:TonEnergy a unit:Unit ; - rdfs:label "Ton Energy"@en . - -unit:U a unit:Unit ; - rdfs:label "Unified Atomic Mass Unit"@en ; - qudt:symbol "Da"^^xsd:string, - "u", - "u"^^xsd:string, - "μ"^^xsd:string . - -unit:W-SEC a unit:Unit ; - rdfs:label "Watt Second"@en . - -unit:WK a unit:Unit ; - rdfs:label "Week"@en ; - qudt:symbol "wk", - "wk"^^xsd:string . - -unit:YD3-PER-DAY a unit:Unit ; - rdfs:label "Cubic Yard Per Day"@en . - -unit:YD3-PER-HR a unit:Unit ; - rdfs:label "Cubic Yard Per Hour"@en . - -unit:YD3-PER-MIN a unit:Unit ; - rdfs:label "Cubic Yard per Minute"@en . - -unit:YD3-PER-SEC a unit:Unit ; - rdfs:label "Cubic Yard Per Second"@en . - -unit:YR a unit:Unit ; - rdfs:label "Year"@en ; - qudt:symbol "a", - "a"^^xsd:string . - -unit:YR_Common a unit:Unit ; - rdfs:label "Common Year"@en . - -unit:YR_Sidereal a unit:Unit ; - rdfs:label "Sidereal Year"@en ; - qudt:symbol "yr", - "yr"^^xsd:string . - -unit:YR_TROPICAL a unit:Unit ; - rdfs:label "Tropical Year"@en ; - qudt:symbol "a_{t}", - "a_{t}"^^xsd:string . - -unit:failures-in-time a unit:Unit ; - rdfs:label "Failures In Time"@en . - -vcard:Address a owl:Class . - -vcard:hasAddress a owl:ObjectProperty . - -sosa:FeatureOfInterest a owl:Class . - -sosa:ObservableProperty a owl:Class . - - a owl:Ontology ; - rdfs:label "Brick" ; - dcterms1:creator ( [ a sdo:Person ; - sdo:email "gtfierro@cs.berkeley.edu" ; - sdo:name "Gabe Fierro" ] [ a sdo:Person ; - sdo:email "jbkoh@eng.ucsd.edu" ; - sdo:name "Jason Koh" ] ) ; - dcterms1:issued "2016-11-16" ; - dcterms1:license ; - dcterms1:modified "2022-07-05" ; - dcterms1:publisher [ a sdo:Consortium ; - sdo:legalName "Brick Consortium, Inc" ; - sdo:sameAs ] ; - rdfs:isDefinedBy ; - rdfs:seeAlso ; - owl:versionInfo "1.3.0" . - -brick:AED a owl:Class, - sh:NodeShape ; - rdfs:label "AED" ; - rdfs:subClassOf brick:Safety_Equipment ; - owl:equivalentClass brick:Automated_External_Defibrillator ; - sh:rule [ a sh:TripleRule ; - sh:object tag:AED ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Defibrillator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:AED, - tag:Defibrillator, - tag:Equipment, - tag:Safety . - -brick:Access_Control_Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "Access Control Equipment" ; - rdfs:subClassOf brick:Security_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Access ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Control ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Security ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Access, - tag:Control, - tag:Equipment, - tag:Security . - -brick:Air_Flow_Deadband_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Air Flow Deadband Setpoint" ; - rdfs:subClassOf brick:Air_Flow_Setpoint, - brick:Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of air flow"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Deadband, - tag:Flow, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Air . - -brick:Air_Handler_Unit a owl:Class, - sh:NodeShape ; - rdfs:label "Air Handler Unit" ; - rdfs:subClassOf brick:HVAC_Equipment ; - owl:equivalentClass brick:AHU, - brick:Air_Handling_Unit ; - skos:definition "Assembly consisting of sections containing a fan or fans and other necessary equipment to perform one or more of the following functions: circulating, filtration, heating, cooling, heat recovery, humidifying, dehumidifying, and mixing of air. Is usually connected to an air-distribution system."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Handler ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Equipment, - tag:Handler, - tag:Unit . - -brick:Air_Handling_Unit a owl:Class, - sh:NodeShape ; - rdfs:label "Air Handling Unit" ; - rdfs:subClassOf brick:HVAC_Equipment ; - owl:equivalentClass brick:AHU, - brick:Air_Handler_Unit ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Handling ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Equipment, - tag:Handling, - tag:Unit . - -brick:Air_System a owl:Class, - sh:NodeShape ; - rdfs:label "Air System" ; - rdfs:subClassOf brick:Heating_Ventilation_Air_Conditioning_System ; - skos:definition "The equipment, distribution systems and terminals that introduce or exhaust, either collectively or individually, the air into and from the building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:System . - -brick:Air_Wet_Bulb_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Air Wet Bulb Temperature Sensor" ; - rdfs:subClassOf brick:Air_Temperature_Sensor, - brick:Temperature_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Bulb ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Wet ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Bulb, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Wet ; - brick:hasQuantity brick:Wet_Bulb_Temperature ; - brick:hasSubstance brick:Air . - -brick:Ammonia_Concentration a brick:Quantity ; - rdfs:label "AmmoniaConcentration" ; - qudt:applicableUnit unit:PPB, - unit:PPM ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:DimensionlessRatio, - brick:Air_Quality ; - skos:definition "The concentration of Ammonia in a medium" . - -brick:Angle a brick:Quantity ; - rdfs:label "Angle" ; - qudt:applicableUnit unit:ARCMIN, - unit:ARCSEC, - unit:DEG, - unit:GON, - unit:GRAD, - unit:MIL, - unit:MIN_Angle, - unit:MicroRAD, - unit:MilliARCSEC, - unit:MilliRAD, - unit:RAD, - unit:REV ; - skos:definition "The inclination to each other of two intersecting lines, measured by the arc of a circle intercepted between the two lines forming the angle, the center of the circle being the point of intersection. An acute angle is less than (90^\\circ), a right angle (90^\\circ); an obtuse angle, more than (90^\\circ) but less than (180^\\circ); a straight angle, (180^\\circ); a reflex angle, more than (180^\\circ) but less than (360^\\circ); a perigon, (360^\\circ). Any angle not a multiple of (90^\\circ) is an oblique angle. If the sum of two angles is (90^\\circ), they are complementary angles; if (180^\\circ), supplementary angles; if (360^\\circ), explementary angles."@en ; - brick:hasQUDTReference qudtqk:Angle . - -brick:Automated_External_Defibrillator a owl:Class, - sh:NodeShape ; - rdfs:label "Automated External Defibrillator" ; - rdfs:subClassOf brick:Safety_Equipment ; - owl:equivalentClass brick:AED ; - sh:rule [ a sh:TripleRule ; - sh:object tag:AED ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Defibrillator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:AED, - tag:Defibrillator, - tag:Equipment, - tag:Safety . - -brick:Average_Discharge_Air_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Average Discharge Air Flow Sensor" ; - rdfs:subClassOf brick:Discharge_Air_Flow_Sensor ; - skos:definition "The computed average flow of discharge air over some interval"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Average ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Average, - tag:Discharge, - tag:Flow, - tag:Point, - tag:Sensor . - -brick:Blowdown_Water a owl:Class, - sh:NodeShape, - brick:Blowdown_Water ; - rdfs:label "Blowdown Water" ; - rdfs:subClassOf brick:Water ; - skos:definition "Water expelled from a system to remove mineral build up"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Blowdown ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Blowdown, - tag:Fluid, - tag:Liquid, - tag:Water . - -brick:Break_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Break Room" ; - rdfs:subClassOf brick:Room ; - owl:equivalentClass brick:Breakroom ; - skos:definition "A space for people to relax while not working"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Break ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Break, - tag:Location, - tag:Room, - tag:Space . - -brick:Breakroom a owl:Class, - sh:NodeShape ; - rdfs:label "Breakroom" ; - rdfs:subClassOf brick:Room ; - owl:equivalentClass brick:Break_Room ; - skos:definition "A space for people to relax while not working"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Breakroom ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Breakroom, - tag:Location, - tag:Room, - tag:Space . - -brick:CAV a owl:Class, - sh:NodeShape ; - rdfs:label "CAV" ; - rdfs:subClassOf brick:Terminal_Unit ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CAV ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CAV, - tag:Equipment . - -brick:CO a owl:Class, - sh:NodeShape, - brick:CO ; - rdfs:label "CO" ; - rdfs:subClassOf brick:Gas ; - skos:definition "Carbon Monoxide in the vapor phase"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CO ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CO, - tag:Fluid, - tag:Gas . - -brick:CO2_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "CO2 Alarm" ; - rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with the presence of carbon dioxide."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:CO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:CO2, - tag:Point . - -brick:CO2_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "CO2 Setpoint" ; - rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets some property of CO2"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CO2, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:CO2 . - -brick:CRAH a owl:Class, - sh:NodeShape ; - rdfs:label "CRAH" ; - rdfs:subClassOf brick:HVAC_Equipment ; - owl:equivalentClass brick:Computer_Room_Air_Handler ; - skos:definition "a computer room air handler (CRAH) uses fans, cooling coils and a water-chiller system to remove heat."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CRAH ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CRAH, - tag:Equipment . - -brick:Camera a owl:Class, - sh:NodeShape ; - rdfs:label "Camera" ; - rdfs:subClassOf brick:Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Camera ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Camera, - tag:Equipment . - -brick:Capacity a brick:Quantity ; - rdfs:label "Capacity" ; - brick:hasQUDTReference qudtqk:Capacity . - -brick:Chilled_Water_Differential_Pressure_Load_Shed_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Water Differential Pressure Load Shed Status" ; - rdfs:subClassOf brick:Differential_Pressure_Load_Shed_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Differential, - tag:Load, - tag:Point, - tag:Pressure, - tag:Shed, - tag:Status, - tag:Water . - -brick:Chilled_Water_Differential_Pressure_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Water Differential Pressure Setpoint" ; - rdfs:subClassOf brick:Water_Differential_Pressure_Setpoint ; - skos:definition "Sets the target water differential pressure between an upstream and downstream point in a water pipe or conduit used to carry chilled water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Differential, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Chilled_Water . - -brick:Chilled_Water_Discharge_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Water Discharge Flow Sensor" ; - rdfs:subClassOf brick:Discharge_Water_Flow_Sensor ; - skos:definition "Measures the rate of flow of chilled discharge water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Discharge, - tag:Flow, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Discharge_Chilled_Water . - -brick:Chilled_Water_Discharge_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Water Discharge Flow Setpoint" ; - rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint, - brick:Discharge_Water_Flow_Setpoint ; - skos:definition "Sets the target flow rate of chilled discharge water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Discharge, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Water . - -brick:Chilled_Water_Discharge_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Water Discharge Temperature Sensor" ; - rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Discharge, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water . - -brick:Chilled_Water_Meter a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Water Meter" ; - rdfs:subClassOf brick:Water_Meter ; - skos:definition "A meter that measures the usage or consumption of chilled water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Equipment, - tag:Meter, - tag:Water . - -brick:Cold_Deck a owl:Class, - sh:NodeShape ; - rdfs:label "Cold Deck" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "Part of a dual duct air handling unit that supplies cooling to a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cold ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deck ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cold, - tag:Deck, - tag:Equipment . - -brick:Computer_Room_Air_Conditioning a owl:Class, - sh:NodeShape ; - rdfs:label "Computer Room Air Conditioning" ; - rdfs:subClassOf brick:HVAC_Equipment ; - owl:equivalentClass brick:CRAC ; - skos:definition "A device that monitors and maintains the temperature, air distribution and humidity in a network room or data center."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Computer ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Conditioning ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Computer, - tag:Conditioning, - tag:Equipment, - tag:Room . - -brick:Computer_Room_Air_Handler a owl:Class, - sh:NodeShape ; - rdfs:label "Computer Room Air Handler" ; - rdfs:subClassOf brick:HVAC_Equipment ; - owl:equivalentClass brick:CRAH ; - skos:definition "a computer room air handler (CRAH) uses fans, cooling coils and a water-chiller system to remove heat."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Computer ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Handler ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Computer, - tag:Equipment, - tag:Handler, - tag:Room . - -brick:Conductivity_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Conductivity Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures electrical conductance"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Conductivity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Conductivity, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Conductivity . - -brick:Cooling_Demand_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Cooling Demand Sensor" ; - rdfs:subClassOf brick:Demand_Sensor ; - skos:definition "Measures the amount of power consumed by a cooling process; typically found by multiplying the tonnage of a unit (e.g. RTU) by the efficiency rating in kW/ton"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Demand, - tag:Point, - tag:Sensor . - -brick:Cooling_Discharge_Air_Temperature_Deadband_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Cooling Discharge Air Temperature Deadband Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Cooling_Setpoint, - brick:Discharge_Air_Temperature_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of temperature of cooling discharge air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Deadband, - tag:Discharge, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Discharge_Air . - -brick:Cooling_Discharge_Air_Temperature_Integral_Time_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Cooling Discharge Air Temperature Integral Time Parameter" ; - rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Discharge, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Temperature, - tag:Time . - -brick:Cooling_Discharge_Air_Temperature_Proportional_Band_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Cooling Discharge Air Temperature Proportional Band Parameter" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Band, - tag:Cool, - tag:Discharge, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional, - tag:Temperature . - -brick:Current_Imbalance a brick:Quantity ; - rdfs:label "CurrentImbalance" ; - qudt:applicableUnit unit:PERCENT ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Dimensionless ; - skos:definition "The percent deviation from average current", - "The percent deviation from average current"@en ; - skos:related brick:Electric_Current . - -brick:Cycle_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Cycle Alarm" ; - rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates off-normal conditions associated with HVAC cycles"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cycle ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Cycle, - tag:Point . - -brick:DOAS a owl:Class, - sh:NodeShape ; - rdfs:label "DOAS" ; - rdfs:subClassOf brick:AHU ; - owl:equivalentClass brick:Dedicated_Outdoor_Air_System_Unit ; - skos:definition "See Dedicated_Outdoor_Air_System_Unit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:DOAS ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:DOAS, - tag:Equipment . - -brick:Damper_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Damper Command" ; - rdfs:subClassOf brick:Command ; - skos:definition "Controls properties of dampers"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Damper ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Damper, - tag:Point . - -brick:Dedicated_Outdoor_Air_System_Unit a owl:Class, - sh:NodeShape ; - rdfs:label "Dedicated Outdoor Air System Unit" ; - rdfs:subClassOf brick:AHU ; - owl:equivalentClass brick:DOAS ; - skos:definition "A device that conditions and delivers 100% outdoor air to its assigned spaces. It decouples air-conditioning of the outdoor air, usually used to provide minimum outdoor air ventilation, from conditioning of the internal loads."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Dedicated ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outdoor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Dedicated, - tag:Equipment, - tag:Outdoor, - tag:System . - -brick:Delay_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Delay Parameter" ; - rdfs:subClassOf brick:Parameter ; - skos:definition "A parameter determining how long to delay a subsequent action to take place after a received signal"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Delay ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Delay, - tag:Parameter, - tag:Point . - -brick:DeprecationShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - skos:definition "A SHACL rule which will mitigate the deprecation" ; - sh:class sh:NodeShape ; - sh:path brick:deprecationMigitationRule ], - [ a sh:PropertyShape ; - skos:definition "A message describing how to mitigate or address the deprecation" ; - sh:datatype xsd:string ; - sh:minCount 1 ; - sh:path brick:deprecationMitigationMessage ], - [ a sh:PropertyShape ; - skos:definition "The version in which the entity was deprecated" ; - sh:datatype xsd:string ; - sh:minCount 1 ; - sh:path brick:deprecatedInVersion ] . - -brick:Differential_CO2_Concentration a brick:Quantity ; - rdfs:label "ΔCO2Concentration" ; - qudt:applicableUnit unit:PPB, - unit:PPM ; - qudt:isDeltaQuantity true ; - rdfs:isDefinedBy ; - skos:broader brick:CO2_Concentration ; - skos:definition "The difference in carbon dioxide concentration between two areas" . - -brick:Differential_CO_Concentration a brick:Quantity ; - rdfs:label "ΔCOConcentration" ; - qudt:applicableUnit unit:PPB, - unit:PPM ; - qudt:isDeltaQuantity true ; - rdfs:isDefinedBy ; - skos:broader brick:CO_Concentration ; - skos:definition "The difference in carbon monoxide concentration between two areas" . - -brick:Differential_Discharge_Return_Water_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Differential Discharge Return Water Temperature Sensor" ; - rdfs:subClassOf brick:Discharge_Water_Temperature_Sensor, - brick:Return_Water_Temperature_Sensor, - brick:Water_Differential_Temperature_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Discharge, - tag:Point, - tag:Return, - tag:Sensor, - tag:Temperature . - -brick:Differential_Pressure_Step_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Differential Pressure Step Parameter" ; - rdfs:subClassOf brick:Step_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Step ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Step . - -brick:Direction_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Direction Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the direction in degrees in which a phenomenon is occuring"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Direction ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Direction, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Direction . - -brick:Direction_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Direction Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Indicates which direction a device is operating in"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Direction ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Direction, - tag:Point, - tag:Status ; - brick:hasQuantity brick:Direction . - -brick:Discharge_Air_Dewpoint_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Dewpoint Sensor" ; - rdfs:subClassOf brick:Dewpoint_Sensor ; - skos:definition "Measures dewpoint of discharge air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Dewpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Dewpoint, - tag:Discharge, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Dewpoint ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Air_Differential_Pressure_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Differential Pressure Sensor" ; - rdfs:subClassOf brick:Air_Differential_Pressure_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Discharge, - tag:Point, - tag:Pressure, - tag:Sensor . - -brick:Discharge_Air_Duct_Pressure_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Duct Pressure Status" ; - rdfs:subClassOf brick:Pressure_Status ; - skos:definition "Indicates if air pressure in discharge duct is within expected bounds"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Duct ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Duct, - tag:Point, - tag:Pressure, - tag:Status . - -brick:Discharge_Air_Flow_Demand_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Flow Demand Setpoint" ; - rdfs:subClassOf brick:Air_Flow_Demand_Setpoint, - brick:Discharge_Air_Flow_Setpoint ; - skos:definition "Sets the rate of discharge air flow required for a process"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Demand, - tag:Discharge, - tag:Flow, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Air_Flow_High_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Flow High Reset Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Flow_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:High, - tag:Point, - tag:Reset, - tag:Setpoint . - -brick:Discharge_Air_Flow_Low_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Flow Low Reset Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Flow_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Low, - tag:Point, - tag:Reset, - tag:Setpoint . - -brick:Discharge_Air_Humidity_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Humidity Sensor" ; - rdfs:subClassOf brick:Relative_Humidity_Sensor ; - skos:definition "Measures the relative humidity of discharge air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Relative ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Humidity, - tag:Point, - tag:Relative, - tag:Sensor ; - brick:hasQuantity brick:Relative_Humidity ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Air_Humidity_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Humidity Setpoint" ; - rdfs:subClassOf brick:Humidity_Setpoint ; - skos:definition "Humidity setpoint for discharge air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Humidity, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Humidity ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Air_Integral_Gain_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Integral Gain Parameter" ; - rdfs:subClassOf brick:Integral_Gain_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gain ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Gain, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point . - -brick:Discharge_Air_Plenum a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Plenum" ; - rdfs:subClassOf brick:Air_Plenum ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Plenum ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Equipment, - tag:Plenum . - -brick:Discharge_Air_Proportional_Gain_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Proportional Gain Parameter" ; - rdfs:subClassOf brick:Proportional_Gain_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gain ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Gain, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional . - -brick:Discharge_Air_Smoke_Detection_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Smoke Detection Alarm" ; - rdfs:subClassOf brick:Air_Alarm, - brick:Smoke_Detection_Alarm ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Detection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Smoke ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Detection, - tag:Discharge, - tag:Point, - tag:Smoke . - -brick:Discharge_Air_Static_Pressure_Deadband_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Static Pressure Deadband Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Static_Pressure_Setpoint, - brick:Static_Pressure_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of static pressure of discharge air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Deadband, - tag:Discharge, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static ; - brick:hasQuantity brick:Static_Pressure ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Air_Static_Pressure_Integral_Time_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Static Pressure Integral Time Parameter" ; - rdfs:subClassOf brick:Static_Pressure_Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Static, - tag:Time . - -brick:Discharge_Air_Static_Pressure_Proportional_Band_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Static Pressure Proportional Band Parameter" ; - rdfs:subClassOf brick:Static_Pressure_Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Band, - tag:Discharge, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Proportional, - tag:Static . - -brick:Discharge_Air_Static_Pressure_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Static Pressure Sensor" ; - rdfs:subClassOf brick:Static_Pressure_Sensor ; - skos:definition "The static pressure of air within discharge regions of an HVAC system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Static ; - brick:hasQuantity brick:Static_Pressure ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Air_Static_Pressure_Step_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Static Pressure Step Parameter" ; - rdfs:subClassOf brick:Air_Static_Pressure_Step_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Step ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Static, - tag:Step . - -brick:Discharge_Air_Temperature_High_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Temperature High Reset Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Reset_Differential_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Discharge, - tag:High, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Temperature . - -brick:Discharge_Air_Temperature_Low_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Temperature Low Reset Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Reset_Differential_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Discharge, - tag:Low, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Temperature . - -brick:Discharge_Air_Temperature_Step_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Temperature Step Parameter" ; - rdfs:subClassOf brick:Air_Temperature_Step_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Step ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Parameter, - tag:Point, - tag:Step, - tag:Temperature . - -brick:Discharge_Air_Velocity_Pressure_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Velocity Pressure Sensor" ; - rdfs:subClassOf brick:Velocity_Pressure_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Velocity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Velocity ; - brick:hasQuantity brick:Velocity_Pressure ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Chilled_Water_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Chilled Water Temperature Setpoint" ; - rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint, - brick:Discharge_Water_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Discharge, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water . - -brick:Discharge_Condenser_Water_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Condenser Water Flow Sensor" ; - rdfs:subClassOf brick:Condenser_Water_Flow_Sensor, - brick:Discharge_Water_Flow_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Discharge, - tag:Flow, - tag:Point, - tag:Sensor, - tag:Water . - -brick:Discharge_Condenser_Water_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Condenser Water Temperature Sensor" ; - rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Discharge, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water . - -brick:Discharge_Condenser_Water_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Condenser Water Temperature Setpoint" ; - rdfs:subClassOf brick:Discharge_Water_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Discharge, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water . - -brick:Discharge_Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Fan" ; - rdfs:subClassOf brick:Fan ; - skos:definition "Fan moving air discharged from HVAC vents"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Equipment, - tag:Fan . - -brick:Discharge_Hot_Water_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Hot Water Temperature Setpoint" ; - rdfs:subClassOf brick:Discharge_Water_Temperature_Setpoint, - brick:Hot_Water_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Hot, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water . - -brick:Discharge_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Water Differential Pressure Deadband Setpoint" ; - rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of differential pressure of discharge water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deadband, - tag:Differential, - tag:Discharge, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Discharge_Water . - -brick:Discharge_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Water Differential Pressure Integral Time Parameter" ; - rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Discharge, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Time, - tag:Water . - -brick:Discharge_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Water Differential Pressure Proportional Band Parameter" ; - rdfs:subClassOf brick:Differential_Pressure_Proportional_Band ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Band, - tag:Differential, - tag:Discharge, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Proportional, - tag:Water . - -brick:Discharge_Water_Temperature_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Water Temperature Alarm" ; - rdfs:subClassOf brick:Water_Temperature_Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with temperature of the discharge water."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Discharge, - tag:Point, - tag:Temperature, - tag:Water . - -brick:Discharge_Water_Temperature_Deadband_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Water Temperature Deadband Setpoint" ; - rdfs:subClassOf brick:Supply_Water_Temperature_Setpoint, - brick:Temperature_Deadband_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deadband, - tag:Discharge, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water . - -brick:Discharge_Water_Temperature_Integral_Time_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Water Temperature Integral Time Parameter" ; - rdfs:subClassOf brick:Integral_Time_Parameter, - brick:Temperature_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Temperature, - tag:Time, - tag:Water . - -brick:Discharge_Water_Temperature_Proportional_Band_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Water Temperature Proportional Band Parameter" ; - rdfs:subClassOf brick:Proportional_Band_Parameter, - brick:Temperature_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Band, - tag:Discharge, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional, - tag:Temperature, - tag:Water . - -brick:Domestic_Hot_Water_Discharge_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Domestic Hot Water Discharge Temperature Sensor" ; - rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Domestic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Domestic, - tag:Hot, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water . - -brick:Domestic_Hot_Water_Discharge_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Domestic Hot Water Discharge Temperature Setpoint" ; - rdfs:subClassOf brick:Discharge_Water_Temperature_Setpoint, - brick:Domestic_Hot_Water_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Domestic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Domestic, - tag:Hot, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water . - -brick:Domestic_Water a owl:Class, - sh:NodeShape, - brick:Domestic_Water ; - rdfs:label "Domestic Water" ; - rdfs:subClassOf brick:Water ; - skos:definition "A collection of equipment that transport and regulate domestic water among each other"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Domestic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Domestic, - tag:Fluid, - tag:Liquid, - tag:Water . - -brick:Dry_Bulb_Temperature a brick:Quantity ; - rdfs:label "Dry_Bulb_Temperature" ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:K ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Temperature, - brick:Temperature ; - skos:definition "The temperature of air measured by a thermometer freely exposed to the air, but shielded from radiation and moisture. (https://en.wikipedia.org/wiki/Dry-bulb_temperature)", - "The temperature of air measured by a thermometer freely exposed to the air, but shielded from radiation and moisture. (https://en.wikipedia.org/wiki/Dry-bulb_temperature)"@en . - -brick:Dual_Duct_Air_Handling_Unit a owl:Class, - sh:NodeShape ; - rdfs:label "Dual Duct Air Handling Unit" ; - rdfs:subClassOf brick:AHU ; - owl:equivalentClass brick:DDAHU ; - skos:definition "An air handling unit that contains hot and cold decks to supply heating and cooling to a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:AHU ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Dual ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:AHU, - tag:Dual, - tag:Equipment . - -brick:Dynamic_Pressure a brick:Quantity ; - rdfs:label "Dynamic Pressure" ; - skos:broader brick:Pressure . - -brick:ESS_Panel a owl:Class, - sh:NodeShape ; - rdfs:label "ESS Panel" ; - rdfs:subClassOf brick:Radiant_Panel ; - skos:definition "See Embedded_Surface_System_Panel"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:ESS ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:ESS, - tag:Equipment, - tag:Panel . - -brick:Effective_Discharge_Air_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Effective Discharge Air Temperature Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint, - brick:Effective_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Effective ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Effective, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Electric_Energy_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Electric Energy Sensor" ; - rdfs:subClassOf brick:Energy_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electric ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Energy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electric, - tag:Energy, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Electric_Energy . - -brick:Electric_Radiator a owl:Class, - sh:NodeShape ; - rdfs:label "Electric Radiator" ; - rdfs:subClassOf brick:Radiator ; - skos:definition "Electric heating device"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electric ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electric, - tag:Equipment, - tag:Radiator . - -brick:Electrical_Meter a owl:Class, - sh:NodeShape ; - rdfs:label "Electrical Meter" ; - rdfs:subClassOf brick:Meter ; - skos:definition "A meter that measures the usage or consumption of electricity"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electrical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electrical, - tag:Equipment, - tag:Meter . - -brick:Electrical_System a owl:Class, - sh:NodeShape ; - rdfs:label "Electrical System" ; - rdfs:subClassOf brick:System ; - skos:definition "Devices that serve or are part of the electrical subsystem in the building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electrical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electrical, - tag:System . - -brick:Elevator_Shaft a owl:Class, - sh:NodeShape ; - rdfs:label "Elevator Shaft" ; - rdfs:subClassOf brick:Vertical_Space ; - owl:equivalentClass brick:Elevator_Space ; - skos:definition "The vertical space in which an elevator ascends and descends"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Elevator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shaft ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Vertical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Elevator, - tag:Location, - tag:Shaft, - tag:Space, - tag:Vertical . - -brick:Elevator_Space a owl:Class, - sh:NodeShape ; - rdfs:label "Elevator Space" ; - rdfs:subClassOf brick:Vertical_Space ; - owl:equivalentClass brick:Elevator_Shaft ; - skos:definition "The vertical space in whcih an elevator ascends and descends"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Elevator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Vertical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Elevator, - tag:Location, - tag:Space, - tag:Vertical . - -brick:Embedded_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Embedded Temperature Sensor" ; - rdfs:subClassOf brick:Radiant_Panel_Temperature_Sensor ; - skos:definition "Measures the internal temperature of the radiant layer of the radiant heating and cooling HVAC system."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Embedded ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Embedded, - tag:Point, - tag:Sensor, - tag:Temperature . - -brick:Embedded_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Embedded Temperature Setpoint" ; - rdfs:subClassOf brick:Radiant_Panel_Temperature_Setpoint ; - skos:definition "Sets temperature for the internal material, e.g. concrete slab, of the radiant panel."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Embedded ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Embedded, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Emergency_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Emergency Alarm" ; - rdfs:subClassOf brick:Alarm ; - skos:definition "Alarms that indicate off-normal conditions associated with emergency systems"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Emergency, - tag:Point . - -brick:Enable_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Enable Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Indicates if a system or piece of functionality has been enabled"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Enable, - tag:Point, - tag:Status . - -brick:Energy_Generation_System a owl:Class, - sh:NodeShape ; - rdfs:label "Energy Generation System" ; - rdfs:subClassOf brick:Energy_System ; - skos:definition "A collection of devices that generates electricity"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Energy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Generation ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Energy, - tag:Generation, - tag:System . - -brick:Energy_Storage a owl:Class, - sh:NodeShape ; - rdfs:label "Energy Storage" ; - rdfs:subClassOf brick:Electrical_Equipment ; - skos:definition "Devices or equipment that store energy in its various forms"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Energy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Storage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Energy, - tag:Equipment, - tag:Storage . - -brick:Energy_Storage_System a owl:Class, - sh:NodeShape ; - rdfs:label "Energy Storage System" ; - rdfs:subClassOf brick:Energy_System ; - skos:definition "A collection of devices that stores electricity"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Energy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Storage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Energy, - tag:Storage, - tag:System . - -brick:Enthalpy_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Enthalpy Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the total heat content of some substance"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Enthalpy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Enthalpy, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Enthalpy . - -brick:Exhaust_Air_Flow_Integral_Time_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Exhaust Air Flow Integral Time Parameter" ; - rdfs:subClassOf brick:Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Flow, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Time . - -brick:Exhaust_Air_Flow_Proportional_Band_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Exhaust Air Flow Proportional Band Parameter" ; - rdfs:subClassOf brick:Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Band, - tag:Exhaust, - tag:Flow, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional . - -brick:Exhaust_Air_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Exhaust Air Flow Sensor" ; - rdfs:subClassOf brick:Air_Flow_Sensor ; - skos:definition "Measures the rate of flow of exhaust air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Flow, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Exhaust_Air . - -brick:Exhaust_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Exhaust Air Flow Setpoint" ; - rdfs:subClassOf brick:Air_Flow_Setpoint ; - skos:definition "Sets exhaust air flow rate"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Flow, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Exhaust_Air . - -brick:Exhaust_Air_Stack_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Exhaust Air Stack Flow Setpoint" ; - rdfs:subClassOf brick:Exhaust_Air_Flow_Setpoint ; - skos:definition "Sets exhaust air stack flow rate"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stack ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Stack . - -brick:Exhaust_Fan_Disable_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Exhaust Fan Disable Command" ; - rdfs:subClassOf brick:Disable_Command ; - skos:definition "Disables operation of the exhaust fan"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Disable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:deprecation [ brick:deprecatedInVersion "1.3.0" ; - brick:deprecationMigitationRule [ a sh:NodeShape ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ - CONSTRUCT { - $this rdf:type brick:Disable_Command . - } WHERE { - $this rdf:type brick:Exhaust_Fan_Disable_Command . - }""" ; - sh:prefixes rdf:, - brick: ] ; - sh:targetClass brick:Exhaust_Fan_Disable_Command ] ; - brick:deprecationMitigationMessage "Exhaust_Fan_Disable_Command is deprecated as a point name should not include more specific equipment names than top level equipment names" ] ; - brick:hasAssociatedTag tag:Command, - tag:Disable, - tag:Exhaust, - tag:Fan, - tag:Point . - -brick:Exhaust_Fan_Enable_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Exhaust Fan Enable Command" ; - rdfs:subClassOf brick:Enable_Command ; - skos:definition "Enables operation of the exhaust fan"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:deprecation [ brick:deprecatedInVersion "1.3.0" ; - brick:deprecationMigitationRule [ a sh:NodeShape ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ - CONSTRUCT { - $this rdf:type brick:Disable_Command . - } WHERE { - $this rdf:type brick:Exhaust_Fan_Enable_Command . - }""" ; - sh:prefixes rdf:, - brick: ] ; - sh:targetClass brick:Exhaust_Fan_Enable_Command ] ; - brick:deprecationMitigationMessage "Exhaust_Fan_Enable_Command is deprecated as a point name should not include more specific equipment names than top level equipment names" ] ; - brick:hasAssociatedTag tag:Command, - tag:Enable, - tag:Exhaust, - tag:Fan, - tag:Point . - -brick:FCU a owl:Class, - sh:NodeShape ; - rdfs:label "FCU" ; - rdfs:subClassOf brick:Terminal_Unit ; - skos:definition "See Fan_Coil_Unit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:FCU ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:FCU . - -brick:Fan_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Fan Command" ; - rdfs:subClassOf brick:Command ; - skos:definition "Controls properties of fans"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Fan, - tag:Point . - -brick:Fan_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Fan Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Indicates properties of fans"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fan, - tag:Point, - tag:Status . - -brick:Filter_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Filter Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Indicates if a filter needs to be replaced"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Filter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Filter, - tag:Point, - tag:Status . - -brick:Food_Service_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Food Service Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A space used in the production, storage, serving, or cleanup of food and beverages"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Food ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Service ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Food, - tag:Location, - tag:Room, - tag:Service, - tag:Space . - -brick:Formaldehyde_Concentration a brick:Quantity ; - rdfs:label "FormaldehydeConcentration" ; - qudt:applicableUnit unit:PPB, - unit:PPM ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:DimensionlessRatio, - brick:Air_Quality ; - skos:definition "The concentration of formaldehyde in a medium" . - -brick:Frequency_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Frequency Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the frequency of a phenomenon or aspect of a phenomenon, e.g. the frequency of a fan turning"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Frequency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Frequency, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Frequency . - -brick:Fresh_Air_Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Fresh Air Fan" ; - rdfs:subClassOf brick:Fan ; - skos:definition "Fan moving fresh air -- air that is supplied into the building from the outdoors"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fresh ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:deprecation [ brick:deprecatedInVersion "1.3.0" ; - brick:deprecationMigitationRule [ a sh:NodeShape ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ - CONSTRUCT { - $this rdf:type brick:Outside_Fan . - } WHERE { - $this rdf:type brick:Fresh_Air_Fan . - }""" ; - sh:prefixes rdf:, - brick: ] ; - sh:targetClass brick:Fresh_Air_Fan ] ; - brick:deprecationMitigationMessage "Fresh Air Fan is deprecated in favor of Outside Fan because the latter is a more accurate representation" ] ; - brick:hasAssociatedTag tag:Air, - tag:Equipment, - tag:Fan, - tag:Fresh . - -brick:Fuel_Oil a owl:Class, - sh:NodeShape, - brick:Fuel_Oil ; - rdfs:label "Fuel Oil" ; - rdfs:subClassOf brick:Oil ; - skos:definition "Petroleum based oil burned for energy"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fuel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Oil ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Fuel, - tag:Liquid, - tag:Oil . - -brick:Furniture a owl:Class, - sh:NodeShape ; - rdfs:label "Furniture" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Equipment ; - skos:definition "Movable objects intended to support various human activities such as seating, eating and sleeping"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Furniture ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Furniture . - -brick:Gas_Meter a owl:Class, - sh:NodeShape ; - rdfs:label "Gas Meter" ; - rdfs:subClassOf brick:Meter ; - skos:definition "A meter that measures the usage or consumption of gas"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Gas, - tag:Meter . - -brick:Gasoline a owl:Class, - sh:NodeShape, - brick:Gasoline ; - rdfs:label "Gasoline" ; - rdfs:subClassOf brick:Liquid ; - skos:definition "Petroleum derived liquid used as a fuel source"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gasoline ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Gasoline, - tag:Liquid . - -brick:Generation_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Generation Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "A sensor measuring how much something has been generated."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Generation ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Generation, - tag:Point, - tag:Sensor . - -brick:Glycol a owl:Class, - sh:NodeShape, - brick:Glycol ; - rdfs:label "Glycol" ; - rdfs:subClassOf brick:Liquid ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Glycol ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Glycol, - tag:Liquid . - -brick:HVAC_System a owl:Class, - sh:NodeShape ; - rdfs:label "HVAC System" ; - rdfs:subClassOf brick:System ; - skos:definition "See Heating_Ventilation_Air_Conditioning_System"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:HVAC ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:HVAC, - tag:System . - -brick:HX a owl:Class, - sh:NodeShape ; - rdfs:label "HX" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "See Heat_Exchanger"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:HX ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:HX . - -brick:Heat_Exchanger_Discharge_Water_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Heat Exchanger Discharge Water Temperature Sensor" ; - rdfs:subClassOf brick:Water_Temperature_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exchanger ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Exchanger, - tag:Heat, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water . - -brick:Heat_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Heat Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures heat"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Heat, - tag:Point, - tag:Sensor . - -brick:Heating_Demand_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Heating Demand Sensor" ; - rdfs:subClassOf brick:Demand_Sensor ; - skos:definition "Measures the amount of power consumed by a heating process; typically found by multiplying the tonnage of a unit (e.g. RTU) by the efficiency rating in kW/ton"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Demand, - tag:Heat, - tag:Point, - tag:Sensor . - -brick:Heating_Discharge_Air_Temperature_Deadband_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Heating Discharge Air Temperature Deadband Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Deadband_Setpoint, - brick:Discharge_Air_Temperature_Heating_Setpoint ; - skos:definition "Sets the size of a deadband of temperature of heating discharge air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Deadband, - tag:Discharge, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Discharge_Air . - -brick:Heating_Discharge_Air_Temperature_Integral_Time_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Heating Discharge Air Temperature Integral Time Parameter" ; - rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Heat, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Temperature, - tag:Time . - -brick:Heating_Discharge_Air_Temperature_Proportional_Band_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Heating Discharge Air Temperature Proportional Band Parameter" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Band, - tag:Discharge, - tag:Heat, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional, - tag:Temperature . - -brick:High_Discharge_Air_Temperature_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "High Discharge Air Temperature Alarm" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Alarm, - brick:High_Temperature_Alarm ; - skos:definition "An alarm that indicates that discharge air temperature is too high"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Discharge, - tag:High, - tag:Point, - tag:Temperature . - -brick:High_Temperature_Hot_Water_Discharge_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "High Temperature Hot Water Discharge Temperature Sensor" ; - rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:High, - tag:Hot, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water . - -brick:Hot_Deck a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Deck" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "Part of a dual duct air handling unit that supplies heating to a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deck ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deck, - tag:Equipment, - tag:Hot . - -brick:Hot_Water_Differential_Pressure_Load_Shed_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Differential Pressure Load Shed Status" ; - rdfs:subClassOf brick:Differential_Pressure_Load_Shed_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Hot, - tag:Load, - tag:Point, - tag:Pressure, - tag:Shed, - tag:Status, - tag:Water . - -brick:Hot_Water_Differential_Pressure_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Differential Pressure Sensor" ; - rdfs:subClassOf brick:Differential_Pressure_Sensor ; - skos:definition "Measures the difference in water pressure on either side of a hot water valve"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Hot, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Hot_Water . - -brick:Hot_Water_Differential_Pressure_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Differential Pressure Setpoint" ; - rdfs:subClassOf brick:Water_Differential_Pressure_Setpoint ; - skos:definition "Sets the target water differential pressure between an upstream and downstream point in a water pipe or conduit used to carry hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Hot, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Hot_Water . - -brick:Hot_Water_Discharge_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Discharge Flow Sensor" ; - rdfs:subClassOf brick:Discharge_Water_Flow_Sensor ; - skos:definition "Measures the rate of flow of hot discharge water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Flow, - tag:Hot, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Discharge_Hot_Water . - -brick:Hot_Water_Discharge_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Discharge Flow Setpoint" ; - rdfs:subClassOf brick:Discharge_Water_Flow_Setpoint, - brick:Hot_Water_Flow_Setpoint ; - skos:definition "Sets the target flow rate of hot discharge water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Flow, - tag:Hot, - tag:Point, - tag:Setpoint, - tag:Water . - -brick:Hot_Water_Meter a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Meter" ; - rdfs:subClassOf brick:Water_Meter ; - skos:definition "A meter that measures the usage or consumption of hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Hot, - tag:Meter, - tag:Water . - -brick:Hot_Water_Radiator a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Radiator" ; - rdfs:subClassOf brick:Radiator ; - skos:definition "Radiator that uses hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Hot, - tag:Radiator, - tag:Water . - -brick:Hot_Water_Supply_Temperature_High_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Supply Temperature High Reset Setpoint" ; - rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ; - owl:equivalentClass brick:Hot_Water_Discharge_Temperature_High_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:High, - tag:Hot, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Supply, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Hot_Water . - -brick:Hot_Water_Supply_Temperature_Load_Shed_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Supply Temperature Load Shed Status" ; - rdfs:subClassOf brick:Load_Shed_Status ; - owl:equivalentClass brick:Hot_Water_Discharge_Temperature_Load_Shed_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Load, - tag:Point, - tag:Shed, - tag:Status, - tag:Supply, - tag:Temperature, - tag:Water . - -brick:Hot_Water_Supply_Temperature_Low_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Supply Temperature Low Reset Setpoint" ; - rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ; - owl:equivalentClass brick:Hot_Water_Discharge_Temperature_Low_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Low, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Supply, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Hot_Water . - -brick:Hot_Water_System_Enable_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water System Enable Command" ; - rdfs:subClassOf brick:System_Enable_Command ; - skos:definition "Enables operation of the hot water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Enable, - tag:Hot, - tag:Point, - tag:System, - tag:Water . - -brick:Humidity_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Humidity Sensor" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the concentration of water vapor in air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Humidity, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Humidity . - -brick:Ice a owl:Class, - sh:NodeShape, - brick:Ice ; - rdfs:label "Ice" ; - rdfs:subClassOf brick:Solid ; - skos:definition "Water in its solid form"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Ice ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Solid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Ice, - tag:Solid . - -brick:Illuminance a brick:Quantity ; - rdfs:label "Illuminance" ; - qudt:applicableUnit unit:FC, - unit:LUX, - unit:Phot ; - brick:hasQUDTReference qudtqk:Illuminance . - -brick:Illuminance_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Illuminance Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the total luminous flux incident on a surface, per unit area"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Illuminance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Illuminance, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Illuminance . - -brick:Irradiance a brick:Quantity ; - rdfs:label "Irradiance" ; - qudt:applicableUnit unit:W-PER-CentiM2, - unit:W-PER-FT2, - unit:W-PER-IN2, - unit:W-PER-M2 ; - rdfs:isDefinedBy ; - skos:broader qudtqk:PowerPerArea ; - skos:definition "The power per unit area of electromagnetic radiation incident on a surface", - "The power per unit area of electromagnetic radiation incident on a surface"@en . - -brick:Isolation_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Isolation Valve" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "A valve that stops the flow of a fluid, usually for maintenance or safety purposes"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Isolation ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Isolation, - tag:Valve . - -brick:Leak_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Leak Alarm" ; - rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates leaks occured in systems containing fluids"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Leak ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Leak, - tag:Point . - -brick:Leaving_Water_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Leaving Water Temperature Sensor" ; - rdfs:subClassOf brick:Water_Temperature_Sensor ; - skos:definition "Measures the temperature of water leaving a piece of equipment or system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Leaving ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Leaving, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Leaving_Water . - -brick:Linear_Speed a brick:Quantity ; - rdfs:label "Linear_Speed" ; - qudt:applicableUnit unit:FT-PER-HR, - unit:FT-PER-SEC, - unit:KiloM-PER-HR, - unit:KiloM-PER-SEC, - unit:M-PER-HR, - unit:M-PER-SEC, - unit:MI-PER-HR, - unit:MI-PER-SEC ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Speed, - brick:Speed ; - skos:definition "Speed in one dimension (linear)" . - -brick:Liquid_CO2 a owl:Class, - sh:NodeShape, - brick:Liquid_CO2 ; - rdfs:label "Liquid CO2" ; - rdfs:subClassOf brick:Liquid ; - skos:definition "Carbon Dioxide in the liquid phase"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CO2, - tag:Fluid, - tag:Liquid . - -brick:Load_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Load Setpoint" ; - rdfs:subClassOf brick:Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Load, - tag:Point, - tag:Setpoint . - -brick:Load_Shed_Differential_Pressure_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Load Shed Differential Pressure Setpoint" ; - rdfs:subClassOf brick:Differential_Pressure_Setpoint, - brick:Load_Shed_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Load, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Shed . - -brick:Lockout_Temperature_Differential_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Lockout Temperature Differential Parameter" ; - rdfs:subClassOf brick:Temperature_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lockout ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Lockout, - tag:Point, - tag:Sensor, - tag:Temperature . - -brick:Lounge a owl:Class, - sh:NodeShape ; - rdfs:label "Lounge" ; - rdfs:subClassOf brick:Common_Space ; - skos:definition "A room for lesiure activities or relaxing"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Common ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lounge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Common, - tag:Location, - tag:Lounge, - tag:Space . - -brick:Low_Discharge_Air_Flow_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Low Discharge Air Flow Alarm" ; - rdfs:subClassOf brick:Low_Air_Flow_Alarm ; - skos:definition "An alarm that indicates that the discharge air flow is lower than normal."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Discharge, - tag:Flow, - tag:Low, - tag:Point . - -brick:Low_Discharge_Air_Temperature_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Low Discharge Air Temperature Alarm" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Alarm, - brick:Low_Temperature_Alarm ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Discharge, - tag:Low, - tag:Point, - tag:Temperature . - -brick:MAU a owl:Class, - sh:NodeShape ; - rdfs:label "MAU" ; - rdfs:subClassOf brick:AHU ; - owl:equivalentClass brick:Makeup_Air_Unit ; - skos:definition "See Makeup_Air_Unit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:MAU ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:MAU . - -brick:Makeup_Air_Unit a owl:Class, - sh:NodeShape ; - rdfs:label "Makeup Air Unit" ; - rdfs:subClassOf brick:AHU ; - owl:equivalentClass brick:MAU ; - skos:definition "A device designed to condition ventilation air introduced into a space or to replace air exhausted from a process or general area exhaust. The device may be used to prevent negative pressure within buildings or to reduce airborne contaminants in a space."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Makeup ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Equipment, - tag:Makeup, - tag:Unit . - -brick:Makeup_Water a owl:Class, - sh:NodeShape, - brick:Makeup_Water ; - rdfs:label "Makeup Water" ; - rdfs:subClassOf brick:Water ; - skos:definition "Water used used to makeup water loss through leaks, evaporation, or blowdown"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Makeup ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Liquid, - tag:Makeup, - tag:Water . - -brick:Mass a brick:Quantity ; - rdfs:label "Mass" ; - qudt:applicableUnit unit:AMU, - unit:CARAT, - unit:CWT_LONG, - unit:CWT_SHORT, - unit:CentiGM, - unit:DRAM_UK, - unit:DRAM_US, - unit:DWT, - unit:Da, - unit:DecaGM, - unit:DeciGM, - unit:DeciTONNE, - unit:DeciTON_Metric, - unit:EarthMass, - unit:GM, - unit:GRAIN, - unit:HectoGM, - unit:Hundredweight_UK, - unit:Hundredweight_US, - unit:KiloGM, - unit:KiloTONNE, - unit:KiloTON_Metric, - unit:LB, - unit:LB_T, - unit:LunarMass, - unit:MegaGM, - unit:MicroGM, - unit:MilliGM, - unit:NanoGM, - unit:OZ, - unit:OZ_TROY, - unit:Pennyweight, - unit:PicoGM, - unit:PlanckMass, - unit:Quarter_UK, - unit:SLUG, - unit:SolarMass, - unit:Stone_UK, - unit:TONNE, - unit:TON_Assay, - unit:TON_LONG, - unit:TON_Metric, - unit:TON_SHORT, - unit:TON_UK, - unit:TON_US, - unit:U ; - brick:hasQUDTReference qudtqk:Mass . - -brick:Max_Discharge_Air_Static_Pressure_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Max Discharge Air Static Pressure Setpoint Limit" ; - rdfs:subClassOf brick:Max_Limit, - brick:Max_Static_Pressure_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Discharge_Air_Static_Pressure_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static . - -brick:Max_Discharge_Air_Temperature_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Max Discharge Air Temperature Setpoint Limit" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint_Limit, - brick:Max_Temperature_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Discharge_Air_Temperature_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Limit, - tag:Max, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Max_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Max Occupied Cooling Discharge Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Max_Cooling_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Cooling_Discharge_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Discharge, - tag:Flow, - tag:Limit, - tag:Max, - tag:Occupied, - tag:Parameter, - tag:Point, - tag:Setpoint . - -brick:Max_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Max Occupied Heating Discharge Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Max_Heating_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Heating_Discharge_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Heat, - tag:Limit, - tag:Max, - tag:Occupied, - tag:Parameter, - tag:Point, - tag:Setpoint . - -brick:Max_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Max Unoccupied Cooling Discharge Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Max_Cooling_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Cooling_Discharge_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Discharge, - tag:Flow, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Unoccupied . - -brick:Max_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Max Unoccupied Heating Discharge Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Max_Heating_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Heating_Discharge_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Heat, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Unoccupied . - -brick:Mechanical_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Mechanical Room" ; - rdfs:subClassOf brick:Service_Room ; - skos:definition "A class of service rooms where mechanical equipment (HVAC) operates"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mechanical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Service ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Mechanical, - tag:Room, - tag:Service, - tag:Space . - -brick:Medical_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Medical Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A class of rooms used for medical purposes"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Medical, - tag:Room, - tag:Space . - -brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Medium Temperature Hot Water Differential Pressure Load Shed Status" ; - rdfs:subClassOf brick:Differential_Pressure_Load_Shed_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Load, - tag:Medium, - tag:Point, - tag:Pressure, - tag:Shed, - tag:Status, - tag:Temperature . - -brick:Medium_Temperature_Hot_Water_Discharge_Temperature_High_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Medium Temperature Hot Water Discharge Temperature High Reset Setpoint" ; - rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_High_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:High, - tag:Hot, - tag:Medium, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Temperature, - tag:Water . - -brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Load_Shed_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Medium Temperature Hot Water Discharge Temperature Load Shed Setpoint" ; - rdfs:subClassOf brick:Load_Shed_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Load, - tag:Medium, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Shed, - tag:Supply, - tag:Temperature, - tag:Water . - -brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Load_Shed_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Medium Temperature Hot Water Discharge Temperature Load Shed Status" ; - rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Load_Shed_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Hot, - tag:Load, - tag:Medium, - tag:Point, - tag:Shed, - tag:Status, - tag:Temperature, - tag:Water . - -brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Low_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Medium Temperature Hot Water Discharge Temperature Low Reset Setpoint" ; - rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Low_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Hot, - tag:Low, - tag:Medium, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Temperature, - tag:Water . - -brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Medium Temperature Hot Water Discharge Temperature Sensor" ; - rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Medium ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Hot, - tag:Medium, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water . - -brick:Methane_Concentration a brick:Quantity ; - rdfs:label "MethaneConcentration" ; - qudt:applicableUnit unit:PPB, - unit:PPM ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:DimensionlessRatio, - brick:Air_Quality ; - skos:definition "The concentration of methane in a medium" . - -brick:Min_Discharge_Air_Static_Pressure_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Min Discharge Air Static Pressure Setpoint Limit" ; - rdfs:subClassOf brick:Min_Limit, - brick:Min_Static_Pressure_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Discharge_Air_Static_Pressure_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static . - -brick:Min_Discharge_Air_Temperature_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Min Discharge Air Temperature Setpoint Limit" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint_Limit, - brick:Min_Temperature_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Discharge_Air_Temperature_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Limit, - tag:Min, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Min_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Min Occupied Cooling Discharge Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Min_Cooling_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Cooling_Discharge_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Discharge, - tag:Flow, - tag:Limit, - tag:Min, - tag:Occupied, - tag:Parameter, - tag:Point, - tag:Setpoint . - -brick:Min_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Min Occupied Heating Discharge Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Min_Heating_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Heating_Discharge_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Heat, - tag:Limit, - tag:Min, - tag:Occupied, - tag:Parameter, - tag:Point, - tag:Setpoint . - -brick:Min_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Min Unoccupied Cooling Discharge Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Min_Cooling_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Cooling_Discharge_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Discharge, - tag:Flow, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Unoccupied . - -brick:Min_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Min Unoccupied Heating Discharge Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Min_Heating_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Heating_Discharge_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Heat, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Unoccupied . - -brick:Motion_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Motion Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Detects the presence of motion in some area"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Motion ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Motion, - tag:Point, - tag:Sensor . - -brick:NO2_Concentration a brick:Quantity ; - rdfs:label "PM10Concentration" ; - qudt:applicableUnit unit:PPB, - unit:PPM ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader brick:Air_Quality ; - skos:definition "The concentration of nitrogen dioxide in a medium" . - -brick:NVR a owl:Class, - sh:NodeShape ; - rdfs:label "NVR" ; - rdfs:subClassOf brick:Video_Surveillance_Equipment ; - owl:equivalentClass brick:Network_Video_Recorder ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:NVR ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Security ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Surveillance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Video ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:NVR, - tag:Security, - tag:Surveillance, - tag:Video . - -brick:Network_Video_Recorder a owl:Class, - sh:NodeShape ; - rdfs:label "Network Video Recorder" ; - rdfs:subClassOf brick:Video_Surveillance_Equipment ; - owl:equivalentClass brick:NVR ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:NVR ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Network ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Recorder ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Security ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Video ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:NVR, - tag:Network, - tag:Recorder, - tag:Security, - tag:Video . - -brick:Occupancy_Count a brick:Quantity ; - rdfs:label "Occupancy_Count" ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Dimensionless, - brick:Occupancy ; - skos:definition "Number of people in an area", - "Number of people in an area"@en . - -brick:Occupancy_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Occupancy Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Detects occupancy of some space or area"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Occupancy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Occupancy, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Occupancy . - -brick:Occupancy_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Occupancy Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Indicates if a room or space is occupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Occupancy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Occupancy, - tag:Point, - tag:Status . - -brick:Occupied_Cooling_Discharge_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Occupied Cooling Discharge Air Flow Setpoint" ; - rdfs:subClassOf brick:Cooling_Discharge_Air_Flow_Setpoint, - brick:Occupied_Discharge_Air_Flow_Setpoint ; - skos:definition "Sets discharge air flow for cooling when occupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Discharge, - tag:Flow, - tag:Occupied, - tag:Point, - tag:Setpoint . - -brick:Occupied_Discharge_Air_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Occupied Discharge Air Temperature Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint, - brick:Occupied_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Occupied_Heating_Discharge_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Occupied Heating Discharge Air Flow Setpoint" ; - rdfs:subClassOf brick:Heating_Discharge_Air_Flow_Setpoint, - brick:Occupied_Discharge_Air_Flow_Setpoint ; - skos:definition "Sets discharge air flow for heating when occupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Heat, - tag:Occupied, - tag:Point, - tag:Setpoint . - -brick:Occupied_Load_Shed_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Occupied Load Shed Command" ; - rdfs:subClassOf brick:Load_Shed_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Load, - tag:Occupied, - tag:Point, - tag:Shed . - -brick:Operating_Mode_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Operating Mode Status" ; - rdfs:subClassOf brick:Mode_Status ; - skos:definition "Indicates the current operating mode of a system, device or control loop"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Operating ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Mode, - tag:Operating, - tag:Point, - tag:Status . - -brick:Outside_Air_Temperature_Enable_Differential_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Outside Air Temperature Enable Differential Sensor" ; - rdfs:subClassOf brick:Outside_Air_Temperature_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Enable, - tag:Outside, - tag:Point, - tag:Sensor, - tag:Temperature . - -brick:Override_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Override Command" ; - rdfs:subClassOf brick:Command ; - skos:definition "Controls or reports whether or not a device or control loop is in 'override'"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Override ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Override, - tag:Point . - -brick:Ozone_Concentration a brick:Quantity ; - rdfs:label "OzoneConcentration" ; - qudt:applicableUnit unit:PPB, - unit:PPM ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:DimensionlessRatio, - brick:Air_Quality ; - skos:definition "The concentration of ozone in a medium" . - -brick:PM10_Concentration a brick:Quantity ; - rdfs:label "PM10Concentration" ; - qudt:applicableUnit unit:MicroGM-PER-M3, - unit:PPB, - unit:PPM ; - rdfs:isDefinedBy ; - skos:broader brick:Air_Quality ; - skos:definition "The concentration of particulates with diameter of 10 microns or less in air" . - -brick:PM10_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "PM10 Sensor" ; - rdfs:subClassOf brick:Particulate_Matter_Sensor ; - skos:definition "Detects matter of size 10 microns"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Matter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PM10 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Particulate ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Matter, - tag:PM10, - tag:Particulate, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:PM10_Concentration ; - brick:hasSubstance brick:Air . - -brick:PM1_Concentration a brick:Quantity ; - rdfs:label "PM1Concentration" ; - qudt:applicableUnit unit:MicroGM-PER-M3, - unit:PPB, - unit:PPM ; - rdfs:isDefinedBy ; - skos:broader brick:Air_Quality ; - skos:definition "The concentration of particulates with diameter of 1 microns or less in air" . - -brick:PM1_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "PM1 Sensor" ; - rdfs:subClassOf brick:Particulate_Matter_Sensor ; - skos:definition "Detects matter of size 1 micron"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Matter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PM1 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Particulate ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Matter, - tag:PM1, - tag:Particulate, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:PM1_Concentration ; - brick:hasSubstance brick:Air . - -brick:PM2.5_Concentration a brick:Quantity ; - rdfs:label "PM2.5Concentration" ; - qudt:applicableUnit unit:MicroGM-PER-M3, - unit:PPB, - unit:PPM ; - rdfs:isDefinedBy ; - skos:broader brick:Air_Quality ; - skos:definition "The concentration of particulates with diameter of 2.5 microns or less in air" . - -brick:PM2.5_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "PM2.5 Sensor" ; - rdfs:subClassOf brick:Particulate_Matter_Sensor ; - skos:definition "Detects matter of size 2.5 microns"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Matter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PM2.5 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Particulate ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Matter, - tag:PM2.5, - tag:Particulate, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:PM2.5_Concentration ; - brick:hasSubstance brick:Air . - -brick:PV_Current_Output_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "PV Current Output Sensor" ; - rdfs:subClassOf brick:Current_Output_Sensor ; - skos:definition "See Photovoltaic_Current_Output_Sensor"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Current ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Output ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PV ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Current, - tag:Output, - tag:PV, - tag:Point, - tag:Sensor . - -brick:Peak_Power a brick:Quantity ; - rdfs:label "PeakPower" ; - qudt:applicableUnit unit:KiloW, - unit:MegaW, - unit:MilliW, - unit:W ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Power, - brick:Power ; - skos:definition "Tracks the highest (peak) observed power in some interval", - "Tracks the highest (peak) observed power in some interval"@en . - -brick:Photovoltaic_Array a owl:Class, - sh:NodeShape ; - rdfs:label "Photovoltaic Array" ; - rdfs:subClassOf brick:Collection ; - owl:equivalentClass brick:PV_Array ; - skos:definition "A collection of photovoltaic panels"@en ; - sh:property [ sh:or ( [ sh:class brick:PV_Panel ] ) ; - sh:path brick:hasPart ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Array ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Collection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Photovoltaic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Array, - tag:Collection, - tag:Photovoltaic . - -brick:Potable_Water a owl:Class, - sh:NodeShape, - brick:Potable_Water ; - rdfs:label "Potable Water" ; - rdfs:subClassOf brick:Water ; - skos:definition "Water that is safe to drink"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Potable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Liquid, - tag:Potable, - tag:Water . - -brick:Power_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Power Alarm" ; - rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with electrical power."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Point, - tag:Power . - -brick:Power_Factor a brick:Quantity ; - rdfs:label "Power Factor" ; - qudt:applicableUnit unit:UNITLESS ; - skos:definition "Power Factor, under periodic conditions, is the ratio of the absolute value of the active power (P) to the apparent power (S)."@en ; - brick:hasQUDTReference qudtqk:PowerFactor . - -brick:Precipitation a brick:Quantity ; - rdfs:label "Precipitation" ; - qudt:applicableUnit unit:CentiM, - unit:DeciM, - unit:FT, - unit:IN, - unit:KiloM, - unit:M, - unit:MicroM, - unit:MilliM, - unit:YD ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Length, - brick:Level ; - skos:definition "Amount of atmospheric water vapor fallen including rain, sleet, snow, and hail (https://project-haystack.dev/doc/lib-phScience/precipitation)", - "Amount of atmospheric water vapor fallen including rain, sleet, snow, and hail (https://project-haystack.dev/doc/lib-phScience/precipitation)"@en . - -brick:Preheat_Discharge_Air_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Preheat Discharge Air Temperature Sensor" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Sensor ; - skos:definition "Measures the temperature of discharge air before heating is applied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Preheat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Point, - tag:Preheat, - tag:Sensor, - tag:Temperature . - -brick:Pump a owl:Class, - sh:NodeShape ; - rdfs:label "Pump" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "Machine for imparting energy to a fluid, causing it to do work, drawing a fluid into itself through an entrance port, and forcing the fluid out through an exhaust port."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pump ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Pump . - -brick:RC_Panel a owl:Class, - sh:NodeShape ; - rdfs:label "RC Panel" ; - rdfs:subClassOf brick:Radiant_Panel ; - skos:definition "See Radiant_Ceiling_Panel"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:RC ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Panel, - tag:RC . - -brick:RTU a owl:Class, - sh:NodeShape ; - rdfs:label "RTU" ; - rdfs:subClassOf brick:AHU ; - owl:equivalentClass brick:Rooftop_Unit ; - skos:definition "see Rooftop_Unit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:RTU ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:RTU . - -brick:RVAV a owl:Class, - sh:NodeShape ; - rdfs:label "RVAV" ; - rdfs:subClassOf brick:Variable_Air_Volume_Box ; - skos:definition "See Variable_Air_Volume_Box_With_Reheat"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:RVAV ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:RVAV . - -brick:Radiance a brick:Quantity ; - rdfs:label "Radiance" ; - qudt:applicableUnit unit:W-PER-M2-SR ; - brick:hasQUDTReference qudtqk:Radiance . - -brick:Radioactivity_Concentration_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Radioactivity Concentration Sensor" ; - rdfs:subClassOf brick:Air_Quality_Sensor ; - skos:definition "Measures the concentration of radioactivity"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Concentration ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radioactivity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Concentration, - tag:Point, - tag:Radioactivity, - tag:Sensor ; - brick:hasQuantity brick:Radioactivity_Concentration ; - brick:hasSubstance brick:Air . - -brick:Radon_Concentration a brick:Quantity ; - rdfs:label "RadonConcentration" ; - qudt:applicableUnit unit:BQ-PER-M3 ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:ActivityConcentration, - brick:Radioactivity_Concentration ; - skos:definition "The concentration of radioactivity due to Radon in a medium" . - -brick:Rain_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Rain Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the amount of precipitation fallen"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Rain ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Rain, - tag:Sensor ; - brick:hasQuantity brick:Precipitation . - -brick:Reactive_Energy a brick:Quantity ; - rdfs:label "Reactive_Energy" ; - qudt:applicableUnit unit:KiloV-A_Reactive-HR, - unit:MegaV-A_Reactive-HR, - unit:V-A_Reactive-HR ; - rdfs:isDefinedBy ; - skos:broader brick:Electric_Energy ; - skos:definition "The integral of the reactive power over a time interval" . - -brick:Reactive_Power a brick:Quantity ; - rdfs:label "Reactive Power" ; - qudt:applicableUnit unit:KiloV-A_Reactive, - unit:MegaV-A_Reactive, - unit:V-A_Reactive ; - skos:broader brick:Electric_Power ; - skos:definition "Reactive Power}, for a linear two-terminal element or two-terminal circuit, under sinusoidal conditions, is the quantity equal to the product of the apparent power (S) and the sine of the displacement angle (\\psi). The absolute value of the reactive power is equal to the non-active power. The ISO (and SI) unit for reactive power is the voltampere. The special name var and symbol \\textit{var are given in IEC 60027 1."@en ; - brick:hasQUDTReference qudtqk:ReactivePower . - -brick:Real_Power a brick:Quantity ; - rdfs:label "Real Power" ; - qudt:applicableUnit unit:KiloV-A, - unit:MegaV-A, - unit:V-A ; - owl:sameAs brick:Active_Power ; - skos:broader brick:Electric_Power ; - skos:definition "(Active Power) is, under periodic conditions, the mean value, taken over one period (T), of the instantaneous power (p). In complex notation, (P = Re \\; S), where (S) is (complex power)\"."@en ; - brick:hasQUDTReference qudtqk:ActivePower . - -brick:Region a owl:Class, - sh:NodeShape ; - rdfs:label "Region" ; - rdfs:subClassOf brick:Location ; - skos:definition "A unit of geographic space, usually contigious or somehow related to a geopolitical feature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Region ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Region . - -brick:Rest_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Rest Room" ; - rdfs:subClassOf brick:Room ; - owl:equivalentClass brick:Restroom ; - skos:definition "A room that provides toilets and washbowls. Alternate spelling of Restroom"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Rest ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Rest, - tag:Room, - tag:Space . - -brick:Restroom a owl:Class, - sh:NodeShape ; - rdfs:label "Restroom" ; - rdfs:subClassOf brick:Room ; - owl:equivalentClass brick:Rest_Room ; - skos:definition "A room that provides toilets and washbowls."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Restroom ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Restroom, - tag:Room, - tag:Space . - -brick:Rooftop_Unit a owl:Class, - sh:NodeShape ; - rdfs:label "Rooftop Unit" ; - rdfs:subClassOf brick:AHU ; - owl:equivalentClass brick:RTU ; - skos:definition "Packaged air conditioner mounted on a roof, the conditioned air being discharged directly into the rooms below or through a duct system."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:AHU ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Rooftop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:AHU, - tag:Equipment, - tag:Rooftop . - -brick:Run_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Run Status" ; - rdfs:subClassOf brick:Start_Stop_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Run ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Run, - tag:Status . - -brick:Run_Time_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Run Time Sensor" ; - rdfs:subClassOf brick:Duration_Sensor ; - skos:definition "Measures the duration for which a device was in an active or \"on\" state"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Run ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Run, - tag:Sensor, - tag:Time . - -brick:Security_Service_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Security Service Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A class of spaces used by the security staff of a facility"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Security ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Service ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room, - tag:Security, - tag:Service, - tag:Space . - -brick:Shading_System a owl:Class, - sh:NodeShape ; - rdfs:label "Shading System" ; - rdfs:subClassOf brick:System ; - skos:definition "Devices that can control daylighting through various means"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Shade ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Shade, - tag:System . - -brick:Smoke_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Smoke Alarm" ; - rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with smoke."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Smoke ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Point, - tag:Smoke . - -brick:Solar_Radiance a brick:Quantity ; - rdfs:label "Solar_Radiance" ; - qudt:applicableUnit unit:W-PER-M2-SR ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Radiance, - brick:Radiance ; - skos:definition "The amount of light that passes through or is emitted from the sun and falls within a given solid angle in a specified direction", - "The amount of light that passes through or is emitted from the sun and falls within a given solid angle in a specified direction"@en . - -brick:Solar_Thermal_Collector a owl:Class, - sh:NodeShape ; - rdfs:label "Solar Thermal Collector" ; - rdfs:subClassOf brick:Equipment ; - skos:definition "A type of solar panels that converts solar radiation into thermal energy."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Collector ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Solar ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Thermal ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Collector, - tag:Equipment, - tag:Solar, - tag:Thermal . - -brick:Speed_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Speed Setpoint" ; - rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets speed"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Setpoint, - tag:Speed ; - brick:hasQuantity brick:Speed . - -brick:Speed_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Speed Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Indicates the operating speed of a device or equipment, e.g. fan"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Speed, - tag:Status . - -brick:Standby_Load_Shed_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Standby Load Shed Command" ; - rdfs:subClassOf brick:Load_Shed_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Standby ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Load, - tag:Point, - tag:Shed, - tag:Standby . - -brick:Standby_Unit_On_Off_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Standby Unit On Off Status" ; - rdfs:subClassOf brick:On_Off_Status ; - skos:definition "Indicates the on/off status of a standby unit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Standby ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Off, - tag:On, - tag:Point, - tag:Standby, - tag:Status, - tag:Unit . - -brick:Static_Pressure_Step_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Static Pressure Step Parameter" ; - rdfs:subClassOf brick:Step_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Step ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Parameter, - tag:Point, - tag:Pressure, - tag:Static, - tag:Step . - -brick:Steam a owl:Class, - sh:NodeShape, - brick:Steam ; - rdfs:label "Steam" ; - rdfs:subClassOf brick:Gas ; - skos:definition "water in the vapor phase."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Steam ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Gas, - tag:Steam . - -brick:Steam_Radiator a owl:Class, - sh:NodeShape ; - rdfs:label "Steam Radiator" ; - rdfs:subClassOf brick:Radiator ; - skos:definition "Radiator that uses steam"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Steam ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Radiator, - tag:Steam . - -brick:Storey a owl:Class, - sh:NodeShape ; - rdfs:label "Storey" ; - rdfs:subClassOf brick:Location ; - owl:equivalentClass brick:Floor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Storey ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Storey . - -brick:Supply_Air_Differential_Pressure_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Air Differential Pressure Setpoint" ; - rdfs:subClassOf brick:Air_Differential_Pressure_Setpoint ; - skos:definition "Sets the target air differential pressure between an upstream and downstream point in a supply air duct or conduit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Supply ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Supply_Air . - -brick:Supply_Air_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Air Flow Sensor" ; - rdfs:subClassOf brick:Air_Flow_Sensor ; - owl:equivalentClass brick:Discharge_Air_Flow_Sensor ; - skos:definition "Measures the rate of flow of supply air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Point, - tag:Sensor, - tag:Supply ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Supply_Air . - -brick:Supply_Air_Plenum a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Air Plenum" ; - rdfs:subClassOf brick:Air_Plenum ; - owl:equivalentClass brick:Discharge_Air_Plenum ; - skos:definition "A component of the HVAC the receives air from the air handling unit to distribute to the building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Plenum ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Equipment, - tag:Plenum, - tag:Supply . - -brick:Supply_Air_Static_Pressure_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Air Static Pressure Setpoint" ; - rdfs:subClassOf brick:Static_Pressure_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Static_Pressure_Setpoint ; - skos:definition "Sets static pressure of supply air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static, - tag:Supply ; - brick:hasQuantity brick:Static_Pressure ; - brick:hasSubstance brick:Supply_Air . - -brick:Supply_Air_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Air Temperature Sensor" ; - rdfs:subClassOf brick:Air_Temperature_Sensor ; - owl:equivalentClass brick:Discharge_Air_Temperature_Sensor ; - skos:definition "Measures the temperature of supply air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Sensor, - tag:Supply, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Air . - -brick:Supply_Water_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Water Temperature Sensor" ; - rdfs:subClassOf brick:Water_Temperature_Sensor ; - owl:equivalentClass brick:Discharge_Water_Temperature_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Sensor, - tag:Supply, - tag:Temperature, - tag:Water . - -brick:Switch a owl:Class, - sh:NodeShape ; - rdfs:label "Switch" ; - rdfs:subClassOf brick:Interface ; - skos:definition "A switch used to operate all or part of a lighting installation"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Interface ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Switch ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Interface, - tag:Switch . - -brick:TABS_Panel a owl:Class, - sh:NodeShape ; - rdfs:label "TABS Panel" ; - rdfs:subClassOf brick:Radiant_Panel ; - skos:definition "See Thermally_Activated_Building_System_Panel"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:TABS ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Panel, - tag:TABS . - -brick:TVOC_Concentration a brick:Quantity ; - rdfs:label "TVOCConcentration" ; - qudt:applicableUnit unit:MicroGM-PER-M3, - unit:PPB, - unit:PPM ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:DimensionlessRatio, - brick:Air_Quality ; - skos:definition "The concentration of total volatile organic compounds in air" . - -brick:TVOC_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "TVOC Sensor" ; - rdfs:subClassOf brick:Particulate_Matter_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Matter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Particulate ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:TVOC ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Matter, - tag:Particulate, - tag:Point, - tag:Sensor, - tag:TVOC ; - brick:hasQuantity brick:TVOC_Concentration ; - brick:hasSubstance brick:Air . - -brick:Temperature_Step_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Temperature Step Parameter" ; - rdfs:subClassOf brick:Step_Parameter, - brick:Temperature_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Step ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Parameter, - tag:Point, - tag:Step, - tag:Temperature . - -brick:Thermal_Power_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Thermal Power Sensor" ; - rdfs:subClassOf brick:Power_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Thermal ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Power, - tag:Sensor, - tag:Thermal . - -brick:Torque a brick:Quantity ; - rdfs:label "Torque" ; - qudt:applicableUnit unit:CentiN-M, - unit:DYN-CentiM, - unit:DeciN-M, - unit:J, - unit:KiloGM_F-M, - unit:KiloGM_F-PER-M, - unit:KiloN-M, - unit:LB_F-FT, - unit:LB_F-IN, - unit:MegaN-M, - unit:MicroN-M, - unit:MilliN-M, - unit:N-CentiM, - unit:N-M, - unit:OZ_F-IN ; - skos:definition "In physics, a torque (τ) is a vector that measures the tendency of a force to rotate an object about some axis. The magnitude of a torque is defined as force times its lever arm. Just as a force is a push or a pull, a torque can be thought of as a twist. The SI unit for torque is newton meters ((N m)). In U.S. customary units, it is measured in foot pounds (ft lbf) (also known as \"pounds feet\"). Mathematically, the torque on a particle (which has the position r in some reference frame) can be defined as the cross product: (τ = r x F) where, r is the particle's position vector relative to the fulcrum F is the force acting on the particles, or, more generally, torque can be defined as the rate of change of angular momentum: (τ = dL/dt) where, L is the angular momentum vector t stands for time."@en ; - brick:hasQUDTReference qudtqk:Torque . - -brick:Torque_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Torque Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures torque, the tendency of a force to rotate an object about some axis"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Torque ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Sensor, - tag:Torque ; - brick:hasQuantity brick:Torque . - -brick:Unoccupied_Cooling_Discharge_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Unoccupied Cooling Discharge Air Flow Setpoint" ; - rdfs:subClassOf brick:Cooling_Discharge_Air_Flow_Setpoint, - brick:Unoccupied_Discharge_Air_Flow_Setpoint ; - skos:definition "Sets discharge air flow for cooling when unoccupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Discharge, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Unoccupied . - -brick:Unoccupied_Discharge_Air_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Unoccupied Discharge Air Temperature Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint, - brick:Unoccupied_Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Unoccupied . - -brick:Unoccupied_Heating_Discharge_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Unoccupied Heating Discharge Air Flow Setpoint" ; - rdfs:subClassOf brick:Heating_Discharge_Air_Flow_Setpoint, - brick:Unoccupied_Discharge_Air_Flow_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Unoccupied . - -brick:Unoccupied_Load_Shed_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Unoccupied Load Shed Command" ; - rdfs:subClassOf brick:Load_Shed_Command ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Load, - tag:Point, - tag:Shed, - tag:Unoccupied . - -brick:VAV a owl:Class, - sh:NodeShape ; - rdfs:label "VAV" ; - rdfs:subClassOf brick:Terminal_Unit ; - skos:definition "See Variable_Air_Volume_Box"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:VAV ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:VAV . - -brick:Valve_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Valve Command" ; - rdfs:subClassOf brick:Command ; - skos:definition "Controls or reports the openness of a valve (typically as a proportion of its full range of motion)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Point, - tag:Valve . - -brick:Voltage_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Voltage Alarm" ; - rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates the voltage is not in a normal state."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Voltage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Point, - tag:Voltage . - -brick:Voltage_Imbalance a brick:Quantity ; - rdfs:label "VoltageImbalance" ; - qudt:applicableUnit unit:PERCENT ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Dimensionless ; - skos:definition "The percent deviation from average voltage", - "The percent deviation from average voltage"@en ; - skos:related brick:Voltage . - -brick:Water_Usage_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Water Usage Sensor" ; - rdfs:subClassOf brick:Usage_Sensor ; - skos:definition "Measures the amount of water that is consumed, over some period of time"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Usage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Sensor, - tag:Usage, - tag:Water . - -brick:Wind_Direction a brick:Quantity ; - rdfs:label "Wind_Direction" ; - qudt:applicableUnit unit:ARCMIN, - unit:ARCSEC, - unit:DEG, - unit:GON, - unit:GRAD, - unit:MIL, - unit:MicroRAD, - unit:MilliARCSEC, - unit:MilliRAD, - unit:RAD, - unit:REV ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader brick:Direction ; - skos:definition "Direction of wind relative to North", - "Direction of wind relative to North"@en . - -brick:Wing a owl:Class, - sh:NodeShape ; - rdfs:label "Wing" ; - rdfs:subClassOf brick:Location ; - skos:definition "A wing is part of a building – or any feature of a building – that is subordinate to the main, central structure."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Wing ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Wing . - -brick:aggregationFunction a owl:ObjectProperty . - -brick:aggregationInterval a owl:DatatypeProperty . - -brick:deprecationMigitationRule a owl:ObjectProperty . - -brick:hasAssociatedTag a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Has associated tag" ; - rdfs:domain owl:Class ; - rdfs:range brick:Tag ; - owl:inverseOf brick:isAssociatedWith ; - skos:definition "The class is associated with the given tag"@en . - -brick:hasSubMeter a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "has sub-meter" ; - rdfs:domain brick:Meter ; - rdfs:range brick:Meter ; - owl:inverseOf brick:isSubMeterOf ; - skos:definition "Indicates a submeter of this meter"@en . - -brick:isAssociatedWith a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Is associated with" ; - rdfs:domain brick:Tag ; - rdfs:range owl:Class ; - owl:inverseOf brick:hasAssociatedTag ; - skos:definition "The tag is associated with the given class"@en . - -brick:isLocationOf a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Is location of" ; - rdfs:domain brick:Location ; - owl:inverseOf brick:hasLocation ; - skos:definition "Subject is the physical location encapsulating the object"@en . - -brick:isSubMeterOf a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "is sub-meter of" ; - rdfs:domain brick:Meter ; - rdfs:range brick:Meter ; - owl:inverseOf brick:hasSubMeter ; - skos:definition "Indicates the parent for which this meter is a submeter"@en . - -brick:isTagOf a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Is tag of" ; - rdfs:domain brick:Tag . - -brick:latitude a owl:DatatypeProperty, - owl:ObjectProperty ; - rdfs:label "Latitude" ; - rdfs:subPropertyOf sdo:latitude . - -brick:longitude a owl:DatatypeProperty, - owl:ObjectProperty ; - rdfs:label "Longitude" ; - rdfs:subPropertyOf sdo:longitude . - -brick:thermalTransmittance a brick:EntityProperty ; - rdfs:label "Thermal transmittance" ; - rdfs:range bsh:ThermalTransmittanceShape ; - rdfs:seeAlso "https://www.iso.org/obp/ui/#iso:std:iso:13789:ed-3:v1:en" ; - skos:definition "The area-weighted average heat transfer coefficient (commonly referred to as a U-value)" . - -brick:timestamp a rdf:Property, - owl:DatatypeProperty ; - rdfs:label "Timestamp" ; - rdfs:subPropertyOf s223:hasTimestamp . - -ref:BACnetURI a owl:DatatypeProperty ; - rdfs:label "BACnetURI" ; - rdfs:comment "Clause Q.8 BACnet URI scheme: bacnet:// / [ / [ / ]]" . - -ref:hasIfcProjectReference a owl:ObjectProperty ; - rdfs:label "hasIfcProjectReference" ; - skos:definition "A reference to the IFC Project that defines this entity" . - -ref:hasTimeseriesId a owl:DatatypeProperty ; - rdfs:label "hasTimeseriesId" ; - rdfs:range xsd:string ; - skos:definition "The unique identifier (primary key) for this TimeseriesReference in some database"@en . - -ref:ifcFileLocation a owl:DatatypeProperty ; - rdfs:label "The location of the IFC file defining a project" ; - rdfs:range xsd:string . - -ref:ifcGlobalID a owl:DatatypeProperty ; - rdfs:label "ifcGlobalID" ; - rdfs:range xsd:string ; - skos:definition "The IFC Global ID of the entity" . - -ref:ifcName a owl:DatatypeProperty ; - rdfs:label "ifcName" ; - rdfs:range xsd:string ; - skos:definition "The name of the IFC entity" . - -ref:ifcProject a owl:Class, - sh:NodeShape ; - rdfs:label "IfcProject" ; - sh:property [ sh:datatype xsd:string ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path ref:ifcFileLocation ], - [ sh:datatype xsd:string ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path ref:ifcProjectID ] . - -ref:ifcProjectID a owl:DatatypeProperty ; - rdfs:label "ifcProjectID" ; - rdfs:range xsd:string ; - skos:definition "The IFC ID of the containing project" . - -ref:storedAt a owl:DatatypeProperty ; - rdfs:label "storedAt" ; - rdfs:range xsd:anyURI ; - skos:definition "A reference to where the data for this TimeseriesReference is stored"@en . - -bsh:AggregationShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - skos:definition "Interval expressed in an ISO 8601 Duration string, e.g. RP1D" ; - sh:datatype xsd:string ; - sh:minCount 1 ; - sh:path brick:aggregationInterval ], - [ a sh:PropertyShape ; - skos:definition "The aggregation function applied to data in the interval which produces the value" ; - sh:in ( "max" "min" "count" "mean" "sum" "median" "mode" ) ; - sh:minCount 1 ; - sh:path brick:aggregationFunction ] . - -bsh:AzimuthShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:ARCMIN unit:ARCSEC unit:DEG unit:GON unit:GRAD unit:MIL unit:MIN_Angle unit:MicroRAD unit:MilliARCSEC unit:MilliRAD unit:RAD unit:REV ) ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:maxInclusive 360 ; - sh:minCount 1 ; - sh:minInclusive 0 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . - -bsh:BuildingPrimaryFunctionShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( "Adult Education"^^xsd:string "Ambulatory Surgical Center"^^xsd:string "Aquarium"^^xsd:string "Automobile Dealership"^^xsd:string "Bank Branch"^^xsd:string "Bar/Nightclub"^^xsd:string "Barracks"^^xsd:string "Bowling Alley"^^xsd:string "Casino"^^xsd:string "College/University"^^xsd:string "Convenience Store with Gas Station"^^xsd:string "Convenience Store without Gas Station"^^xsd:string "Convention Center"^^xsd:string "Courthouse"^^xsd:string "Data Center"^^xsd:string "Distribution Center"^^xsd:string "Drinking Water Treatment & Distribution"^^xsd:string "Enclosed Mall"^^xsd:string "Energy/Power Station"^^xsd:string "Fast Food Restaurant"^^xsd:string "Financial Office"^^xsd:string "Fire Station"^^xsd:string "Fitness Center/Health Club/Gym"^^xsd:string "Food Sales"^^xsd:string "Food Service"^^xsd:string "Hospital (General Medical & Surgical)"^^xsd:string "Hotel"^^xsd:string "Ice/Curling Rink"^^xsd:string "Indoor Arena"^^xsd:string "K-12 School"^^xsd:string "Laboratory"^^xsd:string "Library"^^xsd:string "Lifestyle Center"^^xsd:string "Mailing Center/Post Office"^^xsd:string "Manufacturing/Industrial Plant"^^xsd:string "Medical Office"^^xsd:string "Mixed Use Property"^^xsd:string "Movie Theater"^^xsd:string "Multifamily Housing"^^xsd:string "Museum"^^xsd:string "Non-Refrigerated Warehouse"^^xsd:string "Office"^^xsd:string "Other - Education"^^xsd:string "Other - Entertainment/Public Assembly"^^xsd:string "Other - Lodging/Residential"^^xsd:string "Other - Mall"^^xsd:string "Other - Public Services"^^xsd:string "Other - Recreation"^^xsd:string "Other - Restaurant/Bar"^^xsd:string "Other - Services"^^xsd:string "Other - Stadium"^^xsd:string "Other - Technology/Science"^^xsd:string "Other - Utility"^^xsd:string "Other"^^xsd:string "Other/Specialty Hospital"^^xsd:string "Outpatient Rehabilitation/Physical Therapy"^^xsd:string "Parking"^^xsd:string "Performing Arts"^^xsd:string "Personal Services (Health/Beauty, Dry Cleaning, etc)"^^xsd:string "Police Station"^^xsd:string "Pre-school/Daycare"^^xsd:string "Prison/Incarceration"^^xsd:string "Race Track"^^xsd:string "Refrigerated Warehouse"^^xsd:string "Repair Services (Vehicle, Shoe, Locksmith, etc)"^^xsd:string "Residence Hall/Dormitory"^^xsd:string "Restaurant"^^xsd:string "Retail Store"^^xsd:string "Roller Rink"^^xsd:string "Self-Storage Facility"^^xsd:string "Senior Care Community"^^xsd:string "Single Family Home"^^xsd:string "Social/Meeting Hall"^^xsd:string "Stadium (Closed)"^^xsd:string "Stadium (Open)"^^xsd:string "Strip Mall"^^xsd:string "Supermarket/Grocery Store"^^xsd:string "Swimming Pool"^^xsd:string "Transportation Terminal/Station"^^xsd:string "Urgent Care/Clinic/Other Outpatient"^^xsd:string "Veterinary Office"^^xsd:string "Vocational School"^^xsd:string "Wastewater Treatment Plant"^^xsd:string "Wholesale Club/Supercenter"^^xsd:string "Worship Facility"^^xsd:string "Zoo"^^xsd:string ) ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ] . - -bsh:CoolingCapacityShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:TON_FG unit:BTU_IT-PER-HR unit:BTU_TH-PER-HR unit:W ) ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . - -bsh:CoordinateShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:longitude ], - [ a sh:PropertyShape ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:latitude ] . - -bsh:CurrentFlowTypeShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( "AC"^^xsd:string "DC"^^xsd:string ) ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ] . - -bsh:LastKnownValueShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:datatype xsd:dateTime ; - sh:minCount 1 ; - sh:path brick:timestamp ] . - -bsh:PhaseCountShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( "1"^^xsd:string "2"^^xsd:string "3"^^xsd:string "Total"^^xsd:string ) ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ] . - -bsh:PhasesShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( "A"^^xsd:string "B"^^xsd:string "C"^^xsd:string "AB"^^xsd:string "BC"^^xsd:string "AC"^^xsd:string "ABC"^^xsd:string ) ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ] . - -bsh:PowerComplexityShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( "real"^^xsd:string "reactive"^^xsd:string "apparent"^^xsd:string ) ; - sh:minCount 1 ; - sh:path brick:value ] . - -bsh:PowerFlowShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( "import"^^xsd:string "export"^^xsd:string "net"^^xsd:string "absolute"^^xsd:string ) ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ] . - -bsh:TemperatureCoefficientPerDegreeCelsiusShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:PERCENT ) ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ] . - -bsh:TiltShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( unit:ARCMIN unit:ARCSEC unit:DEG unit:GON unit:GRAD unit:MIL unit:MIN_Angle unit:MicroRAD unit:MilliARCSEC unit:MilliRAD unit:RAD unit:REV ) ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ] . - -bsh:VirtualMeterShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:datatype xsd:boolean ; - sh:minCount 1 ; - sh:path brick:value ] . - -bsh:VolumeShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:FT3 unit:M3 ) ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . - -bsh:YearBuiltShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:datatype xsd:nonNegativeInteger ; - sh:minCount 1 ; - sh:path brick:value ] . - -unit:BTU_TH a unit:Unit ; - rdfs:label "British Thermal Unit (Thermochemical Definition)"@en ; - qudt:symbol "Btu_{th}", - "Btu_{th}"^^xsd:string . - -unit:CAL_IT a unit:Unit ; - rdfs:label "International Table calorie"@en . - -unit:CAL_TH a unit:Unit ; - rdfs:label "Thermochemical Calorie"@en ; - qudt:symbol "cal_{th}", - "cal_{th}"^^xsd:string . - -unit:CD a unit:Unit ; - rdfs:label "Candela"@en ; - qudt:symbol "cd", - "cd"^^xsd:string . - -unit:CP a unit:Unit ; - rdfs:label "Candlepower"@en ; - qudt:symbol "cd", - "cd"^^xsd:string . - -unit:GRAIN a unit:Unit ; - rdfs:label "Grain"@en ; - qudt:symbol "gr", - "gr"^^xsd:string . - -unit:GigaHZ a unit:Unit ; - rdfs:label "Gigahertz"@en ; - qudt:symbol "GHz", - "GHz"^^xsd:string . - -unit:GigaJ a unit:Unit ; - rdfs:label "Gigajoule"@en . - -unit:HZ a unit:Unit ; - rdfs:label "Hertz"@en ; - qudt:symbol "Hz", - "Hz"^^xsd:string . - -unit:KiloCAL a unit:Unit ; - rdfs:label "Kilocalorie"@en ; - qudt:symbol "kcal", - "kcal"^^xsd:string . - -unit:KiloHZ a unit:Unit ; - rdfs:label "Kilohertz"@en ; - qudt:symbol "kHz", - "kHz"^^xsd:string . - -unit:KiloJ a unit:Unit ; - rdfs:label "Kilojoule"@en . - -unit:KiloV a unit:Unit ; - rdfs:label "Kilovolt"@en . - -unit:LM a unit:Unit ; - rdfs:label "lumen"@en ; - qudt:symbol "lm", - "lm"^^xsd:string . - -unit:M-PER-SEC a unit:Unit ; - rdfs:label "Meter per Second"@en-us . - -unit:M3-PER-SEC a unit:Unit ; - rdfs:label "Cubic Meter per Second"@en-us . - -unit:MegaHZ a unit:Unit ; - rdfs:label "Megahertz"@en ; - qudt:symbol "MHz", - "MHz"^^xsd:string . - -unit:MegaJ a unit:Unit ; - rdfs:label "Megajoule"@en . - -unit:MegaV a unit:Unit ; - rdfs:label "Megavolt"@en . - -unit:MicroV a unit:Unit ; - rdfs:label "Microvolt"@en . - -unit:MilliV a unit:Unit ; - rdfs:label "Millivolt"@en . - -unit:PlanckVolt a unit:Unit ; - rdfs:label "Planck Volt"@en . - -unit:THM_EEC a unit:Unit ; - rdfs:label "THM_EEC"@en . - -unit:THM_US a unit:Unit ; - rdfs:label "Therm US"@en ; - qudt:symbol "thm", - "thm"^^xsd:string . - -unit:UNITLESS a unit:Unit ; - rdfs:label "Unitless"@en ; - qudt:symbol "U", - "U"^^xsd:string . - -unit:V a unit:Unit ; - rdfs:label "Volt"@en ; - qudt:symbol "V", - "V"^^xsd:string . - -unit:V_Ab a unit:Unit ; - rdfs:label "Abvolt"@en ; - qudt:symbol "abV", - "abV"^^xsd:string . - -unit:V_Stat a unit:Unit ; - rdfs:label "Statvolt"@en ; - qudt:symbol "statV", - "statV"^^xsd:string . - -unit:W-PER-M2-SR a unit:Unit ; - rdfs:label "Watt per Square Meter Steradian"@en-us . - -brick:Active_Power a brick:Quantity ; - rdfs:label "Active Power" ; - qudt:applicableUnit unit:KiloV-A, - unit:MegaV-A, - unit:V-A ; - owl:sameAs brick:Real_Power ; - skos:broader brick:Electric_Power ; - skos:definition "(Active Power) is, under periodic conditions, the mean value, taken over one period (T), of the instantaneous power (p). In complex notation, (P = Re \\; S), where (S) is (complex power)\"."@en ; - brick:hasQUDTReference qudtqk:ActivePower . - -brick:Adjust_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Adjust Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures user-provided adjustment of some value"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Adjust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Adjust, - tag:Point, - tag:Sensor . - -brick:Air_Enthalpy_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Air Enthalpy Sensor" ; - rdfs:subClassOf brick:Enthalpy_Sensor ; - skos:definition "Measures the total heat content of air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enthalpy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Enthalpy, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Enthalpy ; - brick:hasSubstance brick:Air . - -brick:Air_Flow_Demand_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Air Flow Demand Setpoint" ; - rdfs:subClassOf brick:Air_Flow_Setpoint, - brick:Demand_Setpoint ; - skos:definition "Sets the rate of air flow required for a process"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Demand, - tag:Flow, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Air . - -brick:Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Limit, - tag:Parameter, - tag:Point, - tag:Setpoint . - -brick:Air_Grains_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Air Grains Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the mass of water vapor in air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Grains ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Grains, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:GrainsOfMoisture ; - brick:hasSubstance brick:Air . - -brick:Air_Static_Pressure_Step_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Air Static Pressure Step Parameter" ; - rdfs:subClassOf brick:Static_Pressure_Step_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Step ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Static, - tag:Step . - -brick:Air_Temperature_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Air Temperature Setpoint Limit" ; - rdfs:subClassOf brick:Limit, - brick:Temperature_Parameter ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Air_Temperature_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Limit, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Air_Temperature_Step_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Air Temperature Step Parameter" ; - rdfs:subClassOf brick:Temperature_Step_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Step ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Parameter, - tag:Point, - tag:Step, - tag:Temperature . - -brick:Alarm_Sensitivity_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Alarm Sensitivity Parameter" ; - rdfs:subClassOf brick:Parameter ; - skos:definition "A parameter indicates the sensitivity to activate an alarm."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensitivity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Parameter, - tag:Point, - tag:Sensitivity . - -brick:Alarm_Threshold a owl:Class, - sh:NodeShape ; - rdfs:label "Alarm Threshold" ; - rdfs:subClassOf brick:Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Threshold ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Parameter, - tag:Point, - tag:Threshold . - -brick:Angle_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Angle Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measues the planar angle of some phenomenon"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Angle ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Angle, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Angle . - -brick:Boiler a owl:Class, - sh:NodeShape ; - rdfs:label "Boiler" ; - rdfs:subClassOf brick:HVAC_Equipment, - brick:Water_Heater ; - skos:definition "A closed, pressure vessel that uses fuel or electricity for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Boiler ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Boiler, - tag:Equipment . - -brick:Bypass_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Bypass Valve" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "A type of valve installed in a bypass pipeline"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Bypass ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Bypass, - tag:Equipment, - tag:Valve . - -brick:CO2 a owl:Class, - sh:NodeShape, - brick:CO2 ; - rdfs:label "CO2" ; - rdfs:subClassOf brick:Gas ; - skos:definition "Carbon Dioxide in the vapor phase"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CO2, - tag:Fluid, - tag:Gas . - -brick:CRAC a owl:Class, - sh:NodeShape ; - rdfs:label "CRAC" ; - rdfs:subClassOf brick:HVAC_Equipment ; - owl:equivalentClass brick:Computer_Room_Air_Conditioning ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CRAC ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CRAC, - tag:Equipment . - -brick:Chilled_Beam a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Beam" ; - rdfs:subClassOf brick:Terminal_Unit ; - skos:definition "A device with an integrated coil that performs sensible heating of a space via circulation of room air. Chilled Beams are not designed to perform latent cooling; see Induction Units. Despite their name, Chilled Beams may perform heating or cooling of a space depending on their configuration."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Beam ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Beam, - tag:Chilled, - tag:Equipment . - -brick:Chilled_Water_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Water Flow Sensor" ; - rdfs:subClassOf brick:Water_Flow_Sensor ; - skos:definition "Measures the rate of flow in a chilled water circuit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Flow, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Chilled_Water . - -brick:Chilled_Water_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Chilled Water Flow Setpoint" ; - rdfs:subClassOf brick:Water_Flow_Setpoint ; - skos:definition "Sets the target flow rate of chilled water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Chilled_Water . - -brick:Coil a owl:Class, - sh:NodeShape ; - rdfs:label "Coil" ; - rdfs:subClassOf brick:Heat_Exchanger ; - skos:definition "Cooling or heating element made of pipe or tube that may or may not be finned and formed into helical or serpentine shape (ASHRAE Dictionary)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Coil ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Coil, - tag:Equipment . - -brick:Conductivity a brick:Quantity ; - rdfs:label "Conductivity" ; - qudt:applicableUnit unit:DeciS-PER-M, - unit:KiloS-PER-M, - unit:MegaS-PER-M, - unit:MicroS-PER-CentiM, - unit:MicroS-PER-M, - unit:MilliS-PER-CentiM, - unit:MilliS-PER-M, - unit:NanoS-PER-CentiM, - unit:NanoS-PER-M, - unit:PicoS-PER-M, - unit:S-PER-CentiM, - unit:S-PER-M ; - brick:hasQUDTReference qudtqk:Conductivity . - -brick:Cooling_Coil a owl:Class, - sh:NodeShape ; - rdfs:label "Cooling Coil" ; - rdfs:subClassOf brick:Coil ; - skos:definition "A cooling element made of pipe or tube that removes heat from equipment, machines or airflows. Typically filled with either refrigerant or cold water."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Coil ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Coil, - tag:Cool, - tag:Equipment . - -brick:Cooling_Mode_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Cooling Mode Status" ; - rdfs:subClassOf brick:Mode_Status ; - skos:definition "Indicates whether a system, device or control loop is in a cooling mode"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Mode, - tag:Point, - tag:Status . - -brick:Cooling_Supply_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Cooling Supply Air Flow Setpoint" ; - rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; - owl:equivalentClass brick:Cooling_Discharge_Air_Flow_Setpoint ; - skos:definition "Sets supply air flow rate for cooling"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Supply . - -brick:Current_Output_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Current Output Sensor" ; - rdfs:subClassOf brick:Current_Sensor ; - skos:definition "Senses the amperes of electrical current produced as output by a device"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Current ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Output ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Current, - tag:Output, - tag:Point, - tag:Sensor . - -brick:DDAHU a owl:Class, - sh:NodeShape ; - rdfs:label "DDAHU" ; - rdfs:subClassOf brick:AHU ; - owl:equivalentClass brick:Dual_Duct_Air_Handling_Unit ; - skos:definition "See Dual_Duct_Air_Handling_Unit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:DDAHU ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:DDAHU, - tag:Equipment . - -brick:Differential_Temperature_Setpoint a owl:Class ; - rdfs:label "Differential Temperature Setpoint" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Differential_Setpoint ; - skos:definition "A type of Setpoints that is related to the difference between two temperature measurements"@en . - -brick:Discharge_Air_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Flow Sensor" ; - rdfs:subClassOf brick:Air_Flow_Sensor ; - skos:definition "Measures the rate of flow of discharge air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Air_Static_Pressure_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Static Pressure Setpoint" ; - rdfs:subClassOf brick:Static_Pressure_Setpoint ; - skos:definition "Sets static pressure of discharge air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static ; - brick:hasQuantity brick:Static_Pressure ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Air_Temperature_Cooling_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Temperature Cooling Setpoint" ; - rdfs:subClassOf brick:Cooling_Temperature_Setpoint, - brick:Discharge_Air_Temperature_Setpoint ; - skos:definition "Sets temperature of discharge air for cooling"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Discharge, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Discharge_Air_Temperature_Heating_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Temperature Heating Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint, - brick:Heating_Temperature_Setpoint ; - skos:definition "Sets temperature of discharge air for heating"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Discharge_Air_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Temperature Sensor" ; - rdfs:subClassOf brick:Air_Temperature_Sensor ; - skos:definition "Measures the temperature of discharge air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Point, - tag:Sensor, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Condenser_Water a owl:Class, - sh:NodeShape, - brick:Discharge_Condenser_Water ; - rdfs:label "Discharge Condenser Water" ; - rdfs:subClassOf brick:Condenser_Water ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Discharge, - tag:Fluid, - tag:Liquid, - tag:Water . - -brick:Discharge_Water_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Water Temperature Sensor" ; - rdfs:subClassOf brick:Water_Temperature_Sensor ; - skos:definition "Measures the temperature of discharge water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Discharge_Water . - -brick:Distribution_Frame a owl:Class, - sh:NodeShape ; - rdfs:label "Distribution Frame" ; - rdfs:subClassOf brick:Telecom_Room ; - skos:definition "A class of spaces where the cables carrying signals meet and connect, e.g. a wiring closet or a broadcast downlink room"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Distribution ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Frame ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Telecom ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Distribution, - tag:Frame, - tag:Location, - tag:Room, - tag:Space, - tag:Telecom . - -brick:Domestic_Hot_Water_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Domestic Hot Water Temperature Setpoint" ; - rdfs:subClassOf brick:Hot_Water_Temperature_Setpoint, - brick:Water_Temperature_Setpoint ; - skos:definition "Sets temperature of domestic hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Domestic ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Domestic, - tag:Hot, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water . - -brick:Emergency_Power_Off_System_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Emergency Power Off System Status" ; - rdfs:subClassOf brick:Off_Status, - brick:System_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Emergency, - tag:Off, - tag:Point, - tag:Power, - tag:Status, - tag:System . - -brick:Energy_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Energy Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures energy consumption"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Energy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Energy, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Energy . - -brick:Energy_System a owl:Class, - sh:NodeShape ; - rdfs:label "Energy System" ; - rdfs:subClassOf brick:Electrical_System ; - skos:definition "A collection of devices that generates, stores or transports electricity"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Energy ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Energy, - tag:System . - -brick:Exhaust_Air_Static_Pressure_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Exhaust Air Static Pressure Sensor" ; - rdfs:subClassOf brick:Static_Pressure_Sensor ; - skos:definition "The static pressure of air within exhaust regions of an HVAC system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Point, - tag:Pressure, - tag:Sensor, - tag:Static ; - brick:hasQuantity brick:Static_Pressure ; - brick:hasSubstance brick:Exhaust_Air . - -brick:Failure_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Failure Alarm" ; - rdfs:subClassOf brick:Alarm ; - skos:definition "Alarms that indicate the failure of devices, equipment, systems and control loops"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Failure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Failure, - tag:Point . - -brick:Fault_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Fault Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Indicates the presence of a fault in a device, system or control loop"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fault ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fault, - tag:Point, - tag:Status . - -brick:Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Flow Setpoint" ; - rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets flow"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Flow . - -brick:Frequency_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Frequency Command" ; - rdfs:subClassOf brick:Command ; - skos:definition "Controls the frequency of a device's operation (e.g. rotational frequency)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fequency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Fequency, - tag:Point ; - brick:hasQuantity brick:Frequency . - -brick:Fresh_Air_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Fresh Air Setpoint Limit" ; - rdfs:subClassOf brick:Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Fresh_Air_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fresh ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Fresh, - tag:Limit, - tag:Point, - tag:Setpoint . - -brick:Frost a owl:Class, - sh:NodeShape, - brick:Frost ; - rdfs:label "Frost" ; - rdfs:subClassOf brick:Solid ; - skos:definition "frost formed on the cold surface (tubes, plates) of a cooling coil."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Frost ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Solid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Frost, - tag:Solid . - -brick:Hail a owl:Class, - sh:NodeShape, - brick:Hail ; - rdfs:label "Hail" ; - rdfs:subClassOf brick:Solid ; - skos:definition "pellets of frozen rain which fall in showers from cumulonimbus clouds."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hail ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Solid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hail, - tag:Solid . - -brick:Heating_Coil a owl:Class, - sh:NodeShape ; - rdfs:label "Heating Coil" ; - rdfs:subClassOf brick:Coil ; - skos:definition "A heating element typically made of pipe, tube or wire that emits heat. Typically filled with hot water, or, in the case of wire, uses electricity."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Coil ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Coil, - tag:Equipment, - tag:Heat . - -brick:Heating_Mode_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Heating Mode Status" ; - rdfs:subClassOf brick:Mode_Status ; - skos:definition "Indicates whether a system, device or control loop is in a heating mode"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Heat, - tag:Mode, - tag:Point, - tag:Status . - -brick:Heating_Supply_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Heating Supply Air Flow Setpoint" ; - rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; - owl:equivalentClass brick:Heating_Discharge_Air_Flow_Setpoint ; - skos:definition "Sets supply air flow rate for heating"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Heat, - tag:Point, - tag:Setpoint, - tag:Supply . - -brick:Hot_Water_Discharge_Temperature_High_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Discharge Temperature High Reset Setpoint" ; - rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:High, - tag:Hot, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Supply, - tag:Temperature, - tag:Water . - -brick:Hot_Water_Discharge_Temperature_Load_Shed_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Discharge Temperature Load Shed Status" ; - rdfs:subClassOf brick:Load_Shed_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Hot, - tag:Load, - tag:Point, - tag:Shed, - tag:Status, - tag:Temperature, - tag:Water . - -brick:Hot_Water_Discharge_Temperature_Low_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Discharge Temperature Low Reset Setpoint" ; - rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Hot, - tag:Low, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Temperature, - tag:Water . - -brick:Hot_Water_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Flow Sensor" ; - rdfs:subClassOf brick:Water_Flow_Sensor ; - skos:definition "Measures the rate of flow in a hot water circuit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Hot, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Hot_Water . - -brick:Hot_Water_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Flow Setpoint" ; - rdfs:subClassOf brick:Water_Flow_Setpoint ; - skos:definition "Sets the target flow rate of hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Hot, - tag:Point, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Hot_Water . - -brick:Hot_Water_Return_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Return Temperature Sensor" ; - rdfs:subClassOf brick:Return_Water_Temperature_Sensor ; - skos:definition "Measures the temperature of water returned to a hot water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Point, - tag:Return, - tag:Sensor, - tag:Temperature, - tag:Water . - -brick:Hot_Water_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water Valve" ; - rdfs:subClassOf brick:Heating_Valve, - brick:Water_Valve ; - skos:definition "A valve regulating the flow of hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Hot, - tag:Valve, - tag:Water . - -brick:Humidity_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Humidity Alarm" ; - rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with the concentration of water vapor in the air."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Humidity, - tag:Point . - -brick:Imbalance_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Imbalance Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "A sensor which measures difference (imbalance) between phases of an electrical system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Imbalance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Imbalance, - tag:Point, - tag:Sensor . - -brick:Integral_Gain_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Integral Gain Parameter" ; - rdfs:subClassOf brick:Gain_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Gain ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Gain, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point . - -brick:Intercom_Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "Intercom Equipment" ; - rdfs:subClassOf brick:Security_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Intercom ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Security ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Intercom, - tag:Security . - -brick:Interface a owl:Class, - sh:NodeShape ; - rdfs:label "Interface" ; - rdfs:subClassOf brick:Lighting_Equipment ; - skos:definition "A device that provides an occupant control over a lighting system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Interface ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Interface . - -brick:Lighting a owl:Class ; - rdfs:label "Lighting" ; - rdfs:subClassOf brick:Lighting_Equipment . - -brick:Load_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Load Parameter" ; - rdfs:subClassOf brick:Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Load, - tag:Parameter, - tag:Point . - -brick:Lobby a owl:Class, - sh:NodeShape ; - rdfs:label "Lobby" ; - rdfs:subClassOf brick:Common_Space ; - skos:definition "A space just after the entrance to a building or other space of a building, where visitors can wait"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Common ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lobby ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Common, - tag:Lobby, - tag:Location, - tag:Space . - -brick:Low_Air_Flow_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Low Air Flow Alarm" ; - rdfs:subClassOf brick:Air_Flow_Alarm ; - skos:definition "An alarm that indicates that the air flow is lower than normal."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Flow, - tag:Low, - tag:Point . - -brick:Manual_Fire_Alarm_Activation_Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "Manual Fire Alarm Activation Equipment" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Fire_Safety_Equipment ; - skos:definition "A device for manually activating fire alarm"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Activation ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Manual ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Activation, - tag:Alarm, - tag:Equipment, - tag:Fire, - tag:Manual, - tag:Safety . - -brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Max Cooling Supply Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; - owl:equivalentClass brick:Max_Cooling_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Cooling_Supply_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Flow, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Supply . - -brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Max Heating Supply Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; - owl:equivalentClass brick:Max_Heating_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Heating_Supply_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Heat, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Supply . - -brick:Max_Static_Pressure_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Max Static Pressure Setpoint Limit" ; - rdfs:subClassOf brick:Max_Limit, - brick:Static_Pressure_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Static_Pressure_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static . - -brick:Max_Temperature_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Max Temperature Setpoint Limit" ; - rdfs:subClassOf brick:Max_Limit, - brick:Temperature_Parameter ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Temperature_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Max, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Measurable a owl:Class ; - rdfs:label "Measurable" ; - rdfs:subClassOf brick:Class, - brick:Entity . - -brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Min Cooling Supply Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; - owl:equivalentClass brick:Min_Cooling_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Cooling_Supply_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Flow, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Supply . - -brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Min Heating Supply Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; - owl:equivalentClass brick:Min_Heating_Discharge_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Heating_Supply_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Heat, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Supply . - -brick:Min_Static_Pressure_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Min Static Pressure Setpoint Limit" ; - rdfs:subClassOf brick:Min_Limit, - brick:Static_Pressure_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Static_Pressure_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static . - -brick:Min_Temperature_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Min Temperature Setpoint Limit" ; - rdfs:subClassOf brick:Min_Limit, - brick:Temperature_Parameter ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Temperature_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Min, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Motor a owl:Class, - sh:NodeShape ; - rdfs:label "Motor" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Equipment ; - skos:definition "A machine in which power is applied to do work by the conversion of various forms of energy into mechanical force and motion."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Motor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Motor . - -brick:Natural_Gas_Boiler a owl:Class, - sh:NodeShape ; - rdfs:label "Natural Gas Boiler" ; - rdfs:subClassOf brick:Boiler ; - skos:definition "A closed, pressure vessel that uses natural gas for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Boiler ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Natural ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Boiler, - tag:Equipment, - tag:Gas, - tag:Natural . - -brick:Occupied_Mode_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Occupied Mode Status" ; - rdfs:subClassOf brick:Mode_Status ; - skos:definition "Indicates if a system, device or control loop is in \"Occupied\" mode"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Mode, - tag:Occupied, - tag:Point, - tag:Status . - -brick:Occupied_Supply_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Occupied Supply Air Flow Setpoint" ; - rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; - owl:equivalentClass brick:Occupied_Discharge_Air_Flow_Setpoint ; - skos:definition "Sets supply air flow rate when occupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Supply . - -brick:Oil a owl:Class, - sh:NodeShape, - brick:Oil ; - rdfs:label "Oil" ; - rdfs:subClassOf brick:Liquid ; - skos:definition "a viscous liquid derived from petroleum, especially for use as a fuel or lubricant."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Oil ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Liquid, - tag:Oil . - -brick:On_Status a owl:Class, - sh:NodeShape ; - rdfs:label "On Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Indicates if a control loop, relay or equipment is on"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:On, - tag:Point, - tag:Status . - -brick:Outside_Air_Lockout_Temperature_Differential_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Outside Air Lockout Temperature Differential Parameter" ; - rdfs:subClassOf brick:Lockout_Temperature_Differential_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lockout ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Lockout, - tag:Outside, - tag:Parameter, - tag:Point, - tag:Temperature . - -brick:Overridden_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Overridden Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Indicates if the expected operating status of an equipment or control loop has been overridden"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Overridden ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Overridden, - tag:Point, - tag:Status . - -brick:PV_Array a owl:Class, - sh:NodeShape ; - rdfs:label "PV Array" ; - rdfs:subClassOf brick:Collection ; - owl:equivalentClass brick:Photovoltaic_Array ; - sh:property [ sh:or ( [ sh:class brick:PV_Panel ] ) ; - sh:path brick:hasPart ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Array ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Collection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PV ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Array, - tag:Collection, - tag:PV . - -brick:Phasor a brick:Quantity ; - rdfs:label "Phasor" . - -brick:Phasor_Angle a brick:Quantity ; - rdfs:label "PhasorAngle" ; - qudt:applicableUnit unit:ARCMIN, - unit:ARCSEC, - unit:DEG, - unit:GON, - unit:GRAD, - unit:MIL, - unit:MicroRAD, - unit:MilliARCSEC, - unit:MilliRAD, - unit:RAD, - unit:REV ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:PlaneAngle ; - skos:definition "Angle component of a phasor" ; - skos:related brick:Phasor . - -brick:Position_Command a owl:Class, - sh:NodeShape ; - rdfs:label "Position Command" ; - rdfs:subClassOf brick:Command ; - skos:definition "Controls or reports the position of some object"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Position ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Point, - tag:Position ; - brick:hasQuantity brick:Position . - -brick:Position_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Position Limit" ; - rdfs:subClassOf brick:Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Position_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Position ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Point, - tag:Position . - -brick:Power_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Power Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the amount of instantaneous power consumed"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Power, - tag:Sensor ; - brick:hasQuantity brick:Power . - -brick:Pressure_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Pressure Alarm" ; - rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with pressure."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Point, - tag:Pressure . - -brick:Pressure_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Pressure Setpoint" ; - rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets pressure"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Pressure, - tag:Setpoint ; - brick:hasQuantity brick:Pressure . - -brick:Proportional_Gain_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Proportional Gain Parameter" ; - rdfs:subClassOf brick:Gain_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Gain ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Gain, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional . - -brick:Radioactivity_Concentration a brick:Quantity ; - rdfs:label "Radioactivity Concentration" ; - skos:broader brick:Air_Quality . - -brick:Refrigerant a owl:Class, - sh:NodeShape, - brick:Refrigerant ; - rdfs:label "Refrigerant" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Fluid ; - skos:definition "A refrigerant is a working fluid used in the refrigeration cycle of air conditioning systems and heat pumps where in most cases they undergo a repeated phase transition from a liquid to a gas and back again."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Refrigerant ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Refrigerant . - -brick:Return_Air_Temperature_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Return Air Temperature Alarm" ; - rdfs:subClassOf brick:Air_Temperature_Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with the temperature of return air."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Point, - tag:Return, - tag:Temperature . - -brick:Return_Water_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Return Water Temperature Setpoint" ; - rdfs:subClassOf brick:Water_Temperature_Setpoint ; - skos:definition "Sets the temperature of return water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Return, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Return_Water . - -brick:Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Setpoint Limit" ; - rdfs:subClassOf brick:Limit, - brick:Parameter ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Parameter, - tag:Point, - tag:Setpoint . - -brick:Site a owl:Class, - sh:NodeShape ; - rdfs:label "Site" ; - rdfs:subClassOf brick:Location ; - skos:definition "A geographic region containing 0 or more buildings. Typically used as the encapsulating location for a collection of Brick entities through the hasPart/isPartOf relationships"@en ; - sh:property [ sh:or ( [ sh:class brick:Building ] [ sh:class brick:Region ] [ sh:class brick:Site ] [ sh:class brick:Space ] [ sh:class brick:Room ] ) ; - sh:path brick:hasPart ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Site ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Site . - -brick:Smoke_Detection_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Smoke Detection Alarm" ; - rdfs:subClassOf brick:Smoke_Alarm ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Detection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Smoke ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Detection, - tag:Point, - tag:Smoke . - -brick:Speed_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Speed Setpoint Limit" ; - rdfs:subClassOf brick:Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Speed_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Parameter, - tag:Point, - tag:Setpoint, - tag:Speed . - -brick:Static_Pressure_Deadband_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Static Pressure Deadband Setpoint" ; - rdfs:subClassOf brick:Deadband_Setpoint, - brick:Static_Pressure_Setpoint ; - skos:definition "Sets the size of a deadband of static pressure"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deadband, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static ; - brick:hasQuantity brick:Static_Pressure . - -brick:Static_Pressure_Integral_Time_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Static Pressure Integral Time Parameter" ; - rdfs:subClassOf brick:Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Static, - tag:Time . - -brick:Storage_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Storage Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A class of spaces used for storage"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Storage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room, - tag:Space, - tag:Storage . - -brick:Supply_Air_Flow_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Air Flow Reset Setpoint" ; - rdfs:subClassOf brick:Reset_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Flow_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Supply . - -brick:Supply_Air_Temperature_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Air Temperature Alarm" ; - rdfs:subClassOf brick:Air_Temperature_Alarm ; - owl:equivalentClass brick:Discharge_Air_Temperature_Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with the temperature of supply air."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Point, - tag:Supply, - tag:Temperature . - -brick:Supply_Air_Temperature_Deadband_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Air Temperature Deadband Setpoint" ; - rdfs:subClassOf brick:Air_Temperature_Setpoint, - brick:Temperature_Deadband_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Temperature_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of temperature of supply air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Deadband, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Air . - -brick:Supply_Air_Temperature_Proportional_Band_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Air Temperature Proportional Band Parameter" ; - rdfs:subClassOf brick:Proportional_Band_Parameter, - brick:Temperature_Parameter ; - owl:equivalentClass brick:Discharge_Air_Temperature_Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Band, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional, - tag:Supply, - tag:Temperature . - -brick:Supply_Air_Temperature_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Air Temperature Setpoint Limit" ; - rdfs:subClassOf brick:Air_Temperature_Setpoint_Limit ; - owl:equivalentClass brick:Discharge_Air_Temperature_Setpoint_Limit ; - skos:definition "A parameter limiting a Supply_Air_Temperature_Setpoint"@en, - "A parameter that places a lower or upper bound on the range of permitted values of a Supply_Air_Temperature_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Limit, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature . - -brick:Supply_Water_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Water Flow Setpoint" ; - rdfs:subClassOf brick:Water_Flow_Setpoint ; - owl:equivalentClass brick:Discharge_Water_Flow_Setpoint ; - skos:definition "Sets the flow rate of hot supply water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Supply_Water . - -brick:System_Enable_Command a owl:Class, - sh:NodeShape ; - rdfs:label "System Enable Command" ; - rdfs:subClassOf brick:Enable_Command ; - skos:definition "Enables operation of a system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Enable, - tag:Point, - tag:System . - -brick:Temperature_Differential_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Temperature Differential Reset Setpoint" ; - rdfs:subClassOf brick:Differential_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Differential_Temperature . - -brick:Time_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Time Parameter" ; - rdfs:subClassOf brick:PID_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Parameter, - tag:Point, - tag:Time . - -brick:Time_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Time Setpoint" ; - rdfs:subClassOf brick:Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Setpoint, - tag:Time ; - brick:hasQuantity brick:Time . - -brick:Tolerance_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Tolerance Parameter" ; - rdfs:subClassOf brick:Parameter ; - skos:definition "difference between upper and lower limits of size for a given nominal dimension or value."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Tolerance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Parameter, - tag:Point, - tag:Tolerance . - -brick:Unoccupied_Mode_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Unoccupied Mode Status" ; - rdfs:subClassOf brick:Mode_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Mode, - tag:Point, - tag:Status, - tag:Unoccupied . - -brick:Unoccupied_Supply_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Unoccupied Supply Air Flow Setpoint" ; - rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; - owl:equivalentClass brick:Unoccupied_Discharge_Air_Flow_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Unoccupied . - -brick:Variable_Air_Volume_Box a owl:Class, - sh:NodeShape ; - rdfs:label "Variable Air Volume Box" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Terminal_Unit ; - owl:equivalentClass brick:VAV ; - skos:definition "A device that regulates the volume and temperature of air delivered to a zone by opening or closing a damper"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Box ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Variable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Volume ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Box, - tag:Equipment, - tag:Variable, - tag:Volume . - -brick:Water_Differential_Pressure_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Water Differential Pressure Setpoint" ; - rdfs:subClassOf brick:Differential_Pressure_Setpoint ; - skos:definition "Sets the target water differential pressure between an upstream and downstream point in a water pipe or conduit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Water . - -brick:Water_Heater a owl:Class, - sh:NodeShape ; - rdfs:label "Water Heater" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Equipment ; - skos:definition "An apparatus for heating and usually storing hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heater ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Heater, - tag:Water . - -brick:Water_Level_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Water Level Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the height/level of water in some container"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Level, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Level ; - brick:hasSubstance brick:Water . - -brick:Water_Temperature_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Water Temperature Alarm" ; - rdfs:subClassOf brick:Temperature_Alarm, - brick:Water_Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with temperature of water."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Point, - tag:Temperature, - tag:Water . - -brick:Wet_Bulb_Temperature a brick:Quantity ; - rdfs:label "Wet_Bulb_Temperature" ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:K ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Temperature, - brick:Temperature ; - skos:definition "The temperature read by a thermometer covered in water-soaked cloth (wet-bulb thermometer) over which air is passed. A wet-bulb thermometer indicates a temperature close to the true (thermodynamic) wet-bulb temperature. The wet-bulb temperature is the lowest temperature that can be reached under current ambient conditions by the evaporation of water only. DBT is the temperature that is usually thought of as air temperature, and it is the true thermodynamic temperature. It indicates the amount of heat in the air and is directly proportional to the mean kinetic energy of the air molecule. (https://en.wikipedia.org/wiki/Wet-bulb_temperature)", - "The temperature read by a thermometer covered in water-soaked cloth (wet-bulb thermometer) over which air is passed. A wet-bulb thermometer indicates a temperature close to the true (thermodynamic) wet-bulb temperature. The wet-bulb temperature is the lowest temperature that can be reached under current ambient conditions by the evaporation of water only. DBT is the temperature that is usually thought of as air temperature, and it is the true thermodynamic temperature. It indicates the amount of heat in the air and is directly proportional to the mean kinetic energy of the air molecule. (https://en.wikipedia.org/wiki/Wet-bulb_temperature)"@en . - -brick:conversionEfficiency a brick:EntityProperty ; - rdfs:label "Conversion efficiency" ; - rdfs:range bsh:EfficiencyShape ; - skos:definition "The percent efficiency of the conversion process (usually to power or energy) carried out by the entity" . - -brick:deprecatedInVersion a owl:DatatypeProperty . - -brick:deprecation a brick:EntityProperty ; - rdfs:label "Deprecation Notice" ; - rdfs:range brick:DeprecationShape ; - skos:definition "Marks a concept as deprecated" . - -brick:deprecationMitigationMessage a owl:DatatypeProperty . - -brick:lastKnownValue a brick:EntityProperty ; - rdfs:label "Last known value" ; - rdfs:domain brick:Point ; - rdfs:range bsh:LastKnownValueShape ; - skos:definition "The last known value of the Point entity" . - -ref:BACnetReference a owl:Class, - sh:NodeShape ; - rdfs:subClassOf ref:ExternalReference ; - skos:definition "A reference to the BACnet object represented by this entity." ; - sh:or ( [ sh:property [ a sh:PropertyShape ; - sh:datatype xsd:string ; - sh:path bacnet:object-type ], - [ a sh:PropertyShape ; - sh:datatype xsd:string ; - sh:path bacnet:description ], - [ a sh:PropertyShape ; - sh:class bacnet:EngineeringUnitsEnumerationValue ; - sh:maxCount 1 ; - sh:minCount 0 ; - sh:path bacnet:units ], - [ a sh:PropertyShape ; - sh:datatype xsd:string ; - sh:minLength 1 ; - sh:path bacnet:object-name ], - [ a sh:PropertyShape ; - sh:datatype xsd:string ; - sh:minCount 1 ; - sh:path bacnet:object-identifier ], - [ a sh:PropertyShape ; - sh:datatype bacnet:Property ; - sh:defaultValue bacnet:Present_Value ; - sh:path ref:read-property ] ] [ sh:property [ a sh:PropertyShape ; - skos:definition "Clause Q.8 BACnet URI scheme: bacnet:// / [ / [ / ]]" ; - sh:datatype xsd:string ; - sh:path ref:BACnetURI ] ] ) ; - sh:property [ a sh:PropertyShape ; - sh:class bacnet:BACnetDevice ; - sh:minCount 1 ; - sh:path bacnet:objectOf ] . - -ref:IFCReference a owl:Class, - sh:NodeShape ; - rdfs:subClassOf ref:ExternalReference ; - skos:definition "A reference to an entity in an IFC project which may contain additional metadata about this entity." ; - sh:property [ a sh:PropertyShape ; - skos:definition "Name of the entity in IFC" ; - sh:datatype xsd:string ; - sh:path ref:ifcName ], - [ a sh:PropertyShape ; - skos:definition "The global ID of the entity in the IFC project" ; - sh:datatype xsd:string ; - sh:minCount 1 ; - sh:path ref:ifcGlobalID ], - [ a sh:PropertyShape ; - skos:definition "Reference to an IFC Project object, containing the project ID" ; - sh:class ref:ifcProject ; - sh:minCount 1 ; - sh:path ref:hasIfcProjectReference ] . - -bsh:StageShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( 1 2 3 4 ) ; - sh:minCount 1 ; - sh:path brick:value ] . - -bsh:ThermalTransmittanceShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( unit:BTU_IT unit:W-PER-M2-K ) ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ] . - -tag:Ablutions a brick:Tag ; - rdfs:label "Ablutions" . - -tag:Absorption a brick:Tag ; - rdfs:label "Absorption" . - -tag:Acceleration a brick:Tag ; - rdfs:label "Acceleration" . - -tag:Activated a brick:Tag ; - rdfs:label "Activated" . - -tag:Activation a brick:Tag ; - rdfs:label "Activation" . - -tag:Active a brick:Tag ; - rdfs:label "Active" . - -tag:Ammonia a brick:Tag ; - rdfs:label "Ammonia" . - -tag:Atrium a brick:Tag ; - rdfs:label "Atrium" . - -tag:Auditorium a brick:Tag ; - rdfs:label "Auditorium" . - -tag:Auto a brick:Tag ; - rdfs:label "Auto" . - -tag:Availability a brick:Tag ; - rdfs:label "Availability" . - -tag:Azimuth a brick:Tag ; - rdfs:label "Azimuth" . - -tag:Basement a brick:Tag ; - rdfs:label "Basement" . - -tag:Bench a brick:Tag ; - rdfs:label "Bench" . - -tag:Blowdown a brick:Tag ; - rdfs:label "Blowdown" . - -tag:Booster a brick:Tag ; - rdfs:label "Booster" . - -tag:Booth a brick:Tag ; - rdfs:label "Booth" . - -tag:Break a brick:Tag ; - rdfs:label "Break" . - -tag:Breaker a brick:Tag ; - rdfs:label "Breaker" . - -tag:Breakroom a brick:Tag ; - rdfs:label "Breakroom" . - -tag:Broadcast a brick:Tag ; - rdfs:label "Broadcast" . - -tag:Bus a brick:Tag ; - rdfs:label "Bus" . - -tag:Button a brick:Tag ; - rdfs:label "Button" . - -tag:CAV a brick:Tag ; - rdfs:label "CAV" . - -tag:CRAH a brick:Tag ; - rdfs:label "CRAH" . - -tag:Cafeteria a brick:Tag ; - rdfs:label "Cafeteria" . - -tag:Call a brick:Tag ; - rdfs:label "Call" . - -tag:Capacity a brick:Tag ; - rdfs:label "Capacity" . - -tag:Center a brick:Tag ; - rdfs:label "Center" . - -tag:Centrifugal a brick:Tag ; - rdfs:label "Centrifugal" . - -tag:Change a brick:Tag ; - rdfs:label "Change" . - -tag:Code a brick:Tag ; - rdfs:label "Code" . - -tag:Coldest a brick:Tag ; - rdfs:label "Coldest" . - -tag:Communication a brick:Tag ; - rdfs:label "Communication" . - -tag:Compressor a brick:Tag ; - rdfs:label "Compressor" . - -tag:Concessions a brick:Tag ; - rdfs:label "Concessions" . - -tag:Condensate a brick:Tag ; - rdfs:label "Condensate" . - -tag:Condensing a brick:Tag ; - rdfs:label "Condensing" . - -tag:Conference a brick:Tag ; - rdfs:label "Conference" . - -tag:Constant a brick:Tag ; - rdfs:label "Constant" . - -tag:Contact a brick:Tag ; - rdfs:label "Contact" . - -tag:Cooling a brick:Tag ; - rdfs:label "Cooling" . - -tag:Copy a brick:Tag ; - rdfs:label "Copy" . - -tag:Count a brick:Tag ; - rdfs:label "Count" . - -tag:Cubicle a brick:Tag ; - rdfs:label "Cubicle" . - -tag:Curtailment a brick:Tag ; - rdfs:label "Curtailment" . - -tag:Cutout a brick:Tag ; - rdfs:label "Cutout" . - -tag:DDAHU a brick:Tag ; - rdfs:label "DDAHU" . - -tag:DOAS a brick:Tag ; - rdfs:label "DOAS" . - -tag:Dc a brick:Tag ; - rdfs:label "Dc" . - -tag:Deceleration a brick:Tag ; - rdfs:label "Deceleration" . - -tag:Dedicated a brick:Tag ; - rdfs:label "Dedicated" . - -tag:Dehumidification a brick:Tag ; - rdfs:label "Dehumidification" . - -tag:Desk a brick:Tag ; - rdfs:label "Desk" . - -tag:Detention a brick:Tag ; - rdfs:label "Detention" . - -tag:Dimmer a brick:Tag ; - rdfs:label "Dimmer" . - -tag:Disconnect a brick:Tag ; - rdfs:label "Disconnect" . - -tag:Displacement a brick:Tag ; - rdfs:label "Displacement" . - -tag:Dock a brick:Tag ; - rdfs:label "Dock" . - -tag:Drench a brick:Tag ; - rdfs:label "Drench" . - -tag:Driver a brick:Tag ; - rdfs:label "Driver" . - -tag:Dry a brick:Tag ; - rdfs:label "Dry" . - -tag:Dual a brick:Tag ; - rdfs:label "Dual" . - -tag:ESS a brick:Tag ; - rdfs:label "ESS" . - -tag:Econcycle a brick:Tag ; - rdfs:label "Econcycle" . - -tag:Employee a brick:Tag ; - rdfs:label "Employee" . - -tag:Environment a brick:Tag ; - rdfs:label "Environment" . - -tag:Evaporative a brick:Tag ; - rdfs:label "Evaporative" . - -tag:Even a brick:Tag ; - rdfs:label "Even" . - -tag:Exercise a brick:Tag ; - rdfs:label "Exercise" . - -tag:Eye a brick:Tag ; - rdfs:label "Eye" . - -tag:FCU a brick:Tag ; - rdfs:label "FCU" . - -tag:Factor a brick:Tag ; - rdfs:label "Factor" . - -tag:Field a brick:Tag ; - rdfs:label "Field" . - -tag:Final a brick:Tag ; - rdfs:label "Final" . - -tag:First a brick:Tag ; - rdfs:label "First" . - -tag:FirstAid a brick:Tag ; - rdfs:label "FirstAid" . - -tag:Formaldehyde a brick:Tag ; - rdfs:label "Formaldehyde" . - -tag:Freezer a brick:Tag ; - rdfs:label "Freezer" . - -tag:Fuel a brick:Tag ; - rdfs:label "Fuel" . - -tag:Gasoline a brick:Tag ; - rdfs:label "Gasoline" . - -tag:Gatehouse a brick:Tag ; - rdfs:label "Gatehouse" . - -tag:Glycol a brick:Tag ; - rdfs:label "Glycol" . - -tag:Glycool a brick:Tag ; - rdfs:label "Glycool" . - -tag:HX a brick:Tag ; - rdfs:label "HX" . - -tag:Hallway a brick:Tag ; - rdfs:label "Hallway" . - -tag:Handling a brick:Tag ; - rdfs:label "Handling" . - -tag:Hazardous a brick:Tag ; - rdfs:label "Hazardous" . - -tag:Head a brick:Tag ; - rdfs:label "Head" . - -tag:Heat_Sink a brick:Tag ; - rdfs:label "Heat_Sink" . - -tag:Hold a brick:Tag ; - rdfs:label "Hold" . - -tag:Hose a brick:Tag ; - rdfs:label "Hose" . - -tag:Hospitality a brick:Tag ; - rdfs:label "Hospitality" . - -tag:Humidification a brick:Tag ; - rdfs:label "Humidification" . - -tag:Humidify a brick:Tag ; - rdfs:label "Humidify" . - -tag:IDF a brick:Tag ; - rdfs:label "IDF" . - -tag:Induction a brick:Tag ; - rdfs:label "Induction" . - -tag:Information a brick:Tag ; - rdfs:label "Information" . - -tag:Intrusion a brick:Tag ; - rdfs:label "Intrusion" . - -tag:Inverter a brick:Tag ; - rdfs:label "Inverter" . - -tag:Janitor a brick:Tag ; - rdfs:label "Janitor" . - -tag:Jet a brick:Tag ; - rdfs:label "Jet" . - -tag:Kitchen a brick:Tag ; - rdfs:label "Kitchen" . - -tag:Laminar a brick:Tag ; - rdfs:label "Laminar" . - -tag:Last a brick:Tag ; - rdfs:label "Last" . - -tag:Library a brick:Tag ; - rdfs:label "Library" . - -tag:Light a brick:Tag ; - rdfs:label "Light" . - -tag:Loading a brick:Tag ; - rdfs:label "Loading" . - -tag:Locally a brick:Tag ; - rdfs:label "Locally" . - -tag:Louver a brick:Tag ; - rdfs:label "Louver" . - -tag:Lowest a brick:Tag ; - rdfs:label "Lowest" . - -tag:MAU a brick:Tag ; - rdfs:label "MAU" . - -tag:MDF a brick:Tag ; - rdfs:label "MDF" . - -tag:Mail a brick:Tag ; - rdfs:label "Mail" . - -tag:Majlis a brick:Tag ; - rdfs:label "Majlis" . - -tag:Massage a brick:Tag ; - rdfs:label "Massage" . - -tag:Materials a brick:Tag ; - rdfs:label "Materials" . - -tag:Medical a brick:Tag ; - rdfs:label "Medical" . - -tag:Meidcal a brick:Tag ; - rdfs:label "Meidcal" . - -tag:Methane a brick:Tag ; - rdfs:label "Methane" . - -tag:Month a brick:Tag ; - rdfs:label "Month" . - -tag:Motion a brick:Tag ; - rdfs:label "Motion" . - -tag:NO2 a brick:Tag ; - rdfs:label "NO2" . - -tag:Network a brick:Tag ; - rdfs:label "Network" . - -tag:No a brick:Tag ; - rdfs:label "No" . - -tag:Noncondensing a brick:Tag ; - rdfs:label "Noncondensing" . - -tag:Nozzle a brick:Tag ; - rdfs:label "Nozzle" . - -tag:Overload a brick:Tag ; - rdfs:label "Overload" . - -tag:Ozone a brick:Tag ; - rdfs:label "Ozone" . - -tag:PAU a brick:Tag ; - rdfs:label "PAU" . - -tag:PIR a brick:Tag ; - rdfs:label "PIR" . - -tag:Passive a brick:Tag ; - rdfs:label "Passive" . - -tag:Peak a brick:Tag ; - rdfs:label "Peak" . - -tag:Phone a brick:Tag ; - rdfs:label "Phone" . - -tag:Piezoelectric a brick:Tag ; - rdfs:label "Piezoelectric" . - -tag:Play a brick:Tag ; - rdfs:label "Play" . - -tag:PlugStrip a brick:Tag ; - rdfs:label "PlugStrip" . - -tag:Plumbing a brick:Tag ; - rdfs:label "Plumbing" . - -tag:Portfolio a brick:Tag ; - rdfs:label "Portfolio" . - -tag:Potable a brick:Tag ; - rdfs:label "Potable" . - -tag:Prayer a brick:Tag ; - rdfs:label "Prayer" . - -tag:Private a brick:Tag ; - rdfs:label "Private" . - -tag:Production a brick:Tag ; - rdfs:label "Production" . +brick:Motion_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Motion Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Detects the presence of motion in some area"@en . -tag:Protect a brick:Tag ; - rdfs:label "Protect" . +brick:Occupancy_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Occupancy Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Detects occupancy of some space or area"@en . -tag:Pull a brick:Tag ; - rdfs:label "Pull" . +brick:Occupancy_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Occupancy Status" ; + rdfs:subClassOf brick:Status ; + skos:definition "Indicates if a room or space is occupied"@en . -tag:Push a brick:Tag ; - rdfs:label "Push" . +brick:Occupied_Load_Shed_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Occupied Load Shed Command" ; + rdfs:subClassOf brick:Load_Shed_Command . -tag:Quality a brick:Tag ; - rdfs:label "Quality" . +brick:Operating_Mode_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Operating Mode Status" ; + rdfs:subClassOf brick:Mode_Status ; + skos:definition "Indicates the current operating mode of a system, device or control loop"@en . -tag:RC a brick:Tag ; - rdfs:label "RC" . +brick:Outside_Air_Temperature_Enable_Differential_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Outside Air Temperature Enable Differential Sensor" ; + rdfs:subClassOf brick:Outside_Air_Temperature_Sensor . -tag:RTU a brick:Tag ; - rdfs:label "RTU" . +brick:Override_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Override Command" ; + rdfs:subClassOf brick:Command ; + skos:definition "Controls or reports whether or not a device or control loop is in 'override'"@en . -tag:RVAV a brick:Tag ; - rdfs:label "RVAV" . +brick:PM10_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "PM10 Sensor" ; + rdfs:subClassOf brick:Particulate_Matter_Sensor ; + skos:definition "Detects matter of size 10 microns"@en . -tag:Radiance a brick:Tag ; - rdfs:label "Radiance" . +brick:PM1_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "PM1 Sensor" ; + rdfs:subClassOf brick:Particulate_Matter_Sensor ; + skos:definition "Detects matter of size 1 micron"@en . -tag:Radiation a brick:Tag ; - rdfs:label "Radiation" . +brick:PM2.5_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "PM2.5 Sensor" ; + rdfs:subClassOf brick:Particulate_Matter_Sensor ; + skos:definition "Detects matter of size 2.5 microns"@en . -tag:Radioactivity a brick:Tag ; - rdfs:label "Radioactivity" . +brick:Position_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Position Command" ; + rdfs:subClassOf brick:Command ; + skos:definition "Controls or reports the position of some object"@en . -tag:Radon a brick:Tag ; - rdfs:label "Radon" . +brick:Power_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Power Alarm" ; + rdfs:subClassOf brick:Alarm ; + skos:definition "An alarm that indicates the off-normal conditions associated with electrical power."@en . -tag:Rated a brick:Tag ; - rdfs:label "Rated" . +brick:Radioactivity_Concentration_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Radioactivity Concentration Sensor" ; + rdfs:subClassOf brick:Air_Quality_Sensor ; + skos:definition "Measures the concentration of radioactivity"@en . -tag:Reader a brick:Tag ; - rdfs:label "Reader" . +brick:Rain_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Rain Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures the amount of precipitation fallen"@en . -tag:Ready a brick:Tag ; - rdfs:label "Ready" . +brick:Run_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Run Status" ; + rdfs:subClassOf brick:Start_Stop_Status . -tag:Real a brick:Tag ; - rdfs:label "Real" . +brick:Smoke_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Smoke Alarm" ; + rdfs:subClassOf brick:Alarm ; + skos:definition "An alarm that indicates the off-normal conditions associated with smoke."@en . -tag:Reception a brick:Tag ; - rdfs:label "Reception" . +brick:Speed_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Speed Setpoint" ; + rdfs:subClassOf brick:Setpoint ; + skos:definition "Sets speed"@en . -tag:Recorder a brick:Tag ; - rdfs:label "Recorder" . +brick:Standby_Load_Shed_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Standby Load Shed Command" ; + rdfs:subClassOf brick:Load_Shed_Command . -tag:Recovery a brick:Tag ; - rdfs:label "Recovery" . +brick:Standby_Unit_On_Off_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Standby Unit On Off Status" ; + rdfs:subClassOf brick:On_Off_Status ; + skos:definition "Indicates the on/off status of a standby unit"@en . -tag:Refrigerant a brick:Tag ; - rdfs:label "Refrigerant" . +brick:Static_Pressure_Step_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Static Pressure Step Parameter" ; + rdfs:subClassOf brick:Step_Parameter . -tag:Region a brick:Tag ; - rdfs:label "Region" . +brick:Supply_Air_Flow_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Air Flow Sensor" ; + rdfs:subClassOf brick:Air_Flow_Sensor ; + skos:definition "Measures the rate of flow of supply air"@en . -tag:Remotely a brick:Tag ; - rdfs:label "Remotely" . +brick:Supply_Air_Static_Pressure_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Air Static Pressure Setpoint" ; + rdfs:subClassOf brick:Static_Pressure_Setpoint ; + skos:definition "Sets static pressure of supply air"@en . -tag:Request a brick:Tag ; - rdfs:label "Request" . +brick:Supply_Air_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Air Temperature Sensor" ; + rdfs:subClassOf brick:Air_Temperature_Sensor ; + skos:definition "Measures the temperature of supply air"@en . -tag:Required a brick:Tag ; - rdfs:label "Required" . +brick:Supply_Water_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Water Temperature Sensor" ; + rdfs:subClassOf brick:Water_Temperature_Sensor . -tag:Rest a brick:Tag ; - rdfs:label "Rest" . +brick:TVOC_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "TVOC Sensor" ; + rdfs:subClassOf brick:Particulate_Matter_Sensor . -tag:Restroom a brick:Tag ; - rdfs:label "Restroom" . +brick:Temperature_Step_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Temperature Step Parameter" ; + rdfs:subClassOf brick:Step_Parameter, + brick:Temperature_Parameter . -tag:Retail a brick:Tag ; - rdfs:label "Retail" . +brick:Thermal_Power_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Thermal Power Sensor" ; + rdfs:subClassOf brick:Power_Sensor . -tag:Sash a brick:Tag ; - rdfs:label "Sash" . +brick:Torque_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Torque Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures torque, the tendency of a force to rotate an object about some axis"@en . -tag:Schedule a brick:Tag ; - rdfs:label "Schedule" . +brick:Unoccupied_Load_Shed_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Unoccupied Load Shed Command" ; + rdfs:subClassOf brick:Load_Shed_Command . -tag:Seismic a brick:Tag ; - rdfs:label "Seismic" . +brick:Valve_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Valve Command" ; + rdfs:subClassOf brick:Command ; + skos:definition "Controls or reports the openness of a valve (typically as a proportion of its full range of motion)"@en . -tag:Server a brick:Tag ; - rdfs:label "Server" . +brick:Voltage_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Voltage Alarm" ; + rdfs:subClassOf brick:Alarm ; + skos:definition "An alarm that indicates the voltage is not in a normal state."@en . -tag:Shaft a brick:Tag ; - rdfs:label "Shaft" . +brick:Water_Usage_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Water Usage Sensor" ; + rdfs:subClassOf brick:Usage_Sensor ; + skos:definition "Measures the amount of water that is consumed, over some period of time"@en . -tag:Shared a brick:Tag ; - rdfs:label "Shared" . +brick:Air_Enthalpy_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Air Enthalpy Sensor" ; + rdfs:subClassOf brick:Enthalpy_Sensor ; + skos:definition "Measures the total heat content of air"@en . -tag:Short a brick:Tag ; - rdfs:label "Short" . +brick:Air_Flow_Demand_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Air Flow Demand Setpoint" ; + rdfs:subClassOf brick:Air_Flow_Setpoint, + brick:Demand_Setpoint ; + skos:definition "Sets the rate of air flow required for a process"@en . -tag:Shutdown a brick:Tag ; - rdfs:label "Shutdown" . +brick:Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Limit ; + skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Air_Flow_Setpoint."@en . -tag:Shutoff a brick:Tag ; - rdfs:label "Shutoff" . +brick:Air_Grains_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Air Grains Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures the mass of water vapor in air"@en . -tag:Site a brick:Tag ; - rdfs:label "Site" . +brick:Air_Static_Pressure_Step_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Air Static Pressure Step Parameter" ; + rdfs:subClassOf brick:Static_Pressure_Step_Parameter . -tag:Soil a brick:Tag ; - rdfs:label "Soil" . +brick:Air_Temperature_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Air Temperature Setpoint Limit" ; + rdfs:subClassOf brick:Limit, + brick:Temperature_Parameter ; + skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Air_Temperature_Setpoint."@en . -tag:Sports a brick:Tag ; - rdfs:label "Sports" . +brick:Air_Temperature_Step_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Air Temperature Step Parameter" ; + rdfs:subClassOf brick:Temperature_Step_Parameter . -tag:Stages a brick:Tag ; - rdfs:label "Stages" . +brick:Angle_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Angle Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measues the planar angle of some phenomenon"@en . -tag:Staircase a brick:Tag ; - rdfs:label "Staircase" . +brick:Chilled_Water_Flow_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Chilled Water Flow Sensor" ; + rdfs:subClassOf brick:Water_Flow_Sensor ; + skos:definition "Measures the rate of flow in a chilled water circuit"@en . -tag:Storey a brick:Tag ; - rdfs:label "Storey" . +brick:Chilled_Water_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Chilled Water Flow Setpoint" ; + rdfs:subClassOf brick:Water_Flow_Setpoint ; + skos:definition "Sets the target flow rate of chilled water"@en . -tag:Structure a brick:Tag ; - rdfs:label "Structure" . +brick:Cooling_Discharge_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Cooling Discharge Air Flow Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Flow_Setpoint ; + skos:definition "Sets discharge air flow for cooling"@en . -tag:Studio a brick:Tag ; - rdfs:label "Studio" . +brick:Cooling_Supply_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Cooling Supply Air Flow Setpoint" ; + rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; + skos:definition "Sets supply air flow rate for cooling"@en . -tag:Suction a brick:Tag ; - rdfs:label "Suction" . +brick:Current_Output_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Current Output Sensor" ; + rdfs:subClassOf brick:Current_Sensor ; + skos:definition "Senses the amperes of electrical current produced as output by a device"@en . -tag:Switchgear a brick:Tag ; - rdfs:label "Switchgear" . +brick:Discharge_Air_Flow_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Flow Reset Setpoint" ; + rdfs:subClassOf brick:Reset_Setpoint ; + skos:definition "Setpoints used in Reset strategies"@en . -tag:TABS a brick:Tag ; - rdfs:label "TABS" . +brick:Discharge_Air_Temperature_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Temperature Alarm" ; + rdfs:subClassOf brick:Air_Temperature_Alarm ; + skos:definition "An alarm that indicates the off-normal conditions associated with the temperature of discharge air."@en . -tag:TETRA a brick:Tag ; - rdfs:label "TETRA" . +brick:Discharge_Air_Temperature_Deadband_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Temperature Deadband Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint, + brick:Temperature_Deadband_Setpoint ; + skos:definition "Sets the size of a deadband of temperature of discharge air"@en . -tag:Team a brick:Tag ; - rdfs:label "Team" . +brick:Discharge_Air_Temperature_Proportional_Band_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Temperature Proportional Band Parameter" ; + rdfs:subClassOf brick:Proportional_Band_Parameter, + brick:Temperature_Parameter . -tag:Temporary a brick:Tag ; - rdfs:label "Temporary" . +brick:Discharge_Air_Temperature_Reset_Differential_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Temperature Reset Differential Setpoint" ; + rdfs:subClassOf brick:Temperature_Differential_Reset_Setpoint . -tag:Terminal a brick:Tag ; - rdfs:label "Terminal" . +brick:Discharge_Air_Temperature_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Air Temperature Setpoint Limit" ; + rdfs:subClassOf brick:Air_Temperature_Setpoint_Limit ; + skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Discharge_Air_Temperature_Setpoint."@en . -tag:Thermally a brick:Tag ; - rdfs:label "Thermally" . +brick:Discharge_Water_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Water Flow Setpoint" ; + rdfs:subClassOf brick:Water_Flow_Setpoint ; + skos:definition "Sets the target flow rate of discharge water"@en . -tag:Ticketing a brick:Tag ; - rdfs:label "Ticketing" . +brick:Domestic_Hot_Water_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Domestic Hot Water Temperature Setpoint" ; + rdfs:subClassOf brick:Hot_Water_Temperature_Setpoint, + brick:Water_Temperature_Setpoint ; + skos:definition "Sets temperature of domestic hot water"@en . -tag:Timer a brick:Tag ; - rdfs:label "Timer" . +brick:Emergency_Power_Off_System_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Emergency Power Off System Status" ; + rdfs:subClassOf brick:Off_Status, + brick:System_Status . -tag:Touchpanel a brick:Tag ; - rdfs:label "Touchpanel" . +brick:Exhaust_Air_Static_Pressure_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Exhaust Air Static Pressure Sensor" ; + rdfs:subClassOf brick:Static_Pressure_Sensor ; + skos:definition "The static pressure of air within exhaust regions of an HVAC system"@en . -tag:Trace a brick:Tag ; - rdfs:label "Trace" . +brick:Failure_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Failure Alarm" ; + rdfs:subClassOf brick:Alarm ; + skos:definition "Alarms that indicate the failure of devices, equipment, systems and control loops"@en . -tag:Transfer a brick:Tag ; - rdfs:label "Transfer" . +brick:Fault_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Fault Status" ; + rdfs:subClassOf brick:Status ; + skos:definition "Indicates the presence of a fault in a device, system or control loop"@en . -tag:Tunnel a brick:Tag ; - rdfs:label "Tunnel" . +brick:Flow_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Flow Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures the rate of flow of some substance"@en . -tag:VAV a brick:Tag ; - rdfs:label "VAV" . +brick:Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Flow Setpoint" ; + rdfs:subClassOf brick:Setpoint ; + skos:definition "Sets flow"@en . -tag:Vent a brick:Tag ; - rdfs:label "Vent" . +brick:Frequency_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Frequency Command" ; + rdfs:subClassOf brick:Command ; + skos:definition "Controls the frequency of a device's operation (e.g. rotational frequency)"@en . -tag:Visitor a brick:Tag ; - rdfs:label "Visitor" . +brick:Fresh_Air_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Fresh Air Setpoint Limit" ; + rdfs:subClassOf brick:Limit ; + skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Fresh_Air_Setpoint."@en . -tag:Wardrobe a brick:Tag ; - rdfs:label "Wardrobe" . +brick:Heating_Discharge_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Heating Discharge Air Flow Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Flow_Setpoint ; + skos:definition "Sets discharge air flow for heating"@en . -tag:Warm a brick:Tag ; - rdfs:label "Warm" . +brick:Heating_Supply_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Heating Supply Air Flow Setpoint" ; + rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; + skos:definition "Sets supply air flow rate for heating"@en . -tag:Warmest a brick:Tag ; - rdfs:label "Warmest" . +brick:Hot_Water_Flow_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Flow Sensor" ; + rdfs:subClassOf brick:Water_Flow_Sensor ; + skos:definition "Measures the rate of flow in a hot water circuit"@en . -tag:Waste a brick:Tag ; - rdfs:label "Waste" . +brick:Hot_Water_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Flow Setpoint" ; + rdfs:subClassOf brick:Water_Flow_Setpoint ; + skos:definition "Sets the target flow rate of hot water"@en . -tag:Weather a brick:Tag ; - rdfs:label "Weather" . +brick:Hot_Water_Return_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Hot Water Return Temperature Sensor" ; + rdfs:subClassOf brick:Return_Water_Temperature_Sensor ; + skos:definition "Measures the temperature of water returned to a hot water system"@en . -tag:Window a brick:Tag ; - rdfs:label "Window" . +brick:Humidity_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Humidity Alarm" ; + rdfs:subClassOf brick:Alarm ; + skos:definition "An alarm that indicates the off-normal conditions associated with the concentration of water vapor in the air."@en . -tag:Wing a brick:Tag ; - rdfs:label "Wing" . +brick:Imbalance_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Imbalance Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "A sensor which measures difference (imbalance) between phases of an electrical system"@en . -tag:Workshop a brick:Tag ; - rdfs:label "Workshop" . +brick:Integral_Gain_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Integral Gain Parameter" ; + rdfs:subClassOf brick:Gain_Parameter . -tag:Zenith a brick:Tag ; - rdfs:label "Zenith" . +brick:Load_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Load Parameter" ; + rdfs:subClassOf brick:Parameter . -unit:BAR-L-PER-SEC a unit:Unit ; - rdfs:label "Bar Liter Per Second"@en-us . +brick:Low_Air_Flow_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Low Air Flow Alarm" ; + rdfs:subClassOf brick:Air_Flow_Alarm ; + skos:definition "An alarm that indicates that the air flow is lower than normal."@en . -unit:BAR-M3-PER-SEC a unit:Unit ; - rdfs:label "Bar Cubic Meter Per Second"@en-us . +brick:Max_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Max Cooling Discharge Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places an upper bound on the range of permitted values of a Cooling_Discharge_Air_Flow_Setpoint."@en . -unit:BTU_IT-PER-SEC a unit:Unit ; - rdfs:label "BTU per Second"@en . +brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Max Cooling Supply Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places an upper bound on the range of permitted values of a Cooling_Supply_Air_Flow_Setpoint."@en . -unit:ERG-PER-SEC a unit:Unit ; - rdfs:label "Erg per Second"@en . +brick:Max_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Max Heating Discharge Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places an upper bound on the range of permitted values of a Heating_Discharge_Air_Flow_Setpoint."@en . -unit:FT-LB_F-PER-HR a unit:Unit ; - rdfs:label "Foot Pound Force per Hour"@en . +brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Max Heating Supply Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places an upper bound on the range of permitted values of a Heating_Supply_Air_Flow_Setpoint."@en . -unit:FT-LB_F-PER-MIN a unit:Unit ; - rdfs:label "Foot Pound Force per Minute"@en . +brick:Max_Static_Pressure_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Max Static Pressure Setpoint Limit" ; + rdfs:subClassOf brick:Max_Limit, + brick:Static_Pressure_Setpoint_Limit ; + skos:definition "A parameter that places an upper bound on the range of permitted values of a Static_Pressure_Setpoint."@en . -unit:FT-LB_F-PER-SEC a unit:Unit ; - rdfs:label "Foot Pound Force per Second"@en . +brick:Max_Temperature_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Max Temperature Setpoint Limit" ; + rdfs:subClassOf brick:Max_Limit, + brick:Temperature_Parameter ; + skos:definition "A parameter that places an upper bound on the range of permitted values of a Temperature_Setpoint."@en . -unit:GigaW a unit:Unit ; - rdfs:label "Gigawatt"@en . +brick:Min_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Min Cooling Discharge Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places a lower bound on the range of permitted values of a Cooling_Discharge_Air_Flow_Setpoint."@en . -unit:HP a unit:Unit ; - rdfs:label "Horsepower"@en ; - qudt:symbol "HP", - "HP"^^xsd:string . +brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Min Cooling Supply Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places a lower bound on the range of permitted values of a Cooling_Supply_Air_Flow_Setpoint."@en . -unit:HP-PER-M a unit:Unit ; - rdfs:label "Horsepower Metric"@en . +brick:Min_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Min Heating Discharge Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places a lower bound on the range of permitted values of a Heating_Discharge_Air_Flow_Setpoint."@en . -unit:HP-PER-V a unit:Unit ; - rdfs:label "Horsepower Electric"@en . +brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Min Heating Supply Air Flow Setpoint Limit" ; + rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; + skos:definition "A parameter that places a lower bound on the range of permitted values of a Heating_Supply_Air_Flow_Setpoint."@en . -unit:HP_Boiler a unit:Unit ; - rdfs:label "Boiler Horsepower"@en . +brick:Min_Static_Pressure_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Min Static Pressure Setpoint Limit" ; + rdfs:subClassOf brick:Min_Limit, + brick:Static_Pressure_Setpoint_Limit ; + skos:definition "A parameter that places a lower bound on the range of permitted values of a Static_Pressure_Setpoint."@en . -unit:HP_Brake a unit:Unit ; - rdfs:label "Horsepower (brake)"@en . +brick:Min_Temperature_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Min Temperature Setpoint Limit" ; + rdfs:subClassOf brick:Min_Limit, + brick:Temperature_Parameter ; + skos:definition "A parameter that places a lower bound on the range of permitted values of a Temperature_Setpoint."@en . -unit:HP_Electric a unit:Unit ; - rdfs:label "Horsepower (electric)"@en . +brick:Occupied_Discharge_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Occupied Discharge Air Flow Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Flow_Setpoint ; + skos:definition "Sets discharge air flow when occupied"@en . -unit:HP_Metric a unit:Unit ; - rdfs:label "Horsepower (metric)"@en . +brick:Occupied_Supply_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Occupied Supply Air Flow Setpoint" ; + rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; + skos:definition "Sets supply air flow rate when occupied"@en . -unit:J-PER-HR a unit:Unit ; - rdfs:label "Joule Per Hour"@en . +brick:On_Status a owl:Class, + sh:NodeShape ; + rdfs:label "On Status" ; + rdfs:subClassOf brick:Status ; + skos:definition "Indicates if a control loop, relay or equipment is on"@en . -unit:J-PER-SEC a unit:Unit ; - rdfs:label "Joule Per Second"@en . +brick:Outside_Air_Lockout_Temperature_Differential_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Outside Air Lockout Temperature Differential Parameter" ; + rdfs:subClassOf brick:Lockout_Temperature_Differential_Parameter . -unit:KiloCAL-PER-MIN a unit:Unit ; - rdfs:label "Kilocalorie Per Minute"@en . +brick:Overridden_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Overridden Status" ; + rdfs:subClassOf brick:Status ; + skos:definition "Indicates if the expected operating status of an equipment or control loop has been overridden"@en . -unit:KiloCAL-PER-SEC a unit:Unit ; - rdfs:label "Kilocalorie Per Second"@en . +brick:Position_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Position Limit" ; + rdfs:subClassOf brick:Limit ; + skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Position_Setpoint."@en . -unit:KiloV-A-HR a unit:Unit ; - rdfs:label "Kilovolt Ampere Hour"@en . +brick:Power_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Power Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures the amount of instantaneous power consumed"@en . -unit:KiloV-A_Reactive-HR a unit:Unit ; - rdfs:label "Kilovolt Ampere Reactive Hour"@en . +brick:Pressure_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Pressure Alarm" ; + rdfs:subClassOf brick:Alarm ; + skos:definition "An alarm that indicates the off-normal conditions associated with pressure."@en . -unit:KiloW-HR a unit:Unit ; - rdfs:label "Kilowatthour"@en . +brick:Pressure_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Pressure Setpoint" ; + rdfs:subClassOf brick:Setpoint ; + skos:definition "Sets pressure"@en . -unit:MIN_Angle a unit:Unit ; - rdfs:label "Minute Angle"@en ; - qudt:symbol "'", - "'"^^xsd:string . +brick:Proportional_Gain_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Proportional Gain Parameter" ; + rdfs:subClassOf brick:Gain_Parameter . -unit:MegaJ-PER-SEC a unit:Unit ; - rdfs:label "Megajoule Per Second"@en . +brick:Return_Air_Temperature_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Return Air Temperature Alarm" ; + rdfs:subClassOf brick:Air_Temperature_Alarm ; + skos:definition "An alarm that indicates the off-normal conditions associated with the temperature of return air."@en . -unit:MegaPA-L-PER-SEC a unit:Unit ; - rdfs:label "Megapascal Liter Per Second"@en-us . +brick:Return_Water_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Return Water Temperature Setpoint" ; + rdfs:subClassOf brick:Water_Temperature_Setpoint ; + skos:definition "Sets the temperature of return water"@en . -unit:MegaPA-M3-PER-SEC a unit:Unit ; - rdfs:label "Megapascal Cubic Meter Per Second"@en-us . +brick:Smoke_Detection_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Smoke Detection Alarm" ; + rdfs:subClassOf brick:Smoke_Alarm . -unit:MegaV-A-HR a unit:Unit ; - rdfs:label "Megavolt Ampere Hour"@en . +brick:Speed_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Speed Setpoint Limit" ; + rdfs:subClassOf brick:Limit ; + skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Speed_Setpoint."@en . -unit:MegaV-A_Reactive-HR a unit:Unit ; - rdfs:label "Megavolt Ampere Reactive Hour"@en . +brick:Static_Pressure_Deadband_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Static Pressure Deadband Setpoint" ; + rdfs:subClassOf brick:Deadband_Setpoint, + brick:Static_Pressure_Setpoint ; + skos:definition "Sets the size of a deadband of static pressure"@en . -unit:MegaW-HR a unit:Unit ; - rdfs:label "Megawatt Hour"@en . +brick:Static_Pressure_Integral_Time_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Static Pressure Integral Time Parameter" ; + rdfs:subClassOf brick:Integral_Time_Parameter . -unit:MicroW a unit:Unit ; - rdfs:label "Microwatt"@en . +brick:Supply_Air_Flow_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Air Flow Reset Setpoint" ; + rdfs:subClassOf brick:Reset_Setpoint . -unit:MilliBAR-L-PER-SEC a unit:Unit ; - rdfs:label "Millibar Liter Per Second"@en-us . +brick:Supply_Air_Temperature_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Air Temperature Alarm" ; + rdfs:subClassOf brick:Air_Temperature_Alarm ; + skos:definition "An alarm that indicates the off-normal conditions associated with the temperature of supply air."@en . -unit:MilliBAR-M3-PER-SEC a unit:Unit ; - rdfs:label "Millibar Cubic Meter Per Second"@en-us . +brick:Supply_Air_Temperature_Deadband_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Air Temperature Deadband Setpoint" ; + rdfs:subClassOf brick:Air_Temperature_Setpoint, + brick:Temperature_Deadband_Setpoint ; + skos:definition "Sets the size of a deadband of temperature of supply air"@en . -unit:N-M a unit:Unit ; - rdfs:label "Newton Meter"@en-us ; - qudt:symbol "J"^^xsd:string, - "N m", - "N m"^^xsd:string . +brick:Supply_Air_Temperature_Proportional_Band_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Air Temperature Proportional Band Parameter" ; + rdfs:subClassOf brick:Proportional_Band_Parameter, + brick:Temperature_Parameter . -unit:NanoW a unit:Unit ; - rdfs:label "Nanowatt"@en . +brick:Supply_Air_Temperature_Setpoint_Limit a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Air Temperature Setpoint Limit" ; + rdfs:subClassOf brick:Air_Temperature_Setpoint_Limit ; + skos:definition "A parameter limiting a Supply_Air_Temperature_Setpoint"@en, + "A parameter that places a lower or upper bound on the range of permitted values of a Supply_Air_Temperature_Setpoint."@en . -unit:PA-L-PER-SEC a unit:Unit ; - rdfs:label "Pascal Liter Per Second"@en-us . +brick:Supply_Water_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Water Flow Setpoint" ; + rdfs:subClassOf brick:Water_Flow_Setpoint ; + skos:definition "Sets the flow rate of hot supply water"@en . -unit:PA-M3-PER-SEC a unit:Unit ; - rdfs:label "Pascal Cubic Meter Per Second"@en-us . +brick:System_Enable_Command a owl:Class, + sh:NodeShape ; + rdfs:label "System Enable Command" ; + rdfs:subClassOf brick:Enable_Command ; + skos:definition "Enables operation of a system"@en . -unit:PSI-IN3-PER-SEC a unit:Unit ; - rdfs:label "Psi Cubic Inch Per Second"@en . +brick:Temperature_Differential_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Temperature Differential Reset Setpoint" ; + rdfs:subClassOf brick:Differential_Setpoint . -unit:PSI-M3-PER-SEC a unit:Unit ; - rdfs:label "PSI Cubic Meter Per Second"@en-us . +brick:Time_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Time Parameter" ; + rdfs:subClassOf brick:PID_Parameter . -unit:PSI-YD3-PER-SEC a unit:Unit ; - rdfs:label "Psi Cubic Yard Per Second"@en . +brick:Time_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Time Setpoint" ; + rdfs:subClassOf brick:Setpoint . -unit:PicoW a unit:Unit ; - rdfs:label "Picowatt"@en . +brick:Tolerance_Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Tolerance Parameter" ; + rdfs:subClassOf brick:Parameter ; + skos:definition "difference between upper and lower limits of size for a given nominal dimension or value."@en . -unit:PlanckPower a unit:Unit ; - rdfs:label "Planck Power"@en . +brick:Unoccupied_Discharge_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Unoccupied Discharge Air Flow Setpoint" ; + rdfs:subClassOf brick:Discharge_Air_Flow_Setpoint . -unit:TeraW a unit:Unit ; - rdfs:label "Terawatt"@en . +brick:Unoccupied_Supply_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Unoccupied Supply Air Flow Setpoint" ; + rdfs:subClassOf brick:Supply_Air_Flow_Setpoint . -unit:V-A-HR a unit:Unit ; - rdfs:label "Volt Ampere Hour"@en . +brick:Water_Differential_Pressure_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Water Differential Pressure Setpoint" ; + rdfs:subClassOf brick:Differential_Pressure_Setpoint ; + skos:definition "Sets the target water differential pressure between an upstream and downstream point in a water pipe or conduit"@en . -unit:V-A_Reactive-HR a unit:Unit ; - rdfs:label "Volt Ampere Reactive Hour"@en . +brick:Water_Level_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Water Level Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures the height/level of water in some container"@en . -unit:W-HR a unit:Unit ; - rdfs:label "Watthour"@en ; - qudt:symbol "W-hr", - "W-hr"^^xsd:string . +brick:Water_Temperature_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Water Temperature Alarm" ; + rdfs:subClassOf brick:Temperature_Alarm, + brick:Water_Alarm ; + skos:definition "An alarm that indicates the off-normal conditions associated with temperature of water."@en . -brick:Air_Diffuser a owl:Class, +brick:Air_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; - rdfs:label "Air Diffuser" ; - rdfs:subClassOf brick:Terminal_Unit ; - skos:definition "A device that is a component of the air distribution system that controls the delivery of conditioned and/or ventilating air into a room"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Diffuser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Diffuser, - tag:Equipment . + rdfs:label "Air Differential Pressure Setpoint" ; + rdfs:subClassOf brick:Differential_Pressure_Setpoint ; + skos:definition "Sets the target air differential pressure between an upstream and downstream point in a air duct or conduit"@en . brick:Air_Flow_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Air Flow Alarm" ; rdfs:subClassOf brick:Air_Alarm ; - skos:definition "An alarm related to air flow."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Flow, - tag:Point . - -brick:Air_Plenum a owl:Class, - sh:NodeShape ; - rdfs:label "Air Plenum" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "A component of the HVAC the receives air from the air handling unit or room to distribute or exhaust to or from the building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Plenum ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Equipment, - tag:Plenum . + skos:definition "An alarm related to air flow."@en . brick:Air_Temperature_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Air Temperature Alarm" ; rdfs:subClassOf brick:Air_Alarm, brick:Temperature_Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with the temperature of air."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Point, - tag:Temperature . - -brick:Baseboard_Radiator a owl:Class, - sh:NodeShape ; - rdfs:label "Baseboard Radiator" ; - rdfs:subClassOf brick:Radiator ; - skos:definition "Steam, hydronic, or electric heating device located at or near the floor."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Baseboard ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Baseboard, - tag:Equipment, - tag:Radiator . - -brick:Bypass_Air a owl:Class, - sh:NodeShape, - brick:Bypass_Air ; - rdfs:label "Bypass Air" ; - rdfs:subClassOf brick:Air ; - skos:definition "air in a bypass duct, used to relieve static pressure"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Bypass ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Bypass, - tag:Fluid, - tag:Gas . - -brick:Bypass_Water a owl:Class, - sh:NodeShape, - brick:Bypass_Water ; - rdfs:label "Bypass Water" ; - rdfs:subClassOf brick:Water ; - skos:definition "Water that circumvents a piece of equipment or system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Bypass ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Bypass, - tag:Fluid, - tag:Liquid, - tag:Water . + skos:definition "An alarm that indicates the off-normal conditions associated with the temperature of air."@en . brick:Chilled_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Temperature Setpoint" ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; - skos:definition "Sets the temperature of chilled water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Chilled_Water . - -brick:Chiller a owl:Class, - sh:NodeShape ; - rdfs:label "Chiller" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "Refrigerating machine used to transfer heat between fluids. Chillers are either direct expansion with a compressor or absorption type."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chiller ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chiller, - tag:Equipment . - -brick:Collection_Basin_Water a owl:Class, - sh:NodeShape, - brick:Collection_Basin_Water ; - rdfs:label "Collection Basin Water" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Water ; - skos:definition "Water transiently collected and directed to the sump or pump suction line, typically integral with a cooling tower"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Basin ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Collection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Basin, - tag:Collection, - tag:Fluid, - tag:Liquid, - tag:Water . - -brick:Condenser_Water_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Condenser Water Flow Sensor" ; - rdfs:subClassOf brick:Water_Flow_Sensor ; - skos:definition "Measures the flow of the condenser water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Flow, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Condenser_Water . + skos:definition "Sets the temperature of chilled water"@en . brick:Condenser_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; - rdfs:label "Condenser Water Temperature Sensor" ; - rdfs:subClassOf brick:Water_Temperature_Sensor ; - skos:definition "Measures the temperature of condenser water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Condenser_Water . - -brick:Cooling_Discharge_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Cooling Discharge Air Flow Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Flow_Setpoint ; - skos:definition "Sets discharge air flow for cooling"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Discharge, - tag:Flow, - tag:Point, - tag:Setpoint . + rdfs:label "Condenser Water Temperature Sensor" ; + rdfs:subClassOf brick:Water_Temperature_Sensor ; + skos:definition "Measures the temperature of condenser water"@en . brick:Current_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Current Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Senses the amperes of electrical current passing through the sensor"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Current ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Current, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Current . - -brick:Deionized_Water a owl:Class, - sh:NodeShape, - brick:Deionized_Water ; - rdfs:label "Deionized Water" ; - rdfs:subClassOf brick:Water ; - skos:definition "Water which has been purified by removing its ions (constituting the majority of non-particulate contaminants)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deionized ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deionized, - tag:Fluid, - tag:Liquid, - tag:Water . + skos:definition "Senses the amperes of electrical current passing through the sensor"@en . + +brick:Deadband_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Deadband Setpoint" ; + rdfs:subClassOf brick:Setpoint ; + skos:definition "Sets the size of a deadband"@en . brick:Demand_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Demand Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the amount of power consumed by the use of some process; typically found by multiplying the tonnage of a unit (e.g. RTU) by the efficiency rating in kW/ton"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Demand, - tag:Point, - tag:Sensor . + skos:definition "Measures the amount of power consumed by the use of some process; typically found by multiplying the tonnage of a unit (e.g. RTU) by the efficiency rating in kW/ton"@en . brick:Differential_Pressure_Load_Shed_Status a owl:Class, sh:NodeShape ; rdfs:label "Differential Pressure Load Shed Status" ; rdfs:subClassOf brick:Load_Shed_Status, - brick:Pressure_Status ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Load, - tag:Point, - tag:Pressure, - tag:Shed, - tag:Status . + brick:Pressure_Status . brick:Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Differential Pressure Setpoint" ; rdfs:subClassOf brick:Differential_Setpoint ; - skos:definition "Sets differential pressure"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Point, - tag:Pressure, - tag:Setpoint ; - brick:hasQuantity brick:Differential_Pressure . - -brick:Discharge_Air_Flow_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Flow Reset Setpoint" ; - rdfs:subClassOf brick:Reset_Setpoint ; - skos:definition "Setpoints used in Reset strategies"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Point, - tag:Reset, - tag:Setpoint ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Air_Temperature_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Temperature Alarm" ; - rdfs:subClassOf brick:Air_Temperature_Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with the temperature of discharge air."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Discharge, - tag:Point, - tag:Temperature . - -brick:Discharge_Air_Temperature_Deadband_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Temperature Deadband Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Temperature_Setpoint, - brick:Temperature_Deadband_Setpoint ; - skos:definition "Sets the size of a deadband of temperature of discharge air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Deadband, - tag:Discharge, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Air_Temperature_Proportional_Band_Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Temperature Proportional Band Parameter" ; - rdfs:subClassOf brick:Proportional_Band_Parameter, - brick:Temperature_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Band, - tag:Discharge, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional, - tag:Temperature . - -brick:Discharge_Air_Temperature_Reset_Differential_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Temperature Reset Differential Setpoint" ; - rdfs:subClassOf brick:Temperature_Differential_Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Discharge, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Temperature ; - brick:hasSubstance brick:Discharge_Air . - -brick:Discharge_Air_Temperature_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Temperature Setpoint Limit" ; - rdfs:subClassOf brick:Air_Temperature_Setpoint_Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Discharge_Air_Temperature_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Limit, - tag:Point, - tag:Setpoint, - tag:Temperature . - -brick:Discharge_Chilled_Water a owl:Class, - sh:NodeShape, - brick:Discharge_Chilled_Water ; - rdfs:label "Discharge Chilled Water" ; - rdfs:subClassOf brick:Chilled_Water, - brick:Discharge_Water ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Discharge, - tag:Fluid, - tag:Liquid, - tag:Water . - -brick:Discharge_Hot_Water a owl:Class, - sh:NodeShape, - brick:Discharge_Hot_Water ; - rdfs:label "Discharge Hot Water" ; - rdfs:subClassOf brick:Discharge_Water, - brick:Hot_Water ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Fluid, - tag:Hot, - tag:Liquid, - tag:Water . + skos:definition "Sets differential pressure"@en . -brick:Discharge_Water_Flow_Setpoint a owl:Class, +brick:Discharge_Water_Flow_Sensor a owl:Class, sh:NodeShape ; - rdfs:label "Discharge Water Flow Setpoint" ; - rdfs:subClassOf brick:Water_Flow_Setpoint ; - skos:definition "Sets the target flow rate of discharge water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Discharge_Water . + rdfs:label "Discharge Water Flow Sensor" ; + rdfs:subClassOf brick:Water_Flow_Sensor ; + skos:definition "Measures the rate of flow of discharge water"@en . brick:Duration_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Duration Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the duration of a phenomenon or event"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Duration ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Duration, - tag:Point, - tag:Sensor . + skos:definition "Measures the duration of a phenomenon or event"@en . brick:Electric_Power_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Electric Power Sensor" ; rdfs:subClassOf brick:Power_Sensor ; - skos:definition "Measures the amount of instantaneous electric power consumed"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electric ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Power ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electric, - tag:Point, - tag:Power, - tag:Sensor ; - brick:hasQuantity brick:Electric_Power . - -brick:Electrical_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Electrical Room" ; - rdfs:subClassOf brick:Service_Room ; - skos:definition "A class of service rooms that house electrical equipment for a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electrical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Service ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electrical, - tag:Location, - tag:Room, - tag:Service, - tag:Space . - -brick:Emergency_Wash_Station a owl:Class, - sh:NodeShape ; - rdfs:label "Emergency Wash Station" ; - rdfs:subClassOf brick:Safety_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Emergency ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Station ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Wash ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Emergency, - tag:Equipment, - tag:Safety, - tag:Station, - tag:Wash . - -brick:Enclosed_Office a owl:Class, - sh:NodeShape ; - rdfs:label "Enclosed Office" ; - rdfs:subClassOf brick:Office ; - skos:definition "A space for individuals to work with walls and a door"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Enclosed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Office ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Enclosed, - tag:Location, - tag:Office, - tag:Room, - tag:Space . - -brick:Energy a brick:Quantity ; - rdfs:label "Energy" . - -brick:Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Flow Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the rate of flow of some substance"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Flow . + skos:definition "Measures the amount of instantaneous electric power consumed"@en . brick:Gain_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Gain Parameter" ; - rdfs:subClassOf brick:PID_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Gain ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Gain, - tag:PID, - tag:Parameter, - tag:Point . - -brick:GrainsOfMoisture a brick:Quantity ; - rdfs:label "GrainsOfMoisture" ; - qudt:applicableUnit unit:GRAIN ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Mass, - brick:Mass ; - skos:definition "Mass of moisture per pround of air, measured in grains of water" . - -brick:HVAC_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "HVAC Valve" ; - rdfs:subClassOf brick:HVAC_Equipment, - brick:Valve ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:HVAC ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:HVAC, - tag:Valve . - -brick:Heating_Discharge_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Heating Discharge Air Flow Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Flow_Setpoint ; - skos:definition "Sets discharge air flow for heating"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Heat, - tag:Point, - tag:Setpoint . - -brick:Heating_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Heating Valve" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "A valve that controls air temperature by modulating the amount of hot water flowing through a heating coil"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Heat, - tag:Valve . - -brick:Heating_Ventilation_Air_Conditioning_System a owl:Class, - sh:NodeShape ; - rdfs:label "Heating Ventilation Air Conditioning System" ; - rdfs:subClassOf brick:System ; - owl:equivalentClass brick:HVAC_System ; - skos:definition "The equipment, distribution systems and terminals that provide, either collectively or individually, the processes of heating, ventilating or air conditioning to a building or portion of a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Conditioning ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Ventilation ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Conditioning, - tag:Heat, - tag:System, - tag:Ventilation . + rdfs:subClassOf brick:PID_Parameter . brick:High_Temperature_Alarm a owl:Class, sh:NodeShape ; rdfs:label "High Temperature Alarm" ; rdfs:subClassOf brick:Temperature_Alarm ; - skos:definition "An alarm that indicates high temperature."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:High, - tag:Point, - tag:Temperature . + skos:definition "An alarm that indicates high temperature."@en . brick:Humidity_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Humidity Parameter" ; rdfs:subClassOf brick:Parameter ; - skos:definition "Parameters relevant to humidity-related systems and points"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Humidity, - tag:Parameter, - tag:Point . + skos:definition "Parameters relevant to humidity-related systems and points"@en . brick:Load_Shed_Command a owl:Class, sh:NodeShape ; rdfs:label "Load Shed Command" ; rdfs:subClassOf brick:Command ; - skos:definition "Controls load shedding behavior provided by a control system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Load, - tag:Point, - tag:Shed . + skos:definition "Controls load shedding behavior provided by a control system"@en . brick:Load_Shed_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Load Shed Setpoint" ; - rdfs:subClassOf brick:Load_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Load, - tag:Point, - tag:Setpoint, - tag:Shed . + rdfs:subClassOf brick:Load_Setpoint . brick:Load_Shed_Status a owl:Class, sh:NodeShape ; rdfs:label "Load Shed Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates if a load shedding policy is in effect"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Load ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Load, - tag:Point, - tag:Shed, - tag:Status . - -brick:Loop a owl:Class, - sh:NodeShape ; - rdfs:label "Loop" ; - rdfs:subClassOf brick:Collection ; - skos:definition "A collection of connected equipment; part of a System"@en ; - sh:property [ sh:or ( [ sh:class brick:Equipment ] [ sh:class brick:Point ] [ sh:class brick:Location ] ) ; - sh:path brick:hasPart ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Collection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Loop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Collection, - tag:Loop . + skos:definition "Indicates if a load shedding policy is in effect"@en . brick:Low_Temperature_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Low Temperature Alarm" ; rdfs:subClassOf brick:Temperature_Alarm ; - skos:definition "An alarm that indicates low temperature."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Low, - tag:Point, - tag:Temperature . - -brick:Max_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Max Cooling Discharge Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Cooling_Discharge_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Discharge, - tag:Flow, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Setpoint . - -brick:Max_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Max Heating Discharge Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Heating_Discharge_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Heat, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Setpoint . - -brick:Media_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Media Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A class of spaces related to the creation of media"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Media ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Media, - tag:Room, - tag:Space . - -brick:Min_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Min Cooling Discharge Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Cooling_Discharge_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Cool, - tag:Discharge, - tag:Flow, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Setpoint . - -brick:Min_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, - sh:NodeShape ; - rdfs:label "Min Heating Discharge Air Flow Setpoint Limit" ; - rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Heating_Discharge_Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Heat, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Setpoint . + skos:definition "An alarm that indicates low temperature."@en . brick:Mode_Command a owl:Class, sh:NodeShape ; rdfs:label "Mode Command" ; rdfs:subClassOf brick:Command ; - skos:definition "Controls the operating mode of a device or controller"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Mode, - tag:Point . - -brick:Natural_Gas a owl:Class, - sh:NodeShape, - brick:Natural_Gas ; - rdfs:label "Natural Gas" ; - rdfs:subClassOf brick:Gas ; - skos:definition "Fossil fuel energy source consisting largely of methane and other hydrocarbons"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Natural ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Gas, - tag:Natural . - -brick:Occupancy a brick:Quantity ; - rdfs:label "Occupancy" . + skos:definition "Controls the operating mode of a device or controller"@en . -brick:Occupied_Discharge_Air_Flow_Setpoint a owl:Class, +brick:Mode_Status a owl:Class, sh:NodeShape ; - rdfs:label "Occupied Discharge Air Flow Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Flow_Setpoint ; - skos:definition "Sets discharge air flow when occupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Occupied, - tag:Point, - tag:Setpoint . + rdfs:label "Mode Status" ; + rdfs:subClassOf brick:Status ; + skos:definition "Indicates which mode a system, device or control loop is currently in"@en . brick:Off_Status a owl:Class, sh:NodeShape ; rdfs:label "Off Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates if a control loop, relay or equipment is off"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Off, - tag:Point, - tag:Status . - -brick:Office a owl:Class, - sh:NodeShape ; - rdfs:label "Office" ; - rdfs:subClassOf brick:Room ; - skos:definition "A class of rooms dedicated for work or study"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Office ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Office, - tag:Room, - tag:Space . - -brick:Outdoor_Area a owl:Class, - sh:NodeShape ; - rdfs:label "Outdoor Area" ; - rdfs:subClassOf brick:Location ; - skos:definition "A class of spaces that exist outside of a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Area ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outdoor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Area, - tag:Location, - tag:Outdoor . + skos:definition "Indicates if a control loop, relay or equipment is off"@en . brick:Outside_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Temperature Sensor" ; rdfs:subClassOf brick:Air_Temperature_Sensor ; - skos:definition "Measures the temperature of outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Outside, - tag:Point, - tag:Sensor, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Outside_Air . + skos:definition "Measures the temperature of outside air"@en . brick:Position_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Position Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the current position of a component in terms of a fraction of its full range of motion"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Position ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Position, - tag:Sensor ; - brick:hasQuantity brick:Position . + skos:definition "Measures the current position of a component in terms of a fraction of its full range of motion"@en . brick:Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Pressure Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Measure the amount of force acting on a unit area"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Pressure, - tag:Sensor ; - brick:hasQuantity brick:Pressure . + skos:definition "Measure the amount of force acting on a unit area"@en . brick:Pressure_Status a owl:Class, sh:NodeShape ; rdfs:label "Pressure Status" ; - qudt:hasQuality brick:Pressure ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates if pressure is within expected bounds"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Pressure, - tag:Status . + skos:definition "Indicates if pressure is within expected bounds"@en . brick:Radiant_Panel_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Radiant Panel Temperature Sensor" ; rdfs:subClassOf brick:Temperature_Sensor ; - skos:definition "Measures the temperature of the radiant panel of the radiant heating and cooling HVAC system."@en ; - sh:property [ sh:or ( [ sh:class brick:Radiant_Panel ] ) ; - sh:path brick:isPointOf ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiant ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Panel, - tag:Point, - tag:Radiant, - tag:Sensor, - tag:Temperature . + skos:definition "Measures the temperature of the radiant panel of the radiant heating and cooling HVAC system."@en . brick:Radiant_Panel_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Radiant Panel Temperature Setpoint" ; rdfs:subClassOf brick:Temperature_Setpoint ; - skos:definition "Sets temperature of radiant panel."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiant ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Panel, - tag:Point, - tag:Radiant, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature . + skos:definition "Sets temperature of radiant panel."@en . brick:Reset_Command a owl:Class, sh:NodeShape ; rdfs:label "Reset Command" ; rdfs:subClassOf brick:Command ; - skos:definition "Commands that reset a flag, property or value to its default"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Point, - tag:Reset . + skos:definition "Commands that reset a flag, property or value to its default"@en . brick:Return_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Return Air Temperature Setpoint" ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; - skos:definition "The target temperature for return air, often used as an approximation of zone air temperature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Return, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Return_Air . - -brick:Return_Hot_Water a owl:Class, - sh:NodeShape, - brick:Return_Hot_Water ; - rdfs:label "Return Hot Water" ; - rdfs:subClassOf brick:Hot_Water, - brick:Return_Water ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Hot, - tag:Liquid, - tag:Return, - tag:Water . + skos:definition "The target temperature for return air, often used as an approximation of zone air temperature"@en . brick:Return_Water_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Water Flow Sensor" ; - rdfs:subClassOf brick:Water_Flow_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Point, - tag:Return, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Return_Water . + rdfs:subClassOf brick:Water_Flow_Sensor . brick:Room_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Room Air Temperature Setpoint" ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; - skos:definition "Sets temperature of room air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Room, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Room_Air . - -brick:Safety_System a owl:Class, - sh:NodeShape ; - rdfs:label "Safety System" ; - rdfs:subClassOf brick:System ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Safety, - tag:System . - -brick:Service_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Service Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A class of spaces related to the operations of building subsystems, e.g. HVAC, electrical, IT, plumbing, etc"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Service ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room, - tag:Service, - tag:Space . - -brick:Shading_Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "Shading Equipment" ; - rdfs:subClassOf brick:Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Shade ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Shade . + skos:definition "Sets temperature of room air"@en . brick:Speed_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Speed Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the magnitude of velocity of some form of movement"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Speed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Sensor, - tag:Speed ; - brick:hasQuantity brick:Speed . + skos:definition "Measures the magnitude of velocity of some form of movement"@en . brick:Static_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Static Pressure Proportional Band Parameter" ; - rdfs:subClassOf brick:Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Band, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Proportional, - tag:Static . + rdfs:subClassOf brick:Proportional_Band_Parameter . brick:Static_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Static Pressure Setpoint Limit" ; rdfs:subClassOf brick:Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Static_Pressure_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static . + skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Static_Pressure_Setpoint."@en . brick:Step_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Step Parameter" ; - rdfs:subClassOf brick:PID_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Step ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Parameter, - tag:Point, - tag:Step . + rdfs:subClassOf brick:PID_Parameter . brick:Supply_Water_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Supply Water Flow Sensor" ; rdfs:subClassOf brick:Water_Flow_Sensor ; - owl:equivalentClass brick:Discharge_Water_Flow_Sensor ; - skos:definition "Measures the rate of flow of hot supply water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Point, - tag:Sensor, - tag:Supply, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Supply_Water . - -brick:Time a brick:Quantity ; - rdfs:label "Time" ; - qudt:applicableUnit unit:CentiPOISE-PER-BAR, - unit:DAY, - unit:DAY_Sidereal, - unit:H-PER-KiloOHM, - unit:H-PER-OHM, - unit:HR, - unit:HR_Sidereal, - unit:KiloSEC, - unit:MIN, - unit:MIN_Sidereal, - unit:MO, - unit:MO_MeanGREGORIAN, - unit:MO_MeanJulian, - unit:MO_Synodic, - unit:MegaYR, - unit:MicroH-PER-KiloOHM, - unit:MicroH-PER-OHM, - unit:MicroSEC, - unit:MilliH-PER-KiloOHM, - unit:MilliH-PER-OHM, - unit:MilliPA-SEC-PER-BAR, - unit:MilliSEC, - unit:NanoSEC, - unit:PA-SEC-PER-BAR, - unit:POISE-PER-BAR, - unit:PicoSEC, - unit:PlanckTime, - unit:SEC, - unit:SH, - unit:WK, - unit:YR, - unit:YR_Common, - unit:YR_Sidereal, - unit:YR_TROPICAL ; - brick:hasQUDTReference qudtqk:Time . + skos:definition "Measures the rate of flow of hot supply water"@en . -brick:Unoccupied_Discharge_Air_Flow_Setpoint a owl:Class, +brick:Usage_Sensor a owl:Class, sh:NodeShape ; - rdfs:label "Unoccupied Discharge Air Flow Setpoint" ; - rdfs:subClassOf brick:Discharge_Air_Flow_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Unoccupied . + rdfs:label "Usage Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures the amount of some substance that is consumed or used, over some period of time"@en . brick:Velocity_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Velocity Pressure Sensor" ; rdfs:subClassOf brick:Pressure_Sensor ; - skos:definition "Measures the difference between total pressure and static pressure"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Velocity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Pressure, - tag:Sensor, - tag:Velocity ; - brick:hasQuantity brick:Velocity_Pressure . - -brick:Video_Surveillance_Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "Video Surveillance Equipment" ; - rdfs:subClassOf brick:Security_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Security ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Surveillance ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Video ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Security, - tag:Surveillance, - tag:Video . - -brick:Voltage a brick:Quantity ; - rdfs:label "Voltage" ; - qudt:applicableUnit unit:KiloV, - unit:MegaV, - unit:MicroV, - unit:MilliV, - unit:PlanckVolt, - unit:V, - unit:V_Ab, - unit:V_Stat ; - skos:definition "Voltage, also referred to as Electric Tension, is the difference between electrical potentials of two points. For an electric field within a medium, (U_{ab} = - \\int_{r_a}^{r_b} E . {dr}), where (E) is electric field strength. For an irrotational electric field, the voltage is independent of the path between the two points (a) and (b)."@en ; - brick:hasQUDTReference qudtqk:Voltage . + skos:definition "Measures the difference between total pressure and static pressure"@en . brick:Voltage_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Voltage Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the voltage of an electrical device or object"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Voltage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Sensor, - tag:Voltage ; - brick:hasQuantity brick:Voltage . + skos:definition "Measures the voltage of an electrical device or object"@en . brick:Water_Level_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Water Level Alarm" ; rdfs:subClassOf brick:Water_Alarm ; - skos:definition "An alarm that indicates a high or low water level e.g. in a basin"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Level ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Level, - tag:Point, - tag:Water . - -brick:Water_Loop a owl:Class, - sh:NodeShape ; - rdfs:label "Water Loop" ; - rdfs:subClassOf brick:Loop ; - skos:definition "A collection of equipment that transport and regulate water among each other"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Loop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Loop, - tag:Water . - -brick:Water_Meter a owl:Class, - sh:NodeShape ; - rdfs:label "Water Meter" ; - rdfs:subClassOf brick:Meter ; - skos:definition "A meter that measures the usage or consumption of water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Meter, - tag:Water . - -brick:Water_Pump a owl:Class, - sh:NodeShape ; - rdfs:label "Water Pump" ; - rdfs:subClassOf brick:Pump ; - skos:definition "A pump that performs work on water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pump ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Pump, - tag:Water . - -brick:Water_System a owl:Class, - sh:NodeShape ; - rdfs:label "Water System" ; - rdfs:subClassOf brick:Heating_Ventilation_Air_Conditioning_System ; - skos:definition "The equipment, devices and conduits that handle the production and distribution of water in a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:System, - tag:Water . + skos:definition "An alarm that indicates a high or low water level e.g. in a basin"@en . brick:Zone_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Zone Air Temperature Sensor" ; rdfs:subClassOf brick:Air_Temperature_Sensor ; - skos:definition "A physical or virtual sensor which represents the temperature of an HVAC Zone"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Zone ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Zone_Air . - -brick:ambientTemperatureOfMeasurement a owl:ObjectProperty . - -brick:area a brick:EntityProperty ; - rdfs:label "Area" ; - rdfs:range bsh:AreaShape ; - skos:definition "Entity has 2-dimensional area" . - -brick:hasLocation a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Has location" ; - rdfs:range brick:Location ; - owl:inverseOf brick:isLocationOf ; - skos:definition "Subject is physically located in the location given by the object"@en . - -brick:isFedBy a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Is fed by" ; - owl:inverseOf brick:feeds . - -brick:isMeteredBy a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "is metered by" ; - rdfs:range brick:Meter ; - owl:inverseOf brick:meters ; - skos:definition "Indicates the meter measuring the consumption/production of some substance by the subject entity"@en . - -ref:ExternalReference a owl:Class, - sh:NodeShape ; - rdfs:label "External reference" ; - skos:definition "The parent class of all external reference types" . - -ref:TimeseriesReference a owl:Class, - sh:NodeShape ; - rdfs:subClassOf ref:ExternalReference ; - skos:definition "A reference to a stream of timeseries data in a database. Contains the data for this entity" ; - sh:property [ a sh:PropertyShape ; - skos:definition "The identifier for the timeseries data corresponding to this point" ; - sh:datatype xsd:string ; - sh:minCount 1 ; - sh:path ref:hasTimeseriesId ], - [ a sh:PropertyShape ; - skos:definition "Refers to a database storing the timeseries data for the related point. Properties on this class are *to be determined*; feel free to add arbitrary properties onto Database instances for your particular deployment" ; - sh:datatype xsd:string ; - sh:path ref:storedAt ] . - -bsh:EfficiencyShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:PERCENT ) ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:minCount 1 ; - sh:minInclusive 0 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . - -bsh:TemperatureShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:DEG_C unit:DEG_F unit:DEG_R unit:K unit:MilliDEG_C unit:PlanckTemperature ) ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . - -unit:BTU_IT-PER-HR a unit:Unit ; - rdfs:label "BTU per Hour"@en . - -unit:DEG_R a unit:Unit ; - rdfs:label "Degree Rankine"@en ; - qudt:symbol "°R", - "°R"^^xsd:string, - "°Ra", - "°Ra"^^xsd:string . - -unit:J a unit:Unit ; - rdfs:label "Joule"@en ; - qudt:symbol "J", - "J"^^xsd:string, - "N m"^^xsd:string . - -unit:KiloV-A_Reactive a unit:Unit ; - rdfs:label "Kilovolt Ampere Reactive"@en . - -unit:MegaV-A_Reactive a unit:Unit ; - rdfs:label "Megavolt Ampere Reactive"@en . - -unit:MilliDEG_C a unit:Unit ; - rdfs:label "Millidegree Celsius"@en . - -unit:PlanckTemperature a unit:Unit ; - rdfs:label "PlanckTemperature"@en . - -unit:TON_FG a unit:Unit ; - rdfs:label "Ton of Refrigeration"@en . - -unit:V-A_Reactive a unit:Unit ; - rdfs:label "Volt Ampere Reactive"@en . + skos:definition "A physical or virtual sensor which represents the temperature of an HVAC Zone"@en . brick:Air_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Air Alarm" ; - rdfs:subClassOf brick:Alarm ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Alarm, - tag:Point . + rdfs:subClassOf brick:Alarm . brick:Air_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Air Differential Pressure Sensor" ; rdfs:subClassOf brick:Differential_Pressure_Sensor ; - skos:definition "Measures the difference in pressure between two regions of air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Point, - tag:Pressure, - tag:Sensor ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Air . - -brick:Air_Differential_Pressure_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Air Differential Pressure Setpoint" ; - rdfs:subClassOf brick:Differential_Pressure_Setpoint ; - skos:definition "Sets the target air differential pressure between an upstream and downstream point in a air duct or conduit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Differential, - tag:Point, - tag:Pressure, - tag:Setpoint ; - brick:hasQuantity brick:Differential_Pressure ; - brick:hasSubstance brick:Air . + skos:definition "Measures the difference in pressure between two regions of air"@en . brick:Air_Temperature_Integral_Time_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Air Temperature Integral Time Parameter" ; rdfs:subClassOf brick:Integral_Time_Parameter, - brick:Temperature_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Temperature, - tag:Time . - -brick:Building_Air a owl:Class, - sh:NodeShape, - brick:Building_Air ; - rdfs:label "Building Air" ; - rdfs:subClassOf brick:Air ; - skos:definition "air contained within a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Building, - tag:Fluid, - tag:Gas . + brick:Temperature_Parameter . brick:CO2_Sensor a owl:Class, sh:NodeShape ; rdfs:label "CO2 Sensor" ; rdfs:subClassOf brick:Air_Quality_Sensor ; - skos:definition "Measures properties of CO2 in air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CO2 ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CO2, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:CO2_Concentration ; - brick:hasSubstance brick:Air . - -brick:CO_Concentration a brick:Quantity ; - rdfs:label "COConcentration" ; - qudt:applicableUnit unit:PPB, - unit:PPM ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:DimensionlessRatio, - brick:Air_Quality ; - skos:definition "The concentration of carbon monoxide in a medium" . + skos:definition "Measures properties of CO2 in air"@en . brick:CO_Sensor a owl:Class, sh:NodeShape ; rdfs:label "CO Sensor" ; rdfs:subClassOf brick:Air_Quality_Sensor ; - skos:definition "Measures properties of CO"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:CO ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:CO, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:CO_Concentration ; - brick:hasSubstance brick:Air . + skos:definition "Measures properties of CO"@en . brick:Chilled_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Chilled Water Temperature Sensor" ; rdfs:subClassOf brick:Water_Temperature_Sensor ; - skos:definition "Measures the temperature of chilled water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Chilled_Water . - -brick:Deadband_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Deadband Setpoint" ; - rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets the size of a deadband"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deadband, - tag:Point, - tag:Setpoint . + skos:definition "Measures the temperature of chilled water"@en . brick:Demand_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Demand Setpoint" ; rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets the rate required for a process"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Demand ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Demand, - tag:Point, - tag:Setpoint . + skos:definition "Sets the rate required for a process"@en . brick:Differential_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Differential Pressure Deadband Setpoint" ; rdfs:subClassOf brick:Differential_Setpoint ; - skos:definition "Sets the size of a deadband of differential pressure"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deadband, - tag:Differential, - tag:Point, - tag:Pressure, - tag:Setpoint ; - brick:hasQuantity brick:Differential_Pressure . + skos:definition "Sets the size of a deadband of differential pressure"@en . brick:Differential_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Differential Pressure Integral Time Parameter" ; - rdfs:subClassOf brick:Integral_Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Time . + rdfs:subClassOf brick:Integral_Time_Parameter . brick:Differential_Pressure_Proportional_Band a owl:Class, sh:NodeShape ; rdfs:label "Differential Pressure Proportional Band" ; - rdfs:subClassOf brick:Proportional_Band_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Band, - tag:Differential, - tag:PID, - tag:Point, - tag:Pressure, - tag:Proportional . + rdfs:subClassOf brick:Proportional_Band_Parameter . brick:Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Differential Pressure Sensor" ; rdfs:subClassOf brick:Pressure_Sensor ; - skos:definition "Measures the difference between two applied pressures"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Point, - tag:Pressure, - tag:Sensor ; - brick:hasQuantity brick:Differential_Pressure . + skos:definition "Measures the difference between two applied pressures"@en . brick:Differential_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Differential Pressure Setpoint Limit" ; rdfs:subClassOf brick:Limit ; - skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Differential_Pressure_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Limit, - tag:Parameter, - tag:Point, - tag:Pressure, - tag:Setpoint . - -brick:Direction a brick:Quantity ; - rdfs:label "Direction" . + skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Differential_Pressure_Setpoint."@en . -brick:Discharge_Water_Flow_Sensor a owl:Class, +brick:Hot_Water_Discharge_Temperature_Sensor a owl:Class, sh:NodeShape ; - rdfs:label "Discharge Water Flow Sensor" ; - rdfs:subClassOf brick:Water_Flow_Sensor ; - skos:definition "Measures the rate of flow of discharge water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Flow, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Discharge_Water . - -brick:Electric_Current a brick:Quantity ; - rdfs:label "Electric Current" ; - qudt:applicableUnit unit:A, - unit:A_Ab, - unit:A_Stat, - unit:BIOT, - unit:KiloA, - unit:MegaA, - unit:MicroA, - unit:MilliA, - unit:NanoA, - unit:PicoA, - unit:PlanckCurrent ; - brick:hasQUDTReference qudtqk:ElectricCurrent . - -brick:Electric_Energy a brick:Quantity ; - rdfs:label "ElectricEnergy" ; - qudt:applicableUnit unit:J, - unit:KiloV-A-HR, - unit:KiloV-A_Reactive-HR, - unit:KiloW-HR, - unit:MegaV-A-HR, - unit:MegaV-A_Reactive-HR, - unit:MegaW-HR, - unit:V-A-HR, - unit:V-A_Reactive-HR, - unit:W-HR ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Energy, - brick:Energy ; - skos:definition "A form of energy resulting from the flow of electrical charge" . - -brick:Entering_Water a owl:Class, - sh:NodeShape, - brick:Entering_Water ; - rdfs:label "Entering Water" ; - rdfs:subClassOf brick:Water ; - skos:definition "Water that is entering a piece of equipment or system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Entering ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Entering, - tag:Fluid, - tag:Liquid, - tag:Water . - -brick:Fluid a owl:Class, - sh:NodeShape, - brick:Fluid ; - rdfs:label "Fluid" ; - rdfs:subClassOf brick:Substance ; - skos:definition "substance, as a liquid or gas, that is capable of flowing and that changes shape when acted on by a force."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid . - -brick:Frequency a brick:Quantity ; - rdfs:label "Frequency" ; - qudt:applicableUnit unit:GigaHZ, - unit:HZ, - unit:KiloHZ, - unit:MegaHZ, - unit:NUM-PER-HR, - unit:NUM-PER-SEC, - unit:NUM-PER-YR, - unit:PER-DAY, - unit:PER-HR, - unit:PER-MIN, - unit:PER-MO, - unit:PER-MilliSEC, - unit:PER-SEC, - unit:PER-WK, - unit:PER-YR, - unit:PERCENT-PER-DAY, - unit:PERCENT-PER-HR, - unit:PERCENT-PER-WK, - unit:PlanckFrequency, - unit:SAMPLE-PER-SEC, - unit:TeraHZ, - unit:failures-in-time ; - skos:definition "Frequency is the number of occurrences of a repeating event per unit time. The repetition of the events may be periodic (that is. the length of time between event repetitions is fixed) or aperiodic (i.e. the length of time between event repetitions varies). Therefore, we distinguish between periodic and aperiodic frequencies. In the SI system, periodic frequency is measured in hertz (Hz) or multiples of hertz, while aperiodic frequency is measured in becquerel (Bq). In spectroscopy, ( u) is mostly used. Light passing through different media keeps its frequency, but not its wavelength or wavenumber."@en ; - brick:hasQUDTReference qudtqk:Frequency . - -brick:Heat_Exchanger a owl:Class, - sh:NodeShape ; - rdfs:label "Heat Exchanger" ; - rdfs:subClassOf brick:HVAC_Equipment ; - owl:equivalentClass brick:HX ; - skos:definition "A heat exchanger is a piece of equipment built for efficient heat transfer from one medium to another. The media may be separated by a solid wall to prevent mixing or they may be in direct contact (BEDES)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exchanger ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Exchanger, - tag:Heat . + rdfs:label "Hot Water Discharge Temperature Sensor" ; + rdfs:subClassOf brick:Water_Temperature_Sensor . brick:Hot_Water_Supply_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Hot Water Supply Temperature Sensor" ; rdfs:subClassOf brick:Water_Temperature_Sensor ; - owl:equivalentClass brick:Hot_Water_Discharge_Temperature_Sensor ; - skos:definition "Measures the temperature of water supplied by a hot water system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Point, - tag:Sensor, - tag:Supply, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Hot_Water . - -brick:Hot_Water_System a owl:Class, - sh:NodeShape ; - rdfs:label "Hot Water System" ; - rdfs:subClassOf brick:Water_System ; - skos:definition "The equipment, devices and conduits that handle the production and distribution of hot water in a building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:System, - tag:Water . + skos:definition "Measures the temperature of water supplied by a hot water system"@en . brick:Hot_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Hot Water Temperature Setpoint" ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; - skos:definition "Sets the temperature of hot water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Hot, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Hot_Water . - -brick:Laboratory a owl:Class, - sh:NodeShape ; - rdfs:label "Laboratory" ; - rdfs:subClassOf brick:Room ; - skos:definition "facility acceptable to the local, national, or international recognized authority having jurisdiction and which provides uniform testing and examination procedures and standards for meeting design, manufacturing, and factory testing requirements."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Laboratory ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Laboratory, - tag:Location, - tag:Room . - -brick:Lighting_Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "Lighting Equipment" ; - rdfs:subClassOf brick:Equipment ; - sh:property [ sh:or ( [ sh:class brick:Lighting_Equipment ] [ sh:class brick:Electrical_Equipment ] ) ; - sh:path brick:hasPart ], - [ sh:or ( [ sh:class brick:Lighting_Equipment ] [ sh:class brick:Location ] ) ; - sh:path brick:feeds ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Lighting ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Lighting . - -brick:Luminance a brick:Quantity ; - rdfs:label "Luminance" ; - qudt:applicableUnit unit:CD, - unit:CD-PER-IN2, - unit:CD-PER-M2, - unit:CP, - unit:FT-LA, - unit:LA, - unit:LM, - unit:STILB ; - brick:hasQUDTReference qudtqk:Luminance . + skos:definition "Sets the temperature of hot water"@en . brick:PID_Parameter a owl:Class, sh:NodeShape ; rdfs:label "PID Parameter" ; - rdfs:subClassOf brick:Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:PID, - tag:Parameter, - tag:Point . + rdfs:subClassOf brick:Parameter . brick:Particulate_Matter_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Particulate Matter Sensor" ; rdfs:subClassOf brick:Air_Quality_Sensor ; - skos:definition "Detects pollutants in the ambient air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Matter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Particulate ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Matter, - tag:Particulate, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Air_Quality ; - brick:hasSubstance brick:Air . - -brick:Power a brick:Quantity ; - rdfs:label "Power" ; - qudt:applicableUnit unit:BAR-L-PER-SEC, - unit:BAR-M3-PER-SEC, - unit:BTU_IT, - unit:BTU_IT-PER-HR, - unit:BTU_IT-PER-SEC, - unit:ERG-PER-SEC, - unit:FT-LB_F-PER-HR, - unit:FT-LB_F-PER-MIN, - unit:FT-LB_F-PER-SEC, - unit:GigaW, - unit:HP, - unit:HP-PER-M, - unit:HP-PER-V, - unit:HP_Boiler, - unit:HP_Brake, - unit:HP_Electric, - unit:HP_Metric, - unit:J-PER-HR, - unit:J-PER-SEC, - unit:KiloCAL-PER-MIN, - unit:KiloCAL-PER-SEC, - unit:KiloV-A, - unit:KiloV-A_Reactive, - unit:KiloW, - unit:MegaJ-PER-SEC, - unit:MegaPA-L-PER-SEC, - unit:MegaPA-M3-PER-SEC, - unit:MegaV-A, - unit:MegaV-A_Reactive, - unit:MegaW, - unit:MicroW, - unit:MilliBAR-L-PER-SEC, - unit:MilliBAR-M3-PER-SEC, - unit:MilliW, - unit:NanoW, - unit:PA-L-PER-SEC, - unit:PA-M3-PER-SEC, - unit:PSI-IN3-PER-SEC, - unit:PSI-M3-PER-SEC, - unit:PSI-YD3-PER-SEC, - unit:PicoW, - unit:PlanckPower, - unit:TON_FG, - unit:TeraW, - unit:V-A, - unit:V-A_Reactive, - unit:W ; - skos:definition "Power is the rate at which work is performed or energy is transmitted, or the amount of energy required or expended for a given unit of time. As a rate of change of work done or the energy of a subsystem, power is: (P = W/t), where (P) is power, (W) is work and {t} is time."@en ; - brick:hasQUDTReference qudtqk:Power . - -brick:Radiator a owl:Class, - sh:NodeShape ; - rdfs:label "Radiator" ; - rdfs:subClassOf brick:Terminal_Unit ; - skos:definition "Heat exchangers designed to transfer thermal energy from one medium to another"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiator ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Radiator . + skos:definition "Detects pollutants in the ambient air"@en . brick:Reset_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Reset Setpoint" ; rdfs:subClassOf brick:Setpoint ; - skos:definition "Setpoints used in reset strategies"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Reset, - tag:Setpoint . - -brick:Return_Condenser_Water a owl:Class, - sh:NodeShape, - brick:Return_Condenser_Water ; - rdfs:label "Return Condenser Water" ; - rdfs:subClassOf brick:Condenser_Water ; - skos:definition "In a condenser water loop, this is water being brought away from the condenser side of a heat-rejection device (e.g. chiller). It is the 'warm' side."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Fluid, - tag:Liquid, - tag:Return, - tag:Water . + skos:definition "Setpoints used in reset strategies"@en . brick:Return_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Return Water Temperature Sensor" ; rdfs:subClassOf brick:Water_Temperature_Sensor ; - skos:definition "Measures the temperature of return water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Return, - tag:Sensor, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Return_Water . - -brick:Safety_Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "Safety Equipment" ; - rdfs:subClassOf brick:Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Safety . - -brick:Security_Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "Security Equipment" ; - rdfs:subClassOf brick:Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Security ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Security . - -brick:Solid a owl:Class, - sh:NodeShape, - brick:Solid ; - rdfs:label "Solid" ; - rdfs:subClassOf brick:Substance ; - skos:definition "one of the three states or phases of matter characterized by stability of dimensions, relative incompressibility, and molecular motion held to limited oscillation."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Solid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Solid . - -brick:Supply_Chilled_Water a owl:Class, - sh:NodeShape, - brick:Supply_Chilled_Water ; - rdfs:label "Supply Chilled Water" ; - rdfs:subClassOf brick:Chilled_Water, - brick:Supply_Water ; - owl:equivalentClass brick:Discharge_Chilled_Water ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Fluid, - tag:Liquid, - tag:Supply, - tag:Water . - -brick:Supply_Condenser_Water a owl:Class, - sh:NodeShape, - brick:Supply_Condenser_Water ; - rdfs:label "Supply Condenser Water" ; - rdfs:subClassOf brick:Condenser_Water ; - owl:equivalentClass brick:Discharge_Condenser_Water ; - skos:definition "In a condenser water loop, this is water being brought to the condenser side of a heat-rejection device (e.g. chiller). It is the 'cold' side."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Fluid, - tag:Liquid, - tag:Supply, - tag:Water . + skos:definition "Measures the temperature of return water"@en . brick:System_Status a owl:Class, sh:NodeShape ; rdfs:label "System Status" ; rdfs:subClassOf brick:Status ; - skos:definition "Indicates properties of the activity of a system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Status, - tag:System . - -brick:Telecom_Room a owl:Class, - sh:NodeShape ; - rdfs:label "Telecom Room" ; - rdfs:subClassOf brick:Room ; - skos:definition "A class of spaces used to support telecommuncations and IT equipment"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Telecom ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room, - tag:Space, - tag:Telecom . + skos:definition "Indicates properties of the activity of a system"@en . brick:Temperature_Alarm a owl:Class, sh:NodeShape ; rdfs:label "Temperature Alarm" ; rdfs:subClassOf brick:Alarm ; - skos:definition "An alarm that indicates the off-normal conditions associated with temperature."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Point, - tag:Temperature . - -brick:Usage_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Usage Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures the amount of some substance that is consumed or used, over some period of time"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Usage ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Sensor, - tag:Usage . - -brick:VFD a owl:Class, - sh:NodeShape ; - rdfs:label "VFD" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Motor ; - skos:definition "Electronic device that varies its output frequency to vary the rotating speed of a motor, given a fixed input frequency. Used with fans or pumps to vary the flow in the system as a function of a maintained pressure."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:VFD ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:VFD . - -brick:Vertical_Space a owl:Class, - sh:NodeShape ; - rdfs:label "Vertical Space" ; - rdfs:subClassOf brick:Space ; - skos:definition "A class of spaces used to connect multiple floors or levels.."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Vertical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Space, - tag:Vertical . + skos:definition "An alarm that indicates the off-normal conditions associated with temperature."@en . brick:Water_Differential_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Water Differential Temperature Sensor" ; rdfs:subClassOf brick:Water_Temperature_Sensor ; - skos:definition "Measures the difference in water temperature between an upstream and downstream point in a pipe or conduit"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Differential_Temperature ; - brick:hasSubstance brick:Water . - -brick:hasPoint a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Has point" ; - rdfs:range brick:Point ; - owl:inverseOf brick:isPointOf ; - skos:definition "The subject has a source of telemetry identified by the object. In some systems the source of telemetry may be represented as a digital/analog input/output point"@en . - -brick:isPointOf a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Is point of" ; - rdfs:domain brick:Point ; - owl:inverseOf brick:hasPoint ; - skos:definition "The subject is a source of telemetry related to the object. In some systems the source of telemetry may be represented as a digital/analog input/output point"@en . - -brick:meters a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "meters" ; - rdfs:domain brick:Meter ; - owl:inverseOf brick:isMeteredBy ; - skos:definition "Indicates the entity whose consumption/production of some substance is measured by this meter"@en . - -brick:ratedCurrentInput a owl:ObjectProperty, - brick:EntityProperty ; - rdfs:range bsh:CurrentShape ; - skos:definition "The nominal rated current input of the entity" . - -brick:ratedCurrentOutput a owl:ObjectProperty, - brick:EntityProperty ; - rdfs:range bsh:CurrentShape ; - skos:definition "The nominal rated current output of the entity" . - -brick:ratedVoltageInput a owl:ObjectProperty, - brick:EntityProperty ; - rdfs:range bsh:VoltageShape ; - skos:definition "The nominal rated voltage input of the entity" . - -brick:ratedVoltageOutput a owl:ObjectProperty, - brick:EntityProperty ; - rdfs:range bsh:VoltageShape ; - skos:definition "The nominal rated voltage output of the entity" . - -bsh:AreaShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:FT2 unit:M2 ) ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . - -bsh:PowerShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( unit:BAR-L-PER-SEC unit:BAR-M3-PER-SEC unit:BTU_IT-PER-HR unit:BTU_IT-PER-SEC unit:ERG-PER-SEC unit:FT-LB_F-PER-HR unit:FT-LB_F-PER-MIN unit:FT-LB_F-PER-SEC unit:GigaW unit:HP unit:HP-PER-M unit:HP-PER-V unit:HP_Boiler unit:HP_Brake unit:HP_Electric unit:HP_Metric unit:J-PER-HR unit:J-PER-SEC unit:KiloCAL-PER-MIN unit:KiloCAL-PER-SEC unit:KiloW unit:MegaJ-PER-SEC unit:MegaPA-L-PER-SEC unit:MegaPA-M3-PER-SEC unit:MegaW unit:MicroW unit:MilliBAR-L-PER-SEC unit:MilliBAR-M3-PER-SEC unit:MilliW unit:NanoW unit:PA-L-PER-SEC unit:PA-M3-PER-SEC unit:PSI-IN3-PER-SEC unit:PSI-M3-PER-SEC unit:PSI-YD3-PER-SEC unit:PicoW unit:PlanckPower unit:TON_FG unit:TeraW unit:W unit:BTU_IT unit:V-A unit:V-A_Reactive unit:MegaV-A unit:KiloV-A unit:MegaV-A_Reactive unit:KiloV-A_Reactive ) ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:path brick:ratedVoltageInput ], - [ a sh:PropertyShape ; - sh:path brick:ratedVoltageOutput ], - [ a sh:PropertyShape ; - sh:path brick:ratedCurrentInput ], - [ a sh:PropertyShape ; - skos:definition "The ambient temperature at which the power input was measured" ; - sh:class bsh:TemperatureShape ; - sh:path brick:ambientTemperatureOfMeasurement ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:path brick:ratedCurrentOutput ] . - -tag:AED a brick:Tag ; - rdfs:label "AED" . - -tag:Access a brick:Tag ; - rdfs:label "Access" . - -tag:Aid a brick:Tag ; - rdfs:label "Aid" . - -tag:Automatic a brick:Tag ; - rdfs:label "Automatic" . - -tag:Bulb a brick:Tag ; - rdfs:label "Bulb" . - -tag:CRAC a brick:Tag ; - rdfs:label "CRAC" . - -tag:Camera a brick:Tag ; - rdfs:label "Camera" . - -tag:Ceiling a brick:Tag ; - rdfs:label "Ceiling" . - -tag:Close a brick:Tag ; - rdfs:label "Close" . - -tag:Cold a brick:Tag ; - rdfs:label "Cold" . - -tag:Collector a brick:Tag ; - rdfs:label "Collector" . - -tag:Computer a brick:Tag ; - rdfs:label "Computer" . - -tag:Concentration a brick:Tag ; - rdfs:label "Concentration" . - -tag:Conductivity a brick:Tag ; - rdfs:label "Conductivity" . - -tag:Core a brick:Tag ; - rdfs:label "Core" . - -tag:Cycle a brick:Tag ; - rdfs:label "Cycle" . - -tag:Deck a brick:Tag ; - rdfs:label "Deck" . + skos:definition "Measures the difference in water temperature between an upstream and downstream point in a pipe or conduit"@en . -tag:Defibrillator a brick:Tag ; - rdfs:label "Defibrillator" . - -tag:Deionised a brick:Tag ; - rdfs:label "Deionised" . - -tag:Deionized a brick:Tag ; - rdfs:label "Deionized" . - -tag:Delay a brick:Tag ; - rdfs:label "Delay" . - -tag:Derivative a brick:Tag ; - rdfs:label "Derivative" . - -tag:Detector a brick:Tag ; - rdfs:label "Detector" . - -tag:Direct a brick:Tag ; - rdfs:label "Direct" . - -tag:Drive a brick:Tag ; - rdfs:label "Drive" . - -tag:Duct a brick:Tag ; - rdfs:label "Duct" . - -tag:Duration a brick:Tag ; - rdfs:label "Duration" . - -tag:Economizer a brick:Tag ; - rdfs:label "Economizer" . - -tag:Entrance a brick:Tag ; - rdfs:label "Entrance" . - -tag:Expansion a brick:Tag ; - rdfs:label "Expansion" . - -tag:Food a brick:Tag ; - rdfs:label "Food" . - -tag:Freeze a brick:Tag ; - rdfs:label "Freeze" . - -tag:Frost a brick:Tag ; - rdfs:label "Frost" . - -tag:Fume a brick:Tag ; - rdfs:label "Fume" . - -tag:Furniture a brick:Tag ; - rdfs:label "Furniture" . - -tag:Hail a brick:Tag ; - rdfs:label "Hail" . - -tag:Handler a brick:Tag ; - rdfs:label "Handler" . - -tag:Heating a brick:Tag ; - rdfs:label "Heating" . - -tag:Hood a brick:Tag ; - rdfs:label "Hood" . - -tag:Humidifier a brick:Tag ; - rdfs:label "Humidifier" . - -tag:Ice a brick:Tag ; - rdfs:label "Ice" . - -tag:Inside a brick:Tag ; - rdfs:label "Inside" . - -tag:Intake a brick:Tag ; - rdfs:label "Intake" . - -tag:Isolation a brick:Tag ; - rdfs:label "Isolation" . - -tag:Lag a brick:Tag ; - rdfs:label "Lag" . - -tag:Lounge a brick:Tag ; - rdfs:label "Lounge" . - -tag:Luminaire a brick:Tag ; - rdfs:label "Luminaire" . - -tag:Maintenance a brick:Tag ; - rdfs:label "Maintenance" . - -tag:Mechanical a brick:Tag ; - rdfs:label "Mechanical" . - -tag:NVR a brick:Tag ; - rdfs:label "NVR" . - -tag:Oil a brick:Tag ; - rdfs:label "Oil" . - -tag:Operating a brick:Tag ; - rdfs:label "Operating" . - -tag:Override a brick:Tag ; - rdfs:label "Override" . - -tag:PM1 a brick:Tag ; - rdfs:label "PM1" . - -tag:PM10 a brick:Tag ; - rdfs:label "PM10" . - -tag:PM2.5 a brick:Tag ; - rdfs:label "PM2.5" . - -tag:Photovoltaic a brick:Tag ; - rdfs:label "Photovoltaic" . - -tag:Pre a brick:Tag ; - rdfs:label "Pre" . - -tag:Rain a brick:Tag ; - rdfs:label "Rain" . - -tag:Reactive a brick:Tag ; - rdfs:label "Reactive" . - -tag:Relay a brick:Tag ; - rdfs:label "Relay" . - -tag:Relief a brick:Tag ; - rdfs:label "Relief" . - -tag:Rooftop a brick:Tag ; - rdfs:label "Rooftop" . - -tag:Shower a brick:Tag ; - rdfs:label "Shower" . - -tag:Stage a brick:Tag ; - rdfs:label "Stage" . - -tag:TVOC a brick:Tag ; - rdfs:label "TVOC" . - -tag:Tank a brick:Tag ; - rdfs:label "Tank" . - -tag:Thermostat a brick:Tag ; - rdfs:label "Thermostat" . - -tag:Torque a brick:Tag ; - rdfs:label "Torque" . - -tag:Tower a brick:Tag ; - rdfs:label "Tower" . - -tag:Transformer a brick:Tag ; - rdfs:label "Transformer" . - -tag:Wet a brick:Tag ; - rdfs:label "Wet" . - -tag:Wheel a brick:Tag ; - rdfs:label "Wheel" . - -tag:Wind a brick:Tag ; - rdfs:label "Wind" . - -unit:KiloW a unit:Unit ; - rdfs:label "Kilowatt"@en ; - qudt:symbol "kW", - "kW"^^xsd:string . - -unit:MegaW a unit:Unit ; - rdfs:label "MegaW"@en . - -unit:MilliW a unit:Unit ; - rdfs:label "MilliW"@en . - -brick:Building_Meter a owl:Class, +brick:Differential_Setpoint a owl:Class, sh:NodeShape ; - rdfs:label "Building Meter" ; - rdfs:subClassOf brick:Meter ; - skos:definition "A meter that measures usage or consumption of some media for a whole building"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Building, - tag:Equipment, - tag:Meter . - -brick:CO2_Concentration a brick:Quantity ; - rdfs:label "CO2Concentration" ; - qudt:applicableUnit unit:PPB, - unit:PPM ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:DimensionlessRatio, - brick:Air_Quality ; - skos:definition "The concentration of carbon dioxide in a medium" . - -brick:Class a owl:Class . + rdfs:label "Differential Setpoint" ; + rdfs:subClassOf brick:Setpoint ; + skos:definition "A type of Setpoints that is related to the difference between two measurements"@en . brick:Disable_Command a owl:Class, sh:NodeShape ; rdfs:label "Disable Command" ; rdfs:subClassOf brick:Command ; - skos:definition "Commands that disable functionality"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Disable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Disable, - tag:Point . - -brick:Enthalpy a brick:Quantity ; - rdfs:label "Enthalpy" ; - qudt:applicableUnit unit:AttoJ, - unit:BTU_IT, - unit:BTU_TH, - unit:CAL_IT, - unit:CAL_TH, - unit:ERG, - unit:EV, - unit:E_h, - unit:ExaJ, - unit:FT-LB_F, - unit:FT-PDL, - unit:FemtoJ, - unit:GigaEV, - unit:GigaJ, - unit:GigaW-HR, - unit:J, - unit:KiloCAL, - unit:KiloEV, - unit:KiloJ, - unit:KiloV-A-HR, - unit:KiloV-A_Reactive-HR, - unit:KiloW-HR, - unit:MegaEV, - unit:MegaJ, - unit:MegaTOE, - unit:MegaV-A-HR, - unit:MegaV-A_Reactive-HR, - unit:MegaW-HR, - unit:MilliJ, - unit:N-M, - unit:PetaJ, - unit:PlanckEnergy, - unit:QUAD, - unit:THM_EEC, - unit:THM_US, - unit:TOE, - unit:TeraJ, - unit:TeraW-HR, - unit:TonEnergy, - unit:V-A-HR, - unit:V-A_Reactive-HR, - unit:W-HR, - unit:W-SEC ; - skos:definition "(also known as heat content), thermodynamic quantity equal to the sum of the internal energy of a system plus the product of the pressure volume work done on the system. H = E + pv, where H = enthalpy or total heat content, E = internal energy of the system, p = pressure, and v = volume. (Compare to [[specific enthalpy]].)", - "(also known as heat content), thermodynamic quantity equal to the sum of the internal energy of a system plus the product of the pressure volume work done on the system. H = E + pv, where H = enthalpy or total heat content, E = internal energy of the system, p = pressure, and v = volume. (Compare to [[specific enthalpy]].)"@en ; - brick:hasQUDTReference qudtqk:Enthalpy . - -brick:Filter a owl:Class, - sh:NodeShape ; - rdfs:label "Filter" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "Device to remove gases from a mixture of gases or to remove solid material from a fluid"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Filter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Filter . - -brick:Floor a owl:Class, - sh:NodeShape ; - rdfs:label "Floor" ; - rdfs:subClassOf brick:Location ; - owl:equivalentClass brick:Storey ; - skos:definition "A level, typically representing a horizontal aggregation of spaces that are vertically bound. (referring to IFC)"@en ; - sh:property [ sh:or ( [ sh:class brick:Room ] [ sh:class brick:Space ] [ sh:class brick:Zone ] ) ; - sh:path brick:hasPart ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Floor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Floor, - tag:Location . + skos:definition "Commands that disable functionality"@en . -brick:Hot_Water_Discharge_Temperature_Sensor a owl:Class, +brick:Discharge_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; - rdfs:label "Hot Water Discharge Temperature Sensor" ; - rdfs:subClassOf brick:Water_Temperature_Sensor ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Hot, - tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water . - -brick:Leaving_Water a owl:Class, - sh:NodeShape, - brick:Leaving_Water ; - rdfs:label "Leaving Water" ; - rdfs:subClassOf brick:Water ; - skos:definition "Water that is leaving a piece of equipment or system"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Leaving ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Leaving, - tag:Liquid, - tag:Water . - -brick:Level a brick:Quantity ; - rdfs:label "Level" ; - qudt:applicableUnit unit:CentiM, - unit:DeciM, - unit:FT, - unit:IN, - unit:KiloM, - unit:M, - unit:MicroM, - unit:MilliM, - unit:YD ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Length ; - skos:definition "Amount of substance in a container; typically measured in height" . + rdfs:label "Discharge Air Flow Setpoint" ; + rdfs:subClassOf brick:Air_Flow_Setpoint ; + skos:definition "Sets discharge air flow"@en . + +brick:Discharge_Water_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Discharge Water Temperature Setpoint" ; + rdfs:subClassOf brick:Water_Temperature_Setpoint ; + skos:definition "Sets temperature of discharge water"@en . brick:Max_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Air Flow Setpoint Limit" ; rdfs:subClassOf brick:Air_Flow_Setpoint_Limit, brick:Max_Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Limit, - tag:Max, - tag:Parameter, - tag:Point, - tag:Setpoint . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Air_Flow_Setpoint."@en . brick:Min_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Air Flow Setpoint Limit" ; rdfs:subClassOf brick:Air_Flow_Setpoint_Limit, brick:Min_Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Air_Flow_Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Limit, - tag:Min, - tag:Parameter, - tag:Point, - tag:Setpoint . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Air_Flow_Setpoint."@en . brick:On_Off_Command a owl:Class, sh:NodeShape ; rdfs:label "On Off Command" ; rdfs:subClassOf brick:Command ; - skos:definition "An On/Off Command controls or reports the binary status of a control loop, relay or equipment activity"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Off, - tag:On, - tag:Point . + skos:definition "An On/Off Command controls or reports the binary status of a control loop, relay or equipment activity"@en . brick:Outside_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Outside Air Temperature Setpoint" ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; - skos:definition "Sets temperature of outside air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Outside, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Outside_Air . - -brick:PV_Panel a owl:Class, - sh:NodeShape ; - rdfs:label "PV Panel" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Equipment ; - skos:definition "An integrated assembly of interconnected photovoltaic cells designed to deliver a selected level of working voltage and current at its output terminals packaged for protection against environment degradation and suited for incorporation in photovoltaic power systems."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PV ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Solar ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:PV, - tag:Panel, - tag:Solar . - -brick:Speed a brick:Quantity ; - rdfs:label "Speed" ; - qudt:applicableUnit unit:BFT, - unit:DEG-PER-HR, - unit:DEG-PER-MIN, - unit:DEG-PER-SEC, - unit:FT-PER-HR, - unit:FT-PER-SEC, - unit:FT3-PER-MIN-FT2, - unit:GigaC-PER-M3, - unit:GigaHZ-M, - unit:HZ-M, - unit:KiloM-PER-HR, - unit:KiloM-PER-SEC, - unit:M-PER-HR, - unit:M-PER-SEC, - unit:MI-PER-HR, - unit:MI-PER-SEC, - unit:MegaHZ-M, - unit:RAD-PER-HR, - unit:RAD-PER-MIN, - unit:RAD-PER-SEC ; - brick:hasQUDTReference qudtqk:Speed . + skos:definition "Sets temperature of outside air"@en . brick:Static_Pressure_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Static Pressure Sensor" ; - rdfs:subClassOf brick:Pressure_Sensor ; - skos:definition "Measures resistance to airflow in a heating and cooling system's components and duct work"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Pressure, - tag:Sensor, - tag:Static . - -brick:Supply_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Air Flow Setpoint" ; - rdfs:subClassOf brick:Air_Flow_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Flow_Setpoint ; - skos:definition "Sets supply air flow rate"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Point, - tag:Setpoint, - tag:Supply ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Supply_Air . - -brick:Supply_Air_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Supply Air Temperature Setpoint" ; - rdfs:subClassOf brick:Air_Temperature_Setpoint ; - owl:equivalentClass brick:Discharge_Air_Temperature_Setpoint ; - skos:definition "Temperature setpoint for supply air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Air . - -brick:Temperature_High_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Temperature High Reset Setpoint" ; - rdfs:subClassOf brick:Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:High ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:High, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature . - -brick:Temperature_Low_Reset_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Temperature Low Reset Setpoint" ; - rdfs:subClassOf brick:Reset_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Low ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Reset ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Low, - tag:Point, - tag:Reset, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature . - -brick:Velocity_Pressure a brick:Quantity ; - rdfs:label "Velocity Pressure" ; - qudt:applicableUnit unit:ATM, - unit:ATM_T, - unit:BAR, - unit:BARAD, - unit:BARYE, - unit:CM_H2O, - unit:CentiBAR, - unit:CentiM_H2O, - unit:CentiM_HG, - unit:DYN-PER-CentiM2, - unit:DecaPA, - unit:DeciBAR, - unit:FT_H2O, - unit:FT_HG, - unit:GM_F-PER-CentiM2, - unit:GigaPA, - unit:HectoBAR, - unit:HectoPA, - unit:IN_H2O, - unit:IN_HG, - unit:KIP_F-PER-IN2, - unit:KiloBAR, - unit:KiloGM-PER-M-SEC2, - unit:KiloGM_F-PER-CentiM2, - unit:KiloGM_F-PER-M2, - unit:KiloGM_F-PER-MilliM2, - unit:KiloLB_F-PER-IN2, - unit:KiloPA, - unit:KiloPA_A, - unit:LB_F-PER-FT2, - unit:LB_F-PER-IN2, - unit:MegaBAR, - unit:MegaPA, - unit:MicroATM, - unit:MicroBAR, - unit:MicroPA, - unit:MicroTORR, - unit:MilliBAR, - unit:MilliM_H2O, - unit:MilliM_HG, - unit:MilliM_HGA, - unit:MilliPA, - unit:MilliTORR, - unit:N-PER-CentiM2, - unit:N-PER-M2, - unit:N-PER-MilliM2, - unit:PA, - unit:PDL-PER-FT2, - unit:PSI, - unit:PlanckPressure, - unit:TORR ; - skos:broader brick:Pressure ; - skos:definition "Dynamic Pressure (indicated with q, or Q, and sometimes called velocity pressure) is the quantity defined by: (q = 1/2 * ρ v^{2}), where (using SI units), (q) is dynamic pressure in (pascals), (ρ) is fluid density in (kg/m^{3}) (for example, density of air) and (v ) is fluid velocity in (m/s)."@en ; - brick:hasQUDTReference qudtqk:DynamicPressure, - brick:Dynamic_Pressure . - -brick:Water_Alarm a owl:Class, - sh:NodeShape ; - rdfs:label "Water Alarm" ; - rdfs:subClassOf brick:Alarm ; - skos:definition "Alarm that indicates an undesirable event with a pipe, container, or equipment carrying water e.g. water leak"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Point, - tag:Water . - -brick:Water_Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Water Valve" ; - rdfs:subClassOf brick:Valve ; - skos:definition "A valve that modulates the flow of water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Valve, - tag:Water . - -brick:Zone_Air_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Zone Air Temperature Setpoint" ; - rdfs:subClassOf brick:Air_Temperature_Setpoint ; - skos:definition "Sets temperature of zone air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Zone ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Zone_Air . - -ref:hasExternalReference a owl:ObjectProperty ; - rdfs:label "hasExternalReference" ; - skos:definition "Points to the external reference for this entity, which contains additional metadata/data not included in this graph." . - -unit:ATM a unit:Unit ; - rdfs:label "Standard Atmosphere"@en ; - qudt:symbol "atm", - "atm"^^xsd:string . - -unit:ATM_T a unit:Unit ; - rdfs:label "Technical Atmosphere"@en ; - qudt:symbol "at", - "at"^^xsd:string . - -unit:BAR a unit:Unit ; - rdfs:label "Bar"@en ; - qudt:symbol "bar", - "bar"^^xsd:string . - -unit:BARAD a unit:Unit ; - rdfs:label "Barad"@en ; - qudt:symbol "ρ"^^xsd:string . - -unit:BARYE a unit:Unit ; - rdfs:label "Barye"@en ; - qudt:symbol "ρ", - "ρ"^^xsd:string . - -unit:BTU_IT a unit:Unit ; - rdfs:label "British Thermal Unit (International Definition)"@en ; - qudt:symbol "Btu_{it}", - "Btu_{it}"^^xsd:string . - -unit:CM_H2O a unit:Unit ; - rdfs:label "Centimeter of Water"@en-us ; - qudt:symbol "cmH2O", - "cmH2O"^^xsd:string . - -unit:CentiBAR a unit:Unit ; - rdfs:label "Centibar"@en ; - qudt:symbol "cbar", - "cbar"^^xsd:string . - -unit:CentiM_H2O a unit:Unit ; - rdfs:label "Centimeter of Water"@en-us ; - qudt:symbol "cmH2O", - "cmH2O"^^xsd:string . - -unit:CentiM_HG a unit:Unit ; - rdfs:label "Centimeter Of Mercury"@en-us . - -unit:DYN-PER-CentiM2 a unit:Unit ; - rdfs:label "Dyne per Square Centimeter"@en-us . - -unit:DecaPA a unit:Unit ; - rdfs:label "Decapascal"@en . - -unit:DeciBAR a unit:Unit ; - rdfs:label "Decibar"@en ; - qudt:symbol "dbar", - "dbar"^^xsd:string . - -unit:FT_H2O a unit:Unit ; - rdfs:label "Foot of Water"@en ; - qudt:symbol "ftH2O", - "ftH2O"^^xsd:string . - -unit:FT_HG a unit:Unit ; - rdfs:label "Foot Of Mercury"@en . - -unit:GM_F-PER-CentiM2 a unit:Unit ; - rdfs:label "Gram Force Per Square Centimeter"@en-us . - -unit:GigaPA a unit:Unit ; - rdfs:label "Gigapascal"@en . - -unit:HectoBAR a unit:Unit ; - rdfs:label "Hectobar"@en . - -unit:HectoPA a unit:Unit ; - rdfs:label "Hectopascal"@en ; - qudt:symbol "hPa", - "hPa"^^xsd:string, - "mbar"^^xsd:string . - -unit:IN_H2O a unit:Unit ; - rdfs:label "Inch of Water"@en ; - qudt:symbol "inAq", - "inAq"^^xsd:string . - -unit:IN_HG a unit:Unit ; - rdfs:label "Inch of Mercury"@en ; - qudt:symbol "inHg", - "inHg"^^xsd:string . - -unit:KIP_F-PER-IN2 a unit:Unit ; - rdfs:label "Kip per Square Inch"@en . - -unit:KiloBAR a unit:Unit ; - rdfs:label "Kilobar"@en ; - qudt:symbol "kbar", - "kbar"^^xsd:string . - -unit:KiloGM-PER-M-SEC2 a unit:Unit ; - rdfs:label "Kilograms per metre per square second"@en ; - qudt:symbol "Pa"^^xsd:string . - -unit:KiloGM_F-PER-CentiM2 a unit:Unit ; - rdfs:label "Kilogram Force per Square Centimeter"@en-us . - -unit:KiloGM_F-PER-M2 a unit:Unit ; - rdfs:label "Kilogram Force Per Square Meter"@en-us . - -unit:KiloGM_F-PER-MilliM2 a unit:Unit ; - rdfs:label "Kilogram Force Per Square Millimeter"@en-us . - -unit:KiloLB_F-PER-IN2 a unit:Unit ; - rdfs:label "Kilopound Force Per Square Inch"@en . - -unit:KiloPA a unit:Unit ; - rdfs:label "Kilopascal"@en ; - qudt:symbol "kPa", - "kPa"^^xsd:string . - -unit:KiloPA_A a unit:Unit ; - rdfs:label "Kilopascal Absolute"@en ; - qudt:symbol "KPaA", - "KPaA"^^xsd:string . - -unit:LB_F-PER-FT2 a unit:Unit ; - rdfs:label "Pound Force per Square Foot"@en . - -unit:LB_F-PER-IN2 a unit:Unit ; - rdfs:label "Pound Force per Square Inch"@en ; - qudt:symbol "psia", - "psia"^^xsd:string . - -unit:MegaBAR a unit:Unit ; - rdfs:label "Megabar"@en ; - qudt:symbol "Mbar", - "Mbar"^^xsd:string . - -unit:MegaPA a unit:Unit ; - rdfs:label "Megapascal"@en . - -unit:MicroATM a unit:Unit ; - rdfs:label "Microatmospheres"@en . - -unit:MicroBAR a unit:Unit ; - rdfs:label "Microbar"@en . - -unit:MicroPA a unit:Unit ; - rdfs:label "Micropascal"@en . - -unit:MicroTORR a unit:Unit ; - rdfs:label "MicroTorr"@en ; - qudt:symbol "μTorr", - "μTorr"^^xsd:string . - -unit:MilliBAR a unit:Unit ; - rdfs:label "Millibar"@en ; - qudt:symbol "hPa"^^xsd:string, - "mbar", - "mbar"^^xsd:string . - -unit:MilliM_H2O a unit:Unit ; - rdfs:label "Conventional Millimeter Of Water"@en-us . - -unit:MilliM_HG a unit:Unit ; - rdfs:label "Millimeter of Mercury"@en-us ; - qudt:symbol "mm Hg", - "mm Hg"^^xsd:string . - -unit:MilliM_HGA a unit:Unit ; - rdfs:label "Millimeter of Mercury - Absolute"@en-us ; - qudt:symbol "mmHgA", - "mmHgA"^^xsd:string . - -unit:MilliPA a unit:Unit ; - rdfs:label "Millipascal"@en . - -unit:MilliTORR a unit:Unit ; - rdfs:label "MilliTorr"@en ; - qudt:symbol "utorr", - "utorr"^^xsd:string . - -unit:N-PER-CentiM2 a unit:Unit ; - rdfs:label "Newton Per Square Centimeter"@en-us . - -unit:N-PER-M2 a unit:Unit ; - rdfs:label "N-PER-M2"@en ; - qudt:symbol "Pa", - "Pa"^^xsd:string . - -unit:N-PER-MilliM2 a unit:Unit ; - rdfs:label "Newton Per Square Millimeter"@en-us . + rdfs:subClassOf brick:Pressure_Sensor ; + skos:definition "Measures resistance to airflow in a heating and cooling system's components and duct work"@en . -unit:PA a unit:Unit ; - rdfs:label "Pascal"@en ; - qudt:symbol "Pa", - "Pa"^^xsd:string . +brick:Supply_Air_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Air Flow Setpoint" ; + rdfs:subClassOf brick:Air_Flow_Setpoint ; + skos:definition "Sets supply air flow rate"@en . -unit:PDL-PER-FT2 a unit:Unit ; - rdfs:label "Poundal per Square Foot"@en . +brick:Supply_Air_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Air Temperature Setpoint" ; + rdfs:subClassOf brick:Air_Temperature_Setpoint ; + skos:definition "Temperature setpoint for supply air"@en . -unit:PSI a unit:Unit ; - rdfs:label "PSI"@en ; - qudt:symbol "psia"^^xsd:string . +brick:Temperature_High_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Temperature High Reset Setpoint" ; + rdfs:subClassOf brick:Reset_Setpoint . -unit:PlanckPressure a unit:Unit ; - rdfs:label "Planck Pressure"@en . +brick:Temperature_Low_Reset_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Temperature Low Reset Setpoint" ; + rdfs:subClassOf brick:Reset_Setpoint . -unit:TORR a unit:Unit ; - rdfs:label "Torr"@en ; - qudt:symbol "Torr", - "Torr"^^xsd:string . +brick:Water_Alarm a owl:Class, + sh:NodeShape ; + rdfs:label "Water Alarm" ; + rdfs:subClassOf brick:Alarm ; + skos:definition "Alarm that indicates an undesirable event with a pipe, container, or equipment carrying water e.g. water leak"@en . -unit:W a unit:Unit ; - rdfs:label "Watt"@en ; - qudt:symbol "W", - "W"^^xsd:string . +brick:Zone_Air_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Zone Air Temperature Setpoint" ; + rdfs:subClassOf brick:Air_Temperature_Setpoint ; + skos:definition "Sets temperature of zone air"@en . brick:Air_Flow_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Air Flow Setpoint" ; rdfs:subClassOf brick:Flow_Setpoint ; - skos:definition "Sets air flow"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Air . - -brick:Building a owl:Class, - sh:NodeShape ; - rdfs:label "Building" ; - rdfs:subClassOf brick:Location ; - skos:definition "An independent unit of the built environment with a characteristic spatial structure, intended to serve at least one function or user activity [ISO 12006-2:2013]"@en ; - sh:property [ sh:or ( [ sh:class brick:Floor ] [ sh:class brick:Room ] [ sh:class brick:Space ] [ sh:class brick:Zone ] [ sh:class brick:Wing ] ) ; - sh:path brick:hasPart ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Building ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Building, - tag:Location . - -brick:Common_Space a owl:Class, - sh:NodeShape ; - rdfs:label "Common Space" ; - rdfs:subClassOf brick:Space ; - skos:definition "A class of spaces that are used by multiple people at the same time"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Common ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Common, - tag:Location, - tag:Space . - -brick:Damper a owl:Class, - sh:NodeShape ; - rdfs:label "Damper" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "Element inserted into an air-distribution system or element of an air-distribution system permitting modification of the air resistance of the system and consequently changing the airflow rate or shutting off the airflow."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Damper ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Damper, - tag:Equipment . + skos:definition "Sets air flow"@en . brick:Dewpoint_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Dewpoint Sensor" ; - rdfs:seeAlso ; rdfs:subClassOf brick:Sensor ; - skos:definition "Senses the dewpoint temperature . Dew point is the temperature to which air must be cooled to become saturated with water vapor"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Dewpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Dewpoint, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Dewpoint . - -brick:Differential_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Differential Setpoint" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Setpoint ; - skos:definition "A type of Setpoints that is related to the difference between two measurements"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Differential ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Differential, - tag:Point, - tag:Setpoint . - -brick:Discharge_Air_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Discharge Air Flow Setpoint" ; - rdfs:subClassOf brick:Air_Flow_Setpoint ; - skos:definition "Sets discharge air flow"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Flow, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Discharge_Air . + skos:definition "Senses the dewpoint temperature . Dew point is the temperature to which air must be cooled to become saturated with water vapor"@en . -brick:Discharge_Water_Temperature_Setpoint a owl:Class, +brick:Discharge_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; - rdfs:label "Discharge Water Temperature Setpoint" ; - rdfs:subClassOf brick:Water_Temperature_Setpoint ; - skos:definition "Sets temperature of discharge water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Discharge_Water . - -brick:Electric_Power a brick:Quantity ; - rdfs:label "Electric Power" ; - qudt:applicableUnit unit:BAR-L-PER-SEC, - unit:BAR-M3-PER-SEC, - unit:BTU_IT-PER-HR, - unit:BTU_IT-PER-SEC, - unit:ERG-PER-SEC, - unit:FT-LB_F-PER-HR, - unit:FT-LB_F-PER-MIN, - unit:FT-LB_F-PER-SEC, - unit:GigaW, - unit:HP, - unit:HP-PER-M, - unit:HP-PER-V, - unit:HP_Boiler, - unit:HP_Brake, - unit:HP_Electric, - unit:HP_Metric, - unit:J-PER-HR, - unit:J-PER-SEC, - unit:KiloCAL-PER-MIN, - unit:KiloCAL-PER-SEC, - unit:KiloV-A, - unit:KiloV-A_Reactive, - unit:KiloW, - unit:MegaJ-PER-SEC, - unit:MegaPA-L-PER-SEC, - unit:MegaPA-M3-PER-SEC, - unit:MegaV-A, - unit:MegaV-A_Reactive, - unit:MegaW, - unit:MicroW, - unit:MilliBAR-L-PER-SEC, - unit:MilliBAR-M3-PER-SEC, - unit:MilliW, - unit:NanoW, - unit:PA-L-PER-SEC, - unit:PA-M3-PER-SEC, - unit:PSI-IN3-PER-SEC, - unit:PSI-M3-PER-SEC, - unit:PSI-YD3-PER-SEC, - unit:PicoW, - unit:PlanckPower, - unit:TON_FG, - unit:TeraW, - unit:V-A, - unit:V-A_Reactive, - unit:W ; - skos:broader brick:Power ; - skos:definition "Electric Power is the rate at which electrical energy is transferred by an electric circuit. In the simple case of direct current circuits, electric power can be calculated as the product of the potential difference in the circuit (V) and the amount of current flowing in the circuit (I): (P = VI), where (P) is the power, (V) is the potential difference, and (I) is the current. However, in general electric power is calculated by taking the integral of the vector cross-product of the electrical and magnetic fields over a specified area."@en ; - brick:hasQUDTReference qudtqk:ElectricPower . - -brick:Fire_Safety_Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "Fire Safety Equipment" ; - rdfs:subClassOf brick:Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fire ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Safety ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Fire, - tag:Safety . - -brick:Gas a owl:Class, - sh:NodeShape, - brick:Gas ; - rdfs:label "Gas" ; - rdfs:subClassOf brick:Fluid ; - skos:definition "state of matter in which substances exist in the form of nonaggregated molecules and which, within acceptable limits of accuracy, satisfy the ideal gas laws; usually a highly superheated vapor. See [[state]]."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Gas . + rdfs:label "Discharge Air Temperature Setpoint" ; + rdfs:subClassOf brick:Air_Temperature_Setpoint ; + skos:definition "Sets temperature of discharge air"@en . brick:Integral_Time_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Integral Time Parameter" ; - rdfs:subClassOf brick:Time_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Integral ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Time ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Integral, - tag:PID, - tag:Parameter, - tag:Point, - tag:Time . - -brick:Liquid a owl:Class, - sh:NodeShape, - brick:Liquid ; - rdfs:label "Liquid" ; - rdfs:subClassOf brick:Fluid ; - skos:definition "state of matter intermediate between crystalline substances and gases in which the volume of a substance, but not the shape, remains relatively constant."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Liquid . - -brick:Mixed_Air a owl:Class, - sh:NodeShape, - brick:Mixed_Air ; - rdfs:label "Mixed Air" ; - rdfs:subClassOf brick:Air ; - skos:definition "(1) air that contains two or more streams of air. (2) combined outdoor air and recirculated air."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Mixed ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Fluid, - tag:Gas, - tag:Mixed . - -brick:Return_Water a owl:Class, - sh:NodeShape, - brick:Return_Water ; - rdfs:label "Return Water" ; - rdfs:subClassOf brick:Water ; - skos:definition "The water is a system after it is used in a heat transfer cycle"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Liquid, - tag:Return, - tag:Water . + rdfs:subClassOf brick:Time_Parameter . + +brick:Point a owl:Class, + sh:NodeShape ; + rdfs:label "Point" ; + rdfs:subClassOf brick:Entity . brick:Start_Stop_Status a owl:Class, sh:NodeShape ; rdfs:label "Start Stop Status" ; rdfs:subClassOf brick:On_Off_Status ; - skos:definition "Indicates the active/inactive status of a control loop (but not equipment activities or relays -- use On/Off for this purpose)"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Start ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Stop ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Start, - tag:Status, - tag:Stop . - -brick:Supply_Hot_Water a owl:Class, - sh:NodeShape, - brick:Supply_Hot_Water ; - rdfs:label "Supply Hot Water" ; - rdfs:subClassOf brick:Hot_Water, - brick:Supply_Water ; - owl:equivalentClass brick:Discharge_Hot_Water ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Hot, - tag:Liquid, - tag:Supply, - tag:Water . - -brick:Valve a owl:Class, - sh:NodeShape ; - rdfs:label "Valve" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Equipment ; - skos:definition "A device that regulates, directs or controls the flow of a fluid by opening, closing or partially obstructing various passageways"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Valve . - -brick:Zone a owl:Class, - sh:NodeShape ; - rdfs:label "Zone" ; - rdfs:subClassOf brick:Location ; - skos:definition "(1) a separately controlled heated or cooled space. (2) one occupied space or several occupied spaces with similar occupancy category, occupant density, zone air distribution effectiveness, and zone primary airflow per unit area. (3) space or group of spaces within a building for which the heating, cooling, or lighting requirements are sufficiently similar that desired conditions can be maintained throughout by a single controlling device."@en ; - sh:property [ sh:or ( [ sh:class brick:Room ] [ sh:class brick:Space ] ) ; - sh:path brick:hasPart ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Zone . - -brick:Zone_Air a owl:Class, - sh:NodeShape, - brick:Zone_Air ; - rdfs:label "Zone Air" ; - rdfs:subClassOf brick:Air ; - skos:definition "air inside a defined zone (e.g., corridors)."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Zone ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Fluid, - tag:Gas, - tag:Zone . - -brick:feeds a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Feeds" ; - owl:inverseOf brick:isFedBy ; - skos:definition "The subject is upstream of the object in the context of some sequential process; some media is passed between them"@en . - -brick:isPartOf a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Is part of" ; - owl:inverseOf brick:hasPart . - -bsh:CurrentShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - skos:definition "The ambient temperature at which the power input was measured" ; - sh:class bsh:TemperatureShape ; - sh:path brick:ambientTemperatureOfMeasurement ], - [ a sh:PropertyShape ; - sh:path brick:ratedVoltageInput ], - [ a sh:PropertyShape ; - sh:path brick:ratedVoltageOutput ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in [ rdf:rest () ] ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . - -bsh:VoltageShape a owl:Class, - sh:NodeShape ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:path brick:ratedCurrentInput ], - [ a sh:PropertyShape ; - sh:in ( unit:KiloV unit:MegaV unit:MicroV unit:MilliV unit:V_Ab unit:V unit:V_Stat unit:PlanckVolt ) ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - skos:definition "The ambient temperature at which the power input was measured" ; - sh:class bsh:TemperatureShape ; - sh:path brick:ambientTemperatureOfMeasurement ], - [ a sh:PropertyShape ; - sh:path brick:ratedCurrentOutput ] . - -tag:AHU a brick:Tag ; - rdfs:label "AHU" . - -tag:Adjust a brick:Tag ; - rdfs:label "Adjust" . - -tag:Angle a brick:Tag ; - rdfs:label "Angle" . - -tag:Array a brick:Tag ; - rdfs:label "Array" . - -tag:Beam a brick:Tag ; - rdfs:label "Beam" . - -tag:Chiller a brick:Tag ; - rdfs:label "Chiller" . - -tag:Conditioning a brick:Tag ; - rdfs:label "Conditioning" . - -tag:Elevator a brick:Tag ; - rdfs:label "Elevator" . - -tag:Embedded a brick:Tag ; - rdfs:label "Embedded" . - -tag:Failure a brick:Tag ; - rdfs:label "Failure" . - -tag:Fequency a brick:Tag ; - rdfs:label "Fequency" . - -tag:Frame a brick:Tag ; - rdfs:label "Frame" . - -tag:Generation a brick:Tag ; - rdfs:label "Generation" . - -tag:Generator a brick:Tag ; - rdfs:label "Generator" . - -tag:Grains a brick:Tag ; - rdfs:label "Grains" . - -tag:Heater a brick:Tag ; - rdfs:label "Heater" . - -tag:Illuminance a brick:Tag ; - rdfs:label "Illuminance" . - -tag:Imbalance a brick:Tag ; - rdfs:label "Imbalance" . - -tag:Intercom a brick:Tag ; - rdfs:label "Intercom" . - -tag:Lead a brick:Tag ; - rdfs:label "Lead" . - -tag:Leak a brick:Tag ; - rdfs:label "Leak" . - -tag:Lighting a brick:Tag ; - rdfs:label "Lighting" . - -tag:Lobby a brick:Tag ; - rdfs:label "Lobby" . - -tag:Makeup a brick:Tag ; - rdfs:label "Makeup" . - -tag:Open a brick:Tag ; - rdfs:label "Open" . - -tag:Overridden a brick:Tag ; - rdfs:label "Overridden" . - -tag:Parking a brick:Tag ; - rdfs:label "Parking" . - -tag:Ratio a brick:Tag ; - rdfs:label "Ratio" . - -tag:Reheat a brick:Tag ; - rdfs:label "Reheat" . - -tag:Riser a brick:Tag ; - rdfs:label "Riser" . - -tag:Sensitivity a brick:Tag ; - rdfs:label "Sensitivity" . - -tag:Surveillance a brick:Tag ; - rdfs:label "Surveillance" . - -tag:Threshold a brick:Tag ; - rdfs:label "Threshold" . - -tag:Tint a brick:Tag ; - rdfs:label "Tint" . - -tag:Tolerance a brick:Tag ; - rdfs:label "Tolerance" . - -tag:Variable a brick:Tag ; - rdfs:label "Variable" . - -tag:Ventilation a brick:Tag ; - rdfs:label "Ventilation" . + skos:definition "Indicates the active/inactive status of a control loop (but not equipment activities or relays -- use On/Off for this purpose)"@en . -tag:Volume a brick:Tag ; - rdfs:label "Volume" . - -unit:KiloV-A a unit:Unit ; - rdfs:label "Kilovolt Ampere"@en . - -unit:MegaV-A a unit:Unit ; - rdfs:label "Megavolt Ampere"@en . - -unit:V-A a unit:Unit ; - rdfs:label "Volt Ampere"@en . - -brick:Condenser_Water a owl:Class, - sh:NodeShape, - brick:Condenser_Water ; - rdfs:label "Condenser Water" ; - rdfs:subClassOf brick:Water ; - skos:definition "Water used used to remove heat through condensation"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Condenser ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Condenser, - tag:Fluid, - tag:Liquid, - tag:Water . - -brick:Dewpoint a brick:Quantity ; - rdfs:label "Dewpoint" ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:DEG_R, - unit:K, - unit:MilliDEG_C, - unit:PlanckTemperature ; - brick:hasQUDTReference qudtqk:DewPointTemperature . - -brick:Differential_Temperature a brick:Quantity ; - rdfs:label "Differential Temperature" ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:DEG_R, - unit:K, - unit:MilliDEG_C, - unit:PlanckTemperature ; - qudt:isDeltaQuantity true ; - skos:broader brick:Temperature ; - brick:hasQUDTReference qudtqk:Temperature . - -brick:Discharge_Air_Temperature_Setpoint a owl:Class, +brick:Temperature_Sensor a owl:Class, sh:NodeShape ; - rdfs:label "Discharge Air Temperature Setpoint" ; - rdfs:subClassOf brick:Air_Temperature_Setpoint ; - skos:definition "Sets temperature of discharge air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Discharge_Air . + rdfs:label "Temperature Sensor" ; + rdfs:subClassOf brick:Sensor ; + skos:definition "Measures temperature: the physical property of matter that quantitatively expresses the common notions of hot and cold"@en . brick:Effective_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Effective Air Temperature Setpoint" ; - rdfs:subClassOf brick:Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Effective ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Effective, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Air . - -brick:Mode_Status a owl:Class, - sh:NodeShape ; - rdfs:label "Mode Status" ; - rdfs:subClassOf brick:Status ; - skos:definition "Indicates which mode a system, device or control loop is currently in"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Mode ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Mode, - tag:Point, - tag:Status . + rdfs:subClassOf brick:Air_Temperature_Setpoint . brick:Occupied_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Occupied Air Temperature Setpoint" ; - rdfs:subClassOf brick:Air_Temperature_Setpoint ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Occupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Occupied, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Air . + rdfs:subClassOf brick:Air_Temperature_Setpoint . brick:On_Off_Status a owl:Class, sh:NodeShape ; @@ -42816,2247 +4700,274 @@ brick:On_Off_Status a owl:Class, rdfs:subClassOf brick:Off_Status, brick:On_Status, brick:Status ; - skos:definition "Indicates the on/off status of a control loop, relay or equipment"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Off ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:On ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Off, - tag:On, - tag:Point, - tag:Status . + skos:definition "Indicates the on/off status of a control loop, relay or equipment"@en . brick:Proportional_Band_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Proportional Band Parameter" ; - rdfs:subClassOf brick:PID_Parameter ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Band ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:PID ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Proportional ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Band, - tag:PID, - tag:Parameter, - tag:Point, - tag:Proportional . - -brick:Radiant_Panel a owl:Class, - sh:NodeShape ; - rdfs:label "Radiant Panel" ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Terminal_Unit ; - skos:definition "A temperature-controlled surface that provides fifty percent (50%) or more of the design heat transfer by thermal radiation."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Panel ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radiant ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Panel, - tag:Radiant . + rdfs:subClassOf brick:PID_Parameter . brick:Relative_Humidity_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Relative Humidity Sensor" ; rdfs:subClassOf brick:Humidity_Sensor ; - skos:definition "Measures the present state of absolute humidity relative to a maximum humidity given the same temperature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Relative ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Humidity, - tag:Point, - tag:Relative, - tag:Sensor ; - brick:hasQuantity brick:Relative_Humidity ; - brick:hasSubstance brick:Air . + skos:definition "Measures the present state of absolute humidity relative to a maximum humidity given the same temperature"@en . brick:Supply_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Supply Water Temperature Setpoint" ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; - owl:equivalentClass brick:Discharge_Water_Temperature_Setpoint ; - skos:definition "Sets temperature of supply water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Setpoint, - tag:Supply, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Supply_Water . + skos:definition "Sets temperature of supply water"@en . brick:Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Temperature Setpoint" ; rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets temperature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature . + skos:definition "Sets temperature"@en . brick:Unoccupied_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Unoccupied Air Temperature Setpoint" ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; - skos:definition "Sets temperature of air when unoccupied"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unoccupied ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Unoccupied . - -unit:ARCMIN a unit:Unit ; - rdfs:label "ArcMinute"@en ; - qudt:symbol "'", - "'"^^xsd:string . - -unit:ARCSEC a unit:Unit ; - rdfs:label "ArcSecond"@en ; - qudt:symbol "\"", - "\""^^xsd:string . - -unit:DEG a unit:Unit ; - rdfs:label "Degree"@en ; - qudt:symbol "°", - "°"^^xsd:string . - -unit:DEG_C a unit:Unit ; - rdfs:label "Degree Celsius"@en . - -unit:DEG_F a unit:Unit ; - rdfs:label "Degree Fahrenheit"@en . - -unit:GON a unit:Unit ; - rdfs:label "Gon"@en ; - qudt:symbol "gon", - "gon"^^xsd:string, - "grad"^^xsd:string . - -unit:GRAD a unit:Unit ; - rdfs:label "Grad"@en ; - qudt:symbol "gon"^^xsd:string, - "grad", - "grad"^^xsd:string . - -unit:K a unit:Unit ; - rdfs:label "Kelvin"@en ; - qudt:symbol "K", - "K"^^xsd:string . - -unit:MIL a unit:Unit ; - rdfs:label "Mil Angle (NATO)"@en . - -unit:MicroRAD a unit:Unit ; - rdfs:label "microradian"@en ; - qudt:symbol "μrad", - "μrad"^^xsd:string . - -unit:MilliARCSEC a unit:Unit ; - rdfs:label "Milli ArcSecond"@en ; - qudt:symbol "mas", - "mas"^^xsd:string, - "rad"^^xsd:string . - -unit:MilliRAD a unit:Unit ; - rdfs:label "milliradian"@en ; - qudt:symbol "mrad", - "mrad"^^xsd:string . - -unit:RAD a unit:Unit ; - rdfs:label "Radian"@en ; - qudt:symbol "mas"^^xsd:string, - "rad", - "rad"^^xsd:string . - -unit:REV a unit:Unit ; - rdfs:label "Revolution"@en ; - qudt:symbol "rev", - "rev"^^xsd:string . + skos:definition "Sets temperature of air when unoccupied"@en . + +brick:Water_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Water Flow Setpoint" ; + rdfs:subClassOf brick:Flow_Setpoint ; + skos:definition "Sets the target flow rate of water"@en . brick:Air_Flow_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Air Flow Sensor" ; rdfs:subClassOf brick:Flow_Sensor ; - skos:definition "Measures the rate of flow of air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Flow, - tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Air . - -brick:Pressure a brick:Quantity ; - rdfs:label "Pressure" ; - qudt:applicableUnit unit:ATM, - unit:ATM_T, - unit:BAR, - unit:BARAD, - unit:BARYE, - unit:CM_H2O, - unit:CentiBAR, - unit:CentiM_H2O, - unit:CentiM_HG, - unit:DYN-PER-CentiM2, - unit:DecaPA, - unit:DeciBAR, - unit:FT_H2O, - unit:FT_HG, - unit:GM_F-PER-CentiM2, - unit:GigaPA, - unit:HectoBAR, - unit:HectoPA, - unit:IN_H2O, - unit:IN_HG, - unit:KIP_F-PER-IN2, - unit:KiloBAR, - unit:KiloGM-PER-M-SEC2, - unit:KiloGM_F-PER-CentiM2, - unit:KiloGM_F-PER-M2, - unit:KiloGM_F-PER-MilliM2, - unit:KiloLB_F-PER-IN2, - unit:KiloPA, - unit:KiloPA_A, - unit:LB_F-PER-FT2, - unit:LB_F-PER-IN2, - unit:MegaBAR, - unit:MegaPA, - unit:MicroATM, - unit:MicroBAR, - unit:MicroPA, - unit:MicroTORR, - unit:MilliBAR, - unit:MilliM_H2O, - unit:MilliM_HG, - unit:MilliM_HGA, - unit:MilliPA, - unit:MilliTORR, - unit:N-PER-CentiM2, - unit:N-PER-M2, - unit:N-PER-MilliM2, - unit:PA, - unit:PDL-PER-FT2, - unit:PSI, - unit:PlanckPressure, - unit:TORR ; - brick:hasQUDTReference qudtqk:Pressure . - -brick:Relative_Humidity a brick:Quantity ; - rdfs:label "Relative Humidity" ; - qudt:applicableUnit unit:UNITLESS ; - skos:broader brick:Humidity ; - skos:definition "Relative Humidity} is the ratio of the partial pressure of water vapor in an air-water mixture to the saturated vapor pressure of water at a prescribed temperature. The relative humidity of air depends not only on temperature but also on the pressure of the system of interest. Relative Humidity is also referred to as \\text{Relative Partial Pressure. Relative partial pressure is often referred to as (RH) and expressed in percent."@en ; - brick:hasQUDTReference qudtqk:RelativeHumidity . + skos:definition "Measures the rate of flow of air"@en . + +brick:Parameter a owl:Class, + sh:NodeShape ; + rdfs:label "Parameter" ; + rdfs:subClassOf brick:Point ; + skos:definition "Parameter points are configuration settings used to guide the operation of equipment and control systems; for example they may provide bounds on valid setpoint values"@en . brick:Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Static Pressure Setpoint" ; rdfs:subClassOf brick:Pressure_Setpoint ; - skos:definition "Sets static pressure"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Pressure ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Static ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Pressure, - tag:Setpoint, - tag:Static ; - brick:hasQuantity brick:Static_Pressure . + skos:definition "Sets static pressure"@en . brick:Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Temperature Deadband Setpoint" ; rdfs:subClassOf brick:Deadband_Setpoint, brick:Temperature_Setpoint ; - skos:definition "Sets the size of a deadband of temperature"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Deadband ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Deadband, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature . - -brick:Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Temperature Sensor" ; - rdfs:subClassOf brick:Sensor ; - skos:definition "Measures temperature: the physical property of matter that quantitatively expresses the common notions of hot and cold"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Sensor, - tag:Temperature ; - brick:hasQuantity brick:Temperature . + skos:definition "Sets the size of a deadband of temperature"@en . -brick:Water_Flow_Setpoint a owl:Class, +brick:Water_Flow_Sensor a owl:Class, sh:NodeShape ; - rdfs:label "Water Flow Setpoint" ; - rdfs:subClassOf brick:Flow_Setpoint ; - skos:definition "Sets the target flow rate of water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Point, - tag:Setpoint, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Water . - -tag:Area a brick:Tag ; - rdfs:label "Area" . - -tag:Baseboard a brick:Tag ; - rdfs:label "Baseboard" . - -tag:Diffuser a brick:Tag ; - rdfs:label "Diffuser" . - -tag:Enclosed a brick:Tag ; - rdfs:label "Enclosed" . - -tag:Face a brick:Tag ; - rdfs:label "Face" . - -tag:Fault a brick:Tag ; - rdfs:label "Fault" . - -tag:Fixed a brick:Tag ; - rdfs:label "Fixed" . - -tag:Floor a brick:Tag ; - rdfs:label "Floor" . - -tag:Frequency a brick:Tag ; - rdfs:label "Frequency" . - -tag:Fresh a brick:Tag ; - rdfs:label "Fresh" . - -tag:HVAC a brick:Tag ; - rdfs:label "HVAC" . - -tag:Interface a brick:Tag ; - rdfs:label "Interface" . - -tag:Loss a brick:Tag ; - rdfs:label "Loss" . - -tag:Luminance a brick:Tag ; - rdfs:label "Luminance" . - -tag:Manual a brick:Tag ; - rdfs:label "Manual" . - -tag:PV a brick:Tag ; - rdfs:label "PV" . - -tag:Radiant a brick:Tag ; - rdfs:label "Radiant" . - -tag:Run a brick:Tag ; - rdfs:label "Run" . - -tag:Solid a brick:Tag ; - rdfs:label "Solid" . - -tag:Underfloor a brick:Tag ; - rdfs:label "Underfloor" . - -tag:Wash a brick:Tag ; - rdfs:label "Wash" . + rdfs:label "Water Flow Sensor" ; + rdfs:subClassOf brick:Flow_Sensor ; + skos:definition "Measures the rate of flow of water"@en . brick:Air_Quality_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Air Quality Sensor" ; rdfs:subClassOf brick:Sensor ; - skos:definition "A sensor which provides a measure of air quality"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Quality ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Quality, - tag:Sensor . + skos:definition "A sensor which provides a measure of air quality"@en . brick:Air_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Air Temperature Sensor" ; rdfs:subClassOf brick:Temperature_Sensor ; - skos:definition "Measures the temperature of air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Sensor, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Air . - -brick:Discharge_Water a owl:Class, - sh:NodeShape, - brick:Discharge_Water ; - rdfs:label "Discharge Water" ; - rdfs:subClassOf brick:Water ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Discharge, - tag:Fluid, - tag:Liquid, - tag:Water . - -brick:Position a brick:Quantity ; - rdfs:label "Position" ; - qudt:applicableUnit unit:PERCENT ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Dimensionless ; - skos:definition "The fraction of the full range of motion", - "The fraction of the full range of motion"@en . - -brick:Substance a owl:Class ; - rdfs:label "Substance" ; - rdfs:subClassOf sosa:FeatureOfInterest, - brick:Measurable . - -brick:Supply_Water a owl:Class, - sh:NodeShape, - brick:Supply_Water ; - rdfs:label "Supply Water" ; - rdfs:subClassOf brick:Water ; - owl:equivalentClass brick:Discharge_Water ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Liquid, - tag:Supply, - tag:Water . - -brick:Water_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:label "Water Flow Sensor" ; - rdfs:subClassOf brick:Flow_Sensor ; - skos:definition "Measures the rate of flow of water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity brick:Flow ; - brick:hasSubstance brick:Water . - -brick:Electrical_Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "Electrical Equipment" ; - rdfs:subClassOf brick:Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Electrical ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Electrical, - tag:Equipment . - -brick:Entity a owl:Class . + skos:definition "Measures the temperature of air"@en . brick:Max_Limit a owl:Class, sh:NodeShape ; rdfs:label "Max Limit" ; rdfs:subClassOf brick:Limit ; - skos:definition "A parameter that places an upper bound on the range of permitted values of a Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Max ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Max, - tag:Parameter, - tag:Point . + skos:definition "A parameter that places an upper bound on the range of permitted values of a Setpoint."@en . brick:Min_Limit a owl:Class, sh:NodeShape ; rdfs:label "Min Limit" ; rdfs:subClassOf brick:Limit ; - skos:definition "A parameter that places a lower bound on the range of permitted values of a Setpoint."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Min ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Min, - tag:Parameter, - tag:Point . - -brick:System a owl:Class, - sh:NodeShape ; - rdfs:label "System" ; - rdfs:subClassOf brick:Collection ; - skos:definition "A System is a combination of equipment and auxiliary devices (e.g., controls, accessories, interconnecting means, and termi­nal elements) by which energy is transformed so it performs a specific function such as HVAC, service water heating, or lighting. (ASHRAE Dictionary)."@en ; - sh:property [ sh:or ( [ sh:class brick:Equipment ] [ sh:class brick:Point ] [ sh:class brick:Loop ] [ sh:class brick:System ] [ sh:class brick:Location ] [ sh:class brick:PV_Array ] ) ; - sh:path brick:hasPart ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Collection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:System ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Collection, - tag:System . + skos:definition "A parameter that places a lower bound on the range of permitted values of a Setpoint."@en . brick:Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Water Temperature Setpoint" ; rdfs:subClassOf brick:Temperature_Setpoint ; - skos:definition "Sets temperature of water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Setpoint, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Water . - -tag:Basin a brick:Tag ; - rdfs:label "Basin" . - -tag:Battery a brick:Tag ; - rdfs:label "Battery" . - -tag:Direction a brick:Tag ; - rdfs:label "Direction" . - -tag:Entering a brick:Tag ; - rdfs:label "Entering" . - -tag:Laboratory a brick:Tag ; - rdfs:label "Laboratory" . - -tag:Media a brick:Tag ; - rdfs:label "Media" . - -tag:Occupancy a brick:Tag ; - rdfs:label "Occupancy" . - -tag:Outdoor a brick:Tag ; - rdfs:label "Outdoor" . - -tag:Output a brick:Tag ; - rdfs:label "Output" . - -tag:Smoke a brick:Tag ; - rdfs:label "Smoke" . - -tag:Stack a brick:Tag ; - rdfs:label "Stack" . - -tag:Surface a brick:Tag ; - rdfs:label "Surface" . - -tag:Switch a brick:Tag ; - rdfs:label "Switch" . - -tag:VFD a brick:Tag ; - rdfs:label "VFD" . - -tag:Velocity a brick:Tag ; - rdfs:label "Velocity" . - -tag:Vertical a brick:Tag ; - rdfs:label "Vertical" . - -tag:Video a brick:Tag ; - rdfs:label "Video" . - -brick:AHU a owl:Class, - sh:NodeShape ; - rdfs:label "AHU" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "Assembly consisting of sections containing a fan or fans and other necessary equipment to perform one or more of the following functions: circulating, filtration, heating, cooling, heat recovery, humidifying, dehumidifying, and mixing of air. Is usually connected to an air-distribution system."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:AHU ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:AHU, - tag:Equipment . + skos:definition "Sets temperature of water"@en . brick:Cooling_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Cooling Temperature Setpoint" ; rdfs:subClassOf brick:Temperature_Setpoint ; - skos:definition "Sets temperature for cooling"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Cool ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Cool, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature . + skos:definition "Sets temperature for cooling"@en . brick:Enable_Command a owl:Class, sh:NodeShape ; rdfs:label "Enable Command" ; rdfs:subClassOf brick:Command ; - skos:definition "Commands that enable functionality"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Enable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Enable, - tag:Point . - -brick:Hot_Water a owl:Class, - sh:NodeShape, - brick:Hot_Water ; - rdfs:label "Hot Water" ; - rdfs:subClassOf brick:Water ; - skos:definition "Hot water used for HVAC heating or supply to hot taps"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Hot, - tag:Liquid, - tag:Water . + skos:definition "Commands that enable functionality"@en . brick:Humidity_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Humidity Setpoint" ; rdfs:subClassOf brick:Setpoint ; - skos:definition "Sets humidity"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Humidity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Humidity, - tag:Point, - tag:Setpoint ; - brick:hasQuantity brick:Humidity . - -brick:Terminal_Unit a owl:Class, - sh:NodeShape ; - rdfs:label "Terminal Unit" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "A device that regulates the volumetric flow rate and/or the temperature of the controlled medium."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Terminal ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Unit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Terminal, - tag:Unit . - -bsh:NumericValue a rdf:List ; - rdf:first [ sh:datatype xsd:float ] ; - rdf:rest ( [ sh:datatype xsd:decimal ] [ sh:datatype xsd:integer ] [ sh:datatype xsd:double ] ) . - -brick:Chilled_Water a owl:Class, - sh:NodeShape, - brick:Chilled_Water ; - rdfs:label "Chilled Water" ; - rdfs:subClassOf brick:Water ; - skos:definition "water used as a cooling medium (particularly in air-conditioning systems or in processes) at below ambient temperature."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Chilled ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Chilled, - tag:Fluid, - tag:Liquid, - tag:Water . - -brick:Exhaust_Air a owl:Class, - sh:NodeShape, - brick:Exhaust_Air ; - rdfs:label "Exhaust Air" ; - rdfs:subClassOf brick:Air ; - skos:definition "air that must be removed from a space due to contaminants, regardless of pressurization"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Exhaust ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Exhaust, - tag:Fluid, - tag:Gas . - -brick:Fan a owl:Class, - sh:NodeShape ; - rdfs:label "Fan" ; - rdfs:subClassOf brick:HVAC_Equipment ; - skos:definition "Any device with two or more blades or vanes attached to a rotating shaft used to produce an airflow for the purpose of comfort, ventilation, exhaust, heating, cooling, or any other gaseous transport."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fan ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Fan . + skos:definition "Sets humidity"@en . brick:Heating_Temperature_Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Heating Temperature Setpoint" ; rdfs:subClassOf brick:Temperature_Setpoint ; - skos:definition "Sets temperature for heating"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Heat ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Heat, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature . - -brick:hasUnit a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Has unit" ; - rdfs:range unit:Unit ; - skos:definition "The QUDT unit associated with this Brick entity (usually a Brick Point instance or Entity Property)"@en . - -tag:Average a brick:Tag ; - rdfs:label "Average" . - -tag:Boiler a brick:Tag ; - rdfs:label "Boiler" . - -tag:CO a brick:Tag ; - rdfs:label "CO" . - -tag:Control a brick:Tag ; - rdfs:label "Control" . - -tag:Detection a brick:Tag ; - rdfs:label "Detection" . - -tag:Distribution a brick:Tag ; - rdfs:label "Distribution" . - -tag:Exchanger a brick:Tag ; - rdfs:label "Exchanger" . - -tag:Leaving a brick:Tag ; - rdfs:label "Leaving" . - -tag:Lockout a brick:Tag ; - rdfs:label "Lockout" . - -tag:Loop a brick:Tag ; - rdfs:label "Loop" . - -tag:Motor a brick:Tag ; - rdfs:label "Motor" . - -tag:Preheat a brick:Tag ; - rdfs:label "Preheat" . - -tag:Shade a brick:Tag ; - rdfs:label "Shade" . - -tag:Solar a brick:Tag ; - rdfs:label "Solar" . - -tag:Standby a brick:Tag ; - rdfs:label "Standby" . - -tag:Thermal a brick:Tag ; - rdfs:label "Thermal" . - -tag:Usage a brick:Tag ; - rdfs:label "Usage" . - -brick:Air_Quality a brick:Quantity ; - rdfs:label "Air Quality" . - -brick:Air_Temperature_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:label "Air Temperature Setpoint" ; - rdfs:subClassOf brick:Temperature_Setpoint ; - skos:definition "Sets temperature of air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Setpoint, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Air . - -brick:Collection a owl:Class, - sh:NodeShape ; - rdfs:label "Collection" ; - rdfs:subClassOf brick:Class, - brick:Entity ; - sh:and ( [ sh:message "Collection is an exclusive top class." ; - sh:not [ sh:class brick:Equipment ] ] [ sh:message "Collection is an exclusive top class." ; - sh:not [ sh:class brick:Location ] ] [ sh:message "Collection is an exclusive top class." ; - sh:not [ sh:class brick:Substance ] ] [ sh:message "Collection is an exclusive top class." ; - sh:not [ sh:class brick:Quantity ] ] [ sh:message "Collection is an exclusive top class." ; - sh:not [ sh:class brick:Point ] ] ) ; - sh:message "Collection is an exclusive top class." ; - sh:or ( sh:property [ sh:class brick:Equipment ; - sh:message "A Collection can be associated with Equipments, Locations, Points, and other Collections." ; - sh:path brick:hasPart ] sh:property [ sh:class brick:Location ; - sh:message "A Collection can be associated with Equipments, Locations, Points, and other Collections." ; - sh:path brick:hasPart ] sh:property [ sh:class brick:Point ; - sh:message "A Collection can be associated with Equipments, Locations, Points, and other Collections." ; - sh:path brick:hasPart ] sh:property [ sh:class brick:Collection ; - sh:message "A Collection can be associated with Equipments, Locations, Points, and other Collections." ; - sh:path brick:hasPart ] ) ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Collection ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Collection . + skos:definition "Sets temperature for heating"@en . brick:Limit a owl:Class, sh:NodeShape ; rdfs:label "Limit" ; rdfs:subClassOf brick:Parameter ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Setpoint."@en, - "A parameter that places an upper or lower bound on the range of permitted values of another point"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Limit ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Limit, - tag:Parameter, - tag:Point . + "A parameter that places an upper or lower bound on the range of permitted values of another point"@en . + +brick:Air_Temperature_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Air Temperature Setpoint" ; + rdfs:subClassOf brick:Temperature_Setpoint ; + skos:definition "Sets temperature of air"@en . brick:Water_Temperature_Sensor a owl:Class, sh:NodeShape ; rdfs:label "Water Temperature Sensor" ; rdfs:subClassOf brick:Temperature_Sensor ; - skos:definition "Measures the temperature of water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Sensor, - tag:Temperature, - tag:Water ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Water . - -brick:Space a owl:Class, - sh:NodeShape ; - rdfs:label "Space" ; - rdfs:subClassOf brick:Location ; - skos:definition "A part of the physical world or a virtual world whose 3D spatial extent is bounded actually or theoretically, and provides for certain functions within the zone it is contained in."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Space ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Space . + skos:definition "Measures the temperature of water"@en . brick:Temperature_Parameter a owl:Class, sh:NodeShape ; rdfs:label "Temperature Parameter" ; rdfs:subClassOf brick:Parameter ; - skos:definition "Parameters relevant to temperature-related systems and points"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Parameter, - tag:Point, - tag:Temperature . - -tag:Plenum a brick:Tag ; - rdfs:label "Plenum" . - -tag:Start a brick:Tag ; - rdfs:label "Start" . - -tag:Station a brick:Tag ; - rdfs:label "Station" . - -tag:Stop a brick:Tag ; - rdfs:label "Stop" . - -tag:Storage a brick:Tag ; - rdfs:label "Storage" . - -tag:Telecom a brick:Tag ; - rdfs:label "Telecom" . - -brick:Humidity a brick:Quantity ; - rdfs:label "Humidity" . - -brick:Outside_Air a owl:Class, - sh:NodeShape, - brick:Outside_Air ; - rdfs:label "Outside Air" ; - rdfs:subClassOf brick:Air ; - skos:definition "air external to a defined zone (e.g., corridors)."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Outside ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Fluid, - tag:Gas, - tag:Outside . - -brick:Return_Air a owl:Class, - sh:NodeShape, - brick:Return_Air ; - rdfs:label "Return Air" ; - rdfs:subClassOf brick:Air ; - skos:definition "air removed from a space to be recirculated or exhausted. Air extracted from a space and totally or partially returned to an air conditioner, furnace, or other heating, cooling, or ventilating system."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Return ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Fluid, - tag:Gas, - tag:Return . - -brick:Static_Pressure a brick:Quantity ; - rdfs:label "Static Pressure" ; - qudt:applicableUnit unit:ATM, - unit:ATM_T, - unit:BAR, - unit:BARAD, - unit:BARYE, - unit:CM_H2O, - unit:CentiBAR, - unit:CentiM_H2O, - unit:CentiM_HG, - unit:DYN-PER-CentiM2, - unit:DecaPA, - unit:DeciBAR, - unit:FT_H2O, - unit:FT_HG, - unit:GM_F-PER-CentiM2, - unit:GigaPA, - unit:HectoBAR, - unit:HectoPA, - unit:IN_H2O, - unit:IN_HG, - unit:KIP_F-PER-IN2, - unit:KiloBAR, - unit:KiloGM-PER-M-SEC2, - unit:KiloGM_F-PER-CentiM2, - unit:KiloGM_F-PER-M2, - unit:KiloGM_F-PER-MilliM2, - unit:KiloLB_F-PER-IN2, - unit:KiloPA, - unit:KiloPA_A, - unit:LB_F-PER-FT2, - unit:LB_F-PER-IN2, - unit:MegaBAR, - unit:MegaPA, - unit:MicroATM, - unit:MicroBAR, - unit:MicroPA, - unit:MicroTORR, - unit:MilliBAR, - unit:MilliM_H2O, - unit:MilliM_HG, - unit:MilliM_HGA, - unit:MilliPA, - unit:MilliTORR, - unit:N-PER-CentiM2, - unit:N-PER-M2, - unit:N-PER-MilliM2, - unit:PA, - unit:PDL-PER-FT2, - unit:PSI, - unit:PlanckPressure, - unit:TORR ; - skos:broader brick:Pressure ; - brick:hasQUDTReference qudtqk:StaticPressure . - -brick:Meter a owl:Class, - sh:NodeShape ; - rdfs:label "Meter" ; - rdfs:subClassOf brick:Equipment ; - skos:definition "A device that measure usage or consumption of some media --- typically a form energy or power."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Meter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Meter . - -brick:Parameter a owl:Class, - sh:NodeShape ; - rdfs:label "Parameter" ; - rdfs:subClassOf brick:Point ; - owl:disjointWith brick:Alarm, - brick:Command, - brick:Sensor, - brick:Setpoint, - brick:Status ; - skos:definition "Parameter points are configuration settings used to guide the operation of equipment and control systems; for example they may provide bounds on valid setpoint values"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Parameter ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Parameter, - tag:Point . - -tag:Box a brick:Tag ; - rdfs:label "Box" . - -tag:Coil a brick:Tag ; - rdfs:label "Coil" . - -tag:Dewpoint a brick:Tag ; - rdfs:label "Dewpoint" . - -tag:Disable a brick:Tag ; - rdfs:label "Disable" . - -tag:Effective a brick:Tag ; - rdfs:label "Effective" . - -tag:Electrical a brick:Tag ; - rdfs:label "Electrical" . - -tag:Gain a brick:Tag ; - rdfs:label "Gain" . - -tag:Natural a brick:Tag ; - rdfs:label "Natural" . - -tag:Office a brick:Tag ; - rdfs:label "Office" . - -tag:Radiator a brick:Tag ; - rdfs:label "Radiator" . - -tag:Relative a brick:Tag ; - rdfs:label "Relative" . - -tag:Steam a brick:Tag ; - rdfs:label "Steam" . - -tag:Voltage a brick:Tag ; - rdfs:label "Voltage" . - -tag:Current a brick:Tag ; - rdfs:label "Current" . - -tag:Enthalpy a brick:Tag ; - rdfs:label "Enthalpy" . - -tag:Matter a brick:Tag ; - rdfs:label "Matter" . - -tag:Mixed a brick:Tag ; - rdfs:label "Mixed" . - -tag:Particulate a brick:Tag ; - rdfs:label "Particulate" . - -tag:Unit a brick:Tag ; - rdfs:label "Unit" . - -brick:Discharge_Air a owl:Class, - sh:NodeShape, - brick:Discharge_Air ; - rdfs:label "Discharge Air" ; - rdfs:subClassOf brick:Air ; - skos:definition "the air exiting the registers (vents)."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Discharge ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Discharge, - tag:Fluid, - tag:Gas . - -brick:Supply_Air a owl:Class, - sh:NodeShape, - brick:Supply_Air ; - rdfs:label "Supply Air" ; - rdfs:subClassOf brick:Air ; - owl:equivalentClass brick:Discharge_Air ; - skos:definition "(1) air delivered by mechanical or natural ventilation to a space, composed of any combination of outdoor air, recirculated air, or transfer air. (2) air entering a space from an air-conditioning, heating, or ventilating apparatus for the purpose of comfort conditioning. Supply air is generally filtered, fan forced, and either heated, cooled, humidified, or dehumidified as necessary to maintain specified conditions. Only the quantity of outdoor air within the supply airflow may be used as replacement air."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Supply ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Fluid, - tag:Gas, - tag:Supply . - -tag:Bypass a brick:Tag ; - rdfs:label "Bypass" . - -tag:Common a brick:Tag ; - rdfs:label "Common" . - -tag:Domestic a brick:Tag ; - rdfs:label "Domestic" . - -tag:Pump a brick:Tag ; - rdfs:label "Pump" . - -brick:hasPart a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Has part" ; - owl:inverseOf brick:isPartOf ; - skos:definition "The subject is composed in part of the entity given by the object"@en . - -brick:Point a owl:Class, - sh:NodeShape ; - rdfs:label "Point" ; - rdfs:subClassOf brick:Class, - brick:Entity ; - sh:and ( [ sh:message "Point is an exclusive top class." ; - sh:not [ sh:class brick:Equipment ] ] [ sh:message "Point is an exclusive top class." ; - sh:not [ sh:class brick:Location ] ] [ sh:message "Point is an exclusive top class." ; - sh:not [ sh:class brick:Substance ] ] [ sh:message "Point is an exclusive top class." ; - sh:not [ sh:class brick:Quantity ] ] [ sh:message "Point is an exclusive top class." ; - sh:not [ sh:class brick:Collection ] ] ) ; - sh:message "Point is an exclusive top class." ; - sh:or ( sh:property [ sh:class brick:Location ; - sh:message "A point can be associated with Locations or Equipment" ; - sh:path brick:isPointOf ] sh:property [ sh:class brick:Equipment ; - sh:message "A point can be associated with Locations or Equipment" ; - sh:path brick:isPointOf ] ) ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point . - -tag:Collection a brick:Tag ; - rdfs:label "Collection" . - -tag:Damper a brick:Tag ; - rdfs:label "Damper" . - -tag:Electric a brick:Tag ; - rdfs:label "Electric" . - -tag:Filter a brick:Tag ; - rdfs:label "Filter" . - -tag:Step a brick:Tag ; - rdfs:label "Step" . - -brick:Differential_Pressure a brick:Quantity ; - rdfs:label "Differential Pressure" ; - qudt:isDeltaQuantity true ; - skos:broader brick:Pressure . - -tag:CO2 a brick:Tag ; - rdfs:label "CO2" . - -tag:Energy a brick:Tag ; - rdfs:label "Energy" . - -tag:Fire a brick:Tag ; - rdfs:label "Fire" . - -tag:Position a brick:Tag ; - rdfs:label "Position" . - -tag:Security a brick:Tag ; - rdfs:label "Security" . - -tag:Service a brick:Tag ; - rdfs:label "Service" . + skos:definition "Parameters relevant to temperature-related systems and points"@en . brick:Setpoint a owl:Class, sh:NodeShape ; rdfs:label "Setpoint" ; - rdfs:seeAlso , - "https://xp20.ashrae.org/terminology/index.php?term=setpoint" ; rdfs:subClassOf brick:Point ; - owl:disjointWith brick:Alarm, - brick:Command, - brick:Parameter, - brick:Sensor, - brick:Status ; - skos:definition "A Setpoint is an input value at which the desired property is set"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Setpoint . - -bsh:ValueShape a owl:Class . + skos:definition "A Setpoint is an input value at which the desired property is set"@en . brick:Alarm a owl:Class, sh:NodeShape ; rdfs:label "Alarm" ; - rdfs:seeAlso ; rdfs:subClassOf brick:Point ; - owl:disjointWith brick:Command, - brick:Parameter, - brick:Sensor, - brick:Setpoint, - brick:Status ; - skos:definition "Alarm points are signals (either audible or visual) that alert an operator to an off-normal condition which requires some form of corrective action"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Alarm ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Alarm, - tag:Point . - -tag:Building a brick:Tag ; - rdfs:label "Building" . - -tag:Demand a brick:Tag ; - rdfs:label "Demand" . - -tag:Meter a brick:Tag ; - rdfs:label "Meter" . - -tag:Panel a brick:Tag ; - rdfs:label "Panel" . - -brick:Water a owl:Class, - sh:NodeShape, - brick:Water ; - rdfs:label "Water" ; - rdfs:subClassOf brick:Liquid ; - skos:definition "transparent, odorless, tasteless liquid; a compound of hydrogen and oxygen (H2O), containing 11.188% hydrogen and 88.812% oxygen by mass; freezing at 32°F (0°C); boiling near 212°F (100°C)."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Liquid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Fluid, - tag:Liquid, - tag:Water . - -brick:Location a owl:Class, - sh:NodeShape ; - rdfs:label "Location" ; - rdfs:subClassOf brick:Class, - brick:Entity ; - sh:and ( [ sh:message "Location is an exclusive top class." ; - sh:not [ sh:class brick:Point ] ] [ sh:message "Location is an exclusive top class." ; - sh:not [ sh:class brick:Equipment ] ] [ sh:message "Location is an exclusive top class." ; - sh:not [ sh:class brick:Substance ] ] [ sh:message "Location is an exclusive top class." ; - sh:not [ sh:class brick:Quantity ] ] [ sh:message "Location is an exclusive top class." ; - sh:not [ sh:class brick:Collection ] ] ), - ( [ sh:message "Location is an exclusive top class." ; - sh:not [ sh:class brick:Point ] ] [ sh:message "Location is an exclusive top class." ; - sh:not [ sh:class brick:Equipment ] ] [ sh:message "Location is an exclusive top class." ; - sh:not [ sh:class brick:Substance ] ] [ sh:message "Location is an exclusive top class." ; - sh:not [ sh:class brick:Quantity ] ] [ sh:message "Location is an exclusive top class." ; - sh:not [ sh:class brick:Collection ] ] ) ; - sh:property [ sh:class brick:Location ; - sh:message "A Location's parts should be always Locations." ; - sh:path brick:hasPart ], - [ sh:class brick:Location ; - sh:message "A Location's parts should be always Locations." ; - sh:path brick:isPartOf ], - [ sh:class brick:Equipment ; - sh:message "Locations can be fed only by other Equipment." ; - sh:path brick:isFedBy ], - [ sh:class brick:Point ; - sh:message "A Location may have associated Points" ; - sh:path brick:hasPoint ], - [ sh:class brick:Location ; - sh:message "A Location's parts should be always Locations." ; - sh:path brick:hasPart ], - [ sh:class brick:Location ; - sh:message "A Location's parts should be always Locations." ; - sh:path brick:isPartOf ], - [ sh:class brick:Equipment ; - sh:message "Locations can be fed only by other Equipment." ; - sh:path brick:isFedBy ], - [ sh:class brick:Point ; - sh:message "A Location may have associated Points" ; - sh:path brick:hasPoint ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location . - -tag:Emergency a brick:Tag ; - rdfs:label "Emergency" . - -tag:On a brick:Tag ; - rdfs:label "On" . - -tag:Power a brick:Tag ; - rdfs:label "Power" . - -tag:Speed a brick:Tag ; - rdfs:label "Speed" . + skos:definition "Alarm points are signals (either audible or visual) that alert an operator to an off-normal condition which requires some form of corrective action"@en . brick:Command a owl:Class, sh:NodeShape ; rdfs:label "Command" ; rdfs:subClassOf brick:Point ; - owl:disjointWith brick:Alarm, - brick:Parameter, - brick:Sensor, - brick:Setpoint, - brick:Status ; - skos:definition "A Command is an output point that directly determines the behavior of equipment and/or affects relevant operational points."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Command ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Command, - tag:Point . - -tag:Medium a brick:Tag ; - rdfs:label "Medium" . - -tag:Mode a brick:Tag ; - rdfs:label "Mode" . - -brick:HVAC_Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "HVAC Equipment" ; - rdfs:subClassOf brick:Equipment ; - skos:definition "See Heating_Ventilation_Air_Conditioning_System"@en ; - sh:property [ sh:or ( [ sh:class brick:HVAC_Equipment ] [ sh:class brick:Valve ] [ sh:class brick:Location ] ) ; - sh:path brick:feeds ], - [ sh:or ( [ sh:class brick:HVAC_Equipment ] [ sh:class brick:Valve ] ) ; - sh:path brick:hasPart ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:HVAC ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:HVAC . - -tag:Level a brick:Tag ; - rdfs:label "Level" . - -tag:Off a brick:Tag ; - rdfs:label "Off" . - -brick:Equipment a owl:Class, - sh:NodeShape ; - rdfs:label "Equipment" ; - rdfs:subClassOf brick:Class, - brick:Entity ; - skos:definition "devices that serve all or part of the building and may include electric power, lighting, transportation, or service water heating, including, but not limited to, furnaces, boilers, air conditioners, heat pumps, chillers, water heaters, lamps, luminaires, ballasts, elevators, escalators, or other devices or installations."@en ; - sh:and ( [ sh:message "Equipment is an exclusive top class." ; - sh:not [ sh:class brick:Point ] ] [ sh:message "Equipment is an exclusive top class." ; - sh:not [ sh:class brick:Location ] ] [ sh:message "Equipment is an exclusive top class." ; - sh:not [ sh:class brick:Substance ] ] [ sh:message "Equipment is an exclusive top class." ; - sh:not [ sh:class brick:Quantity ] ] [ sh:message "Equipment is an exclusive top class." ; - sh:not [ sh:class brick:Collection ] ] ) ; - sh:message "Equipment is an exclusive top class." ; - sh:or ( sh:property [ sh:class brick:System ; - sh:message "Equipment can be part of a Collection, System or other Equipment" ; - sh:path brick:isPartOf ] sh:property [ sh:class brick:Equipment ; - sh:message "Equipment can be part of a Collection, System or other Equipment" ; - sh:path brick:isPartOf ] sh:property [ sh:class brick:Collection ; - sh:message "Equipment can be part of a Collection, System or other Equipment" ; - sh:path brick:isPartOf ] ), - ( sh:property [ sh:class brick:Equipment ; - sh:message "A piece of Equipment can feed a Equipment" ; - sh:path brick:feeds ] sh:property [ sh:class brick:Location ; - sh:message "A piece of Equipment can feed a Location" ; - sh:path brick:feeds ] ) ; - sh:property [ sh:class brick:Equipment ; - sh:message "A piece of Equipment's parts should be always other Equipment." ; - sh:path brick:hasPart ], - [ sh:class brick:Location ; - sh:message "A piece of Equipment can be located only at a Location" ; - sh:path brick:hasLocation ], - [ sh:class brick:Point ; - sh:message "A piece of Equipment may have associated Points" ; - sh:path brick:hasPoint ] ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment . - -brick:Room a owl:Class, - sh:NodeShape ; - rdfs:label "Room" ; - rdfs:subClassOf brick:Space ; - skos:definition "Base class for all more specific room types."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Location ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Room ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Location, - tag:Room . - -tag:Safety a brick:Tag ; - rdfs:label "Safety" . + skos:definition "A Command is an output point that directly determines the behavior of equipment and/or affects relevant operational points."@en . brick:Status a owl:Class, sh:NodeShape ; rdfs:label "Status" ; rdfs:subClassOf brick:Point ; - owl:disjointWith brick:Alarm, - brick:Command, - brick:Parameter, - brick:Sensor, - brick:Setpoint ; - skos:definition "A Status is input point that reports the current operating mode, state, position, or condition of an item. Statuses are observations and should be considered 'read-only'"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Status ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Status . - -brick:value a rdf:Property, - owl:DatatypeProperty ; - rdfs:label "Value" ; - rdfs:subPropertyOf s223:hasSimpleValue, - qudt:value ; - skos:definition "The basic value of an entity property" . - -tag:Band a brick:Tag ; - rdfs:label "Band" . - -brick:Air a owl:Class, - sh:NodeShape, - brick:Air ; - rdfs:label "Air" ; - rdfs:subClassOf brick:Gas ; - skos:definition "the invisible gaseous substance surrounding the earth, a mixture mainly of oxygen and nitrogen."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Fluid ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gas ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Fluid, - tag:Gas . - -tag:Enable a brick:Tag ; - rdfs:label "Enable" . - -tag:Fan a brick:Tag ; - rdfs:label "Fan" . - -tag:Integral a brick:Tag ; - rdfs:label "Integral" . - -brick:EntityProperty a owl:Class ; - rdfs:subClassOf owl:ObjectProperty . - -tag:Condenser a brick:Tag ; - rdfs:label "Condenser" . - -tag:Proportional a brick:Tag ; - rdfs:label "Proportional" . - -tag:Zone a brick:Tag ; - rdfs:label "Zone" . - -tag:Time a brick:Tag ; - rdfs:label "Time" . - -brick:Flow a brick:Quantity ; - rdfs:label "Flow" ; - qudt:applicableUnit unit:BBL_UK_PET-PER-DAY, - unit:BBL_UK_PET-PER-HR, - unit:BBL_UK_PET-PER-MIN, - unit:BBL_UK_PET-PER-SEC, - unit:BBL_US-PER-DAY, - unit:BBL_US-PER-MIN, - unit:BBL_US_PET-PER-HR, - unit:BBL_US_PET-PER-SEC, - unit:BU_UK-PER-DAY, - unit:BU_UK-PER-HR, - unit:BU_UK-PER-MIN, - unit:BU_UK-PER-SEC, - unit:BU_US_DRY-PER-DAY, - unit:BU_US_DRY-PER-HR, - unit:BU_US_DRY-PER-MIN, - unit:BU_US_DRY-PER-SEC, - unit:CentiM3-PER-DAY, - unit:CentiM3-PER-HR, - unit:CentiM3-PER-MIN, - unit:CentiM3-PER-SEC, - unit:DeciM3-PER-DAY, - unit:DeciM3-PER-HR, - unit:DeciM3-PER-MIN, - unit:DeciM3-PER-SEC, - unit:FT3-PER-DAY, - unit:FT3-PER-HR, - unit:FT3-PER-MIN, - unit:FT3-PER-SEC, - unit:GAL_UK-PER-DAY, - unit:GAL_UK-PER-HR, - unit:GAL_UK-PER-MIN, - unit:GAL_UK-PER-SEC, - unit:GAL_US-PER-DAY, - unit:GAL_US-PER-HR, - unit:GAL_US-PER-MIN, - unit:GAL_US-PER-SEC, - unit:GI_UK-PER-DAY, - unit:GI_UK-PER-HR, - unit:GI_UK-PER-MIN, - unit:GI_UK-PER-SEC, - unit:GI_US-PER-DAY, - unit:GI_US-PER-HR, - unit:GI_US-PER-MIN, - unit:GI_US-PER-SEC, - unit:IN3-PER-HR, - unit:IN3-PER-MIN, - unit:IN3-PER-SEC, - unit:KiloL-PER-HR, - unit:L-PER-DAY, - unit:L-PER-HR, - unit:L-PER-MIN, - unit:L-PER-SEC, - unit:M3-PER-DAY, - unit:M3-PER-HR, - unit:M3-PER-MIN, - unit:M3-PER-SEC, - unit:MilliL-PER-DAY, - unit:MilliL-PER-HR, - unit:MilliL-PER-MIN, - unit:MilliL-PER-SEC, - unit:OZ_VOL_UK-PER-DAY, - unit:OZ_VOL_UK-PER-HR, - unit:OZ_VOL_UK-PER-MIN, - unit:OZ_VOL_UK-PER-SEC, - unit:OZ_VOL_US-PER-DAY, - unit:OZ_VOL_US-PER-HR, - unit:OZ_VOL_US-PER-MIN, - unit:OZ_VOL_US-PER-SEC, - unit:PINT_UK-PER-DAY, - unit:PINT_UK-PER-HR, - unit:PINT_UK-PER-MIN, - unit:PINT_UK-PER-SEC, - unit:PINT_US-PER-DAY, - unit:PINT_US-PER-HR, - unit:PINT_US-PER-MIN, - unit:PINT_US-PER-SEC, - unit:PK_UK-PER-DAY, - unit:PK_UK-PER-HR, - unit:PK_UK-PER-MIN, - unit:PK_UK-PER-SEC, - unit:PK_US_DRY-PER-DAY, - unit:PK_US_DRY-PER-HR, - unit:PK_US_DRY-PER-MIN, - unit:PK_US_DRY-PER-SEC, - unit:QT_UK-PER-DAY, - unit:QT_UK-PER-HR, - unit:QT_UK-PER-MIN, - unit:QT_UK-PER-SEC, - unit:QT_US-PER-DAY, - unit:QT_US-PER-HR, - unit:QT_US-PER-MIN, - unit:QT_US-PER-SEC, - unit:YD3-PER-DAY, - unit:YD3-PER-HR, - unit:YD3-PER-MIN, - unit:YD3-PER-SEC ; - brick:hasQUDTReference qudtqk:VolumeFlowRate . + skos:definition "A Status is input point that reports the current operating mode, state, position, or condition of an item. Statuses are observations and should be considered 'read-only'"@en . brick:Sensor a owl:Class, sh:NodeShape ; rdfs:label "Sensor" ; - rdfs:seeAlso "https://xp20.ashrae.org/terminology/index.php?term=Sensor" ; rdfs:subClassOf brick:Point ; - owl:disjointWith brick:Alarm, - brick:Command, - brick:Parameter, - brick:Setpoint, - brick:Status ; - skos:definition "A Sensor is an input point that represents the value of a device or instrument designed to detect and measure a variable (ASHRAE Dictionary)."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Point, - tag:Sensor . - -tag:Deadband a brick:Tag ; - rdfs:label "Deadband" . - -tag:Shed a brick:Tag ; - rdfs:label "Shed" . - -tag:Exhaust a brick:Tag ; - rdfs:label "Exhaust" . - -tag:Gas a brick:Tag ; - rdfs:label "Gas" . - -tag:High a brick:Tag ; - rdfs:label "High" . - -tag:Valve a brick:Tag ; - rdfs:label "Valve" . - -tag:Humidity a brick:Tag ; - rdfs:label "Humidity" . - -tag:Low a brick:Tag ; - rdfs:label "Low" . - -tag:Load a brick:Tag ; - rdfs:label "Load" . - -tag:Max a brick:Tag ; - rdfs:label "Max" . - -tag:Min a brick:Tag ; - rdfs:label "Min" . - -tag:Liquid a brick:Tag ; - rdfs:label "Liquid" . - -tag:Occupied a brick:Tag ; - rdfs:label "Occupied" . - -tag:Unoccupied a brick:Tag ; - rdfs:label "Unoccupied" . - -tag:Outside a brick:Tag ; - rdfs:label "Outside" . - -tag:Reset a brick:Tag ; - rdfs:label "Reset" . - -brick:Temperature a brick:Quantity ; - rdfs:label "Temperature" ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:DEG_R, - unit:K, - unit:MilliDEG_C, - unit:PlanckTemperature ; - brick:hasQUDTReference qudtqk:Temperature . + skos:definition "A Sensor is an input point that represents the value of a device or instrument designed to detect and measure a variable (ASHRAE Dictionary)."@en . -tag:Static a brick:Tag ; - rdfs:label "Static" . - -tag:Chilled a brick:Tag ; - rdfs:label "Chilled" . - -tag:System a brick:Tag ; - rdfs:label "System" . - -tag:Return a brick:Tag ; - rdfs:label "Return" . - -tag:Fluid a brick:Tag ; - rdfs:label "Fluid" . - -tag:PID a brick:Tag ; - rdfs:label "PID" . - -brick:Quantity a owl:Class ; - rdfs:label "Quantity" ; - rdfs:subClassOf skos:Concept, - sosa:ObservableProperty, - brick:Measurable . - -tag:Cool a brick:Tag ; - rdfs:label "Cool" . - -tag:Limit a brick:Tag ; - rdfs:label "Limit" . - -tag:Command a brick:Tag ; - rdfs:label "Command" . - -tag:Room a brick:Tag ; - rdfs:label "Room" . - -tag:Heat a brick:Tag ; - rdfs:label "Heat" . - -tag:Alarm a brick:Tag ; - rdfs:label "Alarm" . - -tag:Differential a brick:Tag ; - rdfs:label "Differential" . - -tag:Hot a brick:Tag ; - rdfs:label "Hot" . +brick:AHU a owl:Class, + sh:NodeShape ; + rdfs:label "AHU" ; + rdfs:subClassOf brick:HVAC_Equipment ; + skos:definition "Assembly consisting of sections containing a fan or fans and other necessary equipment to perform one or more of the following functions: circulating, filtration, heating, cooling, heat recovery, humidifying, dehumidifying, and mixing of air. Is usually connected to an air-distribution system."@en . -tag:Space a brick:Tag ; - rdfs:label "Space" . +brick:VAV a owl:Class, + sh:NodeShape ; + rdfs:label "VAV" ; + rdfs:subClassOf brick:Terminal_Unit ; + skos:definition "See Variable_Air_Volume_Box"@en . -tag:Status a brick:Tag ; - rdfs:label "Status" . +brick:Supply_Fan a owl:Class, + sh:NodeShape ; + rdfs:label "Supply Fan" ; + rdfs:subClassOf brick:Fan ; + owl:equivalentClass brick:Discharge_Fan ; + skos:definition "Fan moving supply air -- air that is supplied from the HVAC system into the building"@en . -tag:Pressure a brick:Tag ; - rdfs:label "Pressure" . +brick:CAV a owl:Class, + sh:NodeShape ; + rdfs:label "CAV" ; + rdfs:subClassOf brick:Terminal_Unit . -tag:Location a brick:Tag ; - rdfs:label "Location" . +brick:Temperature_Adjust_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Temperature_Adjust_Sensor" ; + rdfs:subClassOf brick:Sensor. -tag:Discharge a brick:Tag ; - rdfs:label "Discharge" . +brick:Heating_Coil a owl:Class, + sh:NodeShape ; + rdfs:label "Heating Coil" ; + rdfs:subClassOf brick:Coil . -tag:Supply a brick:Tag ; - rdfs:label "Supply" . +brick:Cooling_Coil a owl:Class, + sh:NodeShape ; + rdfs:label "Cooling Coil" ; + rdfs:subClassOf brick:Coil . -tag:Flow a brick:Tag ; - rdfs:label "Flow" . +brick:Mode_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Mode Command" ; + rdfs:subClassOf brick:Command . -tag:Parameter a brick:Tag ; - rdfs:label "Parameter" . +brick:Frequency_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Frequency Command" ; + rdfs:subClassOf brick:Command . -tag:Equipment a brick:Tag ; - rdfs:label "Equipment" . +brick:Run_Status a owl:Class, + sh:NodeShape ; + rdfs:label "Run Status" ; + rdfs:subClassOf brick:Start_Stop_Status . -tag:Water a brick:Tag ; - rdfs:label "Water" . +brick:Valve_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Valve Command" ; + rdfs:subClassOf brick:Command . -brick:Tag a owl:Class . +brick:Chilled_Water_Pump a owl:Class, + sh:NodeShape ; + rdfs:label "Chilled Water Pump" ; + rdfs:subClassOf brick:Water_Pump . -tag:Temperature a brick:Tag ; - rdfs:label "Temperature" . +brick:Leaving_Condenser_Water_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Leaving Condenser Water Temperature Sensor" ; + rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor . -tag:Sensor a brick:Tag ; - rdfs:label "Sensor" . +brick:Entering_Condenser_Water_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Entering Condenser Water Temperature Sensor" ; + rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor . -tag:Setpoint a brick:Tag ; - rdfs:label "Setpoint" . +brick:Entering_Chilled_Water_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Entering Chilled Water Temperature Sensor" ; + rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor . -tag:Air a brick:Tag ; - rdfs:label "Air" . +brick:Leaving_Chilled_Water_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Leaving Chilled Water Temperature Sensor" ; + rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor . -tag:Point a brick:Tag ; - rdfs:label "Point" . +brick:Valve_Position_Command a owl:Class, + sh:NodeShape ; + rdfs:label "Valve Position Command" ; + rdfs:subClassOf brick:Position_Command, + brick:Valve_Command . -brick:hasTag a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Has tag" ; - rdfs:range brick:Tag ; - owl:inverseOf brick:isTagOf ; - skos:definition "The subject has the given tag"@en . +brick:Damper a owl:Class, + sh:NodeShape ; + rdfs:label "Damper" ; + rdfs:subClassOf brick:HVAC_Equipment . \ No newline at end of file From 1064beb206686cb4edbd9e6c4c098262f0706570 Mon Sep 17 00:00:00 2001 From: Gabe Fierro Date: Tue, 29 Aug 2023 13:47:26 -0600 Subject: [PATCH 04/11] update docs for validation with manifest --- docs/conf.py | 2 +- docs/tutorials/model_validation.md | 16 ++++++++++++---- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 6e74e26b4..2b5bf8833 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,7 +14,7 @@ execution_allow_errors = False execution_excludepatterns = [] execution_in_temp = False -execution_timeout = 30 +execution_timeout = 300 extensions = ['sphinx_togglebutton', 'sphinx_copybutton', 'myst_nb', 'jupyter_book', 'sphinx_thebe', 'sphinx_comments', 'sphinx_external_toc', 'sphinx.ext.intersphinx', 'sphinx_design', 'sphinx_book_theme', 'sphinx.ext.autodoc', 'sphinx.ext.autosummary', 'sphinx.ext.viewcode', 'sphinxcontrib.bibtex', 'sphinx_jupyterbook_latex'] external_toc_exclude_missing = False external_toc_path = '_toc.yml' diff --git a/docs/tutorials/model_validation.md b/docs/tutorials/model_validation.md index f444df4c3..fbc13e159 100644 --- a/docs/tutorials/model_validation.md +++ b/docs/tutorials/model_validation.md @@ -240,7 +240,11 @@ model.update_manifest(manifest) ### Validating the Model -We can now ask BuildingMOTIF to validate the model against the manifest and ask BuildingMOTIF for some details if it fails. We also have to be sure to include the supporting shape collections containing the definitions used in the manifest. +We can now ask BuildingMOTIF to validate the model against the manifest and ask BuildingMOTIF for some details if it fails. +By default, BuildingMOTIF will include all shape collections imported by the manifest (`owl:imports`). BuildingMOTIF will +complain if the manifest requires ontologies that have not yet been loaded into BuildingMOTIF; this is why we are careful +to load in the Brick and Guideline36 libraries at the top of this tutorial. + ```{code-cell} validation_result = model.validate() @@ -251,8 +255,13 @@ for diff in validation_result.diffset: print(f" - {diff.reason()}") ``` -```{code-cell} +```{admonition} Tip on supplying extra shape collections +:class: dropdown + +We can also provide a list of shape collections directly to `Model.validate`; BuildingMOTIF +will use these shape collections to validate the model *instead of* the manifest. +```python # gather shape collections into a list for ease of use shape_collections = [ brick.get_shape_collection(), @@ -297,8 +306,7 @@ print(model.graph.serialize()) We can see that the heating coil was added to the model and connected to the AHU so let's check if the manifest validation failure was fixed. ```{code-cell} -# pass a list of shape collections to .validate() -validation_result = model.validate(shape_collections) +validation_result = model.validate() print(f"Model is valid? {validation_result.valid}") # print reasons From 9911564c520242556d1000433c2a49b28ddb69e1 Mon Sep 17 00:00:00 2001 From: Gabe Fierro Date: Tue, 29 Aug 2023 13:47:33 -0600 Subject: [PATCH 05/11] add missing fixture --- tests/unit/fixtures/shapes/shape2.ttl | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tests/unit/fixtures/shapes/shape2.ttl diff --git a/tests/unit/fixtures/shapes/shape2.ttl b/tests/unit/fixtures/shapes/shape2.ttl new file mode 100644 index 000000000..8c08d0864 --- /dev/null +++ b/tests/unit/fixtures/shapes/shape2.ttl @@ -0,0 +1,30 @@ +@prefix brick: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix sh: . +@prefix : . + +: a owl:Ontology ; + owl:imports . + +:vav_shape a sh:NodeShape ; + sh:targetClass brick:VAV ; + sh:property [ + sh:path brick:hasPoint ; + sh:qualifiedValueShape [ sh:class brick:Air_Flow_Sensor ] ; + sh:qualifiedMinCount 1 ; + sh:minCount 1; + ] ; +. + +:tu_shape a sh:NodeShape ; + sh:targetClass brick:Terminal_Unit ; + sh:property [ + sh:path brick:hasPoint ; + sh:qualifiedValueShape [ sh:class brick:Temperature_Sensor ] ; + sh:qualifiedMinCount 1 ; + sh:minCount 1; + ] ; +. + From f48434fdb69d638fdd2a1ac1eb338b98bb3236e7 Mon Sep 17 00:00:00 2001 From: Gabe Fierro Date: Tue, 29 Aug 2023 13:50:55 -0600 Subject: [PATCH 06/11] fix test --- tests/unit/dataclasses/test_model.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/unit/dataclasses/test_model.py b/tests/unit/dataclasses/test_model.py index b9ed457b1..9d62e7c67 100644 --- a/tests/unit/dataclasses/test_model.py +++ b/tests/unit/dataclasses/test_model.py @@ -46,12 +46,9 @@ def test_load_model(clean_building_motif): def test_update_model_manifest(clean_building_motif): m = Model.create(name="https://example.com", description="a very good model") - with pytest.raises(Exception): - # should be empty _manifest_id, so no ShapeCollection can be found - m.get_manifest() lib = Library.load(ontology_graph="tests/unit/fixtures/shapes/shape1.ttl") assert lib is not None - # update with library + # update manifest with library m.update_manifest(lib) assert m.get_manifest().id == lib.get_shape_collection().id # update with ShapeCollection From 9334bc3e0d519a2e06d3e27a4d516a55e942046e Mon Sep 17 00:00:00 2001 From: Gabe Fierro Date: Tue, 29 Aug 2023 14:36:01 -0600 Subject: [PATCH 07/11] remove extraneous imports from 223 (exposed by bmotif tests) --- libraries/ashrae/223p/ontology/223p.ttl | 56 ------------------------- 1 file changed, 56 deletions(-) diff --git a/libraries/ashrae/223p/ontology/223p.ttl b/libraries/ashrae/223p/ontology/223p.ttl index 8b6ed8ee3..d8f2cff27 100644 --- a/libraries/ashrae/223p/ontology/223p.ttl +++ b/libraries/ashrae/223p/ontology/223p.ttl @@ -1363,8 +1363,6 @@ FILTER (?system != ?homeSystem) . sh:returnType xsd:boolean . rdfs:comment "This graph contains some SPARQLFunction definitions, which are part of SHACL Advanced Features (SHACL AF). Thus, they may not be supported by all SHACL implementations." ; - owl:imports , - sh: ; owl:versionInfo "Created with TopBraid Composer" . g36:AirFlowStationAnnotation a sh:NodeShape ; @@ -1427,36 +1425,6 @@ g36:VAV_4-1 a s223:Class, sh:path [ sh:inversePath s223:contains ] ] ] ; sh:path s223:connectedTo ] . - rdfs:comment """This file can be used to control which extensions are to be loaded with the 223 ontology by importing the appropriate graph(s). Options include: -For access to magic properties and other SPIN functions - http://data.ashraw.org/standard223/1.0/function/spin. -For validation of the schema, model, or data - http://data.ashrae.org/standard223/1.0/validation/schema (or model or data). -For inferred properties - http://data.ashrae.org/standard223/1.0/inference/model-rules (and/or schema-rules, data-rules)""" ; - owl:imports , - , - , - , - , - , - , - , - ; - owl:versionInfo "Created with TopBraid Composer" . - - owl:imports ; - owl:versionInfo "Created with TopBraid Composer" . - - spin:imports ; - owl:imports ; - owl:versionInfo "Created with TopBraid Composer" . - - owl:imports ; - owl:versionInfo "Created with TopBraid Composer" . - - owl:imports . - - owl:imports ; - owl:versionInfo "Created with TopBraid Composer" . - spin:allProperties a spin:MagicProperty ; rdfs:label "Find all Properties" ; spin:body [ a sp:Select ; @@ -1676,13 +1644,6 @@ s223:produces a rdf:Property ; s223:scp a rdf:Property . - owl:imports . - - owl:imports . - - owl:imports ; - owl:versionInfo "Created with TopBraid Composer" . - g36:AirFlowStation a s223:Class, sh:NodeShape ; rdfs:label "Air Flow Station" ; @@ -1770,23 +1731,6 @@ g36:ZoneRule a sh:NodeShape ; sh:path [ sh:inversePath s223:hasMeasurementLocation ] ] ] ; sh:path s223:connectedTo ] ] ] ] . - owl:imports ; - owl:versionInfo "Created with TopBraid Composer" . - - owl:imports ; - owl:versionInfo "Created with TopBraid Composer" . - - owl:imports ; - owl:versionInfo "Created with TopBraid Composer" . - - owl:imports ; - owl:versionInfo "Created with TopBraid Composer" . - - owl:imports ; - owl:versionInfo "Created with TopBraid Composer" . - - owl:imports ; - owl:versionInfo "Created with TopBraid Composer" . rdfs:comment a rdf:Property ; rdfs:label "Description of constraints for s223" ; From f2ebfdb6be9c0d1def547438558f20c742dd72ec Mon Sep 17 00:00:00 2001 From: Gabe Fierro Date: Wed, 30 Aug 2023 08:52:48 -0600 Subject: [PATCH 08/11] skip 223P tests until gabe can fix them --- tests/integration/test_library_validity.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_library_validity.py b/tests/integration/test_library_validity.py index 3c620820c..803ef5559 100644 --- a/tests/integration/test_library_validity.py +++ b/tests/integration/test_library_validity.py @@ -16,6 +16,7 @@ @pytest.mark.integration +@pytest.mark.skip(reason="223P support is temporarily broken") def test_223p_library(bm, library_path_223p: Path): ont_223p = Library.load(ontology_graph="libraries/ashrae/223p/ontology/223p.ttl") lib = Library.load(directory=str(library_path_223p)) From 16669ff1f186af26fbb761000fc4c2212b984047 Mon Sep 17 00:00:00 2001 From: Gabe Fierro Date: Wed, 30 Aug 2023 12:35:41 -0600 Subject: [PATCH 09/11] update notebook --- notebooks/Existing-model-validation-example.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/Existing-model-validation-example.ipynb b/notebooks/Existing-model-validation-example.ipynb index 9fa07d357..c31a471d3 100644 --- a/notebooks/Existing-model-validation-example.ipynb +++ b/notebooks/Existing-model-validation-example.ipynb @@ -101,6 +101,7 @@ "source": [ "brick = Library.load(ontology_graph=\"../libraries/brick/Brick-subset.ttl\")\n", "ashrae_g36 = Library.load(directory=\"../libraries/ashrae/guideline36/\")\n", + "constraints = Library.load(ontology_graph=\"constraints/constraints.ttl\") # builtin library\n", "manifest = Graph().parse(\"mediumOffice-validation/constraints/mediumOffice_constraints.ttl\")" ] }, @@ -178,8 +179,7 @@ }, "outputs": [], "source": [ - "shape_collections = [brick.get_shape_collection(), medium_office_model.get_manifest(), ashrae_g36.get_shape_collection()]\n", - "validation_context = medium_office_model.validate(shape_collections)" + "validation_context = medium_office_model.validate()" ] }, { From 5ead6c9ae74df4bf48dbfe46ffbc1776b2936bdb Mon Sep 17 00:00:00 2001 From: Gabe Fierro Date: Wed, 30 Aug 2023 12:37:42 -0600 Subject: [PATCH 10/11] adjust verbosity of output --- buildingmotif/dataclasses/shape_collection.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/buildingmotif/dataclasses/shape_collection.py b/buildingmotif/dataclasses/shape_collection.py index c3eaf1d9c..e3c65a421 100644 --- a/buildingmotif/dataclasses/shape_collection.py +++ b/buildingmotif/dataclasses/shape_collection.py @@ -267,7 +267,7 @@ def _resolve_imports( lib = Library.load(name=ontology) sc_to_add = lib.get_shape_collection() except Exception as e: - logger.error( + logger.warning( "Could not resolve import of %s from Libraries (%s). Trying shape collections", ontology, e, @@ -281,7 +281,7 @@ def _resolve_imports( if sc.graph_name == ontology: sc_to_add = sc break - logger.error( + logger.warning( "Could not resolve import of %s from Libraries. Trying shape collections", ontology, ) @@ -298,5 +298,4 @@ def _resolve_imports( error_on_missing_imports=error_on_missing_imports, ) new_g += dependency - print(f"graph size now {len(new_g)}") return new_g From 90ad25529b93cfd0b0ff42ac9953ae1d04c2a2de Mon Sep 17 00:00:00 2001 From: Gabe Fierro Date: Mon, 11 Sep 2023 11:57:29 -0600 Subject: [PATCH 11/11] simplify manifest handling --- buildingmotif/dataclasses/model.py | 35 ++++++---------------------- tests/unit/dataclasses/test_model.py | 9 +++---- 2 files changed, 10 insertions(+), 34 deletions(-) diff --git a/buildingmotif/dataclasses/model.py b/buildingmotif/dataclasses/model.py index bbf0b220d..0e033c638 100644 --- a/buildingmotif/dataclasses/model.py +++ b/buildingmotif/dataclasses/model.py @@ -1,5 +1,5 @@ from dataclasses import dataclass -from typing import TYPE_CHECKING, Dict, List, Optional, Union +from typing import TYPE_CHECKING, Dict, List, Optional import pyshacl import rdflib @@ -13,7 +13,6 @@ if TYPE_CHECKING: from buildingmotif import BuildingMOTIF - from buildingmotif.dataclasses import Library def _validate_uri(uri: str): @@ -306,31 +305,11 @@ def get_manifest(self) -> ShapeCollection: """ return ShapeCollection.load(self._manifest_id) - def update_manifest(self, manifest: Union[ShapeCollection, "Library"]): - """Updates the manifest for this model by replacing - it with the provided ShapeCollection. If a library is - provided instead, fetch the shape collection for that - library with Library.get_shape_collection() + def update_manifest(self, manifest: ShapeCollection): + """Updates the manifest for this model by adding in the contents + of the shape graph inside the provided SHapeCollection - :param manifest: the ShapeCollection containing all the shapes against which to validate this model - :type manifest: Union[ShapeCollection, Library] + :param manifest: the ShapeCollection containing additional shapes against which to validate this model + :type manifest: ShapeCollection """ - # import Library here to avoid circular import - from buildingmotif.dataclasses.library import Library - - if isinstance(manifest, Library): - sc = manifest.get_shape_collection() - if sc.id is None: - # manifest is a ShapeCollection - raise Exception( - "Provided manifest does not have an 'id'. Make sure it is part of a Library!" - ) - self._manifest_id = sc.id - elif manifest.id is None: - # manifest is a ShapeCollection - raise Exception( - "Provided manifest does not have an 'id'. Make sure it is part of a Library!" - ) - else: - # manifest is a ShapeCollection - self._manifest_id = manifest.id + self.get_manifest().graph += manifest.graph diff --git a/tests/unit/dataclasses/test_model.py b/tests/unit/dataclasses/test_model.py index 9d62e7c67..d6f60f322 100644 --- a/tests/unit/dataclasses/test_model.py +++ b/tests/unit/dataclasses/test_model.py @@ -49,11 +49,8 @@ def test_update_model_manifest(clean_building_motif): lib = Library.load(ontology_graph="tests/unit/fixtures/shapes/shape1.ttl") assert lib is not None # update manifest with library - m.update_manifest(lib) - assert m.get_manifest().id == lib.get_shape_collection().id - # update with ShapeCollection m.update_manifest(lib.get_shape_collection()) - assert m.get_manifest().id == lib.get_shape_collection().id + assert len(list(m.get_manifest().graph.subjects(RDF.type, SH.NodeShape))) == 2 def test_validate_model_manifest(clean_building_motif): @@ -63,7 +60,7 @@ def test_validate_model_manifest(clean_building_motif): lib = Library.load(ontology_graph="tests/unit/fixtures/shapes/shape1.ttl") assert lib is not None - m.update_manifest(lib) + m.update_manifest(lib.get_shape_collection()) # validate against manifest -- should fail result = m.validate() @@ -103,7 +100,7 @@ def test_validate_model_manifest_with_imports(clean_building_motif): lib = Library.load(ontology_graph="tests/unit/fixtures/shapes/shape2.ttl") assert lib is not None - m.update_manifest(lib) + m.update_manifest(lib.get_shape_collection()) # add triples to graph to validate # using subclasses here -- buildingmotif must resolve the library import in order for these to validate correctly