This sequence sums up the zone level minimum outdoor airflow setpoints, finds the maximum zone outdoor air fraction and the minimum zone ventilation efficiency. It collects zone level outputs and prepares inputs for specifying AHU level minimum outdoor air setpoint.
It requires following inputs from zone level calculation,
uDesZonPeaOcc
,
VDesPopBreZon_flow
,
VDesAreBreZon_flow
,
uDesPriOutAirFra
,
VUncOutAir_flow
,
uPriOutAirFra
,
VPriAir_flow
,
and following input from AHU level calculation,
yAveOutAirFraPlu
.
The sequence gives following outputs for AHU level calculation:
ySumDesZonPop
,
VSumDesPopBreZon_flow
,
VSumDesAreBreZon_flow
,
yDesSysVenEff
,
First, compute the zone ventilation efficiency zonVenEff
, for design purpose, as
zonVenEff[i] = yAveOutAirFraPlu - uDesPriOutAirFra[i]
where the uDesPriOutAirFra
is the design zone outdoor airflow fraction.
Then the design system ventilation efficiency yDesSysVenEff
is
yDesSysVenEff = min(zonVenEff[i]).
VSumUncOutAir_flow
,
uOutAirFra_max
,
VSumSysPriAir_flow
.