Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Air System Classes #278

Merged
merged 2 commits into from
Jun 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bricksrc/definitions.csv
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ https://brickschema.org/schema/Brick#Air_Handler_Unit,"Assembly consisting of se
https://brickschema.org/schema/Brick#Air_Quality,,
https://brickschema.org/schema/Brick#Air_Quality_Sensor,A sensor which provides a measure of air quality,
https://brickschema.org/schema/Brick#Air_Static_Pressure_Step_Parameter,,
https://brickschema.org/schema/Brick#Air_System,"The equipment, devices, and conduits that handle the introduction, exhaust, and/or distribution of air in or from the building",
https://brickschema.org/schema/Brick#Air_System,"The equipment, distribution systems and terminals that introduce or exhaust, either collectively or individually, the air into and from the building",
https://brickschema.org/schema/Brick#Air_Temperature_Alarm,An alarm that indicates the off-normal conditions associated with the temperature of air.,
https://brickschema.org/schema/Brick#Air_Temperature_Integral_Time_Parameter,,
https://brickschema.org/schema/Brick#Air_Temperature_Sensor,Measures the temperature of air,
Expand Down Expand Up @@ -409,6 +409,7 @@ https://brickschema.org/schema/Brick#Gatehouse,The standalone building used to m
https://brickschema.org/schema/Brick#Generator_Room,"A room for electrical equipment, specifically electrical generators.",
https://brickschema.org/schema/Brick#Grains,,
https://brickschema.org/schema/Brick#HVAC_Equipment,See Heating_Ventilation_Air_Conditioning_System,
https://brickschema.org/schema/Brick#HVAC_System,See Heating_Ventilation_Air_Conditioning_System,
https://brickschema.org/schema/Brick#HVAC_Zone,"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).",
https://brickschema.org/schema/Brick#HX,See Heat_Exchanger,
https://brickschema.org/schema/Brick#Hail,pellets of frozen rain which fall in showers from cumulonimbus clouds.,
Expand Down Expand Up @@ -953,6 +954,7 @@ https://brickschema.org/schema/Brick#Variable_Frequency_Drive,"Electronic device
https://brickschema.org/schema/Brick#Velocity_Pressure,"Dynamic Pressure (indicated with q, or Q, and sometimes called velocity pressure) is the quantity defined by: (q = 1/2 * ρ v^{2}), where (using SI units), (q) is dynamic pressure in (pascals), (ρ) is fluid density in (kg/m^{3}) (for example, density of air) and (v ) is fluid velocity in (m/s).",
https://brickschema.org/schema/Brick#Velocity_Pressure_Sensor,Measures the difference between total pressure and static pressure,
https://brickschema.org/schema/Brick#Velocity_Pressure_Setpoint,Sets static veloicty pressure,
https://brickschema.org/schema/Brick#Ventilation_Air_System,"The equipment, distribution systems and terminals that introduce or exhaust, either collectively or individually, the air used for the ventilation system of the building",
https://brickschema.org/schema/Brick#Vent_Operating_Mode_Status,Indicates the current operating mode of a vent,
https://brickschema.org/schema/Brick#Ventilation_Air_System,"The equipment, devices, and conduits that handle the introduction and distribution of ventilation air in the building",
https://brickschema.org/schema/Brick#Vertical_Space,A class of spaces used to connect multiple floors or levels..,
Expand Down
15 changes: 15 additions & 0 deletions bricksrc/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,21 @@
},
},
"Steam_System": {"tags": [TAG.Steam, TAG.System]},
"Air_System": {
"tags": [
TAG.Air,
TAG.System,
],
"subclasses": {
"Ventilation_Air_System": {
"tags": [
TAG.Ventilation,
TAG.Air,
TAG.System,
],
},
},
},
"Water_System": {
"tags": [TAG.Water, TAG.System],
"subclasses": {
Expand Down