This atomic sequence sets the minimum outdoor airflow setpoint for compliance with the ventilation rate procedure of ASHRAE 62.1-2013. The implementation is according to ASHRAE Guidline 36 (G36), PART 5.P.4.b, PART 5.B.2.b, PART3.1-D.2.a.
breZon
breZonAre = AFlo*VOutPerAre_flow
.
breZonPop = occCou*VOutPerPer_flow
.
The number of occupant occCou
could be retrieved
directly from occupancy sensor nOcc
if the sensor exists
(have_occSen=true
), or using the default occupant density
occDen
to find it AFlo*occDen
. The occupant
density can be found from Table 6.2.2.1 in ASHRAE Standard 62.1-2013.
zonDisEff
Table 6.2.2.2 in ASHRAE 62.1-2013 lists some typical values for setting the
effectiveness. Depending on difference between zone space temperature
TZon
and supply air temperature TDis
, Warm-air
effectiveness zonDisEffHea
or Cool-air effectiveness
zonDisEffCoo
should be applied.
zonOutAirRate
For each zone in any mode other than occupied mode and for zones that have
window switches and the window is open, zonOutAirRate
shall be
zero.
Otherwise, the required zone outdoor airflow zonOutAirRate
shall be calculated as follows:
zonOutAirRate = (breZonAre+breZonPop)/disEffCoo
.
zonOutAirRate = (breZonAre+breZonPop)/disEffHea
zonOutAirRate = breZonAre/disEffCoo
zonOutAirRate = breZonAre/disEffHea
For the single zone system, the required minimum outdoor airflow setpoint
VOutMinSet_flow
equals to the zonOutAirRate
.
nOcc
conditionally removable, as it is
for the multizone implementation.
This is for
issue 1270.
cooCtrlSig
input with TZon
and TDis
inputs to check if cool or warm air distribution effectiveness should be applied.
Applied hysteresis to avoid rapid change.