-
Notifications
You must be signed in to change notification settings - Fork 141
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
Heat recovery unit #1048
base: master
Are you sure you want to change the base?
Heat recovery unit #1048
Changes from all commits
a5a01dc
b9cc6c8
2937ae5
3635f54
00f98ab
8dc6b5a
5b4db0f
453458a
ef6c007
6bf80ef
1f5c9bd
7e2131c
61125d8
c390cd9
9e3f6f9
2ef1224
286148a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6675,6 +6675,32 @@ VMADC: | |
implements: | ||
- CONTROL | ||
|
||
SEFC: | ||
description: "Supply fan and exhaust fan control." | ||
is_abstract: true | ||
uses: | ||
- supply_fan_run_command | ||
- supply_fan_speed_percentage_command | ||
- exhaust_fan_run_command | ||
- exhaust_fan_speed_percentage_command | ||
- supply_air_flowrate_setpoint | ||
- exhaust_air_flowrate_setpoint | ||
opt_uses: | ||
- failed_supply_fan_alarm | ||
- failed_exhaust_fan_alarm | ||
- return_fan_speed_percentage_command | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How does the return fan work in this instance? Is it a booster back to the exhaust air stream? And why would this not be required if it were part of the coordinated control sequence that this type is trying to describe? |
||
implements: | ||
- CONTROL | ||
|
||
HRC: | ||
description: "Heat recovery run mode control" | ||
is_abstract: true | ||
uses: | ||
- heat_recovery_run_command | ||
- heat_recovery_run_mode | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we have the mode and the command? Doesnt the mode indicate what the command is doing? |
||
implements: | ||
- CONTROL | ||
|
||
OAQM: | ||
guid: "99e4f482-278e-40ee-9524-9f687c41ba22" | ||
description: "Outside air quality monitoring (particulates and gases)" | ||
|
@@ -6691,3 +6717,4 @@ OAQM: | |
- outside_air_co2_concentration_sensor | ||
implements: | ||
- MONITORING | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4013,6 +4013,24 @@ AHU_CHWSC_HWSC_ECON_EDBPC_RFSS2X_RFVSC2X_SFSS2X_SFVSC2X_SSPC: | |
- SFVSC2X | ||
- SSPC | ||
|
||
AHU_SS_RMM_HTSC_SFVSC_SFC_EFVSC_EFC_VOADM_ETM_FDPM2X_HRC: | ||
description: "Unit with temperature monitoring, differential pressure sensors and heat recovery control." | ||
is_canonical: true | ||
opt_uses: | ||
- fire_alarm | ||
implements: | ||
- AHU | ||
- SS | ||
- RMM | ||
- HTSC | ||
- SFVSC | ||
- SFC | ||
- EFVSC | ||
- EFC | ||
- VOADM | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is used when you have a device that mixes return with outside air, usually for economizing purposes. The rest of the context in this PR indicates that what you have is more of a single-pass DOAS system. Can you please confirm the configuration of this device and how it functions? ( |
||
- ETM | ||
- FDPM2X | ||
- HRC | ||
|
||
################################### | ||
### Existing Non-standard Types ### | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,3 +90,4 @@ SOFTSTART: "Mode of operation of rectifier where the input power supply is gradu | |
NORMAL: "Function, state or flow which is an ideal or expected condition." | ||
REVERSED: "Function, state or flow which is opposed to the expected or normal condition." | ||
|
||
INTERMITTENT: "" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dont see
supply_air_flowrate_sensor
orexhaust_air_flowrate_sensor
. Those fields need to be added if this device controls the fan speeds to maintain flowrates to a setpoint.Secondly, this type could be avoided if you instead apply the types
SFVSC
,EFVSC
,SFC
, andEFC
. Please consider using those abstract types in your canonical type definition.