blockSumZone
Output the sum, maximum and minimum from the zone level calculation
Information
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,
-
Design zone peak occupancy,
uDesZonPeaOcc, -
Population component of the breathing zone design outdoor airflow,
VDesPopBreZon_flow, -
Area component of the breathing zone design outdoor airflow,
VDesAreBreZon_flow, -
Design zone primary outdoor air fraction,
uDesPriOutAirFra, -
Uncorrected outdoor airflow rate,
VUncOutAir_flow, -
Primary outdoor air fraction,
uPriOutAirFra, -
Primary airflow rate,
VPriAir_flow,
and following input from AHU level calculation,
-
Average AHU level outdoor air flow fraction plus 1,
yAveOutAirFraPlu.
The sequence gives following outputs for AHU level calculation:
-
Sum of the design population of the zones,
ySumDesZonPop, -
Sum of the population component of the design breathing zone flow rate,
VSumDesPopBreZon_flow, -
Sum of the area component of the design breathing zone flow rate,
VSumDesAreBreZon_flow, -
Design system ventilation efficiency,
yDesSysVenEff,First, compute the zone ventilation efficiency
zonVenEff, for design purpose, aszonVenEff[i] = yAveOutAirFraPlu - uDesPriOutAirFra[i]where the
uDesPriOutAirFrais the design zone outdoor airflow fraction. Then the design system ventilation efficiencyyDesSysVenEffisyDesSysVenEff = min(zonVenEff[i]). -
Sum of the required uncorrected outdoor airflow rate,
VSumUncOutAir_flow, -
Maximum zone outdoor air fraction,
uOutAirFra_max, -
AHU level primary airflow rate,
VSumSysPriAir_flow.
Parameters
| Type | Name | Default | Description |
|---|---|---|---|
| Integer | numZon | Total number of zones that the system serves |
Connectors
| Type | Name | Default | Description |
|---|---|---|---|
| Buildings.Controls.OBC.CDL.Interfaces.RealInput[numZon] | uDesZonPeaOcc | Design zone peak occupancy | |
| Buildings.Controls.OBC.CDL.Interfaces.RealInput[numZon] | VDesPopBreZon_flow | Population component breathing zone design outdoor airflow | |
| Buildings.Controls.OBC.CDL.Interfaces.RealInput[numZon] | VDesAreBreZon_flow | Area component breathing zone design outdoor airflow | |
| Buildings.Controls.OBC.CDL.Interfaces.RealInput | yAveOutAirFraPlu | Average system outdoor air flow fraction plus 1 | |
| Buildings.Controls.OBC.CDL.Interfaces.RealInput[numZon] | uDesPriOutAirFra | Design zone primary outdoor air fraction | |
| Buildings.Controls.OBC.CDL.Interfaces.RealInput[numZon] | VUncOutAir_flow | Uncorrected outdoor airflow rate | |
| Buildings.Controls.OBC.CDL.Interfaces.RealInput[numZon] | uPriOutAirFra | Primary outdoor air fraction | |
| Buildings.Controls.OBC.CDL.Interfaces.RealInput[numZon] | VPriAir_flow | Primary airflow rate | |
| Buildings.Controls.OBC.CDL.Interfaces.RealOutput | ySumDesZonPop | Sum of the design population of the zones in the group | |
| Buildings.Controls.OBC.CDL.Interfaces.RealOutput | VSumDesPopBreZon_flow | Sum of the population component design breathing zone flow rate | |
| Buildings.Controls.OBC.CDL.Interfaces.RealOutput | VSumDesAreBreZon_flow | Sum of the area component design breathing zone flow rate | |
| Buildings.Controls.OBC.CDL.Interfaces.RealOutput | yDesSysVenEff | Design system ventilation efficiency, equals to the minimum of all zones ventilation efficiency | |
| Buildings.Controls.OBC.CDL.Interfaces.RealOutput | VSumUncOutAir_flow | Sum of the required uncorrected outdoor airflow rate | |
| Buildings.Controls.OBC.CDL.Interfaces.RealOutput | uOutAirFra_max | Maximum zone outdoor air fraction, equals to the maximum of primary outdoor air fraction of all zones | |
| Buildings.Controls.OBC.CDL.Interfaces.RealOutput | VSumSysPriAir_flow | AHU level primary airflow rate, equals to the sum of the measured discharged flow rate of all terminal units |
Revisions
-
March 13, 2020, by Jianjun Hu:
Separated from original sequence of finding the system minimum outdoor air setpoint.
This is for #1829.