This sequence outputs AHU level uncorrected minimum outdoor airflow rate
VUncOutAir_flow
and effective minimum outdoor airflow rate
VEffOutAir_flow
when complying with ASHRAE Standard 62.1 ventilation requirements.
It is implemented according to Section 5.16.3.1 of ASHRAE
Guideline G36, May 2020.
It requires following inputs which are sum or maximum of the outputs from the zone level calculation. See Buildings.Controls.OBC.ASHRAE.G36.AHUs.MultiZone.VAV.SetPoints.OutdoorAirFlow.ASHRAE62_1.SumZone for these inputs.
VSumAdjPopBreZon_flow
.
VSumAdjAreBreZon_flow
.
VSumZonPri_flow
.
uOutAirFra_max
.
The calculation is done using the steps below.
VUncDesOutAir_flow
and VDesTotOutAir_flow
.
VUncOutAir_flow
is recalculated
continuously based on the adjusted population and area component breathing zone flow rate
of the zones being served determined in accordance with Section 5.2.1.3. See
Buildings.Controls.OBC.ASHRAE.G36.VentilationZones.ASHRAE62_1.Setpoints.
VUncOutAir_flow = min(VUncDesOutAir_flow, (VSumAdjPopBreZon_flow + VSumAdjAreBreZon_flow))
sysVenEff = 1 + (VUncOutAir_flow/VSumZonPri_flow) - uOutAirFra_max
VEffOutAir_flow
as
the uncorrected outdoor air intake divided by the system ventilation efficiency,
but no larger than the design total outdoor airflow rate VDesTotOutAir_flow
:
VEffOutAir_flow = min(VUncOutAir_flow/sysVenEff, VDesTotOutAir_flow)