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

Add zone damper #572

Closed
wants to merge 4 commits into from
Closed
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 @@ -89,6 +89,7 @@ https://brickschema.org/schema/Brick#Bypass_Air,"air in a bypass duct, used to r
https://brickschema.org/schema/Brick#Bypass_Air_Flow_Sensor,Measures the rate of flow of bypass air,
https://brickschema.org/schema/Brick#Bypass_Air_Humidity_Setpoint,Humidity setpoint for bypass air,
https://brickschema.org/schema/Brick#Bypass_Command,,
https://brickschema.org/schema/Brick#Bypass_Damper,A damper designed to divert excess static air pressure from the supply duct to the return duct to maintain system balance and prevent overpressurization.,
https://brickschema.org/schema/Brick#Bypass_Valve,A type of valve installed in a bypass pipeline,https://www.petropedia.com/definition/5050/bypass-valve
https://brickschema.org/schema/Brick#Bypass_Water,Water that circumvents a piece of equipment or system,
https://brickschema.org/schema/Brick#Bypass_Water_Flow_Sensor,Measures the rate of flow of bypass water,
Expand Down Expand Up @@ -1046,7 +1047,7 @@ https://brickschema.org/schema/Brick#Temperature_Setpoint,Sets temperature,
https://brickschema.org/schema/Brick#Temperature_Step_Parameter,,
https://brickschema.org/schema/Brick#Temperature_Tolerance_Parameter,A parameter determining the difference between upper and lower limits of temperature.,
https://brickschema.org/schema/Brick#Temporary_Occupancy_Status,"For systems that differentiate between scheduled occupied/unoccupied mode, this indicates if a space is temporarily occupied when it would otherwise be unoccupied",
https://brickschema.org/schema/Brick#Terminal_Unit,A device that regulates the volumetric flow rate and/or the temperature of the controlled medium.,
https://brickschema.org/schema/Brick#Terminal_Unit,A device that regulates the volumetric flow rate and/or the temperature of the controlled medium that has no downstream systems.,
https://brickschema.org/schema/Brick#Thermal_Energy,"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).",
https://brickschema.org/schema/Brick#Thermal_Energy_Storage_Tank,"A Thermal Energy Storage (TES) tank is a specialized container for storing thermal energy, enabling more efficient heating and cooling by balancing supply and demand. It helps reduce operational costs and minimizes the need for larger equipment.",
https://brickschema.org/schema/Brick#Thermal_Energy_Usage_Sensor,A sensor that records the quantity of thermal energy consumed in a given period,
Expand Down Expand Up @@ -1160,6 +1161,7 @@ https://brickschema.org/schema/Brick#Zone_Air_Humidity_Setpoint,Humidity setpoin
https://brickschema.org/schema/Brick#Zone_Air_Temperature_Sensor,A physical or virtual sensor which represents the temperature of an HVAC Zone,
https://brickschema.org/schema/Brick#Zone_Air_Temperature_Setpoint,Sets temperature of zone air,
https://brickschema.org/schema/Brick#Zone_CO2_Level_Sensor,A physical or virtual sensor which represents the CO2 level of an HVAC Zone,
https://brickschema.org/schema/Brick#Zone_Damper,A specialized type of damper that functions as a Terminal Unit within an HVAC system. It opens and closes in response to the specific temperature demands of its designated zone. By regulating airflow, the Zone Damper helps maintain and adjust the temperature of its associated zone and its target air temperature setpoint.,
https://brickschema.org/schema/Brick#Zone_Standby_Load_Shed_Command,,
https://brickschema.org/schema/Brick#Zone_Unoccupied_Load_Shed_Command,,
https://brickschema.org/schema/Brick#feeds,The subject is upstream of the object in the context of some sequential process; some media is passed between them,
Expand Down
5 changes: 5 additions & 0 deletions bricksrc/equipment.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,11 @@
"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]},
"Zone_Damper": {
"tags": [TAG.Equipment, TAG.Damper, TAG.Zone, TAG.Terminal, TAG.Unit],
"parents": [BRICK["Terminal_Unit"]]
},
"Bypass_Damper": {"tags": [TAG.Equipment, TAG.Damper, TAG.Bypass]},
},
},
"Condenser": {"tags": [TAG.Equipment, TAG.Condenser]},
Expand Down