Engineering Reference — EnergyPlus 8.4

<< Prev | Table of Contents | Next >>

Zone Air Mass Flow Conservation[LINK]

Overiew[LINK]

The zone air mass flow conservation object, ZoneAirMassFlowConservation, activates zone air mass flow balance calculations. This feature is available only for controlled zones (ZoneVAC:EquipmentConnections) which also have either a zone mixing or infiltration object. The user may specify that zone mixing, infiltration, or both can be overridden to balance the zone air mass flows. The following rules apply:

  • If there are no zone mixing flows to adjacent zones, then the zone air mass flow is balanced by setting the Zone Mixing objects mass flow rate to zero.
  • If there are no zone exhaust fans defined and there are no zone mixing objects specified, then a zone in an air loop is always balanced.
  • Infiltration mass flow is included in the zone air mass flow balance depending upon one of three options: none (all infiltration is assumed to be self-balanced), all zones, or only zones that serve as a source zone for zone mixing objects.
  • The base infiltration mass flow rate (calculated based on user inputs) may be controlled one of two ways for zone air mass flow balance purposes: adjust the base infiltration up or down as needed to balance the zone air mass flow, or assume the base infiltration rate is self-balanced and add infiltration if needed to balance the zone air mass flow.
  • Optional user inputs can override the default return air flow rate.

The zone air mass flow conservation equation always includes: supply air flow rates, return air flow rates, and zone exhaust fan flow rates. Zone mixing and infiltration object flow rates may be included depending upon the selected options. A particular zone can be a source zone, receiving zone, or both depending on the number of ZoneMixing objects specified for that zone.

Return Air Flow Rate Calculations[LINK]

The return air flow rate is calculated one of two ways.

The default calculation is:

˙mR=ReturnFlowScheduleMAX(0.0,˙mS+˙mXR˙mEX˙mXS)

If one or more Zone Return Air Flow Rate Basis Nodes are specified in the ZoneHVAC:EquipmentConnections object, then the base return flow rate is:

˙mR=ReturnFlowSchedulej˙mBasisNode,j

where,

˙mR = zone return air mass flow rate, (kg/s)

˙mBasisNode,j = zone return air flow basis node mass flow rate, (kg/s)

˙mEX = zone exhaust air mass flow rate from exhaust fans, (kg/s)

˙mXR = zone mixing mass flow rate as a receiving zone, (kg/s)

˙mXS = zone mixing mass flow rate as a source zone, (kg/s)

˙mS = zone supply air mass flow rate, (kg/s)

ReturnFlowSchedule = optional Zone Return Air Flow Rate Fraction Schedule value

Zone Mixing Flow Rate Calculations[LINK]

Figure 8 illustrates the zone mass flow components for an air loop system providing conditioned air to the two zones connected with a zone mixing object. Since Zone 1 is a source zone only, infiltration object is defined for zone 1 only. The zone mixing object air flow rate depends on the user specified values and the zone air mass flow balance requirements. When required the zone mixing object flow rate is adjusted from the user specified value for balancing purpose.

Figure 8. Illustration of zone air mass flow balance components

An individual zone may be a source zone for multiple receiving zones, and the same source zone may receive mixing flows from multiple adjacent zones in an air loop. The source and receiving mass flow rates of ZoneMixing objects are calculated from user defined mixing flow rates at the first HVAC iteration for each time step and adjusted in subsequent iterations to balance the zone air mass flow. The source zone mixing mass flow rate is calculated by tracking the mass flow rates of ZoneMixing objects connected to a zone and is given by:

˙mXS=j˙mXS,j

Determine the zone return air mass flow rate as shown above, then adjust the zone mixing mass flow rates based on the current zone return air mass flow rate:

˙mXR,new=˙mR+˙mEX+˙mXS˙mS

This updated receiving zone mixing air mass flow rate is distributed to the mixing objects connected to the current zone proportional to user specified design flow rate. A single zone may be connected to more than one adjacent zone using multiple ZoneMixing objects. Thus, the mixing flow rate of each contributing mixing objects defined in the current zone is updated as follows:

˙mXR,new,j=(˙mXR,jDesign/˙mXR,Design)˙mXR,new

Infiltration Flow Rate Adjustments[LINK]

There are three options for the treatement of infiltration in the zone air mass balance: None, AddInfiltrationFlow, and AdjustInfiltrationFlow. There are also two options to specify which zones are included in the infiltration adjustments: AllZones or MixingSourceZonesOnly.

If a zone is excluded from infiltration adjustments, then the base infiltration rate specified by the Infiltration:* object(s) in the zone is assumed to be self-balanced, and infiltration is not included in the mass flow calculations for that zone.

If a zone is included in the infiltration adjustment, the infiltration air mass flow rate required to balance the zone is determined as follows:

˙mInfrequired=MAX(0.0,˙mXS+˙mEX+˙mR˙mS)

This infiltration air mass flow rate calculated is either added to the base infiltration air flow, which is calculated from user inputs, or overrides the base infiltration air flow depending on user choice. For AddInfiltrationFlow, the zoneinfiltration flow rate is:

˙mInf=˙mInfbase+˙mInfrequired

For AdjustInfiltrationFlow, the zone infiltration flow rate is:

˙mInf=˙mInfrequired

where,

˙mInf = zone infiltration mass flow rate, (kg/s)

˙mInfbase = base zone infiltration mass flow rate calculated from Infiltration:* objects, (kg/s)

˙mInfrequired = required zone infiltration mass flow rate to balance the zone, (kg/s)

There is an additional constraint to the return air mass flow rate calculation. The sum of the return air mass flow rates of zones in air loop must satisfy the air loop return air mass flow balance. The above four sets of equations are iterated for each zone in an air loop until the convergence criterion is satisfied or until the maximum iteration limit is exceeded.

The mass conservation calculations are performed in routine CalcZoneMassBalance in the ZoneEquipmentManager module. The latest ZoneMixing and Infiltration object flow rates are communicated back to the zone air heat balance terms. This is done by re-simulating the simple flow objects as zone equipment during each HVAC iteration. This requires calling the routine CalcAirFlowSimple in SimZoneEquipment routine as zone equipment. Both of these routines are also in the ZoneEquipmentManager module.

Zone Mass Conservation Convergence

The zone mass conservation calculation convergence criterion is based on the absolute difference of the zone mixing objects mass flow rates between successive iteration. If the difference is above tolerance limits of 0.00001 then the HVAC Air loop is simulated again.