This block outputs alarms of dual-duct terminal unit with cold-duct minimum control. The implementation is according to the Section 5.14.6 of ASHRAE Guideline 36, May 2020. Note that the sequence uses two airflow sensors, one at each inlet.
staTim
,
if the measured airflow (VColDucDis_flow
plus VHotDucDis_flow
) is less than 70% of setpoint
VActSet_flow
for 5 minutes (lowFloTim
) while the setpoint
is greater than zero, generate a Level 3 alarm.
staTim
,
if the measured airflow (VColDucDis_flow
plus VHotDucDis_flow
) is less than 50% of setpoint
VActSet_flow
for 5 minutes (lowFloTim
) while the setpoint
is greater than zero, generate a Level 2 alarm.
staPreMul
) of 0 for its
static pressure reset Trim-Respond control loop, low airflow alarms shall be
suppressed for that zone.
u1CooFan=false
) for 10 minutes
(fanOffTim
), and the cold-duct airflow sensor reading VColDucDis_flow
is above 10% of the cooling maximum airflow setpoint VCooMax_flow
,
generate a Level 3 alarm.
u1HeaFan=false
) for 10 minutes
(fanOffTim
), and the hot-duct airflow sensor reading VHotDucDis_flow
is above 10% of the heating maximum airflow setpoint VHeaMax_flow
,
generate a Level 3 alarm.
uCooDam
) is 0% and airflow sensor reading
VColDucDis_flow
is above 10% of the cooling maximum airflow setpoint
VCooMax_flow
for 10 minutes (leaFloTim
) while the
fan serving the zone is proven on (u1CooFan=true
), generate a Level
4 alarm.
uHeaDam
) is 0% and airflow sensor reading
VHotDucDis_flow
is above 10% of the heating maximum airflow setpoint
VHeaMax_flow
for 10 minutes (leaFloTim
) while the
fan serving the zone is proven on (u1HeaFan=true
), generate a Level
4 alarm.
Logical.And3
based on ASHRAE 231P,
replaced it with a stack of two Logical.And
blocks.
This is for
#2465.
staTim
to allow the system becoming stabilized.
This is for issue 3257.