Skip to content

Commit

Permalink
Merge branch 'add-fire-smoke-concepts' of https://github.com/mapped/B…
Browse files Browse the repository at this point in the history
…rick into add-fire-smoke-concepts
  • Loading branch information
connorjcantrell committed Jan 11, 2024
2 parents 800df93 + 69e4bb6 commit 6cf08b3
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions bricksrc/equipment.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,6 +814,50 @@
"Return_Damper": {"tags": [TAG.Equipment, TAG.Damper, TAG.Return]},
"Mixed_Damper": {"tags": [TAG.Equipment, TAG.Damper, TAG.Mixed]},
"Relief_Damper": {"tags": [TAG.Equipment, TAG.Damper, TAG.Relief]},
"Smoke_Damper": {
"tags": [TAG.Equipment, TAG.Damper, TAG.Smoke],
"parents": [BRICK.Fire_Safety_Equipment],
},
"Fire_Damper": {
"tags": [TAG.Equipment, TAG.Damper, TAG.Fire],
"parents": [BRICK.Fire_Safety_Equipment],
},
"Fire_Smoke_Damper": {
"tags": [
TAG.Equipment,
TAG.Damper,
TAG.Combination,
TAG.Fire,
TAG.Smoke,
],
"parents": [
BRICK.Fire_Damper,
BRICK.Smoke_Damper,
BRICK.Fire_Safety_Equipment,
],
"subclasses": {
"Corridor_Fire_Smoke_Damper": {
"tags": [
TAG.Equipment,
TAG.Damper,
TAG.Combination,
TAG.Fire,
TAG.Smoke,
TAG.Corridor,
]
},
},
},
"Ceiling_Damper": {
"tags": [
TAG.Equipment,
TAG.Damper,
TAG.Heat,
TAG.Barrier,
TAG.Ceiling,
],
"parents": [BRICK.Fire_Safety_Equipment],
},
"Zone_Damper": {"tags": [TAG.Equipment, TAG.Damper, TAG.Zone]},
"Smoke_Damper": {
"tags": [TAG.Equipment, TAG.Damper, TAG.Smoke],
Expand Down

0 comments on commit 6cf08b3

Please sign in to comment.