diff --git a/buildingmotif/bin/cli.py b/buildingmotif/bin/cli.py
index 8a7d6e358..4c02e443e 100644
--- a/buildingmotif/bin/cli.py
+++ b/buildingmotif/bin/cli.py
@@ -156,10 +156,17 @@ def app():
@subcommand(
arg("-o", "--output_file", help="Output file for BACnet scan", required=True),
arg("-ip", help="ip address of BACnet network to scan", default=None),
+ arg(
+ "--local-broadcast",
+ action="store_false",
+ dest="global_broadcast",
+ help="Limit discovery to local broadcast; defaults to global broadcast",
+ default=True,
+ ),
)
def scan(args):
"""Scans a BACnet network and generates a JSON file for later processing"""
- bacnet_network = BACnetNetwork(args.ip)
+ bacnet_network = BACnetNetwork(args.ip, global_broadcast=args.global_broadcast)
bacnet_network.dump(Path(args.output_file))
diff --git a/buildingmotif/dataclasses/shape_collection.py b/buildingmotif/dataclasses/shape_collection.py
index ead6a613a..e117dedb4 100644
--- a/buildingmotif/dataclasses/shape_collection.py
+++ b/buildingmotif/dataclasses/shape_collection.py
@@ -472,7 +472,8 @@ def get_varname(shape):
pshape,
f"?{get_varname(pshape)}".replace(" ", "_"),
)
- path = shacl_path_to_sparql_path(graph, graph.value(pshape, SH.path))
+ shape_graph = ShapesGraph(graph)
+ path = shacl_path_to_sparql_path(shape_graph, graph.value(pshape, SH.path))
qMinCount = graph.value(pshape, SH.qualifiedMinCount) or 0
pclass = graph.value(
diff --git a/buildingmotif/ingresses/bacnet.py b/buildingmotif/ingresses/bacnet.py
index 077a6b71e..0e9195d09 100644
--- a/buildingmotif/ingresses/bacnet.py
+++ b/buildingmotif/ingresses/bacnet.py
@@ -1,70 +1,171 @@
# configure logging output
+import asyncio
import logging
import warnings
from functools import cached_property
from typing import Any, Dict, List, Optional, Tuple
+from buildingmotif.ingresses.base import Record, RecordIngressHandler
+
try:
import BAC0
- from BAC0.core.devices.Device import Device as BACnetDevice
except ImportError:
logging.critical(
"Install the 'bacnet-ingress' module, e.g. 'pip install buildingmotif[bacnet-ingress]'"
)
-from buildingmotif.ingresses.base import Record, RecordIngressHandler
-
-# We do this little rigamarole to avoid BAC0 spitting out a million
-# logging messages warning us that we changed the log level, which
-# happens when we go through the normal BAC0 log level procedure
-logger = logging.getLogger("BAC0_Root.BAC0.scripts.Base.Base")
-logger.setLevel(logging.ERROR)
-
-
class BACnetNetwork(RecordIngressHandler):
- def __init__(self, ip: Optional[str] = None):
+ def __init__(
+ self,
+ ip: Optional[str] = None,
+ *,
+ discover_kwargs: Optional[Dict[str, Any]] = None,
+ global_broadcast: bool = True,
+ ping: bool = False,
+ device_kwargs: Optional[Dict[str, Any]] = None,
+ ):
"""
Reads a BACnet network to discover the devices and objects therein
- :param ip: IP/mask for the host which is canning the networks,
+ :param ip: IP/mask for the host which is scanning the network,
defaults to None
:type ip: Optional[str], optional
+ :param discover_kwargs: Optional kwargs forwarded to BAC0._discover.
+ :type discover_kwargs: Optional[Dict[str, Any]]
+ :param global_broadcast: Whether to issue global broadcast Who-Is requests.
+ :type global_broadcast: bool
+ :param ping: Whether to ping devices during connect; defaults to False.
+ :type ping: bool
+ :param device_kwargs: Optional kwargs forwarded to BAC0.device.
+ :type device_kwargs: Optional[Dict[str, Any]]
"""
- # create the network object; this will handle scans
- # Be a good net citizen: do not ping BACnet devices
- self.network = BAC0.connect(ip=ip, ping=False)
- # initiate discovery of BACnet networks
- self.network.discover()
-
- self.devices: List[BACnetDevice] = []
- self.objects: Dict[Tuple[str, int], List[dict]] = {}
-
- # for each discovered Device, create a BAC0.device object
- # This will read the BACnet objects off of the Device.
- # Save the BACnet objects in the objects dictionary
+ self.objects: Dict[Tuple[str, int], List[Dict[str, Any]]] = {}
+ discover_kwargs = dict(discover_kwargs or {})
+ discover_kwargs.setdefault("global_broadcast", global_broadcast)
+ self._run_async(
+ self._collect_objects(
+ ip=ip,
+ discover_kwargs=discover_kwargs,
+ ping=ping,
+ device_kwargs=device_kwargs or {},
+ )
+ )
+
+ def _run_async(self, coro):
+ loop = asyncio.new_event_loop()
try:
- if self.network.discoveredDevices is None:
- warnings.warn("BACnet ingress could not find any BACnet devices")
- for (address, device_id) in self.network.discoveredDevices: # type: ignore
- # set poll to 0 to avoid reading the points regularly
- dev = BAC0.device(address, device_id, self.network, poll=0)
- self.devices.append(dev)
- self.objects[(address, device_id)] = []
-
- for bobj in dev.points:
- obj = bobj.properties.asdict
- self._clean_object(obj)
- self.objects[(address, device_id)].append(obj)
+ asyncio.set_event_loop(loop)
+ loop.run_until_complete(coro)
+ pending = [task for task in asyncio.all_tasks(loop) if not task.done()]
+ if pending:
+ for task in pending:
+ task.cancel()
+ loop.run_until_complete(
+ asyncio.gather(*pending, return_exceptions=True)
+ )
+ loop.run_until_complete(loop.shutdown_asyncgens())
finally:
- for dev in self.devices:
- self.network.unregister_device(dev)
- self.network.disconnect()
+ asyncio.set_event_loop(None)
+ loop.close()
+
+ async def _collect_objects(
+ self,
+ *,
+ ip: Optional[str],
+ discover_kwargs: Dict[str, Any],
+ ping: bool,
+ device_kwargs: Dict[str, Any],
+ ):
+ device_kwargs.setdefault("poll", -1)
+ device_kwargs.setdefault("auto_save", False)
+
+ async with BAC0.start(ip=ip, ping=ping) as bacnet:
+ await asyncio.sleep(2)
+ await bacnet._discover(**discover_kwargs)
+ await asyncio.sleep(2)
+
+ discovered = getattr(bacnet, "discoveredDevices", None)
+ if not discovered:
+ warnings.warn("BACnet ingress could not find any BACnet devices")
+ return
+
+ discovered_entries: List[Tuple[Any, Any, Dict[str, Any]]] = []
+ if isinstance(discovered, dict):
+ for info in discovered.values():
+ address = info.get("address")
+ obj_instance = info.get("object_instance")
+ device_id = None
+ if isinstance(obj_instance, tuple) and len(obj_instance) >= 2:
+ device_id = obj_instance[1]
+ else:
+ device_id = info.get("device_id")
+
+ if address is None or device_id is None:
+ logging.warning(
+ "Skipping discovered device with missing address/device_id: %s",
+ info,
+ )
+ continue
+
+ if hasattr(address, "addr"):
+ address = address.addr
+ address = str(address)
+ discovered_entries.append((address, device_id, info))
+
+ if not discovered_entries:
+ warnings.warn("BACnet ingress could not find any BACnet devices")
+ return
+
+ for (address, device_id, _) in discovered_entries:
+ device = await BAC0.device(address, device_id, bacnet, **device_kwargs)
+ try:
+ # keep persistence disabled and quiet for one-shot scans
+ setattr(device.properties, "auto_save", False)
+ setattr(device.properties, "clear_history_on_save", False)
+ setattr(device.properties, "history_size", None)
+ if hasattr(device, "_log"):
+ device._log.setLevel(logging.ERROR) # type: ignore[attr-defined]
+
+ objects: List[Dict[str, Any]] = []
+
+ for bobj in device.points:
+ obj = bobj.properties.asdict
+ self._clean_object(obj)
+ objects.append(obj)
+
+ self.objects[(address, device_id)] = objects
+ finally:
+ disconnect = getattr(
+ device, "_disconnect", None # type: ignore[attr-defined]
+ )
+ if callable(disconnect):
+ await disconnect(save_on_disconnect=False, unregister=True)
def _clean_object(self, obj: Dict[str, Any]):
- if "name" in obj:
+ def _normalize(value: Any, path: Tuple[Any, ...]) -> Any:
+ if isinstance(value, (str, int, float, bool)) or value is None:
+ return value
+ if isinstance(value, dict):
+ normalized: Dict[Any, Any] = {}
+ for key, nested in value.items():
+ normalized[key] = _normalize(nested, (*path, key))
+ return normalized
+ if isinstance(value, (list, tuple, set)):
+ return [_normalize(v, (*path, idx)) for idx, v in enumerate(value)]
+
+ logging.error(
+ "Ignoring non-serializable BACnet value %r at %s",
+ value,
+ " -> ".join(str(p) for p in path),
+ )
+ return None
+
+ if "name" in obj and isinstance(obj["name"], str):
# remove trailing/leading whitespace from names
obj["name"] = obj["name"].strip()
+ for key, value in list(obj.items()):
+ obj[key] = _normalize(value, (obj.get("device"), key))
@cached_property
def records(self) -> List[Record]:
diff --git a/docs/explanations/ingresses.md b/docs/explanations/ingresses.md
index e66eaf9db..e44314e26 100644
--- a/docs/explanations/ingresses.md
+++ b/docs/explanations/ingresses.md
@@ -28,7 +28,7 @@ class Record:
The choice of values for the `Record` is up to each `RecordIngressHandler` instance:
- the [`BACnetIngressHandler`](/reference/apidoc/_autosummary/buildingmotif.ingresses.bacnet.html#buildingmotif.ingresses.bacnet.BACnetNetwork) uses the `rtype` field to differentiate between BACnet Devices and BACnet Objects. The `fields` field contains key-value pairs of different BACnet properties like `name` and `units`
-- the [`CSVIngressHandler`](/reference/apidoc/_autosummary/buildingmotif.ingresses.csv.html#buildingmotif.ingresses.csv.CSVIngress) uses the `rtype` field to denote the CSV filename, and uses the `fields` field to store column-cell values from each row of the CSV file
+- the [`CSVIngressHandler`](/reference/apidoc/_autosummary/buildingmotif.ingresses.csvingress.html#buildingmotif.ingresses.csvingress.CSVIngress) uses the `rtype` field to denote the CSV filename, and uses the `fields` field to store column-cell values from each row of the CSV file
### Graph Ingress Handler
@@ -56,7 +56,7 @@ The [`BACnetIngressHandler`](/reference/apidoc/_autosummary/buildingmotif.ingres
### CSV Files
-The [`CSVIngressHandler`](/reference/apidoc/_autosummary/buildingmotif.ingresses.csv.html#buildingmotif.ingresses.csv.CSVIngress) takes a CSV filename as an argument (e.g. `mydata.csv`) and generates a set of `Record`s corresponding to each row in the file.
+The [`CSVIngressHandler`](/reference/apidoc/_autosummary/buildingmotif.ingresses.csvingress.html#buildingmotif.ingresses.csvingress.CSVIngress) takes a CSV filename as an argument (e.g. `mydata.csv`) and generates a set of `Record`s corresponding to each row in the file.
- `rtype`: the filename that contained the row
- `fields`: key-value pairs for the row. The key is the column name; the value is the value of that column at the given row
diff --git a/docs/guides/Dockerfile.bacnet b/docs/guides/Dockerfile.bacnet
index a1062c279..beebb18e1 100644
--- a/docs/guides/Dockerfile.bacnet
+++ b/docs/guides/Dockerfile.bacnet
@@ -4,7 +4,7 @@ WORKDIR /opt
RUN apt update && apt install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
-RUN pip3 install BACpypes
+RUN pip3 install BACpypes --break-system-packages
COPY virtual_bacnet.py virtual_bacnet.py
COPY BACpypes.ini .
\ No newline at end of file
diff --git a/docs/guides/csv-import.md b/docs/guides/csv-import.md
index 1f0fb2eb2..7de34b32b 100644
--- a/docs/guides/csv-import.md
+++ b/docs/guides/csv-import.md
@@ -67,7 +67,7 @@ tstat2,room345,co2-345,temp-345,sp-345
tstat3,room567,cow-567,temp-567,sp-567
```
-We can create a CSV ingress handler using the built-in class ([`CSVIngressHandler`](/reference/apidoc/_autosummary/buildingmotif.ingresses.csv.html#buildingmotif.ingresses.csv.CSVIngress)):
+We can create a CSV ingress handler using the built-in class ([`CSVIngressHandler`](/reference/apidoc/_autosummary/buildingmotif.ingresses.csvingress.html#buildingmotif.ingresses.csvingress.CSVIngress)):
```python
from rdflib import Namespace, Graph
diff --git a/docs/guides/docker-compose-bacnet.yml b/docs/guides/docker-compose-bacnet.yml
index e728b98cc..ecf492a08 100644
--- a/docs/guides/docker-compose-bacnet.yml
+++ b/docs/guides/docker-compose-bacnet.yml
@@ -1,4 +1,3 @@
-version: "3.4"
services:
device:
build:
diff --git a/docs/guides/ingress-bacnet-to-brick.md b/docs/guides/ingress-bacnet-to-brick.md
index b6452ba99..692d520ea 100644
--- a/docs/guides/ingress-bacnet-to-brick.md
+++ b/docs/guides/ingress-bacnet-to-brick.md
@@ -119,7 +119,7 @@ RUN apt update \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
-RUN pip3 install BACpypes
+RUN pip3 install BACpypes --break-system-packages
COPY virtual_bacnet.py virtual_bacnet.py
COPY BACpypes.ini .''')
@@ -188,12 +188,19 @@ We use the `buildingmotif.ingresses.bacnet.BACnetNetwork` ingress module to pull
```{code-cell} python3
from buildingmotif.ingresses.bacnet import BACnetNetwork
-bacnet = BACnetNetwork("172.24.0.1/32") # don't change this if you are using the docker compose setup
+bacnet = BACnetNetwork(
+ "172.24.0.1/32",
+ discover_kwargs={"global_broadcast": True}, # optional, helps find virtual devices
+)
for rec in bacnet.records:
print(rec)
```
-Each of these records has an `rtype` field, which is used by the ingress implementation to differentiate between different kinds of records; here it differentiates between BACnet Devices and BACnet Objects, which have different expressions in Brick. The `fields` attribute cotnains arbitrary key-value pairs, again defined by the ingress implementation, which can be interpreted by another ingress module.
+```{note}
+The `BACnetNetwork` ingress uses BAC0's asynchronous connection helpers under the hood. It opens the network with `BAC0.start` and blocks on discovery by awaiting `bacnet._discover(**discover_kwargs)`, so forwarding options such as `global_broadcast` or `whois` will influence how aggressively the underlying BACnet scan runs. No additional event-loop management is needed when calling the ingress from synchronous code.
+```
+
+Each of these records has an `rtype` field, which is used by the ingress implementation to differentiate between different kinds of records; here it differentiates between BACnet Devices and BACnet Objects, which have different expressions in Brick. The `fields` attribute contains arbitrary key-value pairs, again defined by the ingress implementation, which can be interpreted by another ingress module.
## BACnet to Brick: an Initial Model
diff --git a/docs/tutorials/model_correction.md b/docs/tutorials/model_correction.md
index a2a3fb0da..49743d09c 100644
--- a/docs/tutorials/model_correction.md
+++ b/docs/tutorials/model_correction.md
@@ -48,8 +48,10 @@ model = Model.create(BLDG, description="This is a test model for a simple buildi
constraints = Library.load(ontology_graph="constraints/constraints.ttl")
# load libraries excluded from the python package (available from the repository)
-brick = Library.load(ontology_graph="../../libraries/brick/Brick-subset.ttl")
+brick = Library.load(ontology_graph="../../libraries/brick/Brick.ttl")
g36 = Library.load(directory="../../libraries/ashrae/guideline36")
+Library.load(ontology_graph="../../libraries/qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl")
+Library.load(ontology_graph="../../libraries/qudt/VOCAB_QUDT-UNITS-ALL.ttl")
# load tutorial 2 model and manifest
model.graph.parse("tutorial2_model.ttl", format="ttl")
@@ -64,7 +66,7 @@ model.update_manifest(manifest.get_shape_collection())
Let's validate the model again to see what's causing the failure.
```{code-cell}
-validation_result = model.validate()
+validation_result = model.validate(error_on_missing_imports=False)
print(f"Model is valid? {validation_result.valid}")
# print reasons
@@ -153,7 +155,7 @@ for templ in generated_templates.get_templates():
We use the same code as before to ask BuildingMOTIF if the model is now valid:
```{code-cell}
-validation_result = model.validate()
+validation_result = model.validate(error_on_missing_imports=False)
print(f"Model is valid? {validation_result.valid}")
# print reasons
for uri, diffset in validation_result.diffset.items():
@@ -206,7 +208,7 @@ for templ in generated_templates_sf.get_templates():
We can re-check the validation of the model now:
```{code-cell}
-validation_result = model.validate()
+validation_result = model.validate(error_on_missing_imports=False)
print(f"Model is valid? {validation_result.valid}")
print(validation_result.report.serialize())
diff --git a/docs/tutorials/model_creation.md b/docs/tutorials/model_creation.md
index 9be13dcc1..3d24b8333 100644
--- a/docs/tutorials/model_creation.md
+++ b/docs/tutorials/model_creation.md
@@ -85,7 +85,7 @@ Currently, libraries in `../../buildingmotif/libraries/` are *included* and libr
```{code-cell}
# load a library
from buildingmotif.dataclasses import Library
-brick = Library.load(ontology_graph="../../libraries/brick/Brick-subset.ttl")
+brick = Library.load(ontology_graph="../../libraries/brick/Brick.ttl")
# print the first 10 templates
print("The Brick library contains the following templates:")
diff --git a/docs/tutorials/model_validation.md b/docs/tutorials/model_validation.md
index 68bad07bf..574765fc3 100644
--- a/docs/tutorials/model_validation.md
+++ b/docs/tutorials/model_validation.md
@@ -70,8 +70,10 @@ model.graph.parse("tutorial1_model.ttl", format="ttl")
constraints = Library.load(ontology_graph="../../buildingmotif/libraries/constraints/constraints.ttl")
# load libraries excluded from the python package (available from the repository)
-brick = Library.load(ontology_graph="../../libraries/brick/Brick-subset.ttl")
+brick = Library.load(ontology_graph="../../libraries/brick/Brick.ttl")
g36 = Library.load(directory="../../libraries/ashrae/guideline36")
+Library.load(ontology_graph="../../libraries/qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl")
+Library.load(ontology_graph="../../libraries/qudt/VOCAB_QUDT-UNITS-ALL.ttl")
```
## Model Validation - Ontology
@@ -80,7 +82,7 @@ BuildingMOTIF organizes Shapes into `Shape Collections`. The shape collection as
```{code-cell}
# pass a list of shape collections to .validate()
-validation_result = model.validate([brick.get_shape_collection()])
+validation_result = model.validate([brick.get_shape_collection()], error_on_missing_imports=False)
print(f"Model is valid? {validation_result.valid}")
```
@@ -243,7 +245,7 @@ to load in the Brick and Guideline36 libraries at the top of this tutorial.
```{code-cell}
-validation_result = model.validate()
+validation_result = model.validate(error_on_missing_imports=False)
print(f"Model is valid? {validation_result.valid}")
# print reasons
@@ -269,7 +271,7 @@ shape_collections = [
]
# pass a list of shape collections to .validate()
-validation_result = model.validate(shape_collections)
+validation_result = model.validate(shape_collections, error_on_missing_imports=False)
print(f"Model is valid? {validation_result.valid}")
# print reasons
@@ -306,7 +308,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}
-validation_result = model.validate()
+validation_result = model.validate(error_on_missing_imports=False)
print(f"Model is valid? {validation_result.valid}")
# print reasons
@@ -373,7 +375,7 @@ print(f"Model is valid? {validation_result.valid}")
Now we can run validation to see if our AHU is ready to run the "single zone AHU" control sequence:
```{code-cell}
-validation_result = model.validate()
+validation_result = model.validate(error_on_missing_imports=False)
print(f"Model is valid? {validation_result.valid}")
```
diff --git a/docs/tutorials/template_writing.ipynb b/docs/tutorials/template_writing.ipynb
index 96b6544d8..9b45bf83b 100644
--- a/docs/tutorials/template_writing.ipynb
+++ b/docs/tutorials/template_writing.ipynb
@@ -55,22 +55,22 @@
" - template: htg-coil\n",
" args: {\"name\": \"htg-coil\"}\n",
" - template: https://brickschema.org/schema/Brick#Supply_Air_Flow_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"sa-flow\"}\n",
" - template: https://brickschema.org/schema/Brick#Supply_Air_Temperature_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"sa-temp\"}\n",
" - template: https://brickschema.org/schema/Brick#Zone_Air_Temperature_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"za-temp\"}\n",
" - template: https://brickschema.org/schema/Brick#HVAC_Zone\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"zone\"}\n",
" - template: https://brickschema.org/schema/Brick#Occupancy_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"occ\"}\n",
" - template: https://brickschema.org/schema/Brick#CO2_Level_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"co2\"}\n",
"```"
]
@@ -159,22 +159,22 @@
" - template: htg-coil\n",
" args: {\"name\": \"htg-coil\"}\n",
" - template: https://brickschema.org/schema/Brick#Supply_Air_Flow_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"sa-flow\"}\n",
" - template: https://brickschema.org/schema/Brick#Supply_Air_Temperature_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"sa-temp\"}\n",
" - template: https://brickschema.org/schema/Brick#Zone_Air_Temperature_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"za-temp\"}\n",
" - template: https://brickschema.org/schema/Brick#HVAC_Zone\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"zone\"}\n",
" - template: https://brickschema.org/schema/Brick#Occupancy_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"occ\"}\n",
" - template: https://brickschema.org/schema/Brick#CO2_Level_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"co2\"}\n",
"```\n",
"\n",
@@ -200,7 +200,7 @@
" brick:hasPoint p:dmppos .\n",
" dependencies:\n",
" - template: https://brickschema.org/schema/Brick#Damper_Position_Command\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"dmppos\"}\n",
"```\n",
"\n",
@@ -224,22 +224,22 @@
" - template: htg-coil\n",
" args: {\"name\": \"htg-coil\"}\n",
" - template: https://brickschema.org/schema/Brick#Supply_Air_Flow_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"sa-flow\"}\n",
" - template: https://brickschema.org/schema/Brick#Supply_Air_Temperature_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"sa-temp\"}\n",
" - template: https://brickschema.org/schema/Brick#Zone_Air_Temperature_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"za-temp\"}\n",
" - template: https://brickschema.org/schema/Brick#HVAC_Zone\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"zone\"}\n",
" - template: https://brickschema.org/schema/Brick#Occupancy_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"occ\"}\n",
" - template: https://brickschema.org/schema/Brick#CO2_Level_Sensor\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"co2\"}\n",
"\n",
"damper:\n",
@@ -250,7 +250,7 @@
" brick:hasPoint p:dmppos .\n",
" dependencies:\n",
" - template: https://brickschema.org/schema/Brick#Damper_Position_Command\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"dmppos\"}\n",
"```\n",
"\n",
@@ -269,7 +269,7 @@
" brick:hasPoint p:cmd .\n",
" dependencies:\n",
" - template: https://brickschema.org/schema/Brick#Position_Command\n",
- " library: https://brickschema.org/schema/1.3/Brick\n",
+ " library: https://brickschema.org/schema/1.4/Brick\n",
" args: {\"name\": \"cmd\"}\n",
"```"
]
diff --git a/docs/tutorials/tutorial1_model.ttl b/docs/tutorials/tutorial1_model.ttl
index 546c1a593..b88c5b810 100644
--- a/docs/tutorials/tutorial1_model.ttl
+++ b/docs/tutorials/tutorial1_model.ttl
@@ -1,8 +1,10 @@
@prefix bldg: .
@prefix brick: .
@prefix owl: .
+@prefix rdfs: .
- a owl:Ontology .
+ a owl:Ontology ;
+ rdfs:comment "This is a test model for a simple building" .
a brick:AHU ;
brick:hasPart ,
diff --git a/libraries/README.md b/libraries/README.md
index 86badde27..9c8f51262 100644
--- a/libraries/README.md
+++ b/libraries/README.md
@@ -58,7 +58,7 @@ libraries/
│ ├── 4.2-vav-with-reheat.yml
│ └── 4.3-fan-powered.yml
└── brick
- └── Brick-subset.ttl
+ └── Brick.ttl
```
### ASHRAE / Guideline 36
diff --git a/libraries/brick/Brick-full.ttl b/libraries/brick/Brick-full.ttl
deleted file mode 100644
index a5aa3b1a3..000000000
--- a/libraries/brick/Brick-full.ttl
+++ /dev/null
@@ -1,45821 +0,0 @@
-@prefix bacnet: .
-@prefix brick: .
-@prefix bsh: .
-@prefix dcterms: .
-@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:Absolute_HumidityShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:LB-PER-FT3 unit:LB-PER-IN3 unit:KiloGM-PER-M3 unit:LB-PER-GAL unit:PlanckDensity unit:TON_LONG-PER-YD3 unit:LB-PER-GAL_US unit:OZ_PER-GAL unit:TON_UK-PER-YD3 unit:LB-PER-M3 unit:LB-PER-YD3 unit:TON_US-PER-YD3 unit:LB-PER-GAL_UK unit:SLUG-PER-FT3 unit:MilliGM-PER-DeciL unit:GRAIN-PER-GAL unit:OZ_PER-IN3 unit:TON_SHORT-PER-YD3 ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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" .
-
-brick:Active_EnergyShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:MegaW-HR unit:W-HR unit:KiloW-HR ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-brick:Active_PowerShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:MegaV-A unit:V-A unit:KiloV-A ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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 .
-
-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 .
-
-brick:Alternating_Current_FrequencyShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:MegaHZ unit:GigaHZ unit:HZ unit:KiloHZ ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-brick:Ammonia_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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:AngleShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:MIN_Angle unit:GON unit:MilliRAD unit:MIL unit:REV unit:GRAD unit:MicroRAD unit:MilliARCSEC unit:RAD unit:ARCMIN unit:DEG unit:ARCSEC ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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_EnergyShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:KiloV-A-HR unit:V-A-HR unit:MegaV-A-HR ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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:Apparent_PowerShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:MegaV-A unit:V-A unit:KiloV-A ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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:Atmospheric_PressureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:BARAD unit:MilliM_HG unit:KiloPA unit:CentiBAR unit:PSI unit:LB_F-PER-IN2 unit:MicroBAR unit:KiloGM_F-PER-MilliM2 unit:PDL-PER-FT2 unit:DYN-PER-CentiM2 unit:IN_H2O unit:CentiM_H2O unit:DeciBAR unit:MilliM_HGA unit:KiloLB_F-PER-IN2 unit:TORR unit:FT_HG unit:HectoPA unit:KiloPA_A unit:BARYE unit:DecaPA unit:MegaPA unit:MilliBAR unit:FT_H2O unit:N-PER-MilliM2 unit:PlanckPressure unit:MicroPA unit:MilliTORR unit:KiloGM_F-PER-M2 unit:MicroTORR unit:PA unit:N-PER-CentiM2 unit:CM_H2O unit:ATM_T unit:MilliM_H2O unit:GM_F-PER-CentiM2 unit:KiloBAR unit:MilliPA unit:KiloGM_F-PER-CentiM2 unit:BAR unit:KIP_F-PER-IN2 unit:MegaBAR unit:LB_F-PER-FT2 unit:CentiM_HG unit:N-PER-M2 unit:ATM unit:HectoBAR unit:GigaPA unit:IN_HG unit:KiloGM-PER-M-SEC2 unit:MicroATM ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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:Blind a owl:Class,
- sh:NodeShape ;
- rdfs:label "Blind" ;
- rdfs:seeAlso ;
- rdfs:subClassOf brick:Shading_Equipment ;
- skos:definition "A window covering."@en ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Blind ;
- 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 ] ;
- brick:hasAssociatedTag tag:Blind,
- tag:Equipment,
- tag:Shade .
-
-brick:Blind_Group a owl:Class,
- sh:NodeShape ;
- rdfs:label "Blind Group" ;
- rdfs:subClassOf brick:Shading_System ;
- skos:definition "A group of Blinds commonly attached to a single controller."@en ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Blind ;
- sh:predicate brick:hasTag ;
- sh:subject sh:this ],
- [ a sh:TripleRule ;
- sh:object tag:Group ;
- 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:Blind,
- tag:Group,
- tag:Shade,
- tag:System .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-brick:CO2_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-brick:CO_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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: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 .
-
-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 .
-
-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 .
-
-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:Differential_Temperature ;
- brick:hasSubstance brick:Chilled_Water .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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:Complex_PowerShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:MegaV-A unit:V-A unit:KiloV-A ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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:ConductivityShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:NanoS-PER-CentiM unit:S-PER-M unit:DeciS-PER-M unit:NanoS-PER-M unit:S-PER-CentiM unit:MegaS-PER-M unit:PicoS-PER-M unit:MilliS-PER-M unit:MilliS-PER-CentiM unit:MicroS-PER-CentiM unit:MicroS-PER-M unit:KiloS-PER-M ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-brick:Current_AngleShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:GON unit:MilliRAD unit:MIL unit:REV unit:GRAD unit:MicroRAD unit:MilliARCSEC unit:RAD unit:ARCMIN unit:DEG unit:ARCSEC ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-brick:Current_ImbalanceShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:PERCENT ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-brick:Current_Total_Harmonic_DistortionShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:PERCENT unit:DeciB_M ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-brick:DewpointShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:DEG_R unit:MilliDEG_C unit:PlanckTemperature unit:DEG_F unit:DEG_C unit:K ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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_CO2_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-brick:Differential_CO_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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_Dynamic_PressureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:BARAD unit:MilliM_HG unit:KiloPA unit:CentiBAR unit:PSI unit:LB_F-PER-IN2 unit:MicroBAR unit:KiloGM_F-PER-MilliM2 unit:PDL-PER-FT2 unit:DYN-PER-CentiM2 unit:IN_H2O unit:CentiM_H2O unit:DeciBAR unit:MilliM_HGA unit:KiloLB_F-PER-IN2 unit:TORR unit:FT_HG unit:HectoPA unit:KiloPA_A unit:BARYE unit:DecaPA unit:MegaPA unit:MilliBAR unit:FT_H2O unit:N-PER-MilliM2 unit:PlanckPressure unit:MicroPA unit:MilliTORR unit:KiloGM_F-PER-M2 unit:MicroTORR unit:PA unit:N-PER-CentiM2 unit:CM_H2O unit:ATM_T unit:MilliM_H2O unit:GM_F-PER-CentiM2 unit:KiloBAR unit:MilliPA unit:KiloGM_F-PER-CentiM2 unit:BAR unit:KIP_F-PER-IN2 unit:MegaBAR unit:LB_F-PER-FT2 unit:CentiM_HG unit:N-PER-M2 unit:ATM unit:HectoBAR unit:GigaPA unit:IN_HG unit:KiloGM-PER-M-SEC2 unit:MicroATM ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-brick:Differential_Entering_Leaving_Water_Temperature_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Differential Entering Leaving Water Temperature Sensor" ;
- rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor ;
- skos:definition "Measures the difference in temperature between entering and leaving water of water a 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:Differential ;
- sh:predicate brick:hasTag ;
- sh:subject sh:this ],
- [ a sh:TripleRule ;
- sh:object tag:Entering ;
- 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: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:Entering,
- tag:Leaving,
- tag:Point,
- tag:Sensor,
- tag:Temperature,
- tag:Water ;
- brick:hasQuantity brick:Temperature ;
- brick:hasSubstance brick:Entering_Chilled_Water,
- brick:Leaving_Chilled_Water .
-
-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 .
-
-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 .
-
-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 .
-
-brick:Differential_Static_PressureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:BARAD unit:MilliM_HG unit:KiloPA unit:CentiBAR unit:PSI unit:LB_F-PER-IN2 unit:MicroBAR unit:KiloGM_F-PER-MilliM2 unit:PDL-PER-FT2 unit:DYN-PER-CentiM2 unit:IN_H2O unit:CentiM_H2O unit:DeciBAR unit:MilliM_HGA unit:KiloLB_F-PER-IN2 unit:TORR unit:FT_HG unit:HectoPA unit:KiloPA_A unit:BARYE unit:DecaPA unit:MegaPA unit:MilliBAR unit:FT_H2O unit:N-PER-MilliM2 unit:PlanckPressure unit:MicroPA unit:MilliTORR unit:KiloGM_F-PER-M2 unit:MicroTORR unit:PA unit:N-PER-CentiM2 unit:CM_H2O unit:ATM_T unit:MilliM_H2O unit:GM_F-PER-CentiM2 unit:KiloBAR unit:MilliPA unit:KiloGM_F-PER-CentiM2 unit:BAR unit:KIP_F-PER-IN2 unit:MegaBAR unit:LB_F-PER-FT2 unit:CentiM_HG unit:N-PER-M2 unit:ATM unit:HectoBAR unit:GigaPA unit:IN_HG unit:KiloGM-PER-M-SEC2 unit:MicroATM ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-brick:Differential_TemperatureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:DEG_R unit:MilliDEG_C unit:PlanckTemperature unit:DEG_F unit:DEG_C unit:K ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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_Bulb_TemperatureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:DEG_F unit:DEG_C unit:K ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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:Cooler ;
- 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 ],
- [ a sh:TripleRule ;
- sh:object tag:HVAC ;
- sh:predicate brick:hasTag ;
- sh:subject sh:this ] ;
- brick:hasAssociatedTag tag:Cooler,
- tag:Dry,
- tag:Equipment,
- tag:HVAC .
-
-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 .
-
-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_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: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: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: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: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:Electric_CurrentShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:KiloA unit:NanoA unit:A_Stat unit:PlanckCurrent unit:A_Ab unit:A unit:MegaA unit:PicoA unit:BIOT unit:MilliA unit:MicroA ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-brick:Electric_EnergyShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:V-A_Reactive-HR unit:W-HR unit:MegaV-A-HR unit:MegaW-HR unit:V-A-HR unit:KiloW-HR unit:MegaV-A_Reactive-HR unit:KiloV-A-HR unit:J unit:KiloV-A_Reactive-HR ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-brick:Electric_PowerShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:HP_Boiler unit:FT-LB_F-PER-MIN unit:KiloCAL-PER-SEC unit:MegaPA-L-PER-SEC unit:PA-L-PER-SEC unit:V-A unit:BAR-L-PER-SEC unit:J-PER-HR unit:J-PER-SEC unit:MilliBAR-L-PER-SEC unit:W unit:KiloV-A unit:PlanckPower unit:KiloCAL-PER-MIN unit:PSI-IN3-PER-SEC unit:HP_Electric unit:FT-LB_F-PER-SEC unit:KiloW unit:FT-LB_F-PER-HR unit:MilliBAR-M3-PER-SEC unit:ERG-PER-SEC unit:PA-M3-PER-SEC unit:MegaJ-PER-SEC unit:TON_FG unit:V-A_Reactive unit:BAR-M3-PER-SEC unit:MegaV-A_Reactive unit:MegaPA-M3-PER-SEC unit:MicroW unit:MegaW unit:MegaV-A unit:PicoW unit:HP-PER-V unit:NanoW unit:HP unit:PSI-M3-PER-SEC unit:HP_Metric unit:KiloV-A_Reactive unit:TeraW unit:BTU_IT-PER-SEC unit:PSI-YD3-PER-SEC unit:MilliW unit:GigaW unit:HP_Brake unit:BTU_IT-PER-HR unit:HP-PER-M ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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: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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-brick:Entering_Chilled_Water_Flow_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Chilled Water Flow Sensor" ;
- rdfs:subClassOf brick:Chilled_Water_Flow_Sensor,
- brick:Entering_Water_Flow_Sensor ;
- skos:definition "Measures the rate of flow of chilled entering 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: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:Chilled,
- tag:Entering,
- tag:Flow,
- tag:Point,
- tag:Sensor,
- tag:Water ;
- brick:hasQuantity brick:Flow ;
- brick:hasSubstance brick:Entering_Chilled_Water .
-
-brick:Entering_Chilled_Water_Flow_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Chilled Water Flow Setpoint" ;
- rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint,
- brick:Entering_Water_Flow_Setpoint ;
- skos:definition "Sets the target flow rate of chilled entering 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: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:Chilled,
- tag:Entering,
- tag:Flow,
- tag:Point,
- tag:Setpoint,
- tag:Water ;
- brick:hasQuantity brick:Flow ;
- brick:hasSubstance brick:Entering_Chilled_Water .
-
-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 ;
- skos:definition "Measures the temperature of chilled water that is enteringed 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: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:Chilled,
- tag:Entering,
- tag:Point,
- tag:Sensor,
- tag:Temperature,
- tag:Water ;
- brick:hasQuantity brick:Temperature ;
- brick:hasSubstance brick:Entering_Chilled_Water .
-
-brick:Entering_Chilled_Water_Temperature_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Chilled Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint,
- brick:Entering_Water_Temperature_Setpoint ;
- skos:definition "Sets the temperature of entering (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: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:Chilled,
- tag:Entering,
- tag:Point,
- tag:Setpoint,
- tag:Temperature,
- tag:Water ;
- brick:hasQuantity brick:Temperature ;
- brick:hasSubstance brick:Entering_Chilled_Water .
-
-brick:Entering_Condenser_Water_Flow_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Condenser Water Flow Sensor" ;
- rdfs:subClassOf brick:Entering_Water_Flow_Sensor ;
- skos:definition "Measures the flow of the entering 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: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:Condenser,
- tag:Entering,
- tag:Flow,
- tag:Point,
- tag:Sensor,
- tag:Water ;
- brick:hasQuantity brick:Flow ;
- brick:hasSubstance brick:Entering_Condenser_Water .
-
-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 ;
- skos:definition "Measures the temperature of the entering 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: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:Condenser,
- tag:Entering,
- tag:Point,
- tag:Sensor,
- tag:Temperature,
- tag:Water .
-
-brick:Entering_Condenser_Water_Temperature_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Condenser Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Leaving_Water_Temperature_Setpoint ;
- skos:definition "The temperature setpoint for the entering 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: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:Condenser,
- tag:Entering,
- tag:Point,
- tag:Setpoint,
- tag:Temperature,
- tag:Water ;
- brick:hasQuantity brick:Temperature ;
- brick:hasSubstance brick:Entering_Condenser_Water .
-
-brick:Entering_Domestic_Hot_Water_Temperature_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Domestic Hot Water Temperature Sensor" ;
- rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Sensor,
- brick:Entering_Hot_Water_Temperature_Sensor ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Domestic ;
- sh:predicate brick:hasTag ;
- sh:subject sh:this ],
- [ a sh:TripleRule ;
- sh:object tag:Entering ;
- 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:Domestic,
- tag:Entering,
- tag:Hot,
- tag:Point,
- tag:Sensor,
- tag:Temperature,
- tag:Water .
-
-brick:Entering_Domestic_Hot_Water_Temperature_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Domestic Hot Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Setpoint,
- brick:Entering_Water_Temperature_Setpoint ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Domestic ;
- sh:predicate brick:hasTag ;
- sh:subject sh:this ],
- [ a sh:TripleRule ;
- sh:object tag:Entering ;
- 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:Entering,
- tag:Hot,
- tag:Point,
- tag:Setpoint,
- tag:Temperature,
- tag:Water .
-
-brick:Entering_High_Temperature_Hot_Water_Temperature_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering High Temperature Hot Water Temperature Sensor" ;
- rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Sensor ;
- skos:definition "Measures the temperature of high-temperature hot water enteringed to a hot water 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: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:Entering,
- tag:High,
- tag:Hot,
- tag:Point,
- tag:Sensor,
- tag:Temperature,
- tag:Water .
-
-brick:Entering_Hot_Water_Flow_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Hot Water Flow Sensor" ;
- rdfs:subClassOf brick:Entering_Water_Flow_Sensor,
- brick:Hot_Water_Flow_Sensor ;
- skos:definition "Measures the rate of flow of hot 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: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:Entering,
- tag:Flow,
- tag:Hot,
- tag:Point,
- tag:Sensor,
- tag:Water ;
- brick:hasQuantity brick:Flow ;
- brick:hasSubstance brick:Entering_Hot_Water .
-
-brick:Entering_Hot_Water_Flow_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Hot Water Flow Setpoint" ;
- rdfs:subClassOf brick:Entering_Water_Flow_Setpoint,
- brick:Hot_Water_Flow_Setpoint ;
- skos:definition "Sets the target flow rate of hot 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: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:Entering,
- tag:Flow,
- tag:Hot,
- tag:Point,
- tag:Setpoint,
- tag:Water ;
- brick:hasQuantity brick:Flow ;
- brick:hasSubstance brick:Entering_Hot_Water .
-
-brick:Entering_Hot_Water_Temperature_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Hot Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Entering_Water_Temperature_Setpoint,
- brick:Hot_Water_Temperature_Setpoint ;
- skos:definition "Sets the temperature of entering (downstream of the hot water load) hot 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: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:Entering,
- tag:Hot,
- tag:Point,
- tag:Setpoint,
- tag:Temperature,
- tag:Water ;
- brick:hasQuantity brick:Temperature ;
- brick:hasSubstance brick:Entering_Hot_Water .
-
-brick:Entering_Medium_Temperature_Hot_Water_Temperature_High_Reset_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Medium Temperature Hot Water Temperature High Reset Setpoint" ;
- rdfs:subClassOf brick:Entering_Hot_Water_Temperature_High_Reset_Setpoint ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Entering ;
- 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:Entering,
- tag:High,
- tag:Hot,
- tag:Medium,
- tag:Point,
- tag:Reset,
- tag:Setpoint,
- tag:Temperature,
- tag:Water .
-
-brick:Entering_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Medium Temperature Hot Water Temperature Load Shed Setpoint" ;
- rdfs:subClassOf brick:Load_Shed_Setpoint ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Entering ;
- 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:Entering,
- tag:Hot,
- tag:Load,
- tag:Medium,
- tag:Point,
- tag:Pressure,
- tag:Setpoint,
- tag:Shed,
- tag:Temperature,
- tag:Water .
-
-brick:Entering_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Status a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Medium Temperature Hot Water Temperature Load Shed Status" ;
- rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Load_Shed_Status ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Entering ;
- 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:Entering,
- tag:Hot,
- tag:Load,
- tag:Medium,
- tag:Point,
- tag:Shed,
- tag:Status,
- tag:Temperature,
- tag:Water .
-
-brick:Entering_Medium_Temperature_Hot_Water_Temperature_Low_Reset_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Medium Temperature Hot Water Temperature Low Reset Setpoint" ;
- rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Low_Reset_Setpoint ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Entering ;
- 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:Entering,
- tag:Hot,
- tag:Low,
- tag:Medium,
- tag:Point,
- tag:Reset,
- tag:Setpoint,
- tag:Temperature,
- tag:Water .
-
-brick:Entering_Medium_Temperature_Hot_Water_Temperature_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Medium Temperature Hot Water Temperature Sensor" ;
- rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Sensor ;
- skos:definition "Measures the temperature of medium-temperature hot water entering a hot water 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: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:Entering,
- tag:Hot,
- tag:Medium,
- tag:Point,
- tag:Sensor,
- tag:Temperature,
- tag:Water .
-
-brick:Entering_Water_Differential_Pressure_Deadband_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Water Differential Pressure Deadband Setpoint" ;
- rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ;
- skos:definition "Sets the size of a deadband of differential pressure of entering 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: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: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:Entering,
- tag:Point,
- tag:Pressure,
- tag:Setpoint,
- tag:Water ;
- brick:hasQuantity brick:Differential_Pressure ;
- brick:hasSubstance brick:Entering_Water .
-
-brick:Entering_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering 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:Entering ;
- 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:Entering,
- tag:Integral,
- tag:PID,
- tag:Parameter,
- tag:Point,
- tag:Pressure,
- tag:Time,
- tag:Water .
-
-brick:Entering_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering 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:Entering ;
- 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:Entering,
- tag:PID,
- tag:Parameter,
- tag:Point,
- tag:Pressure,
- tag:Proportional,
- tag:Water .
-
-brick:Entering_Water_Temperature_Alarm a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Water Temperature Alarm" ;
- rdfs:subClassOf brick:Water_Temperature_Alarm ;
- skos:definition "An alarm that indicates the off-normal conditions associated with temperature of the entering 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: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: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:Entering,
- tag:Point,
- tag:Temperature,
- tag:Water .
-
-brick:Entering_Water_Temperature_Deadband_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Water Temperature Deadband Setpoint" ;
- rdfs:subClassOf brick:Entering_Water_Temperature_Setpoint,
- brick:Temperature_Deadband_Setpoint ;
- skos:definition "Sets the size of a deadband of temperature of entering 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: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:Deadband,
- tag:Entering,
- tag:Point,
- tag:Setpoint,
- tag:Temperature,
- tag:Water ;
- brick:hasQuantity brick:Temperature ;
- brick:hasSubstance brick:Entering_Water .
-
-brick:Entering_Water_Temperature_Integral_Time_Parameter a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Water Temperature Integral Time Parameter" ;
- rdfs:subClassOf brick:Integral_Time_Parameter,
- brick:Temperature_Parameter ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Entering ;
- 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:Entering,
- tag:Integral,
- tag:PID,
- tag:Parameter,
- tag:Point,
- tag:Temperature,
- tag:Time,
- tag:Water .
-
-brick:Entering_Water_Temperature_Proportional_Band_Parameter a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering 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:Entering ;
- 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:Entering,
- tag:PID,
- tag:Parameter,
- tag:Point,
- tag:Proportional,
- tag:Temperature,
- tag:Water .
-
-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 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: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 .
-
-brick:EnthalpyShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:GigaEV unit:V-A_Reactive-HR unit:N-M unit:PlanckEnergy unit:MegaV-A-HR unit:ExaJ unit:KiloCAL unit:MegaTOE unit:J unit:AttoJ unit:THM_EEC unit:GigaJ unit:QUAD unit:BTU_TH unit:MegaJ unit:KiloJ unit:W-HR unit:BTU_IT unit:W-SEC unit:KiloW-HR unit:MilliJ unit:TeraJ unit:THM_US unit:FemtoJ unit:TeraW-HR unit:CAL_TH unit:MegaEV unit:CAL_IT unit:PetaJ unit:FT-PDL unit:MegaW-HR unit:TonEnergy unit:KiloV-A_Reactive-HR unit:E_h unit:TOE unit:EV unit:FT-LB_F unit:KiloEV unit:V-A-HR unit:MegaV-A_Reactive-HR unit:GigaW-HR unit:KiloV-A-HR unit:ERG ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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: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 .
-
-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 .
-
-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 .
-
-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:FlowShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:PK_US_DRY-PER-DAY unit:GAL_US-PER-MIN unit:GAL_UK-PER-DAY unit:M3-PER-SEC unit:IN3-PER-HR unit:FT3-PER-DAY unit:PINT_US-PER-HR unit:CentiM3-PER-DAY unit:PINT_US-PER-DAY unit:MilliL-PER-DAY unit:GI_UK-PER-HR unit:PK_UK-PER-SEC unit:DeciM3-PER-MIN unit:GI_US-PER-SEC unit:YD3-PER-SEC unit:OZ_VOL_UK-PER-SEC unit:BU_US_DRY-PER-DAY unit:PINT_US-PER-SEC unit:QT_US-PER-HR unit:BU_UK-PER-SEC unit:M3-PER-MIN unit:BBL_US-PER-DAY unit:L-PER-HR unit:PK_UK-PER-HR unit:PK_UK-PER-MIN unit:MilliL-PER-MIN unit:QT_UK-PER-DAY unit:QT_US-PER-SEC unit:GI_US-PER-HR unit:GI_UK-PER-SEC unit:PK_US_DRY-PER-MIN unit:PK_US_DRY-PER-SEC unit:DeciM3-PER-SEC unit:QT_US-PER-MIN unit:PINT_UK-PER-MIN unit:GAL_US-PER-SEC unit:GI_UK-PER-MIN unit:BBL_US_PET-PER-SEC unit:PK_US_DRY-PER-HR unit:OZ_VOL_US-PER-HR unit:FT3-PER-HR unit:OZ_VOL_UK-PER-HR unit:BU_UK-PER-HR unit:M3-PER-HR unit:PINT_UK-PER-SEC unit:GAL_US-PER-HR unit:BU_US_DRY-PER-SEC unit:GI_UK-PER-DAY unit:IN3-PER-MIN unit:BU_UK-PER-MIN unit:QT_US-PER-DAY unit:PK_UK-PER-DAY unit:BBL_UK_PET-PER-HR unit:YD3-PER-MIN unit:OZ_VOL_US-PER-DAY unit:M3-PER-DAY unit:OZ_VOL_US-PER-SEC unit:OZ_VOL_US-PER-MIN unit:BU_US_DRY-PER-MIN unit:KiloL-PER-HR unit:OZ_VOL_UK-PER-MIN unit:GAL_UK-PER-MIN unit:BBL_US_PET-PER-HR unit:CentiM3-PER-SEC unit:GI_US-PER-MIN unit:IN3-PER-SEC unit:QT_UK-PER-SEC unit:FT3-PER-MIN unit:BBL_UK_PET-PER-DAY unit:QT_UK-PER-MIN unit:PINT_US-PER-MIN unit:YD3-PER-HR unit:L-PER-DAY unit:DeciM3-PER-DAY unit:MilliL-PER-HR unit:L-PER-SEC unit:BBL_UK_PET-PER-SEC unit:GAL_UK-PER-SEC unit:BU_UK-PER-DAY unit:CentiM3-PER-HR unit:OZ_VOL_UK-PER-DAY unit:QT_UK-PER-HR unit:PINT_UK-PER-DAY unit:FT3-PER-SEC unit:GI_US-PER-DAY unit:YD3-PER-DAY unit:BBL_US-PER-MIN unit:CentiM3-PER-MIN unit:GAL_UK-PER-HR unit:L-PER-MIN unit:BU_US_DRY-PER-HR unit:DeciM3-PER-HR unit:BBL_UK_PET-PER-MIN unit:MilliL-PER-SEC unit:GAL_US-PER-DAY unit:PINT_UK-PER-HR ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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" .
-
-brick:Flow_LossShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:M3-PER-SEC ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-brick:Formaldehyde_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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:FrequencyShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:HZ unit:PERCENT-PER-HR unit:NUM-PER-HR unit:PER-SEC unit:PlanckFrequency unit:SAMPLE-PER-SEC unit:KiloHZ unit:MegaHZ unit:TeraHZ unit:NUM-PER-SEC unit:PER-WK unit:NUM-PER-YR unit:PER-MO unit:GigaHZ unit:PER-DAY unit:PER-MIN unit:PERCENT-PER-DAY unit:failures-in-time unit:PER-YR unit:PERCENT-PER-WK unit:PER-MilliSEC unit:PER-HR ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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:Temperature ;
- brick:hasSubstance brick:Frost .
-
-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 .
-
-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 .
-
-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 .
-
-brick:GrainsOfMoistureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:GRAIN ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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:hasSubstance 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 .
-
-brick:Heat_Exchanger_Leaving_Water_Temperature_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Heat Exchanger Leaving Water Temperature Sensor" ;
- rdfs:subClassOf brick:Leaving_Water_Temperature_Sensor ;
- 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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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_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 .
-
-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 .
-
-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 .
-
-brick:High_Humidity_Alarm_Parameter a owl:Class,
- sh:NodeShape ;
- rdfs:label "High Humidity Alarm Parameter" ;
- rdfs:subClassOf brick:Humidity_Parameter ;
- skos:definition "A parameter determining the humidity level at which to trigger a high humidity 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: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 .
-
-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 .
-
-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_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 .
-
-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: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 ;
- 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:Temperature ;
- sh:predicate brick:hasTag ;
- sh:subject sh:this ] ;
- brick:hasAssociatedTag tag:Alarm,
- tag:High,
- tag:Parameter,
- tag:Point,
- tag:Temperature .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-brick:Hot_Water_Differential_Temperature_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Hot Water Differential Temperature Sensor" ;
- rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Sensor,
- brick:Leaving_Hot_Water_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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-brick:IlluminanceShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:Phot unit:FC unit:LUX ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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:IrradianceShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:W-PER-FT2 unit:W-PER-CentiM2 unit:W-PER-M2 unit:W-PER-IN2 ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-brick:Leaving_Chilled_Water_Flow_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Chilled Water Flow Sensor" ;
- rdfs:subClassOf brick:Chilled_Water_Flow_Sensor,
- brick:Leaving_Water_Flow_Sensor ;
- skos:definition "Measures the rate of flow of chilled leaving 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: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:Chilled,
- tag:Flow,
- tag:Leaving,
- tag:Point,
- tag:Sensor,
- tag:Water ;
- brick:hasQuantity brick:Flow ;
- brick:hasSubstance brick:Leaving_Chilled_Water .
-
-brick:Leaving_Chilled_Water_Flow_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Chilled Water Flow Setpoint" ;
- rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint,
- brick:Leaving_Water_Flow_Setpoint ;
- skos:definition "Sets the target flow rate of chilled leaving 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: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:Chilled,
- tag:Flow,
- tag:Leaving,
- tag:Point,
- tag:Setpoint,
- tag:Water ;
- brick:hasQuantity brick:Flow ;
- brick:hasSubstance brick:Leaving_Chilled_Water .
-
-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 ;
- 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: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:Chilled,
- tag:Leaving,
- tag:Point,
- tag:Sensor,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Chilled_Water_Temperature_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Chilled Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint,
- brick:Leaving_Water_Temperature_Setpoint ;
- skos:definition "Temperature setpoint for leaving 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: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:Chilled,
- tag:Leaving,
- tag:Point,
- tag:Setpoint,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Condenser_Water_Flow_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Condenser Water Flow Sensor" ;
- rdfs:subClassOf brick:Condenser_Water_Flow_Sensor,
- brick:Leaving_Water_Flow_Sensor ;
- skos:definition "Measures the flow of the leaving 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: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:Condenser,
- tag:Flow,
- tag:Leaving,
- tag:Point,
- tag:Sensor,
- tag:Water ;
- brick:hasQuantity brick:Flow ;
- brick:hasSubstance brick:Leaving_Condenser_Water .
-
-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 ;
- skos:definition "Measures the temperature of the leaving 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: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:Condenser,
- tag:Leaving,
- tag:Point,
- tag:Sensor,
- tag:Temperature,
- tag:Water ;
- brick:hasQuantity brick:Temperature ;
- brick:hasSubstance brick:Leaving_Condenser_Water .
-
-brick:Leaving_Condenser_Water_Temperature_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Condenser Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Leaving_Water_Temperature_Setpoint ;
- skos:definition "The temperature setpoint for the leaving 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: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:Condenser,
- tag:Leaving,
- tag:Point,
- tag:Setpoint,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Domestic_Hot_Water_Temperature_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Domestic Hot Water Temperature Sensor" ;
- rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Sensor,
- brick:Leaving_Hot_Water_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: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:Domestic,
- tag:Hot,
- tag:Leaving,
- tag:Point,
- tag:Sensor,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Domestic_Hot_Water_Temperature_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Domestic Hot Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Setpoint,
- brick:Leaving_Water_Temperature_Setpoint ;
- skos:definition "Sets temperature of leavinging 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: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:Domestic,
- tag:Hot,
- tag:Leaving,
- tag:Point,
- tag:Setpoint,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_High_Temperature_Hot_Water_Temperature_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving High Temperature Hot Water Temperature Sensor" ;
- rdfs:subClassOf brick:Leaving_Hot_Water_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: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:High,
- tag:Hot,
- tag:Leaving,
- tag:Point,
- tag:Sensor,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Hot_Water_Flow_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Hot Water Flow Sensor" ;
- rdfs:subClassOf brick:Hot_Water_Flow_Sensor,
- brick:Leaving_Water_Flow_Sensor ;
- skos:definition "Measures the rate of flow of hot 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:Hot ;
- 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:Hot,
- tag:Leaving,
- tag:Point,
- tag:Sensor,
- tag:Water ;
- brick:hasQuantity brick:Flow ;
- brick:hasSubstance brick:Leaving_Hot_Water .
-
-brick:Leaving_Hot_Water_Flow_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Hot Water Flow Setpoint" ;
- rdfs:subClassOf brick:Hot_Water_Flow_Setpoint,
- brick:Leaving_Water_Flow_Setpoint ;
- skos:definition "Sets the target flow rate of hot 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:Hot ;
- 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:Hot,
- tag:Leaving,
- tag:Point,
- tag:Setpoint,
- tag:Water ;
- brick:hasQuantity brick:Flow ;
- brick:hasSubstance brick:Leaving_Hot_Water .
-
-brick:Leaving_Hot_Water_Temperature_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Hot Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Hot_Water_Temperature_Setpoint,
- brick:Leaving_Water_Temperature_Setpoint ;
- skos:definition "Temperature setpoint for leaving 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: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:Hot,
- tag:Leaving,
- tag:Point,
- tag:Setpoint,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Medium_Temperature_Hot_Water_Temperature_High_Reset_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Medium Temperature Hot Water Temperature High Reset Setpoint" ;
- rdfs:subClassOf brick:Leaving_Hot_Water_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:Leaving ;
- 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:High,
- tag:Hot,
- tag:Leaving,
- tag:Medium,
- tag:Point,
- tag:Reset,
- tag:Setpoint,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Medium Temperature Hot Water 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:Leaving ;
- 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:Hot,
- tag:Leaving,
- tag:Load,
- tag:Medium,
- tag:Point,
- tag:Pressure,
- tag:Setpoint,
- tag:Shed,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Status a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Medium Temperature Hot Water Temperature Load Shed Status" ;
- rdfs:subClassOf brick:Leaving_Hot_Water_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:Leaving ;
- 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:Hot,
- tag:Leaving,
- tag:Load,
- tag:Medium,
- tag:Point,
- tag:Shed,
- tag:Status,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Low_Reset_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Medium Temperature Hot Water Temperature Low Reset Setpoint" ;
- rdfs:subClassOf brick:Leaving_Hot_Water_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:Leaving ;
- 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:Hot,
- tag:Leaving,
- tag:Low,
- tag:Medium,
- tag:Point,
- tag:Reset,
- tag:Setpoint,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Sensor a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Medium Temperature Hot Water Temperature Sensor" ;
- rdfs:subClassOf brick:Leaving_Hot_Water_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:Leaving ;
- 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:Hot,
- tag:Leaving,
- tag:Medium,
- tag:Point,
- tag:Sensor,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Water_Differential_Pressure_Deadband_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Water Differential Pressure Deadband Setpoint" ;
- rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ;
- skos:definition "Sets the size of a deadband of differential pressure of leaving 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: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: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:Leaving,
- tag:Point,
- tag:Pressure,
- tag:Setpoint,
- tag:Water ;
- brick:hasQuantity brick:Differential_Pressure ;
- brick:hasSubstance brick:Leaving_Water .
-
-brick:Leaving_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving 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:Integral ;
- 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: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:Integral,
- tag:Leaving,
- tag:PID,
- tag:Parameter,
- tag:Point,
- tag:Pressure,
- tag:Time,
- tag:Water .
-
-brick:Leaving_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving 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:Leaving ;
- 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:Leaving,
- tag:PID,
- tag:Parameter,
- tag:Point,
- tag:Pressure,
- tag:Proportional,
- tag:Water .
-
-brick:Leaving_Water_Temperature_Alarm a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Water Temperature Alarm" ;
- rdfs:subClassOf brick:Water_Temperature_Alarm ;
- skos:definition "An alarm that indicates the off-normal conditions associated with temperature of the leaving 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: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: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:Leaving,
- tag:Point,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Water_Temperature_Deadband_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Water Temperature Deadband Setpoint" ;
- rdfs:subClassOf brick:Leaving_Water_Temperature_Setpoint,
- brick:Temperature_Deadband_Setpoint ;
- skos:definition "Sets the size of a deadband of temperature of leaving 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: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:Deadband,
- tag:Leaving,
- tag:Point,
- tag:Setpoint,
- tag:Temperature,
- tag:Water ;
- brick:hasQuantity brick:Temperature ;
- brick:hasSubstance brick:Leaving_Water .
-
-brick:Leaving_Water_Temperature_Integral_Time_Parameter a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Water Temperature Integral Time Parameter" ;
- rdfs:subClassOf brick:Integral_Time_Parameter,
- brick:Temperature_Parameter ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Integral ;
- 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: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:Integral,
- tag:Leaving,
- tag:PID,
- tag:Parameter,
- tag:Point,
- tag:Temperature,
- tag:Time,
- tag:Water .
-
-brick:Leaving_Water_Temperature_Proportional_Band_Parameter a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving 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:Leaving ;
- 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:Leaving,
- tag:PID,
- tag:Parameter,
- tag:Point,
- tag:Proportional,
- tag:Temperature,
- tag:Water .
-
-brick:LevelShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:MicroM unit:IN unit:M unit:KiloM unit:YD unit:CentiM unit:DeciM unit:FT unit:MilliM ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-brick:Linear_SpeedShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:M-PER-SEC unit:KiloM-PER-HR unit:MI-PER-SEC unit:KiloM-PER-SEC unit:M-PER-HR unit:FT-PER-SEC unit:FT-PER-HR unit:MI-PER-HR ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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: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 .
-
-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 .
-
-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 .
-
-brick:Low_Humidity_Alarm_Parameter a owl:Class,
- sh:NodeShape ;
- rdfs:label "Low Humidity Alarm Parameter" ;
- rdfs:subClassOf brick:Humidity_Parameter ;
- skos:definition "A parameter determining the humidity level at which to trigger a low humidity 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: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 .
-
-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 .
-
-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 .
-
-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 .
-
-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_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 .
-
-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 .
-
-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: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 ;
- 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:Temperature ;
- sh:predicate brick:hasTag ;
- sh:subject sh:this ] ;
- brick:hasAssociatedTag tag:Alarm,
- tag:Low,
- tag:Parameter,
- tag:Point,
- tag:Temperature .
-
-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 .
-
-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 .
-
-brick:LuminanceShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:LA unit:CD unit:CD-PER-M2 unit:CP unit:LM unit:CD-PER-IN2 unit:FT-LA unit:STILB ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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 .
-
-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 .
-
-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_FluxShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:LM ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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:Luminous_IntensityShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:CP unit:CD ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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 .
-
-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 .
-
-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:MassShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:DRAM_US unit:LB_T unit:TON_UK unit:CARAT unit:Pennyweight unit:MegaGM unit:LB unit:CentiGM unit:DeciTON_Metric unit:Quarter_UK unit:TON_Assay unit:OZ unit:DeciGM unit:GRAIN unit:KiloTONNE unit:TON_SHORT unit:NanoGM unit:CWT_SHORT unit:U unit:KiloTON_Metric unit:HectoGM unit:Hundredweight_UK unit:TON_LONG unit:DeciTONNE unit:Stone_UK unit:DRAM_UK unit:MilliGM unit:SLUG unit:PlanckMass unit:TON_Metric unit:GM unit:PicoGM unit:TONNE unit:EarthMass unit:TON_US unit:DecaGM unit:DWT unit:KiloGM unit:MicroGM unit:SolarMass unit:Da unit:AMU unit:OZ_TROY unit:Hundredweight_US unit:CWT_LONG unit:LunarMass ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-brick:Methane_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-brick:NO2_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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:NO2_Concentration ;
- brick:hasSubstance brick:Air .
-
-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: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 .
-
-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 .
-
-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 .
-
-brick:Occupancy_PercentageShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- 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 ] .
-
-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_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_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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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: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: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: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: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 .
-
-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 .
-
-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 .
-
-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 .
-
-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:Operative_TemperatureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:DEG_F unit:DEG_C unit:K ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-brick:Ozone_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-brick:PM10_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB unit:MicroGM-PER-M3 ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-brick:PM1_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB unit:MicroGM-PER-M3 ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-brick:PM2.5_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB unit:MicroGM-PER-M3 ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-brick:Peak_PowerShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:MilliW unit:W unit:KiloW unit:MegaW ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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_AngleShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:GON unit:MilliRAD unit:MIL unit:REV unit:GRAD unit:MicroRAD unit:MilliARCSEC unit:RAD unit:ARCMIN unit:DEG unit:ARCSEC ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-brick:Phasor_MagnitudeShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:GON unit:MilliRAD unit:MIL unit:REV unit:GRAD unit:MicroRAD unit:MilliARCSEC unit:RAD unit:ARCMIN unit:DEG unit:ARCSEC ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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:PositionShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- 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 ] .
-
-brick:PowerShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:HP_Boiler unit:FT-LB_F-PER-MIN unit:KiloCAL-PER-SEC unit:MegaPA-L-PER-SEC unit:PA-L-PER-SEC unit:V-A unit:BAR-L-PER-SEC unit:J-PER-HR unit:J-PER-SEC unit:MilliBAR-L-PER-SEC unit:W unit:KiloV-A unit:PlanckPower unit:KiloCAL-PER-MIN unit:PSI-IN3-PER-SEC unit:HP_Electric unit:FT-LB_F-PER-SEC unit:KiloW unit:FT-LB_F-PER-HR unit:MilliBAR-M3-PER-SEC unit:ERG-PER-SEC unit:BTU_IT unit:PA-M3-PER-SEC unit:MegaJ-PER-SEC unit:TON_FG unit:V-A_Reactive unit:BAR-M3-PER-SEC unit:MegaV-A_Reactive unit:MegaPA-M3-PER-SEC unit:MicroW unit:MegaW unit:MegaV-A unit:PicoW unit:HP-PER-V unit:NanoW unit:HP unit:PSI-M3-PER-SEC unit:HP_Metric unit:KiloV-A_Reactive unit:TeraW unit:BTU_IT-PER-SEC unit:PSI-YD3-PER-SEC unit:MilliW unit:GigaW unit:HP_Brake unit:BTU_IT-PER-HR unit:HP-PER-M ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-brick:Power_FactorShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:UNITLESS ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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:PrecipitationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:MicroM unit:IN unit:M unit:KiloM unit:YD unit:CentiM unit:DeciM unit:FT unit:MilliM ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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:PressureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:BARAD unit:MilliM_HG unit:KiloPA unit:CentiBAR unit:PSI unit:LB_F-PER-IN2 unit:MicroBAR unit:KiloGM_F-PER-MilliM2 unit:PDL-PER-FT2 unit:DYN-PER-CentiM2 unit:IN_H2O unit:CentiM_H2O unit:DeciBAR unit:MilliM_HGA unit:KiloLB_F-PER-IN2 unit:TORR unit:FT_HG unit:HectoPA unit:KiloPA_A unit:BARYE unit:DecaPA unit:MegaPA unit:MilliBAR unit:FT_H2O unit:N-PER-MilliM2 unit:PlanckPressure unit:MicroPA unit:MilliTORR unit:KiloGM_F-PER-M2 unit:MicroTORR unit:PA unit:N-PER-CentiM2 unit:CM_H2O unit:ATM_T unit:MilliM_H2O unit:GM_F-PER-CentiM2 unit:KiloBAR unit:MilliPA unit:KiloGM_F-PER-CentiM2 unit:BAR unit:KIP_F-PER-IN2 unit:MegaBAR unit:LB_F-PER-FT2 unit:CentiM_HG unit:N-PER-M2 unit:ATM unit:HectoBAR unit:GigaPA unit:IN_HG unit:KiloGM-PER-M-SEC2 unit:MicroATM ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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 .
-
-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:RadianceShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:W-PER-M2-SR ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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:Radiant_TemperatureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:DEG_F unit:DEG_C unit:K ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-brick:Radon_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:BQ-PER-M3 ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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 .
-
-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_EnergyShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:V-A_Reactive-HR unit:KiloV-A_Reactive-HR unit:MegaV-A_Reactive-HR ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-brick:Reactive_PowerShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:KiloV-A_Reactive unit:MegaV-A_Reactive unit:V-A_Reactive ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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:Real_PowerShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:MegaV-A unit:V-A unit:KiloV-A ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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:Relative_HumidityShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:UNITLESS ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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" .
-
-brick:Rotational_SpeedShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:DEG-PER-HR unit:RAD-PER-HR unit:DEG-PER-MIN unit:RAD-PER-SEC unit:DEG-PER-SEC unit:RAD-PER-MIN ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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: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 .
-
-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 .
-
-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 .
-
-brick:Solar_IrradianceShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:W-PER-FT2 unit:W-PER-CentiM2 unit:W-PER-M2 unit:W-PER-IN2 ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-brick:Solar_RadianceShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:W-PER-M2-SR ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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:SpeedShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:M-PER-SEC unit:KiloM-PER-HR unit:KiloM-PER-SEC unit:M-PER-HR unit:DEG-PER-MIN unit:FT-PER-SEC unit:BFT unit:GigaHZ-M unit:RAD-PER-MIN unit:FT-PER-HR unit:MI-PER-HR unit:RAD-PER-HR unit:RAD-PER-SEC unit:MI-PER-SEC unit:FT3-PER-MIN-FT2 unit:MegaHZ-M unit:HZ-M unit:DEG-PER-HR unit:GigaC-PER-M3 unit:DEG-PER-SEC ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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:Static_PressureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:BARAD unit:MilliM_HG unit:KiloPA unit:CentiBAR unit:PSI unit:LB_F-PER-IN2 unit:MicroBAR unit:KiloGM_F-PER-MilliM2 unit:PDL-PER-FT2 unit:DYN-PER-CentiM2 unit:IN_H2O unit:CentiM_H2O unit:DeciBAR unit:MilliM_HGA unit:KiloLB_F-PER-IN2 unit:TORR unit:FT_HG unit:HectoPA unit:KiloPA_A unit:BARYE unit:DecaPA unit:MegaPA unit:MilliBAR unit:FT_H2O unit:N-PER-MilliM2 unit:PlanckPressure unit:MicroPA unit:MilliTORR unit:KiloGM_F-PER-M2 unit:MicroTORR unit:PA unit:N-PER-CentiM2 unit:CM_H2O unit:ATM_T unit:MilliM_H2O unit:GM_F-PER-CentiM2 unit:KiloBAR unit:MilliPA unit:KiloGM_F-PER-CentiM2 unit:BAR unit:KIP_F-PER-IN2 unit:MegaBAR unit:LB_F-PER-FT2 unit:CentiM_HG unit:N-PER-M2 unit:ATM unit:HectoBAR unit:GigaPA unit:IN_HG unit:KiloGM-PER-M-SEC2 unit:MicroATM ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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: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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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_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_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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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: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 .
-
-brick:TVOC_ConcentrationShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:PPM unit:PPB unit:MicroGM-PER-M3 ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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:TemperatureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:DEG_R unit:MilliDEG_C unit:PlanckTemperature unit:DEG_F unit:DEG_C unit:K ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-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 .
-
-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 .
-
-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_EnergyShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:N-M unit:KiloCAL_IT unit:CAL_TH unit:KiloCAL_Mean unit:CAL_IT unit:CAL_MEAN unit:KiloCAL_TH unit:BTU_MEAN unit:KiloCAL unit:J unit:THM_EEC unit:GigaJ unit:BTU_TH unit:CAL_15_DEG_C unit:KiloJ unit:MegaJ unit:BTU_IT unit:THM_US ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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_PowerShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:BTU_IT unit:MilliW unit:W unit:KiloW unit:MegaW ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-brick:TimeShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:SH unit:MegaYR unit:MilliH-PER-KiloOHM unit:MicroH-PER-KiloOHM unit:KiloSEC unit:MIN_Sidereal unit:H-PER-OHM unit:PlanckTime unit:NanoSEC unit:POISE-PER-BAR unit:MilliPA-SEC-PER-BAR unit:YR_Sidereal unit:MicroSEC unit:MO_Synodic unit:YR_TROPICAL unit:PicoSEC unit:PA-SEC-PER-BAR unit:YR_Common unit:SEC unit:DAY unit:WK unit:HR unit:MIN unit:DAY_Sidereal unit:YR unit:HR_Sidereal unit:MO unit:MO_MeanGREGORIAN unit:MicroH-PER-OHM unit:MO_MeanJulian unit:H-PER-KiloOHM unit:MilliSEC unit:CentiPOISE-PER-BAR unit:MilliH-PER-OHM ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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:TorqueShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:N-M unit:MegaN-M unit:KiloGM_F-M unit:OZ_F-IN unit:DYN-CentiM unit:MicroN-M unit:N-CentiM unit:MilliN-M unit:CentiN-M unit:KiloN-M unit:DeciN-M unit:LB_F-FT unit:LB_F-IN unit:J unit:KiloGM_F-PER-M ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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_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: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 .
-
-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_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: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 .
-
-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 .
-
-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_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_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_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: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 .
-
-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 .
-
-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 .
-
-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 .
-
-brick:Velocity_PressureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:BARAD unit:MilliM_HG unit:KiloPA unit:CentiBAR unit:PSI unit:LB_F-PER-IN2 unit:MicroBAR unit:KiloGM_F-PER-MilliM2 unit:PDL-PER-FT2 unit:DYN-PER-CentiM2 unit:IN_H2O unit:CentiM_H2O unit:DeciBAR unit:MilliM_HGA unit:KiloLB_F-PER-IN2 unit:TORR unit:FT_HG unit:HectoPA unit:KiloPA_A unit:BARYE unit:DecaPA unit:MegaPA unit:MilliBAR unit:FT_H2O unit:N-PER-MilliM2 unit:PlanckPressure unit:MicroPA unit:MilliTORR unit:KiloGM_F-PER-M2 unit:MicroTORR unit:PA unit:N-PER-CentiM2 unit:CM_H2O unit:ATM_T unit:MilliM_H2O unit:GM_F-PER-CentiM2 unit:KiloBAR unit:MilliPA unit:KiloGM_F-PER-CentiM2 unit:BAR unit:KIP_F-PER-IN2 unit:MegaBAR unit:LB_F-PER-FT2 unit:CentiM_HG unit:N-PER-M2 unit:ATM unit:HectoBAR unit:GigaPA unit:IN_HG unit:KiloGM-PER-M-SEC2 unit:MicroATM ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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:VoltageShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:PlanckVolt unit:V unit:V_Ab unit:MegaV unit:MicroV unit:V_Stat unit:MilliV unit:KiloV ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-brick:Voltage_AngleShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:GON unit:MilliRAD unit:MIL unit:REV unit:GRAD unit:MicroRAD unit:MilliARCSEC unit:RAD unit:ARCMIN unit:DEG unit:ARCSEC ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-brick:Voltage_ImbalanceShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:PERCENT ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-brick:Wet_Bulb_TemperatureShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ],
- [ a sh:PropertyShape ;
- sh:in ( unit:DEG_F unit:DEG_C unit:K ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ] .
-
-brick:Wind_DirectionShape a owl:Class,
- sh:NodeShape ;
- rdfs:subClassOf bsh:ValueShape ;
- sh:property [ a sh:PropertyShape ;
- sh:in ( unit:GON unit:MilliRAD unit:MIL unit:REV unit:GRAD unit:MicroRAD unit:MilliARCSEC unit:RAD unit:ARCMIN unit:DEG unit:ARCSEC ) ;
- sh:minCount 1 ;
- sh:path brick:hasUnit ],
- [ a sh:PropertyShape ;
- sh:maxCount 1 ;
- sh:minCount 1 ;
- sh:or bsh:NumericValue ;
- sh:path brick:value ] .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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 .
-
-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:hasQUDTReference a owl:AsymmetricProperty,
- owl:IrreflexiveProperty,
- owl:ObjectProperty ;
- rdfs:label "Has QUDT reference" ;
- skos:definition "Points to the relevant QUDT definition"@en .
-
-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:ElectricCurrentShape ;
- rdfs:subPropertyOf brick:ratedCurrentInput ;
- skos:definition "The maximum current that can be input to the entity" .
-
-brick:ratedMaximumCurrentOutput a brick:EntityProperty ;
- rdfs:range bsh:ElectricCurrentShape ;
- 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:ElectricCurrentShape ;
- rdfs:subPropertyOf brick:ratedCurrentInput ;
- skos:definition "The minimum current that can be input to the entity" .
-
-brick:ratedMinimumCurrentOutput a brick:EntityProperty ;
- rdfs:range bsh:ElectricCurrentShape ;
- 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:datatype xsd:string ;
- sh:maxCount 1 ;
- sh:path brick:deprecatedInVersion ],
- [ sh:datatype xsd:string ;
- sh:maxCount 1 ;
- sh:path brick:deprecationMitigationMessage ],
- [ sh:class sh:NodeShape ;
- sh:maxCount 1 ;
- sh:path brick:deprecationMitigationRule ],
- [ sh:maxCount 0 ;
- sh:message "This concept is deprecated" ;
- sh:path ( rdf:type brick:deprecation ) ;
- sh:severity sh:Warning ] ;
- 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:hasQuantity a sh:NodeShape ;
- sh:class qudt:QuantityKind ;
- sh:targetObjectsOf brick:hasQuantity .
-
-bsh:hasSubstance a sh:NodeShape ;
- sh:class brick:Substance ;
- sh:targetObjectsOf brick:hasSubstance .
-
-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 .
-
-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" ;
- dcterms: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" ] ) ;
- dcterms:issued "2016-11-16" ;
- dcterms:license ;
- dcterms:modified "2022-09-22" ;
- dcterms:publisher [ a sdo:Consortium ;
- sdo:legalName "Brick Consortium, Inc" ;
- sdo:sameAs ] ;
- rdfs:isDefinedBy ;
- rdfs:seeAlso ;
- owl:versionInfo "1.3.0" ;
- sh:declare [ sh:namespace "http://www.w3.org/2002/07/owl#"^^xsd:anyURI ;
- sh:prefix "owl" ],
- [ sh:namespace "http://www.w3.org/2000/01/rdf-schema#"^^xsd:anyURI ;
- sh:prefix "rdfs" ],
- [ sh:namespace "https://brickschema.org/schema/Brick#"^^xsd:anyURI ;
- sh:prefix "brick" ],
- [ sh:namespace "http://www.w3.org/ns/shacl#"^^xsd:anyURI ;
- sh:prefix "sh" ],
- [ sh:namespace "http://www.w3.org/1999/02/22-rdf-syntax-ns#"^^xsd:anyURI ;
- sh:prefix "rdf" ] .
-
-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 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: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_Concentration .
-
-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 ;
- rdfs:label "Chilled Water Discharge Flow Sensor" ;
- rdfs:subClassOf brick:Chilled_Water_Flow_Sensor,
- brick:Discharge_Water_Flow_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Chilled_Water_Discharge_Flow_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Chilled_Water_Discharge_Flow_Setpoint a owl:Class ;
- rdfs:label "Chilled Water Discharge Flow Setpoint" ;
- rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint,
- brick:Discharge_Water_Flow_Setpoint ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Chilled_Water_Discharge_Flow_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Chilled_Water_Discharge_Temperature_Sensor a owl:Class ;
- rdfs:label "Chilled Water Discharge Temperature Sensor" ;
- rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor,
- brick:Discharge_Water_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Chilled_Water_Discharge_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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:Chilled_Water_Return_Flow_Sensor a owl:Class ;
- rdfs:label "Chilled Water Return Flow Sensor" ;
- rdfs:subClassOf brick:Chilled_Water_Flow_Sensor,
- brick:Return_Water_Flow_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Chilled_Water_Return_Flow_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Chilled_Water_Return_Temperature_Sensor a owl:Class ;
- rdfs:label "Chilled Water Return Temperature Sensor" ;
- rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor,
- brick:Return_Water_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Chilled_Water_Return_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Chilled_Water_Supply_Flow_Sensor a owl:Class ;
- rdfs:label "Chilled Water Supply Flow Sensor" ;
- rdfs:subClassOf brick:Chilled_Water_Flow_Sensor,
- brick:Supply_Water_Flow_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Chilled_Water_Supply_Flow_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Chilled_Water_Supply_Flow_Setpoint a owl:Class ;
- rdfs:label "Chilled Water Supply Flow Setpoint" ;
- rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint,
- brick:Supply_Water_Flow_Setpoint ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Chilled_Water_Supply_Flow_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Chilled_Water_Supply_Temperature_Sensor a owl:Class ;
- rdfs:label "Chilled Water Supply Temperature Sensor" ;
- rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor,
- brick:Supply_Water_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Chilled_Water_Supply_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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 "The version in which the entity was deprecated" ;
- sh:datatype xsd:string ;
- sh:minCount 1 ;
- sh:path brick:deprecatedInVersion ],
- [ 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 "A SHACL rule which will mitigate the deprecation" ;
- sh:class sh:NodeShape ;
- sh:path brick:deprecationMigitationRule ] .
-
-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 ;
- rdfs:label "Differential Discharge Return Water Temperature Sensor" ;
- rdfs:subClassOf brick:Water_Differential_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Differential_Discharge_Return_Water_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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:Differential_Supply_Return_Water_Temperature_Sensor a owl:Class ;
- rdfs:label "Differential Supply Return Water Temperature Sensor" ;
- rdfs:subClassOf brick:Water_Differential_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Differential_Supply_Return_Water_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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 a owl:Class ;
- rdfs:label "Discharge Chilled Water" ;
- rdfs:subClassOf brick:Chilled_Water ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Discharge_Chilled_Water ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Discharge_Chilled_Water_Temperature_Setpoint a owl:Class ;
- rdfs:label "Discharge Chilled Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Discharge_Chilled_Water_Temperature_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Discharge_Condenser_Water a owl:Class ;
- rdfs:label "Discharge Condenser Water" ;
- rdfs:subClassOf brick:Condenser_Water ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Discharge_Condenser_Water ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Discharge_Condenser_Water_Flow_Sensor a owl:Class ;
- rdfs:label "Discharge Condenser Water Flow Sensor" ;
- rdfs:subClassOf brick:Condenser_Water_Flow_Sensor,
- brick:Discharge_Water_Flow_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Discharge_Condenser_Water_Flow_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Discharge_Condenser_Water_Temperature_Sensor a owl:Class ;
- rdfs:label "Discharge Condenser Water Temperature Sensor" ;
- rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor,
- brick:Discharge_Water_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Discharge_Condenser_Water_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Discharge_Condenser_Water_Temperature_Setpoint a owl:Class ;
- rdfs:label "Discharge Condenser Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Discharge_Water_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Discharge_Condenser_Water_Temperature_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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 a owl:Class ;
- rdfs:label "Discharge Hot Water" ;
- rdfs:subClassOf brick:Hot_Water ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Discharge_Hot_Water ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Discharge_Water a owl:Class ;
- rdfs:label "Discharge Water" ;
- rdfs:subClassOf brick:Water ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Discharge_Water ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Domestic_Hot_Water_Discharge_Temperature_Sensor a owl:Class ;
- rdfs:label "Domestic Hot Water Discharge Temperature Sensor" ;
- rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Domestic_Hot_Water_Discharge_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Domestic_Hot_Water_Discharge_Temperature_Setpoint a owl:Class ;
- rdfs:label "Domestic Hot Water Discharge Temperature Setpoint" ;
- rdfs:subClassOf brick:Discharge_Hot_Water_Temperature_Setpoint ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Domestic_Hot_Water_Discharge_Temperature_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Domestic_Hot_Water_Supply_Temperature_Sensor a owl:Class ;
- rdfs:label "Domestic Hot Water Supply Temperature Sensor" ;
- rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Domestic_Hot_Water_Supply_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Domestic_Hot_Water_Supply_Temperature_Setpoint a owl:Class ;
- rdfs:label "Domestic Hot Water Supply Temperature Setpoint" ;
- rdfs:subClassOf brick:Supply_Hot_Water_Temperature_Setpoint ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Domestic_Hot_Water_Supply_Temperature_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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:Entering_Hot_Water_Temperature_High_Reset_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Hot Water Temperature High Reset Setpoint" ;
- rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Entering ;
- 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: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:Entering,
- tag:High,
- tag:Hot,
- tag:Point,
- tag:Reset,
- tag:Setpoint,
- tag:Temperature,
- tag:Water .
-
-brick:Entering_Hot_Water_Temperature_Load_Shed_Status a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Hot Water Temperature Load Shed Status" ;
- rdfs:subClassOf brick:Load_Shed_Status ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Entering ;
- 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:Entering,
- tag:Hot,
- tag:Load,
- tag:Point,
- tag:Shed,
- tag:Status,
- tag:Temperature,
- tag:Water .
-
-brick:Entering_Hot_Water_Temperature_Low_Reset_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Entering Hot Water Temperature Low Reset Setpoint" ;
- rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ;
- sh:rule [ a sh:TripleRule ;
- sh:object tag:Entering ;
- 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:Entering,
- tag:Hot,
- tag:Low,
- tag:Point,
- tag:Reset,
- tag:Setpoint,
- tag:Temperature,
- tag:Water .
-
-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 ;
- rdfs:label "Heat Exchanger Discharge Water Temperature Sensor" ;
- rdfs:subClassOf brick:Water_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Heat_Exchanger_Discharge_Water_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Heat_Exchanger_Supply_Water_Temperature_Sensor a owl:Class ;
- rdfs:label "Heat Exchanger Supply Water Temperature Sensor" ;
- rdfs:subClassOf brick:Water_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Heat_Exchanger_Supply_Water_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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 ;
- rdfs:label "High Temperature Hot Water Discharge Temperature Sensor" ;
- rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:High_Temperature_Hot_Water_Discharge_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:High_Temperature_Hot_Water_Return_Temperature_Sensor a owl:Class ;
- rdfs:label "High Temperature Hot Water Return Temperature Sensor" ;
- rdfs:subClassOf brick:Hot_Water_Return_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:High_Temperature_Hot_Water_Return_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:High_Temperature_Hot_Water_Supply_Temperature_Sensor a owl:Class ;
- rdfs:label "High Temperature Hot Water Supply Temperature Sensor" ;
- rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:High_Temperature_Hot_Water_Supply_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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 ;
- rdfs:label "Hot Water Discharge Flow Sensor" ;
- rdfs:subClassOf brick:Discharge_Water_Flow_Sensor,
- brick:Hot_Water_Flow_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Hot_Water_Discharge_Flow_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Hot_Water_Discharge_Flow_Setpoint a owl:Class ;
- rdfs:label "Hot Water Discharge Flow Setpoint" ;
- rdfs:subClassOf brick:Discharge_Water_Flow_Setpoint,
- brick:Hot_Water_Flow_Setpoint ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Hot_Water_Discharge_Flow_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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_Return_Flow_Sensor a owl:Class ;
- rdfs:label "Hot Water Return Flow Sensor" ;
- rdfs:subClassOf brick:Hot_Water_Flow_Sensor,
- brick:Return_Water_Flow_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Hot_Water_Return_Flow_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Hot_Water_Supply_Flow_Sensor a owl:Class ;
- rdfs:label "Hot Water Supply Flow Sensor" ;
- rdfs:subClassOf brick:Hot_Water_Flow_Sensor,
- brick:Supply_Water_Flow_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Hot_Water_Supply_Flow_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Hot_Water_Supply_Flow_Setpoint a owl:Class ;
- rdfs:label "Hot Water Supply Flow Setpoint" ;
- rdfs:subClassOf brick:Supply_Water_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Hot_Water_Supply_Flow_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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_Hot_Water_Temperature_High_Reset_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Hot Water 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: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: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:High,
- tag:Hot,
- tag:Leaving,
- tag:Point,
- tag:Reset,
- tag:Setpoint,
- tag:Temperature,
- tag:Water ;
- brick:hasQuantity brick:Temperature ;
- brick:hasSubstance brick:Leaving_Hot_Water .
-
-brick:Leaving_Hot_Water_Temperature_Load_Shed_Status a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Hot Water Temperature Load Shed Status" ;
- rdfs:subClassOf brick: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:Leaving ;
- 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:Hot,
- tag:Leaving,
- tag:Load,
- tag:Point,
- tag:Shed,
- tag:Status,
- tag:Temperature,
- tag:Water .
-
-brick:Leaving_Hot_Water_Temperature_Low_Reset_Setpoint a owl:Class,
- sh:NodeShape ;
- rdfs:label "Leaving Hot Water Temperature Low Reset Setpoint" ;
- rdfs:subClassOf brick: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:Leaving ;
- 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:Hot,
- tag:Leaving,
- tag:Low,
- tag:Point,
- tag:Reset,
- tag:Setpoint,
- tag:Temperature,
- tag:Water ;
- brick:hasQuantity brick:Temperature ;
- brick:hasSubstance brick:Leaving_Hot_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_Sensor a owl:Class ;
- rdfs:label "Medium Temperature Hot Water Discharge Temperature Sensor" ;
- rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Medium_Temperature_Hot_Water_Return_Temperature_Sensor a owl:Class ;
- rdfs:label "Medium Temperature Hot Water Return Temperature Sensor" ;
- rdfs:subClassOf brick:Hot_Water_Return_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Medium_Temperature_Hot_Water_Return_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Medium_Temperature_Hot_Water_Supply_Temperature_Sensor a owl:Class ;
- rdfs:label "Medium Temperature Hot Water Supply Temperature Sensor" ;
- rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Medium_Temperature_Hot_Water_Supply_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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:Return_Chilled_Water_Temperature_Setpoint a owl:Class ;
- rdfs:label "Return Chilled Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint,
- brick:Return_Water_Temperature_Setpoint ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Return_Chilled_Water_Temperature_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Return_Condenser_Water a owl:Class ;
- rdfs:label "Return Condenser Water" ;
- rdfs:subClassOf brick:Condenser_Water ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Return_Condenser_Water ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Return_Condenser_Water_Flow_Sensor a owl:Class ;
- rdfs:label "Return Condenser Water Flow Sensor" ;
- rdfs:subClassOf brick:Condenser_Water_Flow_Sensor,
- brick:Return_Water_Flow_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Return_Condenser_Water_Flow_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Return_Condenser_Water_Temperature_Sensor a owl:Class ;
- rdfs:label "Return Condenser Water Temperature Sensor" ;
- rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Return_Condenser_Water_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Return_Condenser_Water_Temperature_Setpoint a owl:Class ;
- rdfs:label "Return Condenser Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Return_Water_Temperature_Setpoint ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Return_Condenser_Water_Temperature_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Return_Hot_Water a owl:Class ;
- rdfs:label "Return Hot Water" ;
- rdfs:subClassOf brick:Hot_Water ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Return_Hot_Water ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Return_Hot_Water_Temperature_Setpoint a owl:Class ;
- rdfs:label "Return Hot Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Return_Water_Temperature_Setpoint ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Return_Hot_Water_Temperature_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Return_Water a owl:Class ;
- rdfs:label "Return Water" ;
- rdfs:subClassOf brick:Water ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Return_Water ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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_Chilled_Water a owl:Class ;
- rdfs:label "Supply Chilled Water" ;
- rdfs:subClassOf brick:Chilled_Water ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Supply_Chilled_Water ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Supply_Chilled_Water_Temperature_Setpoint a owl:Class ;
- rdfs:label "Supply Chilled Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Supply_Chilled_Water_Temperature_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Supply_Condenser_Water a owl:Class ;
- rdfs:label "Supply Condenser Water" ;
- rdfs:subClassOf brick:Condenser_Water ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Supply_Condenser_Water ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Supply_Condenser_Water_Flow_Sensor a owl:Class ;
- rdfs:label "Supply Condenser Water Flow Sensor" ;
- rdfs:subClassOf brick:Condenser_Water_Flow_Sensor,
- brick:Supply_Water_Flow_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Supply_Condenser_Water_Flow_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Supply_Condenser_Water_Temperature_Sensor a owl:Class ;
- rdfs:label "Supply Condenser Water Temperature Sensor" ;
- rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor,
- brick:Supply_Water_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Supply_Condenser_Water_Temperature_Sensor ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Supply_Condenser_Water_Temperature_Setpoint a owl:Class ;
- rdfs:label "Supply Condenser Water Temperature Setpoint" ;
- rdfs:subClassOf brick:Supply_Water_Temperature_Sensor ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Supply_Condenser_Water_Temperature_Setpoint ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Supply_Hot_Water a owl:Class ;
- rdfs:label "Supply Hot Water" ;
- rdfs:subClassOf brick:Hot_Water ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Supply_Hot_Water ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-brick:Supply_Water a owl:Class ;
- rdfs:label "Supply Water" ;
- rdfs:subClassOf brick:Water ;
- owl:deprecated true ;
- brick:deprecation [ brick:deprecatedInVersion "1.3.0" ;
- brick:deprecationMigitationRule [ a sh:NodeShape ;
- sh:rule [ a sh:SPARQLRule ;
- sh:construct "CONSTRUCT {$this rdf:type .} WHERE {$this rdf:type . }" ;
- sh:prefixes rdf:,
- brick: ] ;
- sh:targetClass brick:Supply_Water ] ;
- brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ] .
-
-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:hasQuantity a owl:AsymmetricProperty,
- owl:IrreflexiveProperty ;
- rdfs:label "Has QUDT reference" ;
- rdfs:subPropertyOf qudt:hasQuantityKind .
-
-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:hasSubstance a owl:AsymmetricProperty,
- owl:IrreflexiveProperty ;
- rdfs:label "Has QUDT reference" .
-
-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:// /