Skip to content

Commit

Permalink
Move fume hood under exhaust fan class (#641)
Browse files Browse the repository at this point in the history
* Move fume hood under exhaust fan

* Update fume hood definition
  • Loading branch information
connorjcantrell authored Aug 6, 2024
1 parent 1f60fb2 commit 6ce91f1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bricksrc/definitions.csv
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ https://brickschema.org/schema/Brick#Frequency_Setpoint,Sets frequency,
https://brickschema.org/schema/Brick#Frost,"frost formed on the cold surface (tubes, plates) of a cooling coil.",
https://brickschema.org/schema/Brick#Frost_Sensor,Senses the presence of frost or conditions that may cause frost,
https://brickschema.org/schema/Brick#Fuel_Oil,Petroleum based oil burned for energy,
https://brickschema.org/schema/Brick#Fume_Hood,"A fume-collection device mounted over a work space, table, or shelf and serving to conduct unwanted gases away from the area enclosed.",
https://brickschema.org/schema/Brick#Fume_Hood,"A fume hood is a type of local exhaust ventilation device designed to protect users from exposure to hazardous fumes, vapors, and dust. It is typically mounted over a workspace, table, or shelf to capture and conduct unwanted gases away from the enclosed area.",
https://brickschema.org/schema/Brick#Fume_Hood_Air_Flow_Sensor,Measures the rate of flow of air in a fume hood,
https://brickschema.org/schema/Brick#Furniture,"Movable objects intended to support various human activities such as seating, eating and sleeping",https://en.wikipedia.org/wiki/Furniture
https://brickschema.org/schema/Brick#Gain_Parameter,,
Expand Down
18 changes: 14 additions & 4 deletions bricksrc/equipment.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"Server": {
"tags": [TAG.Equipment, TAG.ICT, TAG.Hardware, TAG.Server]
},
},
},
},
"ICT_Rack": {
Expand All @@ -39,7 +39,13 @@
"tags": [TAG.Occupancy, TAG.Sensor, TAG.Equipment, TAG.ICT],
},
"People_Count_Sensor_Equipment": {
"tags": [TAG.People, TAG.Count, TAG.Sensor, TAG.Equipment, TAG.ICT],
"tags": [
TAG.People,
TAG.Count,
TAG.Sensor,
TAG.Equipment,
TAG.ICT,
],
},
"Thermostat_Equipment": {
"tags": [TAG.Thermostat, TAG.Equipment, TAG.ICT],
Expand Down Expand Up @@ -960,7 +966,6 @@
},
},
},
"Fume_Hood": {"tags": [TAG.Equipment, TAG.Fume, TAG.Hood]},
"Filter": {
"tags": [TAG.Equipment, TAG.Filter],
"subclasses": {
Expand All @@ -986,7 +991,12 @@
"Cooling_Tower_Fan": {
"tags": [TAG.Cool, TAG.Tower, TAG.Equipment, TAG.Fan],
},
"Exhaust_Fan": {"tags": [TAG.Equipment, TAG.Fan, TAG.Exhaust]},
"Exhaust_Fan": {
"tags": [TAG.Equipment, TAG.Fan, TAG.Exhaust],
"subclasses": {
"Fume_Hood": {"tags": [TAG.Equipment, TAG.Fume, TAG.Hood]},
},
},
"Return_Fan": {"tags": [TAG.Equipment, TAG.Fan, TAG.Return]},
"Booster_Fan": {"tags": [TAG.Equipment, TAG.Fan, TAG.Booster]},
"Standby_Fan": {"tags": [TAG.Equipment, TAG.Fan, TAG.Standby]},
Expand Down

0 comments on commit 6ce91f1

Please sign in to comment.