Component Sizing[LINK]
In EnergyPlus each HVAC component sizes itself. Each component module contains a sizing subroutine. When a component is called for the first time in a simulation, it reads in its user specified input data and then calls the sizing subroutine. This routine checks the autosizable input fields for missing data and calculates the data when needed.
A number of high-level variables are used in the sizing subroutines.
CurDuctType (in DataSizing) contains the information about the current duct type. The types can be main, cooling, heating or other.
CurZoneEqNum (in DataSizing) is the current zone equipment set index and indicates that the component is a piece of zone equipment and should size itself using the zone sizing data arrays.
CurSysNum (in DataSizing) is the current air loop index and indicates that the component is part of the primary air system and should size itself using the system sizing data arrays.
Fan sizing is done in subroutine SizeFan.
Max Flow Rate[LINK]
If the fan is part of the central air system then check the duct type.
For duct type = main, other or default
For duct type=cooling
For duct type=heating
If the fan is zone equipment then check whether it is part of a component that only does heating.
For heating only ;
Otherwise
If the max fan flow rate is less than SmallAirVolFlow the max flow rate is set to zero.
Coil:Cooling:Water[LINK]
The sizing is done in subroutine SizeWaterCoil of module WaterCoils
Design Water Flow Rate (m3/s)[LINK]
The design water volumetric flow rate is calculated using:
Tw,des is just the Loop Design Temperature Difference user input from Sizing:Plant (if the coil is in the outside air stream, ½ the Loop Design Temperature Difference is used). The design coil load Loadcoil,des is calculated from:
The design air mass flow rate depends on the location of the coil. If the coil is in the outside air stream the flow rate is set to airDesOutAirVolFlowsys (the design outside air volumetric flow for the system). If the coil is in a cooling duct the flow rate is set to airDesCoolVolFlowsys. If the coil is in a heating duct the flow rate is set to airDesHeatVolFlowsys. If the coil is in the main duct (or any other kind of duct) the flow rate is set to airDesMainVolFlowsys.
To obtain the inlet and outlet enthalpies, we need the inlet and outlet temperatures and humidity ratios. The inlet and outlet conditions depend on whether the coil is in the outside air stream and if it is not, whether or not there is outside air preconditioning.
Coil in outside air stream
Tair,in,des = CoolOutTempsys (the outside air temperature at the design cooling peak)
Tair,out,des = PrecoolTempsys (the specified Precool Design Temperature from the Sizing:System object).
Wair,in,des = CoolOutHumRatsys (the outside humidity ratio at the design cooling peak)
Wair,out,des = PrecoolHumRatsys (the specified Precool Design Humidity Ratio from the Sizing:System object)
Coil in main air stream, no preconditioning of outside air
Tair,in,des = CoolMixTempsys (the mixed air temperature at the design cooling peak)
Wair,in,des = CoolMixHumRatsys (the mixed air humidity ratio at the design cooling peak)
Tair,out,des = CoolSupTempsys (the specified Central Cooling Design Supply Air Temperature from the Sizing:System object)
Wair,out,des = CoolSupHumRatsys (the specified Central Cooling Design Supply Air Humidity Ratio from the Sizing:System object)
Coil in main air stream, outside air preconditioned. The outside air fraction is calculated as Fracoa **= DesOutAirVolFlowsys / DesVolFlow. DesVolFlow is just AirMassFlowRatecoil,des / air.
Tair,in,des=FracoaPrecoolTempsys + (1. Fracoa)CoolRetTempsys(see Table 39. System Sizing Data)
Wair,in,des=FracoaPrecoolHumRatsys + (1. Fracoa)CoolRetHumRatsys
Tair,out,des = CoolSupTempsys (the specified Central Cooling Design Supply Air Temperature from the Sizing:System object)
Wair,out,des = CoolSupHumRatsys (the specified Central Cooling Design Supply Air Humidity Ratio from the Sizing:System object)
With the inlet and outlet conditions established, we can obtain the inlet and outlet enthalpies:
hair,coil,des,in = PsyHFnTdbW(Tair,in,des, Wair,in,des)
hair,coil,des,out~~= PsyHFnTdbW(Tair,out,des, Wair,out,des)
where PsyHFnTdbW is the EnergyPlus function for calculating air specific enthalpy given the air temperature and humidity ratio. We now have all we need to calculate Loadcoil,des and WaterVolFlowRatecoil,des.
If the coil is part of an AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction unit, the water flow rate is set equal to the terminal unit’s chilled water flow rate. Otherwise (e.g., the zone-level coil is part of ZoneHVAC:FourPipeFanCoil, ZoneHVAC:UnitVentilator or ZoneHVAC:VentilatedSlab) the calculation is similar to that at the system level. A design load is calculated:
Where:
AirMassFlowRatecoil,des~~= DesCoolMassFlowzone (see Table 38. Zone Sizing Data)
hair,coil,des,in = PsyHFnTdbW(Tair,in,des, Wair,in,des)
hair,coil,des,out= PsyHFnTdbW(Tair,out,des, Wair,out,des)
Tair,in,des = DesCoolCoilInTempzone (see Table 38)
Wair,in,des = DesCoolCoilInHumRatzone (see Table 38)
Tair,out,des = CoolDesTempzone (user input from Zone:Sizing object)
Wair,out,des = CoolDesHumRatzone (user input from Zone:Sizing object)
where Tw,des is the Loop Design Temperature Difference user input from the Sizing:Plant object.
Design Air Flow Rate[LINK]
The design air volumetric flow rate depends on the location of the coil. If the coil is in the outside air stream the flow rate is set to DesOutAirVolFlowsys. If the coil is in a cooling duct the flow rate is set to DesCoolVolFlowsys. If the coil is in a heating duct the flow rate is set to DesHeatVolFlowsys. If the coil is in the main duct (or any other kind of duct) the flow rate is set to DesMainVolFlowsys.
If the coil is part of an AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction unit, the design air volumetric flow rate is set equal to the flow rate of the terminal unit. For all other zone coils it is set equal to:
Max(DesCoolMassFlowzone,DesHeatMassFlowzone) air
Design Inlet Air Temperature[LINK]
The inlet air temperature depends on whether the coil is in the outside air stream and if it is not, whether or not there is outside air preconditioning.
Coil in outside air stream: Tair,in = CoolOutTempsys (the outside air temperature at the design cooling peak).
Coil in main air stream, no preconditioning of outside air: Tair,in = CoolMixTempsys (the mixed air temperature at the design cooling peak).
Coil in main air stream, outside air preconditioned. The outside air fraction is calculated as Fracoa **= DesOutAirVolFlowsys / DesVolFlow. DesVolFlow is just AirMassFlowRatecoil,des / air. Then
Tair,in=FracoaPrecoolTempsys + (1. Fracoa)CoolRetTempsys
If the coil is part of an AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction unit, the Design Inlet Air Temperature is set equal to ZoneTempAtCoolPeakzone (see Table 38. Zone Sizing Data). For all other zone coils, it is set equal to DesCoolCoilInTempzone (see Table 38).
Design Outlet Air Temperature[LINK]
The outlet air temperature depends on whether the coil is in the outside air stream.
Coil in outside air stream: Tair,out,des = PrecoolTempsys (the specified Precool Design Temperature from the Sizing:System object).
Coil in main air stream: Tair,out,des = CoolSupTempsys (the specified Central Cooling Design Supply Air Temperature from the Sizing:System object)
If the coil is part of an AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction unit, then:
where CoolVolFlowcoil,air,des is the user input or previously autosized coil Design Air Flow Rate. For all other zone coils the Design Outlet Air Temperature is set to CoolDesTempzone (see Table 38. Zone Sizing Data).
Design Inlet Air Humidity Ratio[LINK]
The inlet air humidity ratio depends on whether the coil is in the outside air stream and if it is not, whether or not there is outside air preconditioning.
Coil in outside air stream: Wair,in,des = CoolOutHumRatsys (the outside humidity ratio at the design cooling peak).
Coil in main air stream, no preconditioning of outside air: Wair,in,des = CoolMixHumRatsys (the mixed air humidity ratio at the design cooling peak).
Coil in main air stream, outside air preconditioned. The outside air fraction is calculated as Fracoa **= DesOutAirVolFlowsys / DesVolFlow. DesVolFlow is just AirMassFlowRatecoil,des / air. Then
Wair,in,des=FracoaPrecoolHumRatsys + (1. Fracoa)CoolRetHumRatsys
If the coil is part of an AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction unit, the Design Inlet Air Humidity Ratio is set equal to ZoneHumRatAtCoolPeakzone (see Table 38. Zone Sizing Data). For all other zone coils, it is set equal to DesCoolCoilInHumRatzone (see Table 38).
Design Outlet Air Humidity Ratio[LINK]
The outlet air humidity ratio depends on whether the coil is in the outside air stream.
Coil in outside air stream: Wair,out,des = PrecoolHumRatsys (the specified Precool Design Humidity Ratio from the Sizing:System object)
Coil in main air stream: Wair,out,des = CoolSupHumRatsys (the specified Central Cooling Design Supply Air Humidity Ratio from the Sizing:System object)
The Design Outlet Air Humidity Ratio is set equal to CoolDesHumRatzone (user input from Zone:Sizing).
Design Inlet Water Temperature[LINK]
The Design Inlet Water Temperature is set to the Design Loop Exit Temperature specified in the Sizing:Plant object for the water loop serving this coil.
The Design Inlet Water Temperature is set to the Design Loop Exit Temperature specified in the Sizing:Plant object for the water loop serving this coil.
Coil:Cooling:Water:DetailedGeometry Sizing[LINK]
The sizing is done in subroutine SizeWaterCoil
Max Water Flow Rate of Coil[LINK]
The calculation is identical to that done for Coil:Cooling:Water.
Number of Tubes per Row[LINK]
Ntube/row=Max(Ntube/row,3)
Depending on the duct type, get the coil design air flow rate.
For duct type = main, other or default
for duct type=cooling
for duct type=heating
Minimum Air Flow Area[LINK]
Depending on the duct type, get the coil design air flow rate.
For duct type = main, other or default
for duct type=cooling
for duct type=heating
Fin Surface Area[LINK]
Depending on the duct type, get the coil design air flow rate.
For duct type = main, other or default
for duct type=cooling
for duct type=heating
Total Tube Inside Area[LINK]
A~tube,total inside=4.4Dtube,insideNtube rowsNtubes/row~
Where Dtube,inside is the tube inside diameter.
Tube Outside Surf Area[LINK]
Atube,outside=4.1Dtube,outsideN~tube rowsNtubes/row~
Where Dtube,outside is the tube outside diameter.
Depthcoil=Depth~tube spacing~ N~tube rows~
Coil:Cooling:WaterToAirHeatPump:EquationFit Sizing[LINK]
The sizing is done in subroutine SizeHVACWaterToAir
Rated Air Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:Water.
Rated Water Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:Water, which is the coil design load divided by the Loop Design Temperature Difference user input from Sizing:Plant. If there is a companion heating coil, the heating coil design load is used so that both modes will have the same rated water flow rate. For sizing the plant loop serving this coil, only one half of this flow rate is used since both the cooling and heating coil will save a flow rate but only one of these coils will operate at a time.
Rated Total Cooling Capacity[LINK]
The calculation for coil operating temperatures (inlet and outlet) are identical to that done for Coil:Cooling:Water. The following calculations are then performed to determine the rated total cooling capacity.
where:
ratio of load-side inlet air wet-bulb temperature in Kelvin to a reference temperature
ratio of source-side inlet water temperature in Kelvin to a reference temperature
TCC1 = user input for Total Cooling Capacity Coefficient 1
TCC2 = user input for Total Cooling Capacity Coefficient 2
TCC3 = user input for Total Cooling Capacity Coefficient 3
TCC4 = user input for Total Cooling Capacity Coefficient 4
TCC5 = user input for Total Cooling Capacity Coefficient 5
The 4th and 5th coefficient (TCC4 and TCC5) used in the above equation are multipliers for the load-side and source-side flow ratios, respectively. For sizing, these ratios are assumed to be 1.
The enthalpy of the entering air is then compared with the enthalpy of the exiting air. The calculations for air enthalpy are identical to that done for Coil:Cooling:Water. If the entering air enthalpy is less than the exiting air enthalpy, a reference value of 48,000 J/kg is used as the entering air enthalpy. If the TotCapTempModFac calculation above yields 0 as the result, a value of 1 is used in the following calculation. If the design air mass flow rate is determined to be less than a very small flow value (0.001 kg/s) or the capacity calculated here is less than 0, the coil total cooling capacity is set equal to 0.
Rated Sensible Cooling Capacity[LINK]
The calculation for coil operating temperatures (inlet and outlet) are identical to that done for Coil:Cooling:Water. The following calculations are then performed to determine the rated sensible cooling capacity.
where:
ratio of load-side inlet air dry-bulb temperature in Kelvin to a reference temperature
SCC1 = user input for Sensible Cooling Capacity Coefficient 1
SCC2 = user input for Sensible Cooling Capacity Coefficient 2
SCC3 = user input for Sensible Cooling Capacity Coefficient 3
SCC4 = user input for Sensible Cooling Capacity Coefficient 4
SCC5 = user input for Sensible Cooling Capacity Coefficient 5
SCC6 = user input for Sensible Cooling Capacity Coefficient 6
The 5th and 6th coefficient (SCC5 and SCC6) used in the above equation are multipliers for the load-side and source-side flow ratios, respectively. For sizing, these ratios are assumed to be 1.
The dry-bulb temperature of the entering air is then compared with the dry-bulb temperature of the exiting air. The calculations for air dry-bulb temperature are identical to that done for Coil:Cooling:Water. If the entering air dry-bulb temperature is less than the exiting air dry-bulb temperature, a reference value of 24 C is used as the entering air dry-bulb temperature. If the SensCapTempModFac calculation above yields 0 as the result, a value of 1 is used in the following calculation. If the design air mass flow rate is determined to be less than a very small flow value (0.001 kg/s) or the capacity calculated here is less than 0, the coil sensible cooling capacity is set equal to 0.
Coil:Cooling:WaterToAirHeatPump:VariableSpeedEquationFit Sizing[LINK]
For the cooling coil of VS WSHP, we specify a nominal speed level. During the sizing calculation, the Rated Air Volume Flow Rate, the Rated Water Volume Flow Rate and the Rated Total Cooling Capacity at the Selected Nominal Speed Level are determined in the same way as the Coil:Cooling:WaterToAirHeatPump:EquationFit object. The sensible heat transfer rate is not allowed for auto-sizing, instead, it is a function of the rated air and water flow rates, rated total cooling capacity and the Reference Unit SHR at the nominal speed level. The default nominal speed level is the highest speed. However, the model allows the user to select a nominal speed level rather than the highest.
Rated Air Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:WaterToAirHeatPump:EquationFit.
Rated Water Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:WaterToAirHeatPump:EquationFit , which is the coil design load divided by the Loop Design Temperature Difference user input from Sizing:Plant. If there is a companion heating coil, the heating coil design load is used so that both modes will have the same rated water flow rate. For sizing the plant loop serving this coil, only one half of this flow rate is used since both the cooling and heating coil will save a flow rate but only one of these coils will operate at a time.
Rated Total Cooling Capacity[LINK]
The calculation for coil operating temperatures (inlet and outlet) are identical to that done for Coil:Cooling:WaterToAirHeatPump:EquationFit. The calculations for air enthalpy are similar to that done for Coil:Cooling:WaterToAirHeatPump:EquationFit. The difference is in calculating the total cooling capacity temperature modifier function at the selected nominal speed level, as below:
where
WBi = wet-bulb temperature of the air entering the heating coil, °C
EWT = entering water temperature, °C
a-f = regression curve-fit coefficients.
If the entering air enthalpy is less than the exiting air enthalpy, a reference value of 48,000 J/kg is used as the entering air enthalpy. If the TotCapTempModFac calculation above yields 0 as the result, a value of 1 is used in the following calculation. If the rated air mass flow rate is determined to be less than a very small flow value (0.001 kg/s) or the capacity calculated here is less than 0, the coil total cooling capacity is set equal to 0.
If Hin > Hout Then
Else
End If
Coil:Heating:WaterToAirHeatPump:EquationFit Sizing[LINK]
The sizing is done in subroutine SizeHVACWaterToAir.
Rated Air Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:Water.
Rated Water Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:Water , which is the coil design load divided by the Loop Design Temperature Difference user input from Sizing:Plant. For sizing the plant loop serving this coil, only one half of this flow rate is used since both the cooling and heating coil will save a flow rate but only one of these coils will operate at a time.
Rated Total Heating Capacity[LINK]
The rated total heating capacity is set equal to the rated total cooling capacity.
Coil:Heating:WaterToAirHeatPump:VariableSpeedEquationFit Sizing[LINK]
For the heating coil of VS WSHP, we specify a nominal speed level. During the sizing calculation, the Rated Air Volume Flow Rate and the Rated Water Volume Flow Rate are determined in the same way as the Coil:Heating:WaterToAirHeatPump:EquationFit object. On the other hand, the Rated Heating Capacity at the Selected Nominal Speed Level should be the same as the total cooling capacity of its corresponding cooling coil, which has to be sized first. The default nominal speed level will be the highest speed. However, the model allows the user to select a nominal speed level rather than the highest.
Rated Air Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:WaterToAirHeatPump:EquationFit.
Rated Water Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:WaterToAirHeatPump:EquationFit, which is the coil design load divided by the Loop Design Temperature Difference user input from Sizing:Plant. For sizing the plant loop serving this coil, only one half of this flow rate is used since both the cooling and heating coil will save a flow rate but only one of these coils will operate at a time.
Rated Total Heating Capacity[LINK]
The rated total heating capacity is set equal to the rated total cooling capacity.
Coil:Heating:Water Sizing[LINK]
The sizing is done in subroutine SizeWaterCoil.
Max Water Flow Rate of Coil[LINK]
With the coil load from the system design data array and the user specified (in a Sizing:Plant object) design hot water temperature fall, calculate the max water flow rate:
Using the zone design coil inlet and supply air conditions calculate the design coil load.
If the coil is not part of an induction unit then obtain the coil inlet temperature from the zone design data array;
Tin,air= DesHeatCoilInTempzone
If the coil is part of an induction unit take into account the induced air:
Fracminflow=MinFlowFraczone
Tin,air= DesHeatCoilInTempzone Fracminflow +
ZoneTempAtHeatPeakzone(1 Fracminflow)
Tout,air=HeatDesTempzone
Wout,air= HeatDesHumRatzone
If the coil is part of a terminal unit the mass flow rate is determined by the volumetric flow rate of the terminal unit:
Otherwise the design flow is obtained from the zone design data array:
Here cp,air is calculated at the outlet humidity and the average of the inlet and outlet temperatures.
With the coil load and the user specified (in a Sizing:Plant object) design hot water temperature decrease, calculate the max water flow rate:
UA of the Coil[LINK]
To obtain the UA of the coil, we specify the model inputs (other than the UA) at design conditions and the design coil load that the coil must meet. Then we numerically invert the coil model to solve for the UA that will enable the coil to meet the design coil load given the specified inputs.
The design coil load is the system design sensible cooling capacity;
Qcoil,des= HeatCapsys
The required inputs for the simple coil model are:
Tin,air= HeatMixTempsys
Win,air= HeatMixHumRatsys
Tin,water= ExitTempplt,hw,des
Depending on the duct type, get the coil design air flow rate.
For duct type = main, other or default
for duct type=cooling
for duct type=heating
We now have all the data needed to obtain UA. The numerical inversion is carried out by calling subroutine SolveRegulaFalsi. This is a general utility routine for finding the zero of a function. In this case it finds the UA that will zero the residual function – the difference between the design coil load and the coil output divided by the design coil load. The residual is calculated in the function SimpleHeatingCoilUAResidual.
If the coil is not part of an induction unit then obtain the coil inlet temperature from the zone design data array;
Tin,air= DesHeatCoilInTempzone
If the coil is part of an induction unit take into account the induced air:
Fracminflow=MinFlowFraczone
Tin,air= DesHeatCoilInTempzone Fracminflow +
ZoneTempAtHeatPeakzone(1 Fracminflow)
Win,air= DesHeatCoilInHumRatzone
Tin,water= ExitTempplt,hw,des
Tout,air=HeatDesTempzone
Wout,air= HeatDesHumRatzone
If the coil is part of a terminal unit the mass flow rate is determined by the volumetric flow rate of the terminal unit:
Otherwise the design flow is obtained from the zone design data array:
Here cp,air is calculated at the outlet humidity and the average of the inlet and outlet temperatures.
We now have all the data needed to obtain UA. The numerical inversion is carried out by calling subroutine SolveRegulaFalsi. This is a general utility routine for finding the zero of a function. In this case it finds the UA that will zero the residual function – the difference between the design coil load and the coil output divided by the design coil load. The residual is calculated in the function SimpleHeatingCoilUAResidual.
Coil:Heating:Steam Sizing[LINK]
The sizing is done in subroutine SizeSteamCoil.
Maximum Steam Flow Rate[LINK]
The maximum steam volumetric flow rate is calculated using:
The steam density ( ) is for saturated steam at 100°C (101325.0 Pa) and hfg is the latent heat of vaporization of water at 100°C (101325.0 Pa). Cp,w is the heat capacity of saturated water (condensate) at 100°C (101325.0 Pa) and is the Degree of Subcooling defined in the Coil:Heating:Steam object input. The design coil load Loadcoil,des is calculated from:
The design air mass flow rate depends on the location of the coil (duct type). For duct type = main, the flow rate is set to airDesMainVolFlowsysMinSysAirFlowRatio. If the coil is in a cooling duct the flow rate is set to airDesCoolVolFlowsysMinSysAirFlowRatio. If the coil is in a heating duct the flow rate is set to airDesHeatVolFlowsys. If the coil is in any other kind of duct, the flow rate is set to airDesMainVolFlowsys.
For sizing, the design outlet air temperature (Tair,coil,des,out) is the Central Heating Design Supply Air Temperature specified in the Sizing:System object.
The design inlet air temperature depends on whether the coil is being sized for 100% outdoor air or minimum outdoor air flow (per 100% Outdoor Air in Heating input field in the Sizing:System object).
- Sizing based on 100% Outdoor Air in Heating
Tair,coil,des,in = HeatOutTempsys (the outdoor air temperature at the design heating peak)
- Sizing based on minimum outdoor air flow. The outdoor air fraction is calculated as Fracoa **= DesOutAirVolFlowsys / DesVolFlow. DesVolFlow is .
Tair,coil,des,in =Fracoa HeatOutTempsys + (1. Fracoa)HeatRetTempsys(see Table 39. System Sizing Data)
If the coil is part of an AirTerminal:SingleDuct:* unit (e.g., AirTerminal:SingleDuct:ConstantVolume:Reheat, AirTerminal:SingleDuct:VAV:Reheat, AirTerminal:SingleDuct:SeriesPIU:Reheat, etc.), the maximum steam flow rate is set equal to the terminal unit’s maximum steam flow rate. Otherwise (e.g., the zone-level coil is part of ZoneHVAC:PackagedTerminalAirConditioner, ZoneHVAC:UnitVentilator, ZoneHVAC:UnitHeater or ZoneHVAC:VentilatedSlab) the calculation is similar to that at the system level. A design load is calculated:
where:
= DesHeatMassFlowzone (see Table 38. Zone Sizing Data)
Tair,coil,des,in = DesHeatCoilInTempzone (see Table 38)
Tair,coil,des,out = HeatDesTempzone (user input from Sizing:Zone object)
= Specific heat of air (evaluated at the average of inlet and outlet air temperatures, and at the zone heating design supply air humidity ratio HeatDesHumRatzone [user input from Sizing:Zone object])
The terms in the denominator of this equation (ρsteam, hfg, etc.) are evaluated in the same way as described above for steam System Coils.
Sizing of Gas and Electric Heating Coils[LINK]
The sizing calculation is done in subroutine SizeHeatingCoil in module HeatingCoils.
Nominal Capacity of the Coil[LINK]
The value is obtained from the system design array.
Capnom= HeatCapsys
The capacity is calculated from the design coil inlet and outlet conditions.
If the coil is not part of an induction unit then obtain the coil inlet temperature from the zone design data array;
Tin,air= DesHeatCoilInTempzone
If the coil is part of an induction unit take into account the induced air:
Fracminflow=MinFlowFraczone
Tin,air= DesHeatCoilInTempzone Fracminflow +
ZoneTempAtHeatPeakzone(1 Fracminflow)
Tout,air=HeatDesTempzone
Wout,air= HeatDesHumRatzone
Qcoil,des=Cp,air DesHeatMassFlowzone(Tout,airTin,air)
Here cp,air is calculated at the outlet humidity and the average of the inlet and outlet temperatures.
DX Coil Sizing[LINK]
The sizing calculations are done in subroutine SizeDXCoil in module DXCoils. This section covers the sizing of the objects
Coil:Cooling:DX:SingleSpeed
Coil:Heating:DX:SingleSpeed
Coil:Cooling:DX:TwoSpeed
Rated Air Volume Flow Rate[LINK]
The rated air flow rate is obtained from the system design array.
The rated air flow rate is the maximum of the heating and cooling design flow rates from the zone design array.
Rated Total Cooling Capacity[LINK]
The rated cooling capacity is obtained by dividing the peak cooling capacity by the Cooling Capacity Modifier Curve evaluated at peak mixed wetbulb and outdoor drybulb temperatures.
Tmix= CoolMixTempsys
Wmix=CoolMixHumRatsys
Tsup=CoolSupTempsys
Wsup=CoolSupHumRatsys
Toutside=CoolOutTempsys
air=PsyRhoAirFnPbTdbW(pair,std, Tmix,Wmix)
hmix= PsyHFnTdbW(Tmix,Wmix)
hsup= PsyHFnTdbW(Tsup,Wsup)
Tmix,wb= PsyTwbFnTdbWPb(Tmix,Wmix, pair,std)
CapModFac=CurveValue(CCapFTemp,Tmix,wb,Toutside)
CCaprated=CCappeak CapModFac
We check that the design volume flow per total capacity is within the prescribed range:
If FlowCapRatio < FlowCapRatiomin then
If FlowCapRatio > FlowCapRatiomax then
where
FlowCapRatiomin = 0.00004027 m3/s per watt (300 cfm/ton)
And
FlowCapRatiomax= 0.00006041 m3/s per watt (450 cfm/ton)
The sizing calculation for DX cooling coils for 100% dedicated outdor air system (DOAS) are identical to regular DX cooling coils. However, they operate operate at different flow to capacity ratio ranges and are within the prescribed range below:
FlowCapRatiomin = 0.00001677 m3/s per Watt (125 cfm/ton)
And
FlowCapRatiomax= 0.00003355 m3/s per Watt (250 cfm/ton)
The rated cooling capacity for zone coils is calculated in the same manner as for system coils.
Tmix= DesCoolCoilInTempzone
Wmix= DesCoolCoilInHumRatzone
Tsup= CoolDesTempzone
Wsup= CoolDesHumRatzone
Toutside=Toutside,desday,peak
air=PsyRhoAirFnPbTdbW(pair,std, Tmix,Wmix)
hmix= PsyHFnTdbW(Tmix,Wmix)
hsup= PsyHFnTdbW(Tsup,Wsup)
Tmix,wb= PsyTwbFnTdbWPb(Tmix,Wmix, pair,std)
CapModFac=CurveValue(CCapFTemp,Tmix,wb,Toutside)
CCaprated=CCappeak CapModFac
We check that the design volume flow per total capacity is within the prescribed range:
If FlowCapRatio < FlowCapRatiomin then
If FlowCapRatio > FlowCapRatiomax then
where
FlowCapRatiomin = 0.00004027 m3/s per watt (300 cfm/ton)
And
FlowCapRatiomax= 0.00006041 m3/s per watt (450 cfm/ton)
We check the design flow to the total cooling capacity rato for dedicated zone outdoor unit DX cooling coils to be within the limits prescribed below:
FlowCapRatiomin = 0.00001677 m3/s per Watt (125 cfm/ton)
And
FlowCapRatiomax= 0.00003355 m3/s per Watt (250 cfm/ton)
Rated Total Heating Capacity[LINK]
For Coil:Heating:DX:SingleSpeed the rated heating capacity is set equal to the cooling capacity.
The rated sensible heat ratio is calculated to be the sensible cooling (from rated inlet conditions to user specified supply conditions) divided by the total cooling (from rated inlet to specified supply).
Tin,rated= 26.6667 oC (80 oF)
Win,rated= 0.01125 (corresponds to 80 oF drybulb, 67 oF wetbulb)
Cp,air= PsyCpAirFnWTdb(Win,rated, Tin,rated)
For system coils
Tsup=CoolSupTempsys
Wsup=CoolSupHumRatsys
For zone coils
Tsup= CoolDesTempzone
Wsup= CoolDesHumRatzone
Then
hrated= PsyHFnTdbW(Tin,rated, Win,rated)
hsup= PsyHFnTdbW(Tsup, Wsup)
hrated,sup=hratedhsup
Qsrated,sup=Cp,air(Tin,ratedTsup)
SHRrated=Qsrated,suphrated,sup
Evaporative Condenser Air Volume Flow Rate[LINK]
The evaporative condenser air volume flow rate (m3/s) is set to 0.000114 m3/s per watt (850 cfm/ton) times the total rated cooling capacity.
Evaporative Condenser Air Volume Flow Rate, Low Speed[LINK]
The evaporative condenser air volume flow rate, low speed (m3/s) is set to 1/3 times 0.000114 m3/s per watt (850 cfm/ton) times the total rated cooling capacity.
Evaporative Condenser Pump Rated Power Consumption[LINK]
The evaporative condenser pump rated power consumption is set equal to the total cooling capacity times 0.004266 watts pump power per watt capacity (15 W/ton).
Evaporative Condenser Pump Rated Power Consumption, Low Speed[LINK]
The evaporative condenser pump rated power consumption, low speed, is set equal to 1/3 times the total cooling capacity times 0.004266 watts pump power per watt capacity (15 W/ton).
Rated Air Volume Flow Rate, low speed[LINK]
The rated air volume flow rate, low speed, is set equal to 1/3 times the full rated air volume flow rate.
Rated Total Cooling Capacity, Low Speed[LINK]
The rated total cooling capacity, low speed, is set equal to 1/3 times the full rated total cooling capacity.
Rated SHR, low speed[LINK]
The rated sensible heat ratio, low speed, is set equal to the full speed SHR.
Resistive Defrost Heater Capacity[LINK]
For the heat pump the resistive defrost heat capacity is set equal to the cooling capacity.
DX MultiSpeed Coil Sizing[LINK]
The sizing calculations are done in subroutine SizeDXCoil in module DXCoils. This section covers the sizing of the objects
The rated air volume flow rate, rated total cooling capacity, rated heating capacity, rated SHR, evaporative condenser air volume flow rate, evaporative condenser pump rated power consumption at the highest speed are sized in the same ways as DX Coil Sizing.
After the sizes are determined at the highest speed, the sizes in the rest of speeds are assumed to
where
Valuen= Any autosizable variable at Speed n, except SHR
SHRn = SHRNumberOfSpeed
n= Speed Index number from 1 to NumberOfSpeed-1
NumberOfSpeed= The highest speed number
Coil:Cooling:DX:VariableSpeed Sizing[LINK]
For the variable-speed DX cooling coil, we specify a nominal speed level. During the sizing calculation, the Rated Total Cooling Capacity at the Selected Nominal Speed Level is determined in the same way as the Coil:Cooling:DX:SingleSpeed object. If the user chooses to autosize the Rated Air Volume Flow Rate, the flow rate, as compared to the Rated Total Cooling Capacity, is sized to have the same ratio as the air volume flow rate to the total cooling capacity at the nominal speed, of the Reference Unit. The sensible heat transfer rate is not allowed for auto-sizing, instead, it is a function of the rated air flow, rated total cooling capacity and the Reference Unit SHR at the nominal speed level. The default nominal speed level is the highest speed. However, the model allows the user to select a nominal speed level rather than the highest.
Rated Total Cooling Capacity
The calculation for coil operating temperatures (inlet and outlet) are identical to that done for Coil:Cooling:DX:SingleSpeed. The calculations for air enthalpy are similar to that done for Coil:Cooling:DX:SingleSpeed. The difference is in calculating the total cooling capacity temperature modifier function at the selected nominal speed level, as below:
where
WBi = wet-bulb temperature of the air entering the cooling coil, °C
DBo = condenser entering air temperature, °C
a-f = regression curve-fit coefficients.
If the entering air enthalpy is less than the exiting air enthalpy, a reference value of 48,000 J/kg is used as the entering air enthalpy. If the TotCapTempModFac calculation above yields 0 as the result, a value of 1 is used in the following calculation. If the rated air mass flow rate is determined to be less than a very small flow value (0.001 kg/s) or the capacity calculated here is less than 0, the coil total cooling capacity is set equal to 0.
If Hin > Hout Then
Else
End If
The other sizing procedures, e.g. evaporative condenser pump, etc., are the same as Coil:Cooling:DX:SingleSpeed.
Coil:Heating:DX:VariableSpeed Sizing[LINK]
For the variable-speed DX heating coil, we specify a nominal speed level. During the sizing calculation, the Rated Heating Capacity at the Selected Nominal Speed Level should be the same as the total cooling capacity of its corresponding cooling coil, which has to be sized first. The default nominal speed level will be the highest speed. However, the model allows the user to select a nominal speed level rather than the highest. If the user chooses to autosize the Rated Air Volume Flow Rate, the flow rate, as compared to the Rated Heating Capacity, is sized to have the same ratio as the air volume flow rate to the heating capacity at the nominal speed, of the Reference Unit. The other sizing procedures are the same as Coil:Heating:DX:SingleSpeed.
The loop pumps’ autosizable inputs are nominal volumetric flow rate and nominal power consumption. We have
Efftot=EffmotEffimpeller
The motor efficiency is an input. Since we need the total efficiency to calculate the nominal power consumption we assume an impeller efficiency of 0,78 for purposes of sizing.
Rated Volumetric Flow Rate[LINK]
This is just set equal to the design loop demand obtained from summing the needs of the components on the demand side of the loop.
Rated Power Consumption[LINK]
Hnom, the nominal head, is an input.
Electric Chiller Sizing[LINK]
Generally chillers will need nominal cooling capacity, evaporator flow rate and condenser flow rate. All 3 quantities can be straightforwardly obtained using the user specified loop sizing data and the loop design flow rates.
All chillers on a loop are sized to meet the full loop load. If there are multiple chillers on a loop that call for autosizing, they will all be assigned the same cooling capacity and evaporator flow rate.
Nominal Cooling Capacity[LINK]
where
Cp,w is the specific heat of water at 5 oC;
w is the density of water at standard conditions (5.05 oC);
Tloop,des is the chilled water loop design temperature rise;
is the loop design volumetric flow rate.
Design Evaporator Volumetric Water Flow Rate[LINK]
Design Condenser Volumetric Water Flow Rate[LINK]
where
Cp,w is the specific heat of water at design condenser inlet temperature;
w is the density of water at standard conditions (5.05 oC);
Tloop,des is the chilled water loop design temperature rise;
COPchiller,nom is the chiller nominal COP.
Boiler Sizing
Generally boilers will need nominal heating capacity and rate. Both quantities can be straightforwardly obtained using the user specified loop sizing data and the loop design flow rates.
All boilers on a loop are sized to meet the full loop load. If there are multiple boilers on a loop that call for autosizing, they will all be assigned the same heating capacity and flow rate.
Nominal Capacity[LINK]
where
Cp,w is the specific heat of water at the boiler design outlet temperature;
w is the density of water at standard conditions (5.05 oC);
Tloop,des is the hot water loop design temperature decrease;
is the loop design volumetric flow rate.
Design Evaporator Volumetric Water Flow Rate[LINK]
Plant Heat Exchanger Sizing[LINK]
The sizing of plant heat exchanger component (object: HeatExchanger:FluidToFluid) involves determining design flow rates for both sides, a UA value, and a nominal capacity for reporting. The component has a sizing factor for fine control and uses the design temperatures defined in the Sizing:Plant object.
The Loop Supply Side design flow rate, , is set equal to the design flow rate for that loop, multiplied by the component sizing factor, .
The Loop Demand Side design flow rate, , is set equal to the Loop Supply Side design flow rate.
The design heat transfer capacity and UA for the heat exchanger are calculated using the design temperatures for the two plant loops. The loop design temperature difference for the Loop Supply Side, , is used to determine a nominal capacity.
A loop-to-loop design temperature difference, , is determined depending on the nature of the plant loop connected to the Loop Supply Side. The Sizing:Plant object includes classifications for the type of loop that include Heating, Steam, Cooling, or Condenser. For Cooling and Condenser loop types, the loop design temperature difference is added to the design exit temperature for the Loop Supply Side, . For Heating and Stem loop types, the loop design temperature difference is subtracted from the design exit temperature. This adjusted supply side temperature is then compared to the design exit temperature for the Loop Demand Side, .
(Cooling, Condenser)
(Heating, Steam)
The UA (U-Factor Time Area Value) is determined by assuming that the target capacity can be delivered for the loop-to-loop temperature difference which after substituting and rearranging becomes:
A nominal capacity for the heat exchanger is determined from the design flow rates and UA (regardless of if they were automatically sized or input by the user) and the expected operating temperatures of the two loops. The loop operating temperatures are obtained from the input in Sizing:Plant object if it is present for that loop. If no Sizing:Plant is present then the loop’s overall setpoint is used (if the loop’s load scheme is DualSetpointDeadband then the average of the high and low setpoints is used). The full heat exchanger model is then calculated for the maximum loop flow rates and expected loop temperatures as inlets to the heat exchanger. The absolute value for the model result for heat transfer rate is then used as the capacity of the heat exchanger. This capacity is reported and may be used for controls based on operation scheme.
Humidifier Sizing[LINK]
The rated power, or nominal electric power input of an Electric Steam Humidifier (Humidifier:Steam:Electric) is calculated from user specified rated capacity (m3/s) and the enthalpy change of the water from a reference temperature (20.0°C) to saturated steam at 100.0°C. Autosizing procedure assumes that electrical heating element in the humidifier heat the water from the reference temperature and generate saturated steam at 100°C, and electric to thermal energy conversion efficiency of 100.0%.
where
Cp,w is the specific heat of water at average temperature ((100+20)/2 = 60.0 °C), (J/kgK);
w is the density of water at standard conditions (5.05 °C);
Tw is the sensible temperature rise of water (100.0 – 20.0=80.0 °C);
is the rated capacity of the humidifier in volumetric flow rate.
hfg is the latent heat of vaporization of water at 100.0°C, (J/kg);
Cooling Tower Sizing[LINK]
The quantities needed to autosize a cooling tower include the design water flow rate, the nominal fan power and air flow rate, and the tower UA. This data may be need to be given at more than one operating point:, for instance – high speed fan, low speed fan and free convection.
EnergyPlus provides two input choices: the user can input the design water flow rate and tower UA at each operating point or the tower nominal capacity (and let the program calculate the water flow rate and UA). Choice of input method will affect the sizing calculations in ways noted below.
Design Water Flow Rate[LINK]
If Tower Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate then
If Tower Performance Input Method = NominalCapacity then
where 5.38210-08 is m3/s per watt corresponds to the rule-of-thumb of sizing the tower flow rate at 3 gallons per minute per ton. For the CoolingTower:VariableSpeed:Merkel model with NominalCapacity input method, the user can input the value used to scale design water flow rate from nominal capacity and the default is 5.38210-08 m3/s/W.
Fan Power at Design Air Flow Rate[LINK]
The nominal fan power is sized to be 0.0105 times the design load.
If Tower Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate then
where
Cp,w is the specific heat of water at the condenser loop design exit temperature;
w is the density of water at standard conditions (5.05 oC);
Tloop,des is the condenser water loop design temperature rise;
Finally
For the CoolingTower:VariableSpeed:Merkel model, the design fan power is determined using a scaling factor, in units of Watts per Watt, that can be input by the user. The default value is 0.0105 which is the same as above.
Design Air Flow Rate[LINK]
We assume a fan efficiency of 0.5 and a fan pressure rise of 190 Pascals. Then
where
air is the density of air at standard conditions.
For the CoolingTower:VariableSpeed:Merkel model, the design air flow rate is determined from the nominal capacity using a scaling factor, ,in units of m3/s/W. The default value is 2.76316*10-5. When the input field is left blank, the default is used as follows
where, is the standard barometric pressure for the location’s elevation.
When the input field is filled with a hard value, the pressure scaling is not used
Tower UA Value at Design Air Flow Rate[LINK]
To obtain the UA of the tower, we specify the model inputs (other than the UA) at design conditions and the design tower load that the tower must meet. Then we numerically invert the tower model to solve for the UA that will enable the tower to meet the design tower load given the specified inputs.
The design tower load is:
for Tower Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate
for Tower Performance Input Method = NominalCapacity
(to allow for compressor heat)
Where, is the ratio of actual heat rejection capacity to nominal capacity. This ratio is available as a user input with a default value of 1.25 (to allow for compressor heat).
Then we assign the inputs needed for the model.
Tin,air=35 oC (95 oF design air inlet temperature)
Tin,air,wb=25.6 oC (78 oF design air inlet wetbulb temperature)
Win is calculated from the entering air drybulb and wetbulb.
The inlet water mass flow rate is just the design volumetric flow rate times the density of water.
The inlet water temperature is set slightly differently for the 2 input methods. For
UFactorTimesAreaAndDesignWaterFlowRate
Tin,water=Tloop,exit,desTloop,des
NominalCapacity
Tin,water=35 oC (95 oF design inlet water temperature).
We now have all the data needed to obtain UA. The numerical inversion is carried out by calling subroutine SolveRegulaFalsi. This is a general utility routine for finding the zero of a function. In this case it finds the UA that will zero the residual function – the difference between the design tower load and the tower output divided by the design tower load. The residual is calculated in the function SimpleTowerUAResidual.
Air Flow Rate at Low Fan Speed[LINK]
The nominal air flow rate at low fan speed is set to a fraction of the full speed air flow rate. The fraction is available for user input in the field called Low Fan Speed Air Flow Rate Sizing Factor. The default is 0.5.
Fan Power at Low Fan Speed[LINK]
The fan power at low fan speed is set to a fraction of the fan power at full speed. The fraction is available for user input in the field called Low Fan Speed Fan Power Sizing Factor. The default is 0.16.
Tower UA Value at Low Fan Speed[LINK]
For Tower Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate the low speed UA is set to a fraction of the full speed UA. The fraction is available for user input in the field called Low Fan Speed U-Factor Times Area Sizing Factor. The default is 0.6. For Tower Performance Input Method = NominalCapacity the low speed UA is calculated in the same manner as the full speed UA using instead of .
Air Flow Rate in Free Convection Regime[LINK]
The free convection air flow rate is set to a fraction of the full air flow rate. The fraction is available for user input in the field called Free Convection Regime Air Flow Rate Sizing Factor. The default is 0.1.
Tower UA Value in Free Convection Regime[LINK]
For Tower Performance Input Method = UA and Design Water Flow Rate the low speed UA is set to a fraction of the full speed UA. The fraction is available for user input in the field called Free Convection U-Factor Times Area Value Sizing Factor. The default is 0.1. For Tower Performance Input Method = NominalCapacity the low speed UA is calculated in the same manner as the full speed UA using instead of .
Fluid Cooler Sizing[LINK]
The quantities needed to autosize a fluid cooler include the design water flow rate, the nominal fan power, air flow rate, and the fluid cooler UA. This data may need to be given at more than one operating point:, for instance – high speed fan and low speed fan.
EnergyPlus provides two input choices: the user can input the design water flow rate and fluid cooler UA at each operating point or the fluid cooler nominal capacity and the water flow rate (and let the program calculate UA). Choice of input method will affect the sizing calculations in ways noted below.
Design Water Flow Rate[LINK]
The design water flow rate is sized as follows
Fan Power at Design Air Flow Rate[LINK]
The nominal fan power is sized to be 0.0105 times the design load.
If Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate then
where
Cp,w is the specific heat of water at the condenser loop design exit temperature;
w is the density of water at standard conditions (5.05 oC);
Tloop,des is the condenser water loop design temperature rise;
Finally
![](media/image2094.png)
Where
![](media/image2095.png) is provided by the user.
Design Air Flow Rate[LINK]
- For Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate
- For Performance Input Method = NominalCapacity
is provided by the user.
Where,
Tin,water= Design entering water temperature provided by the user
Tin,air= Design air inlet temperature provided by the user
Fluid cooler UA Value at Design Air Flow Rate[LINK]
To obtain the UA of the fluid cooler, we specify the model inputs (other than the UA) at design conditions and the design fluid cooler load that the fluid cooler must meet. Then we numerically invert the fluid cooler model to solve for the UA that will enable the fluid cooler to meet the design fluid cooler load given the specified inputs.
The design fluid cooler load is:
- For Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate
- For Performance Input Method = NominalCapacity
is provided by the user.
Then we assign the inputs needed for the model.
Tin,air= Design air inlet temperature provided by the user
Tin,air,wb= Design air inlet wetbulb temperature provided by the user
Win is calculated from the entering air drybulb and wetbulb.
The inlet water mass flow rate is just the design entering volumetric flow rate times the density of water.
The inlet water temperature is set slightly differently for the 2 input methods. For
- UFactorTimesAreaAndDesignWaterFlowRate
We now have all the data needed to obtain UA. The numerical inversion is carried out by calling subroutine SolveRegulaFalsi. This is a general utility routine for finding the zero of a function. In this case it finds the UA that will zero the residual function – the difference between the design fluid cooler load and the fluid cooler output divided by the design fluid cooler load. The residual is calculated in the function SimpleFluidCoolerUAResidual.
Air Flow Rate at Low Fan Speed[LINK]
The nominal air flow rate at low fan speed is set to a fraction of the full speed air flow rate. The fraction is available for user input in the field called Low Fan Speed Air Flow Rate Sizing Factor. The default is 0.5.
Fan Power at Low Fan Speed[LINK]
The fan power at low fan speed is set to a fraction of the fan power at full speed. The fraction is available for user input in the field called Low Fan Speed Fan Power Sizing Factor. The default is 0.16.
Fluid cooler UA Value at Low Fan Speed[LINK]
For Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate the low speed UA is set to a fraction of the full speed UA. . The fraction is available for user input in the field called Low Fan Speed U-Factor Times Area Sizing Factor. The default is 0.6. For Performance Input Method = NominalCapacity the low speed UA is calculated in the same manner as the full speed UA using instead of .
Evaporative Fluid cooler Sizing[LINK]
The quantities needed to autosize an evaporative fluid cooler include the design water flow rate, the nominal fan power, air flow rate, and the fluid cooler UA. This data may need to be given at more than one operating point:, for instance – high speed fan and low speed fan.
EnergyPlus provides three input choices: the user can input the design water flow rate and fluid cooler UA at each operating point (UFactorTimesAreaAndDesignWaterFlowRate) or the fluid cooler design capacity and the water flow rate and let the program calculate UA (UserSpecifiedDesignCapacity) or only the fluid cooler design capacity and let the program calculate UA and the water flow rate (StandardDesignCapacity). Choice of input method will affect the sizing calculations in ways noted below.
Design Water Flow Rate[LINK]
If Performance Input Method = StandardDesignCapacity then
Else
where 5.38210-08 is m3/s per watt corresponds to the rule-of-thumb of sizing the fluid cooler flow rate at 3 gallons per minute per ton.
Fan Power at Design Air Flow Rate[LINK]
The design fan power is sized to be 0.0105 times the design load.
If Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate then
where
Cp,w is the specific heat of water at the condenser loop design exit temperature;
w is the density of water at standard conditions (5.05 oC);
Tloop,des is the condenser water loop design temperature rise;
Finally
Where
is the design capacity provided by the user for the other two performance input methods
Design Air Flow Rate[LINK]
We assume a fan efficiency of 0.5 and a fan pressure rise of 190 Pascals. Then
where
air is the density of air at standard conditions.
Fluid cooler UA Value at Design Air Flow Rate[LINK]
To obtain the UA of the evaporative fluid cooler, we specify the model inputs (other than the UA) at design conditions and the design fluid cooler load that the fluid cooler must meet. Then we numerically invert the fluid cooler model to solve for the UA that will enable the fluid cooler to meet the design fluid cooler load given the specified inputs.
The design fluid cooler load is:
- For Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate
- For Performance Input Method = StandardDesignCapacity
(to allow for compressor heat)
Then we assign the inputs needed for the model.
Tin,air= 35 oC (95 oF design air inlet temperature)
Tin,air,wb= 25.6 oC (78 oF design air inlet wetbulb temperature)
Win is calculated from the entering air drybulb and wetbulb.
- For Performance Input Method = UserSpecifiedDesignCapacity
Where, is the ratio of actual heat rejection capacity to nominal capacity. This ratio is available as a user input with a default value of 1.25 (to allow for compressor heat)
Then we assign the inputs needed for the model.
Tin,air= Design air inlet temperature provided by the user
Tin,air,wb= Design air inlet wetbulb temperature provided by the user
Win is calculated from the entering air drybulb and wetbulb.
The inlet water mass flow rate is just the design entering volumetric flow rate times the density of water.
The inlet water temperature is set slightly differently for the 3 input methods. For
- UFactorTimesAreaAndDesignWaterFlowRate
- UserSpecifiedDesignCapacity
We now have all the data needed to obtain UA. The numerical inversion is carried out by calling subroutine SolveRegulaFalsi. This is a general utility routine for finding the zero of a function. In this case it finds the UA that will zero the residual function – the difference between the design fluid cooler load and the fluid cooler output divided by the design fluid cooler load. The residual is calculated in the function SimpleEvapFluidCoolerUAResidual.
Air Flow Rate at Low Fan Speed[LINK]
The design air flow rate at low fan speed is set to a fraction of the full speed air flow rate. The fraction is available for user input in the field called Low Fan Speed Air Flow Rate Sizing Factor. The default is 0.5.
Fan Power at Low Fan Speed[LINK]
The fan power at low fan speed is set to a fraction of the fan power at full speed. The fraction is available for user input in the field called Low Fan Speed Fan Power Sizing Factor. The default is 0.16.
Fluid cooler UA Value at Low Fan Speed[LINK]
For Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate the low speed UA is set to a fraction of the full speed UA. The fraction is available for user input in the field called Low Fan Speed U-Factor Times Area Sizing Factor. The default is 0.6. For Performance Input Method = StandardDesignCapacity (and similarly for UserSpecifiedDesignCapacity method) the low speed UA is calculated in the same manner as the full speed UA using instead of .
Fan Coil Unit Sizing[LINK]
Fan Coil units are compound components: each unit contains a fan, hot water coil, chilled water coil and outside air mixer. The inputs that may need to be autosized are the nominal unit air flow rate, the maximum hot and chilled water flow rates, and the design outside air flow rate. The data needed for sizing the units is obtained from the zone design arrays and the user specified plant sizing input.
Maximum Air Flow Rate[LINK]
Maximum Outside Air Flow Rate[LINK]
Maximum Hot Water Flow[LINK]
Tcoil,in=DesHeatCoilInTempzone
Tcoil,out=HeatDesTempzone
where
cp,air is evaluated at the average of the inlet & outlet temperatures and the coil outlet humidity ratio.
Maximum Cold Water Flow[LINK]
Tcoil,in=DesColdCoilInTempzone
Tcoil,out=ColdDesTempzone
Wcoil,in= DesCoolCoilInHumRatzone
Wcoil,out= CoolDesHumRatzone
Hcoil,in= PsyHFnTdbW(Tcoil,in, Wcoil,in)
Hcoil,out= PsyHFnTdbW(Tcoil,out, Wcoil,out)
where
cp,air is evaluated at the average of the inlet & outlet temperatures and the coil outlet humidity ratio.
Window Air Conditioner Sizing[LINK]
Window air conditioners are compound components: each unit contains a fan, a DX coil and an outside air mixer. The inputs that may need to be autosized are the nominal unit air flow rate and the design outside air flow rate. The data needed for sizing the units is obtained from the zone design arrays.
Maximum Air Flow Rate[LINK]
Maximum Outside Air Flow Rate[LINK]
Unit Ventilator Sizing[LINK]
Unit ventilators are compound components: each unit contains an outdoor air mixer, a fan, a heating coil, and a cooling coil. The inputs that may need to be autosized are the maximum supply air flow rate and the maximum/minimum outside air flow rates. The data needed for sizing the units is obtained from the zone design arrays.
Maximum Air Flow Rate[LINK]
If both the cooling and heating coil are present, then:
If only the heating coil is present, then:
If only cooling coil is present, then:
If neither heating nor cooling coil is present, then:
Maximum Outside Air Flow Rate[LINK]
Minimum Outside Air Flow Rate[LINK]
Packaged Terminal Heat Pump Sizing[LINK]
Packaged terminal heat pumps are compound components: each unit contains a supply air fan, a DX cooling coil, a DX heating coil, a GAS or ELECTRIC supplemental heating coil, and an outside air mixer. The inputs that may need to be autosized are the supply air and outside air volumetric air flow rates during cooling operation, heating operation, and when no cooling or heating is needed. In addition, the maximum supply air temperature from the supplemental heater can also be automatically selected. The data needed for sizing the units are obtained from the zone design arrays.
Supply air volumetric flow rate during cooling operation[LINK]
Supply air volumetric flow rate during heating operation[LINK]
Supply air volumetric flow rate when no cooling or heating is needed[LINK]
Outside air volumetric flow rate during cooling operation[LINK]
Outside air volumetric flow rate during heating operation[LINK]
Outside air volumetric flow rate when no cooling or heating is needed[LINK]
Maximum supply air temperature from supplemental heater[LINK]
MultiSpeed Heat Pump Sizing[LINK]
MultiSpeed heat pumps are compound components: each unit contains a supply air fan, a multispeed DX cooling coil, a multispeed DX heating coil, and a GAS or ELECTRIC supplemental heating coil. The inputs that may need to be autosized are the supply air volumetric air flow rates during cooling operation, heating operation, and when no cooling or heating is needed. The data needed for sizing the units are obtained from the controlled zone design arrays.
Supply air volumetric flow rate during cooling operation at the highest speed[LINK]
Supply air volumetric flow rate during heating operation at the highest speed[LINK]
Supply air volumetric flow rate when no cooling or heating is needed[LINK]
where
ZoneFraction = Fraction of the total volume flow that goes through the controlling zone
Supply air volumetric flow rate during cooling operation at Speed n (1 to NumberOfSpeed-1)[LINK]
Supply air volumetric flow rate during heating operation at Speed n (1 to NumberOfSpeed-1)[LINK]
where
n= Speed Index number from 1 to NumberOfSpeed-1
NumberOfSpeed= The highest speed number
Single Duct Terminal Units[LINK]
These are all the EnergyPlus components whose names begin with “AirTerminal:SingleDuct:” (except for Cooled Beam units). This includes Uncontrolled, ConstantVolume:Reheat, VAV:NoReheat, VAV:Reheat, VAV:Reheat:VariableSpeedFan, VAV:HeatAndCool:NoReheat, VAV:HeatAndCool:Reheat, SeriesPIU:Reheat, ParallelPIU:Reheat, and ConstantVolume:FourPipeInduction. The inputs that may need to be autosized are the various maximum air flow rates through the unit, minimum air flow rates, and maximum hot water and/or chilled water flow rates if heating or cooling coils are present.
Note: all zone design flow rates and loads referenced below may have been altered by system sizing inputs. For instance, if the user specifies a Cooling Design Air Flow Method = Flow/System and specifies a Cooling Design Air Flow Rate the zone cooling design values will be altered to match the specified system flow rate.
Maximum Air Flow Rate[LINK]
Maximum Heating Air Flow Rate[LINK]
Maximum Primary and Secondary Air Flow Rates[LINK]
For the PIU terminal units, the maximum primary and secondary air flow rates are sized to the same value as the maximum total air flow rate.
Minimum Air Flow Rate[LINK]
Basically minimum air flow rates are sized to the ventilation air requirement. This may be more or less complicated.
For the PIU’s, the minimum primary air flow fraction is set to
.
For other VAV terminal units
where, Fracair,min corresponds to the minimum flow fraction of the teminal unit. This value is provided as user input, typically as the field “Zone Minimum Air Flow Fraction.” For the VAV terminals that allow scheduling minimum flow fraction (e.g., AirTerminal:SingleDuct:VAV:Reheat), there are two ways that Fracair,min can be determined. If a value is entered in the input field Constant Minimum Air Flow Fraction, then it is always used for Fracair,min. If the mimimum air flow fraction method is “Schedule” and the Constant Minimum Air Flow Fraction is left blank, then the program uses the average of the minimum and maximum values in the schedule for Fracair,min.
Fan On Flow Fraction[LINK]
For the parallel PIU, this is set to the minimum primary air flow fraction.
Max Hot Water Flow[LINK]
The coil load and max hot water flow rate are then:
where
cp,air is evaluated at the average of the inlet & outlet temperatures and the coil outlet humidity ratio.
The four-pipe induction unit sizes the heating coil differently: to meet the zone load rather than match the design zone supply temperature. The load on the hot water coil is then the zone load minus whatever the central system does.
where
Max Chilled Water Flow[LINK]
The chilled water flow for the four-pipe induction unit is sized analogously to the hot water flow.
Indirect Evaporative Cooler Sizing[LINK]
The model for the object called EvaporativeCooler:Indirect:ResearchSpecial has a field for the secondary fan flow rate that can be autosized.
Secondary Fan Flow Rate[LINK]
The secondary fan is not part of an airstream that is directly modeled in EnergyPlus. Because the primary side air flows can be autosized as part of the air system, it is convenent to also scale the size of the secondary flow. If the cooler is part of the main loop of a central air system, then the secondary fan flow rate is sized to equal to the main design flow rate.
If the cooler is part of the outdoor air path of a central air system, then the secondary fan flow rate is sized to be the maximum of either the design minimum outdoor air flow rate or one-half of the main design flow rate.
Component Sizing[LINK]
Introduction[LINK]
In EnergyPlus each HVAC component sizes itself. Each component module contains a sizing subroutine. When a component is called for the first time in a simulation, it reads in its user specified input data and then calls the sizing subroutine. This routine checks the autosizable input fields for missing data and calculates the data when needed.
A number of high-level variables are used in the sizing subroutines.
CurDuctType (in DataSizing) contains the information about the current duct type. The types can be main, cooling, heating or other.
CurZoneEqNum (in DataSizing) is the current zone equipment set index and indicates that the component is a piece of zone equipment and should size itself using the zone sizing data arrays.
CurSysNum (in DataSizing) is the current air loop index and indicates that the component is part of the primary air system and should size itself using the system sizing data arrays.
Fan Sizing[LINK]
Fan sizing is done in subroutine SizeFan.
Max Flow Rate[LINK]
If the fan is part of the central air system then check the duct type.
For duct type = main, other or default
For duct type=cooling
For duct type=heating
If the fan is zone equipment then check whether it is part of a component that only does heating.
For heating only ;
Otherwise
If the max fan flow rate is less than SmallAirVolFlow the max flow rate is set to zero.
Coil:Cooling:Water[LINK]
The sizing is done in subroutine SizeWaterCoil of module WaterCoils
Design Water Flow Rate (m3/s)[LINK]
System Coils[LINK]
The design water volumetric flow rate is calculated using:
Tw,des is just the Loop Design Temperature Difference user input from Sizing:Plant (if the coil is in the outside air stream, ½ the Loop Design Temperature Difference is used). The design coil load Loadcoil,des is calculated from:
The design air mass flow rate depends on the location of the coil. If the coil is in the outside air stream the flow rate is set to airDesOutAirVolFlowsys (the design outside air volumetric flow for the system). If the coil is in a cooling duct the flow rate is set to airDesCoolVolFlowsys. If the coil is in a heating duct the flow rate is set to airDesHeatVolFlowsys. If the coil is in the main duct (or any other kind of duct) the flow rate is set to airDesMainVolFlowsys.
To obtain the inlet and outlet enthalpies, we need the inlet and outlet temperatures and humidity ratios. The inlet and outlet conditions depend on whether the coil is in the outside air stream and if it is not, whether or not there is outside air preconditioning.
Coil in outside air stream
Tair,in,des = CoolOutTempsys (the outside air temperature at the design cooling peak)
Tair,out,des = PrecoolTempsys (the specified Precool Design Temperature from the Sizing:System object).
Wair,in,des = CoolOutHumRatsys (the outside humidity ratio at the design cooling peak)
Wair,out,des = PrecoolHumRatsys (the specified Precool Design Humidity Ratio from the Sizing:System object)
Coil in main air stream, no preconditioning of outside air
Tair,in,des = CoolMixTempsys (the mixed air temperature at the design cooling peak)
Wair,in,des = CoolMixHumRatsys (the mixed air humidity ratio at the design cooling peak)
Tair,out,des = CoolSupTempsys (the specified Central Cooling Design Supply Air Temperature from the Sizing:System object)
Wair,out,des = CoolSupHumRatsys (the specified Central Cooling Design Supply Air Humidity Ratio from the Sizing:System object)
Coil in main air stream, outside air preconditioned. The outside air fraction is calculated as Fracoa **= DesOutAirVolFlowsys / DesVolFlow. DesVolFlow is just AirMassFlowRatecoil,des / air.
Tair,in,des=FracoaPrecoolTempsys + (1. Fracoa)CoolRetTempsys(see Table 39. System Sizing Data)
Wair,in,des=FracoaPrecoolHumRatsys + (1. Fracoa)CoolRetHumRatsys
Tair,out,des = CoolSupTempsys (the specified Central Cooling Design Supply Air Temperature from the Sizing:System object)
Wair,out,des = CoolSupHumRatsys (the specified Central Cooling Design Supply Air Humidity Ratio from the Sizing:System object)
With the inlet and outlet conditions established, we can obtain the inlet and outlet enthalpies:
hair,coil,des,in = PsyHFnTdbW(Tair,in,des, Wair,in,des)
hair,coil,des,out~~= PsyHFnTdbW(Tair,out,des, Wair,out,des)
where PsyHFnTdbW is the EnergyPlus function for calculating air specific enthalpy given the air temperature and humidity ratio. We now have all we need to calculate Loadcoil,des and WaterVolFlowRatecoil,des.
Zone Coils[LINK]
If the coil is part of an AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction unit, the water flow rate is set equal to the terminal unit’s chilled water flow rate. Otherwise (e.g., the zone-level coil is part of ZoneHVAC:FourPipeFanCoil, ZoneHVAC:UnitVentilator or ZoneHVAC:VentilatedSlab) the calculation is similar to that at the system level. A design load is calculated:
Where:
AirMassFlowRatecoil,des~~= DesCoolMassFlowzone (see Table 38. Zone Sizing Data)
hair,coil,des,in = PsyHFnTdbW(Tair,in,des, Wair,in,des)
hair,coil,des,out= PsyHFnTdbW(Tair,out,des, Wair,out,des)
Tair,in,des = DesCoolCoilInTempzone (see Table 38)
Wair,in,des = DesCoolCoilInHumRatzone (see Table 38)
Tair,out,des = CoolDesTempzone (user input from Zone:Sizing object)
Wair,out,des = CoolDesHumRatzone (user input from Zone:Sizing object)
where Tw,des is the Loop Design Temperature Difference user input from the Sizing:Plant object.
Design Air Flow Rate[LINK]
System Coils[LINK]
The design air volumetric flow rate depends on the location of the coil. If the coil is in the outside air stream the flow rate is set to DesOutAirVolFlowsys. If the coil is in a cooling duct the flow rate is set to DesCoolVolFlowsys. If the coil is in a heating duct the flow rate is set to DesHeatVolFlowsys. If the coil is in the main duct (or any other kind of duct) the flow rate is set to DesMainVolFlowsys.
Zone Coils[LINK]
If the coil is part of an AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction unit, the design air volumetric flow rate is set equal to the flow rate of the terminal unit. For all other zone coils it is set equal to:
Max(DesCoolMassFlowzone,DesHeatMassFlowzone) air
Design Inlet Air Temperature[LINK]
System Coils[LINK]
The inlet air temperature depends on whether the coil is in the outside air stream and if it is not, whether or not there is outside air preconditioning.
Coil in outside air stream: Tair,in = CoolOutTempsys (the outside air temperature at the design cooling peak).
Coil in main air stream, no preconditioning of outside air: Tair,in = CoolMixTempsys (the mixed air temperature at the design cooling peak).
Coil in main air stream, outside air preconditioned. The outside air fraction is calculated as Fracoa **= DesOutAirVolFlowsys / DesVolFlow. DesVolFlow is just AirMassFlowRatecoil,des / air. Then
Tair,in=FracoaPrecoolTempsys + (1. Fracoa)CoolRetTempsys
Zone Coils[LINK]
If the coil is part of an AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction unit, the Design Inlet Air Temperature is set equal to ZoneTempAtCoolPeakzone (see Table 38. Zone Sizing Data). For all other zone coils, it is set equal to DesCoolCoilInTempzone (see Table 38).
Design Outlet Air Temperature[LINK]
System Coils[LINK]
The outlet air temperature depends on whether the coil is in the outside air stream.
Coil in outside air stream: Tair,out,des = PrecoolTempsys (the specified Precool Design Temperature from the Sizing:System object).
Coil in main air stream: Tair,out,des = CoolSupTempsys (the specified Central Cooling Design Supply Air Temperature from the Sizing:System object)
Zone Coils[LINK]
If the coil is part of an AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction unit, then:
where CoolVolFlowcoil,air,des is the user input or previously autosized coil Design Air Flow Rate. For all other zone coils the Design Outlet Air Temperature is set to CoolDesTempzone (see Table 38. Zone Sizing Data).
Design Inlet Air Humidity Ratio[LINK]
System Coils[LINK]
The inlet air humidity ratio depends on whether the coil is in the outside air stream and if it is not, whether or not there is outside air preconditioning.
Coil in outside air stream: Wair,in,des = CoolOutHumRatsys (the outside humidity ratio at the design cooling peak).
Coil in main air stream, no preconditioning of outside air: Wair,in,des = CoolMixHumRatsys (the mixed air humidity ratio at the design cooling peak).
Coil in main air stream, outside air preconditioned. The outside air fraction is calculated as Fracoa **= DesOutAirVolFlowsys / DesVolFlow. DesVolFlow is just AirMassFlowRatecoil,des / air. Then
Wair,in,des=FracoaPrecoolHumRatsys + (1. Fracoa)CoolRetHumRatsys
Zone Coils[LINK]
If the coil is part of an AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction unit, the Design Inlet Air Humidity Ratio is set equal to ZoneHumRatAtCoolPeakzone (see Table 38. Zone Sizing Data). For all other zone coils, it is set equal to DesCoolCoilInHumRatzone (see Table 38).
Design Outlet Air Humidity Ratio[LINK]
System Coils[LINK]
The outlet air humidity ratio depends on whether the coil is in the outside air stream.
Coil in outside air stream: Wair,out,des = PrecoolHumRatsys (the specified Precool Design Humidity Ratio from the Sizing:System object)
Coil in main air stream: Wair,out,des = CoolSupHumRatsys (the specified Central Cooling Design Supply Air Humidity Ratio from the Sizing:System object)
Zone Coils[LINK]
The Design Outlet Air Humidity Ratio is set equal to CoolDesHumRatzone (user input from Zone:Sizing).
Design Inlet Water Temperature[LINK]
System Coils[LINK]
The Design Inlet Water Temperature is set to the Design Loop Exit Temperature specified in the Sizing:Plant object for the water loop serving this coil.
Zone Coils[LINK]
The Design Inlet Water Temperature is set to the Design Loop Exit Temperature specified in the Sizing:Plant object for the water loop serving this coil.
Coil:Cooling:Water:DetailedGeometry Sizing[LINK]
The sizing is done in subroutine SizeWaterCoil
Max Water Flow Rate of Coil[LINK]
The calculation is identical to that done for Coil:Cooling:Water.
Number of Tubes per Row[LINK]
Ntube/row=Max(Ntube/row,3)
Fin Diameter[LINK]
Depending on the duct type, get the coil design air flow rate.
For duct type = main, other or default
for duct type=cooling
for duct type=heating
Minimum Air Flow Area[LINK]
Depending on the duct type, get the coil design air flow rate.
For duct type = main, other or default
for duct type=cooling
for duct type=heating
Fin Surface Area[LINK]
Depending on the duct type, get the coil design air flow rate.
For duct type = main, other or default
for duct type=cooling
for duct type=heating
Total Tube Inside Area[LINK]
A~tube,total inside=4.4Dtube,insideNtube rowsNtubes/row~
Where Dtube,inside is the tube inside diameter.
Tube Outside Surf Area[LINK]
Atube,outside=4.1Dtube,outsideN~tube rowsNtubes/row~
Where Dtube,outside is the tube outside diameter.
Coil Depth[LINK]
Depthcoil=Depth~tube spacing~ N~tube rows~
Coil:Cooling:WaterToAirHeatPump:EquationFit Sizing[LINK]
The sizing is done in subroutine SizeHVACWaterToAir
Rated Air Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:Water.
Rated Water Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:Water, which is the coil design load divided by the Loop Design Temperature Difference user input from Sizing:Plant. If there is a companion heating coil, the heating coil design load is used so that both modes will have the same rated water flow rate. For sizing the plant loop serving this coil, only one half of this flow rate is used since both the cooling and heating coil will save a flow rate but only one of these coils will operate at a time.
Rated Total Cooling Capacity[LINK]
The calculation for coil operating temperatures (inlet and outlet) are identical to that done for Coil:Cooling:Water. The following calculations are then performed to determine the rated total cooling capacity.
where:
ratio of load-side inlet air wet-bulb temperature in Kelvin to a reference temperature
ratio of source-side inlet water temperature in Kelvin to a reference temperature
TCC1 = user input for Total Cooling Capacity Coefficient 1
TCC2 = user input for Total Cooling Capacity Coefficient 2
TCC3 = user input for Total Cooling Capacity Coefficient 3
TCC4 = user input for Total Cooling Capacity Coefficient 4
TCC5 = user input for Total Cooling Capacity Coefficient 5
The 4th and 5th coefficient (TCC4 and TCC5) used in the above equation are multipliers for the load-side and source-side flow ratios, respectively. For sizing, these ratios are assumed to be 1.
The enthalpy of the entering air is then compared with the enthalpy of the exiting air. The calculations for air enthalpy are identical to that done for Coil:Cooling:Water. If the entering air enthalpy is less than the exiting air enthalpy, a reference value of 48,000 J/kg is used as the entering air enthalpy. If the TotCapTempModFac calculation above yields 0 as the result, a value of 1 is used in the following calculation. If the design air mass flow rate is determined to be less than a very small flow value (0.001 kg/s) or the capacity calculated here is less than 0, the coil total cooling capacity is set equal to 0.
Rated Sensible Cooling Capacity[LINK]
The calculation for coil operating temperatures (inlet and outlet) are identical to that done for Coil:Cooling:Water. The following calculations are then performed to determine the rated sensible cooling capacity.
where:
ratio of load-side inlet air dry-bulb temperature in Kelvin to a reference temperature
SCC1 = user input for Sensible Cooling Capacity Coefficient 1
SCC2 = user input for Sensible Cooling Capacity Coefficient 2
SCC3 = user input for Sensible Cooling Capacity Coefficient 3
SCC4 = user input for Sensible Cooling Capacity Coefficient 4
SCC5 = user input for Sensible Cooling Capacity Coefficient 5
SCC6 = user input for Sensible Cooling Capacity Coefficient 6
The 5th and 6th coefficient (SCC5 and SCC6) used in the above equation are multipliers for the load-side and source-side flow ratios, respectively. For sizing, these ratios are assumed to be 1.
The dry-bulb temperature of the entering air is then compared with the dry-bulb temperature of the exiting air. The calculations for air dry-bulb temperature are identical to that done for Coil:Cooling:Water. If the entering air dry-bulb temperature is less than the exiting air dry-bulb temperature, a reference value of 24 C is used as the entering air dry-bulb temperature. If the SensCapTempModFac calculation above yields 0 as the result, a value of 1 is used in the following calculation. If the design air mass flow rate is determined to be less than a very small flow value (0.001 kg/s) or the capacity calculated here is less than 0, the coil sensible cooling capacity is set equal to 0.
Coil:Cooling:WaterToAirHeatPump:VariableSpeedEquationFit Sizing[LINK]
For the cooling coil of VS WSHP, we specify a nominal speed level. During the sizing calculation, the Rated Air Volume Flow Rate, the Rated Water Volume Flow Rate and the Rated Total Cooling Capacity at the Selected Nominal Speed Level are determined in the same way as the Coil:Cooling:WaterToAirHeatPump:EquationFit object. The sensible heat transfer rate is not allowed for auto-sizing, instead, it is a function of the rated air and water flow rates, rated total cooling capacity and the Reference Unit SHR at the nominal speed level. The default nominal speed level is the highest speed. However, the model allows the user to select a nominal speed level rather than the highest.
Rated Air Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:WaterToAirHeatPump:EquationFit.
Rated Water Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:WaterToAirHeatPump:EquationFit , which is the coil design load divided by the Loop Design Temperature Difference user input from Sizing:Plant. If there is a companion heating coil, the heating coil design load is used so that both modes will have the same rated water flow rate. For sizing the plant loop serving this coil, only one half of this flow rate is used since both the cooling and heating coil will save a flow rate but only one of these coils will operate at a time.
Rated Total Cooling Capacity[LINK]
The calculation for coil operating temperatures (inlet and outlet) are identical to that done for Coil:Cooling:WaterToAirHeatPump:EquationFit. The calculations for air enthalpy are similar to that done for Coil:Cooling:WaterToAirHeatPump:EquationFit. The difference is in calculating the total cooling capacity temperature modifier function at the selected nominal speed level, as below:
where
WBi = wet-bulb temperature of the air entering the heating coil, °C
EWT = entering water temperature, °C
a-f = regression curve-fit coefficients.
If the entering air enthalpy is less than the exiting air enthalpy, a reference value of 48,000 J/kg is used as the entering air enthalpy. If the TotCapTempModFac calculation above yields 0 as the result, a value of 1 is used in the following calculation. If the rated air mass flow rate is determined to be less than a very small flow value (0.001 kg/s) or the capacity calculated here is less than 0, the coil total cooling capacity is set equal to 0.
If Hin > Hout Then
Else
End If
Coil:Heating:WaterToAirHeatPump:EquationFit Sizing[LINK]
The sizing is done in subroutine SizeHVACWaterToAir.
Rated Air Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:Water.
Rated Water Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:Water , which is the coil design load divided by the Loop Design Temperature Difference user input from Sizing:Plant. For sizing the plant loop serving this coil, only one half of this flow rate is used since both the cooling and heating coil will save a flow rate but only one of these coils will operate at a time.
Rated Total Heating Capacity[LINK]
The rated total heating capacity is set equal to the rated total cooling capacity.
Coil:Heating:WaterToAirHeatPump:VariableSpeedEquationFit Sizing[LINK]
For the heating coil of VS WSHP, we specify a nominal speed level. During the sizing calculation, the Rated Air Volume Flow Rate and the Rated Water Volume Flow Rate are determined in the same way as the Coil:Heating:WaterToAirHeatPump:EquationFit object. On the other hand, the Rated Heating Capacity at the Selected Nominal Speed Level should be the same as the total cooling capacity of its corresponding cooling coil, which has to be sized first. The default nominal speed level will be the highest speed. However, the model allows the user to select a nominal speed level rather than the highest.
Rated Air Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:WaterToAirHeatPump:EquationFit.
Rated Water Flow Rate[LINK]
The calculation is identical to that done for Coil:Cooling:WaterToAirHeatPump:EquationFit, which is the coil design load divided by the Loop Design Temperature Difference user input from Sizing:Plant. For sizing the plant loop serving this coil, only one half of this flow rate is used since both the cooling and heating coil will save a flow rate but only one of these coils will operate at a time.
Rated Total Heating Capacity[LINK]
The rated total heating capacity is set equal to the rated total cooling capacity.
Coil:Heating:Water Sizing[LINK]
The sizing is done in subroutine SizeWaterCoil.
Max Water Flow Rate of Coil[LINK]
System Coils[LINK]
With the coil load from the system design data array and the user specified (in a Sizing:Plant object) design hot water temperature fall, calculate the max water flow rate:
Zone Coils[LINK]
Using the zone design coil inlet and supply air conditions calculate the design coil load.
If the coil is not part of an induction unit then obtain the coil inlet temperature from the zone design data array;
Tin,air= DesHeatCoilInTempzone
If the coil is part of an induction unit take into account the induced air:
Fracminflow=MinFlowFraczone
Tin,air= DesHeatCoilInTempzone Fracminflow +
ZoneTempAtHeatPeakzone(1 Fracminflow)
Tout,air=HeatDesTempzone
Wout,air= HeatDesHumRatzone
If the coil is part of a terminal unit the mass flow rate is determined by the volumetric flow rate of the terminal unit:
Otherwise the design flow is obtained from the zone design data array:
Here cp,air is calculated at the outlet humidity and the average of the inlet and outlet temperatures.
With the coil load and the user specified (in a Sizing:Plant object) design hot water temperature decrease, calculate the max water flow rate:
UA of the Coil[LINK]
To obtain the UA of the coil, we specify the model inputs (other than the UA) at design conditions and the design coil load that the coil must meet. Then we numerically invert the coil model to solve for the UA that will enable the coil to meet the design coil load given the specified inputs.
System Coils[LINK]
The design coil load is the system design sensible cooling capacity;
Qcoil,des= HeatCapsys
The required inputs for the simple coil model are:
Tin,air= HeatMixTempsys
Win,air= HeatMixHumRatsys
Tin,water= ExitTempplt,hw,des
Depending on the duct type, get the coil design air flow rate.
For duct type = main, other or default
for duct type=cooling
for duct type=heating
We now have all the data needed to obtain UA. The numerical inversion is carried out by calling subroutine SolveRegulaFalsi. This is a general utility routine for finding the zero of a function. In this case it finds the UA that will zero the residual function – the difference between the design coil load and the coil output divided by the design coil load. The residual is calculated in the function SimpleHeatingCoilUAResidual.
Zone Coils[LINK]
If the coil is not part of an induction unit then obtain the coil inlet temperature from the zone design data array;
Tin,air= DesHeatCoilInTempzone
If the coil is part of an induction unit take into account the induced air:
Fracminflow=MinFlowFraczone
Tin,air= DesHeatCoilInTempzone Fracminflow +
ZoneTempAtHeatPeakzone(1 Fracminflow)
Win,air= DesHeatCoilInHumRatzone
Tin,water= ExitTempplt,hw,des
Tout,air=HeatDesTempzone
Wout,air= HeatDesHumRatzone
If the coil is part of a terminal unit the mass flow rate is determined by the volumetric flow rate of the terminal unit:
Otherwise the design flow is obtained from the zone design data array:
Here cp,air is calculated at the outlet humidity and the average of the inlet and outlet temperatures.
We now have all the data needed to obtain UA. The numerical inversion is carried out by calling subroutine SolveRegulaFalsi. This is a general utility routine for finding the zero of a function. In this case it finds the UA that will zero the residual function – the difference between the design coil load and the coil output divided by the design coil load. The residual is calculated in the function SimpleHeatingCoilUAResidual.
Coil:Heating:Steam Sizing[LINK]
The sizing is done in subroutine SizeSteamCoil.
Maximum Steam Flow Rate[LINK]
System Coils[LINK]
The maximum steam volumetric flow rate is calculated using:
The steam density ( ) is for saturated steam at 100°C (101325.0 Pa) and hfg is the latent heat of vaporization of water at 100°C (101325.0 Pa). Cp,w is the heat capacity of saturated water (condensate) at 100°C (101325.0 Pa) and is the Degree of Subcooling defined in the Coil:Heating:Steam object input. The design coil load Loadcoil,des is calculated from:
The design air mass flow rate depends on the location of the coil (duct type). For duct type = main, the flow rate is set to airDesMainVolFlowsysMinSysAirFlowRatio. If the coil is in a cooling duct the flow rate is set to airDesCoolVolFlowsysMinSysAirFlowRatio. If the coil is in a heating duct the flow rate is set to airDesHeatVolFlowsys. If the coil is in any other kind of duct, the flow rate is set to airDesMainVolFlowsys.
For sizing, the design outlet air temperature (Tair,coil,des,out) is the Central Heating Design Supply Air Temperature specified in the Sizing:System object.
The design inlet air temperature depends on whether the coil is being sized for 100% outdoor air or minimum outdoor air flow (per 100% Outdoor Air in Heating input field in the Sizing:System object).
Tair,coil,des,in = HeatOutTempsys (the outdoor air temperature at the design heating peak)
Tair,coil,des,in =Fracoa HeatOutTempsys + (1. Fracoa)HeatRetTempsys(see Table 39. System Sizing Data)
Zone Coils[LINK]
If the coil is part of an AirTerminal:SingleDuct:* unit (e.g., AirTerminal:SingleDuct:ConstantVolume:Reheat, AirTerminal:SingleDuct:VAV:Reheat, AirTerminal:SingleDuct:SeriesPIU:Reheat, etc.), the maximum steam flow rate is set equal to the terminal unit’s maximum steam flow rate. Otherwise (e.g., the zone-level coil is part of ZoneHVAC:PackagedTerminalAirConditioner, ZoneHVAC:UnitVentilator, ZoneHVAC:UnitHeater or ZoneHVAC:VentilatedSlab) the calculation is similar to that at the system level. A design load is calculated:
where:
= DesHeatMassFlowzone (see Table 38. Zone Sizing Data)
Tair,coil,des,in = DesHeatCoilInTempzone (see Table 38)
Tair,coil,des,out = HeatDesTempzone (user input from Sizing:Zone object)
= Specific heat of air (evaluated at the average of inlet and outlet air temperatures, and at the zone heating design supply air humidity ratio HeatDesHumRatzone [user input from Sizing:Zone object])
The terms in the denominator of this equation (ρsteam, hfg, etc.) are evaluated in the same way as described above for steam System Coils.
Sizing of Gas and Electric Heating Coils[LINK]
The sizing calculation is done in subroutine SizeHeatingCoil in module HeatingCoils.
Nominal Capacity of the Coil[LINK]
System Coils[LINK]
The value is obtained from the system design array.
Capnom= HeatCapsys
Zone Coils[LINK]
The capacity is calculated from the design coil inlet and outlet conditions.
If the coil is not part of an induction unit then obtain the coil inlet temperature from the zone design data array;
Tin,air= DesHeatCoilInTempzone
If the coil is part of an induction unit take into account the induced air:
Fracminflow=MinFlowFraczone
Tin,air= DesHeatCoilInTempzone Fracminflow +
ZoneTempAtHeatPeakzone(1 Fracminflow)
Tout,air=HeatDesTempzone
Wout,air= HeatDesHumRatzone
Qcoil,des=Cp,air DesHeatMassFlowzone(Tout,airTin,air)
Here cp,air is calculated at the outlet humidity and the average of the inlet and outlet temperatures.
DX Coil Sizing[LINK]
The sizing calculations are done in subroutine SizeDXCoil in module DXCoils. This section covers the sizing of the objects
Coil:Cooling:DX:SingleSpeed
Coil:Heating:DX:SingleSpeed
Coil:Cooling:DX:TwoSpeed
Rated Air Volume Flow Rate[LINK]
System Coils[LINK]
The rated air flow rate is obtained from the system design array.
Zone Coils[LINK]
The rated air flow rate is the maximum of the heating and cooling design flow rates from the zone design array.
Rated Total Cooling Capacity[LINK]
System Coils[LINK]
The rated cooling capacity is obtained by dividing the peak cooling capacity by the Cooling Capacity Modifier Curve evaluated at peak mixed wetbulb and outdoor drybulb temperatures.
Tmix= CoolMixTempsys
Wmix=CoolMixHumRatsys
Tsup=CoolSupTempsys
Wsup=CoolSupHumRatsys
Toutside=CoolOutTempsys
air=PsyRhoAirFnPbTdbW(pair,std, Tmix,Wmix)
hmix= PsyHFnTdbW(Tmix,Wmix)
hsup= PsyHFnTdbW(Tsup,Wsup)
Tmix,wb= PsyTwbFnTdbWPb(Tmix,Wmix, pair,std)
CapModFac=CurveValue(CCapFTemp,Tmix,wb,Toutside)
CCaprated=CCappeak CapModFac
We check that the design volume flow per total capacity is within the prescribed range:
If FlowCapRatio < FlowCapRatiomin then
If FlowCapRatio > FlowCapRatiomax then
where
FlowCapRatiomin = 0.00004027 m3/s per watt (300 cfm/ton)
And
FlowCapRatiomax= 0.00006041 m3/s per watt (450 cfm/ton)
The sizing calculation for DX cooling coils for 100% dedicated outdor air system (DOAS) are identical to regular DX cooling coils. However, they operate operate at different flow to capacity ratio ranges and are within the prescribed range below:
FlowCapRatiomin = 0.00001677 m3/s per Watt (125 cfm/ton)
And
FlowCapRatiomax= 0.00003355 m3/s per Watt (250 cfm/ton)
Zone Coils[LINK]
The rated cooling capacity for zone coils is calculated in the same manner as for system coils.
Tmix= DesCoolCoilInTempzone
Wmix= DesCoolCoilInHumRatzone
Tsup= CoolDesTempzone
Wsup= CoolDesHumRatzone
Toutside=Toutside,desday,peak
air=PsyRhoAirFnPbTdbW(pair,std, Tmix,Wmix)
hmix= PsyHFnTdbW(Tmix,Wmix)
hsup= PsyHFnTdbW(Tsup,Wsup)
Tmix,wb= PsyTwbFnTdbWPb(Tmix,Wmix, pair,std)
CapModFac=CurveValue(CCapFTemp,Tmix,wb,Toutside)
CCaprated=CCappeak CapModFac
We check that the design volume flow per total capacity is within the prescribed range:
If FlowCapRatio < FlowCapRatiomin then
If FlowCapRatio > FlowCapRatiomax then
where
FlowCapRatiomin = 0.00004027 m3/s per watt (300 cfm/ton)
And
FlowCapRatiomax= 0.00006041 m3/s per watt (450 cfm/ton)
We check the design flow to the total cooling capacity rato for dedicated zone outdoor unit DX cooling coils to be within the limits prescribed below:
FlowCapRatiomin = 0.00001677 m3/s per Watt (125 cfm/ton)
And
FlowCapRatiomax= 0.00003355 m3/s per Watt (250 cfm/ton)
Rated Total Heating Capacity[LINK]
For Coil:Heating:DX:SingleSpeed the rated heating capacity is set equal to the cooling capacity.
Rated SHR[LINK]
The rated sensible heat ratio is calculated to be the sensible cooling (from rated inlet conditions to user specified supply conditions) divided by the total cooling (from rated inlet to specified supply).
Tin,rated= 26.6667 oC (80 oF)
Win,rated= 0.01125 (corresponds to 80 oF drybulb, 67 oF wetbulb)
Cp,air= PsyCpAirFnWTdb(Win,rated, Tin,rated)
For system coils
Tsup=CoolSupTempsys
Wsup=CoolSupHumRatsys
For zone coils
Tsup= CoolDesTempzone
Wsup= CoolDesHumRatzone
Then
hrated= PsyHFnTdbW(Tin,rated, Win,rated)
hsup= PsyHFnTdbW(Tsup, Wsup)
hrated,sup=hratedhsup
Qsrated,sup=Cp,air(Tin,ratedTsup)
SHRrated=Qsrated,suphrated,sup
Evaporative Condenser Air Volume Flow Rate[LINK]
The evaporative condenser air volume flow rate (m3/s) is set to 0.000114 m3/s per watt (850 cfm/ton) times the total rated cooling capacity.
Evaporative Condenser Air Volume Flow Rate, Low Speed[LINK]
The evaporative condenser air volume flow rate, low speed (m3/s) is set to 1/3 times 0.000114 m3/s per watt (850 cfm/ton) times the total rated cooling capacity.
Evaporative Condenser Pump Rated Power Consumption[LINK]
The evaporative condenser pump rated power consumption is set equal to the total cooling capacity times 0.004266 watts pump power per watt capacity (15 W/ton).
Evaporative Condenser Pump Rated Power Consumption, Low Speed[LINK]
The evaporative condenser pump rated power consumption, low speed, is set equal to 1/3 times the total cooling capacity times 0.004266 watts pump power per watt capacity (15 W/ton).
Rated Air Volume Flow Rate, low speed[LINK]
The rated air volume flow rate, low speed, is set equal to 1/3 times the full rated air volume flow rate.
Rated Total Cooling Capacity, Low Speed[LINK]
The rated total cooling capacity, low speed, is set equal to 1/3 times the full rated total cooling capacity.
Rated SHR, low speed[LINK]
The rated sensible heat ratio, low speed, is set equal to the full speed SHR.
Resistive Defrost Heater Capacity[LINK]
For the heat pump the resistive defrost heat capacity is set equal to the cooling capacity.
DX MultiSpeed Coil Sizing[LINK]
The sizing calculations are done in subroutine SizeDXCoil in module DXCoils. This section covers the sizing of the objects
The rated air volume flow rate, rated total cooling capacity, rated heating capacity, rated SHR, evaporative condenser air volume flow rate, evaporative condenser pump rated power consumption at the highest speed are sized in the same ways as DX Coil Sizing.
After the sizes are determined at the highest speed, the sizes in the rest of speeds are assumed to
where
Valuen= Any autosizable variable at Speed n, except SHR
SHRn = SHRNumberOfSpeed
n= Speed Index number from 1 to NumberOfSpeed-1
NumberOfSpeed= The highest speed number
Coil:Cooling:DX:VariableSpeed Sizing[LINK]
For the variable-speed DX cooling coil, we specify a nominal speed level. During the sizing calculation, the Rated Total Cooling Capacity at the Selected Nominal Speed Level is determined in the same way as the Coil:Cooling:DX:SingleSpeed object. If the user chooses to autosize the Rated Air Volume Flow Rate, the flow rate, as compared to the Rated Total Cooling Capacity, is sized to have the same ratio as the air volume flow rate to the total cooling capacity at the nominal speed, of the Reference Unit. The sensible heat transfer rate is not allowed for auto-sizing, instead, it is a function of the rated air flow, rated total cooling capacity and the Reference Unit SHR at the nominal speed level. The default nominal speed level is the highest speed. However, the model allows the user to select a nominal speed level rather than the highest.
Rated Total Cooling Capacity
The calculation for coil operating temperatures (inlet and outlet) are identical to that done for Coil:Cooling:DX:SingleSpeed. The calculations for air enthalpy are similar to that done for Coil:Cooling:DX:SingleSpeed. The difference is in calculating the total cooling capacity temperature modifier function at the selected nominal speed level, as below:
where
WBi = wet-bulb temperature of the air entering the cooling coil, °C
DBo = condenser entering air temperature, °C
a-f = regression curve-fit coefficients.
If the entering air enthalpy is less than the exiting air enthalpy, a reference value of 48,000 J/kg is used as the entering air enthalpy. If the TotCapTempModFac calculation above yields 0 as the result, a value of 1 is used in the following calculation. If the rated air mass flow rate is determined to be less than a very small flow value (0.001 kg/s) or the capacity calculated here is less than 0, the coil total cooling capacity is set equal to 0.
If Hin > Hout Then
Else
End If
The other sizing procedures, e.g. evaporative condenser pump, etc., are the same as Coil:Cooling:DX:SingleSpeed.
Coil:Heating:DX:VariableSpeed Sizing[LINK]
For the variable-speed DX heating coil, we specify a nominal speed level. During the sizing calculation, the Rated Heating Capacity at the Selected Nominal Speed Level should be the same as the total cooling capacity of its corresponding cooling coil, which has to be sized first. The default nominal speed level will be the highest speed. However, the model allows the user to select a nominal speed level rather than the highest. If the user chooses to autosize the Rated Air Volume Flow Rate, the flow rate, as compared to the Rated Heating Capacity, is sized to have the same ratio as the air volume flow rate to the heating capacity at the nominal speed, of the Reference Unit. The other sizing procedures are the same as Coil:Heating:DX:SingleSpeed.
Pump Sizing[LINK]
The loop pumps’ autosizable inputs are nominal volumetric flow rate and nominal power consumption. We have
Efftot=EffmotEffimpeller
The motor efficiency is an input. Since we need the total efficiency to calculate the nominal power consumption we assume an impeller efficiency of 0,78 for purposes of sizing.
Rated Volumetric Flow Rate[LINK]
This is just set equal to the design loop demand obtained from summing the needs of the components on the demand side of the loop.
Rated Power Consumption[LINK]
Hnom, the nominal head, is an input.
Electric Chiller Sizing[LINK]
Generally chillers will need nominal cooling capacity, evaporator flow rate and condenser flow rate. All 3 quantities can be straightforwardly obtained using the user specified loop sizing data and the loop design flow rates.
All chillers on a loop are sized to meet the full loop load. If there are multiple chillers on a loop that call for autosizing, they will all be assigned the same cooling capacity and evaporator flow rate.
Nominal Cooling Capacity[LINK]
where
Cp,w is the specific heat of water at 5 oC;
w is the density of water at standard conditions (5.05 oC);
Tloop,des is the chilled water loop design temperature rise;
is the loop design volumetric flow rate.
Design Evaporator Volumetric Water Flow Rate[LINK]
Design Condenser Volumetric Water Flow Rate[LINK]
where
Cp,w is the specific heat of water at design condenser inlet temperature;
w is the density of water at standard conditions (5.05 oC);
Tloop,des is the chilled water loop design temperature rise;
COPchiller,nom is the chiller nominal COP.
Boiler Sizing
Generally boilers will need nominal heating capacity and rate. Both quantities can be straightforwardly obtained using the user specified loop sizing data and the loop design flow rates.
All boilers on a loop are sized to meet the full loop load. If there are multiple boilers on a loop that call for autosizing, they will all be assigned the same heating capacity and flow rate.
Nominal Capacity[LINK]
where
Cp,w is the specific heat of water at the boiler design outlet temperature;
w is the density of water at standard conditions (5.05 oC);
Tloop,des is the hot water loop design temperature decrease;
is the loop design volumetric flow rate.
Design Evaporator Volumetric Water Flow Rate[LINK]
Plant Heat Exchanger Sizing[LINK]
The sizing of plant heat exchanger component (object: HeatExchanger:FluidToFluid) involves determining design flow rates for both sides, a UA value, and a nominal capacity for reporting. The component has a sizing factor for fine control and uses the design temperatures defined in the Sizing:Plant object.
The Loop Supply Side design flow rate, , is set equal to the design flow rate for that loop, multiplied by the component sizing factor, .
The Loop Demand Side design flow rate, , is set equal to the Loop Supply Side design flow rate.
The design heat transfer capacity and UA for the heat exchanger are calculated using the design temperatures for the two plant loops. The loop design temperature difference for the Loop Supply Side, , is used to determine a nominal capacity.
A loop-to-loop design temperature difference, , is determined depending on the nature of the plant loop connected to the Loop Supply Side. The Sizing:Plant object includes classifications for the type of loop that include Heating, Steam, Cooling, or Condenser. For Cooling and Condenser loop types, the loop design temperature difference is added to the design exit temperature for the Loop Supply Side, . For Heating and Stem loop types, the loop design temperature difference is subtracted from the design exit temperature. This adjusted supply side temperature is then compared to the design exit temperature for the Loop Demand Side, .
(Cooling, Condenser)
(Heating, Steam)
The UA (U-Factor Time Area Value) is determined by assuming that the target capacity can be delivered for the loop-to-loop temperature difference which after substituting and rearranging becomes:
A nominal capacity for the heat exchanger is determined from the design flow rates and UA (regardless of if they were automatically sized or input by the user) and the expected operating temperatures of the two loops. The loop operating temperatures are obtained from the input in Sizing:Plant object if it is present for that loop. If no Sizing:Plant is present then the loop’s overall setpoint is used (if the loop’s load scheme is DualSetpointDeadband then the average of the high and low setpoints is used). The full heat exchanger model is then calculated for the maximum loop flow rates and expected loop temperatures as inlets to the heat exchanger. The absolute value for the model result for heat transfer rate is then used as the capacity of the heat exchanger. This capacity is reported and may be used for controls based on operation scheme.
Humidifier Sizing[LINK]
The rated power, or nominal electric power input of an Electric Steam Humidifier (Humidifier:Steam:Electric) is calculated from user specified rated capacity (m3/s) and the enthalpy change of the water from a reference temperature (20.0°C) to saturated steam at 100.0°C. Autosizing procedure assumes that electrical heating element in the humidifier heat the water from the reference temperature and generate saturated steam at 100°C, and electric to thermal energy conversion efficiency of 100.0%.
Rated Power[LINK]
where
Cp,w is the specific heat of water at average temperature ((100+20)/2 = 60.0 °C), (J/kgK);
w is the density of water at standard conditions (5.05 °C);
Tw is the sensible temperature rise of water (100.0 – 20.0=80.0 °C);
is the rated capacity of the humidifier in volumetric flow rate.
hfg is the latent heat of vaporization of water at 100.0°C, (J/kg);
Cooling Tower Sizing[LINK]
The quantities needed to autosize a cooling tower include the design water flow rate, the nominal fan power and air flow rate, and the tower UA. This data may be need to be given at more than one operating point:, for instance – high speed fan, low speed fan and free convection.
EnergyPlus provides two input choices: the user can input the design water flow rate and tower UA at each operating point or the tower nominal capacity (and let the program calculate the water flow rate and UA). Choice of input method will affect the sizing calculations in ways noted below.
Design Water Flow Rate[LINK]
If Tower Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate then
If Tower Performance Input Method = NominalCapacity then
where 5.38210-08 is m3/s per watt corresponds to the rule-of-thumb of sizing the tower flow rate at 3 gallons per minute per ton. For the CoolingTower:VariableSpeed:Merkel model with NominalCapacity input method, the user can input the value used to scale design water flow rate from nominal capacity and the default is 5.38210-08 m3/s/W.
Fan Power at Design Air Flow Rate[LINK]
The nominal fan power is sized to be 0.0105 times the design load.
If Tower Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate then
where
Cp,w is the specific heat of water at the condenser loop design exit temperature;
w is the density of water at standard conditions (5.05 oC);
Tloop,des is the condenser water loop design temperature rise;
Finally
For the CoolingTower:VariableSpeed:Merkel model, the design fan power is determined using a scaling factor, in units of Watts per Watt, that can be input by the user. The default value is 0.0105 which is the same as above.
Design Air Flow Rate[LINK]
We assume a fan efficiency of 0.5 and a fan pressure rise of 190 Pascals. Then
where
air is the density of air at standard conditions.
For the CoolingTower:VariableSpeed:Merkel model, the design air flow rate is determined from the nominal capacity using a scaling factor, ,in units of m3/s/W. The default value is 2.76316*10-5. When the input field is left blank, the default is used as follows
where, is the standard barometric pressure for the location’s elevation.
When the input field is filled with a hard value, the pressure scaling is not used
Tower UA Value at Design Air Flow Rate[LINK]
To obtain the UA of the tower, we specify the model inputs (other than the UA) at design conditions and the design tower load that the tower must meet. Then we numerically invert the tower model to solve for the UA that will enable the tower to meet the design tower load given the specified inputs.
The design tower load is:
for Tower Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate
for Tower Performance Input Method = NominalCapacity
(to allow for compressor heat)
Where, is the ratio of actual heat rejection capacity to nominal capacity. This ratio is available as a user input with a default value of 1.25 (to allow for compressor heat).
Then we assign the inputs needed for the model.
Tin,air=35 oC (95 oF design air inlet temperature)
Tin,air,wb=25.6 oC (78 oF design air inlet wetbulb temperature)
Win is calculated from the entering air drybulb and wetbulb.
The inlet water mass flow rate is just the design volumetric flow rate times the density of water.
The inlet water temperature is set slightly differently for the 2 input methods. For
UFactorTimesAreaAndDesignWaterFlowRate
Tin,water=Tloop,exit,desTloop,des
NominalCapacity
Tin,water=35 oC (95 oF design inlet water temperature).
We now have all the data needed to obtain UA. The numerical inversion is carried out by calling subroutine SolveRegulaFalsi. This is a general utility routine for finding the zero of a function. In this case it finds the UA that will zero the residual function – the difference between the design tower load and the tower output divided by the design tower load. The residual is calculated in the function SimpleTowerUAResidual.
Air Flow Rate at Low Fan Speed[LINK]
The nominal air flow rate at low fan speed is set to a fraction of the full speed air flow rate. The fraction is available for user input in the field called Low Fan Speed Air Flow Rate Sizing Factor. The default is 0.5.
Fan Power at Low Fan Speed[LINK]
The fan power at low fan speed is set to a fraction of the fan power at full speed. The fraction is available for user input in the field called Low Fan Speed Fan Power Sizing Factor. The default is 0.16.
Tower UA Value at Low Fan Speed[LINK]
For Tower Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate the low speed UA is set to a fraction of the full speed UA. The fraction is available for user input in the field called Low Fan Speed U-Factor Times Area Sizing Factor. The default is 0.6. For Tower Performance Input Method = NominalCapacity the low speed UA is calculated in the same manner as the full speed UA using instead of .
Air Flow Rate in Free Convection Regime[LINK]
The free convection air flow rate is set to a fraction of the full air flow rate. The fraction is available for user input in the field called Free Convection Regime Air Flow Rate Sizing Factor. The default is 0.1.
Tower UA Value in Free Convection Regime[LINK]
For Tower Performance Input Method = UA and Design Water Flow Rate the low speed UA is set to a fraction of the full speed UA. The fraction is available for user input in the field called Free Convection U-Factor Times Area Value Sizing Factor. The default is 0.1. For Tower Performance Input Method = NominalCapacity the low speed UA is calculated in the same manner as the full speed UA using instead of .
Fluid Cooler Sizing[LINK]
The quantities needed to autosize a fluid cooler include the design water flow rate, the nominal fan power, air flow rate, and the fluid cooler UA. This data may need to be given at more than one operating point:, for instance – high speed fan and low speed fan.
EnergyPlus provides two input choices: the user can input the design water flow rate and fluid cooler UA at each operating point or the fluid cooler nominal capacity and the water flow rate (and let the program calculate UA). Choice of input method will affect the sizing calculations in ways noted below.
Design Water Flow Rate[LINK]
The design water flow rate is sized as follows
Fan Power at Design Air Flow Rate[LINK]
The nominal fan power is sized to be 0.0105 times the design load.
If Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate then
where
Cp,w is the specific heat of water at the condenser loop design exit temperature;
w is the density of water at standard conditions (5.05 oC);
Tloop,des is the condenser water loop design temperature rise;
Finally
Elseif ****Performance Input Method = NominalCapacity then**[LINK]
Where
Design Air Flow Rate[LINK]
is provided by the user.
Where,
Tin,water= Design entering water temperature provided by the user
Tin,air= Design air inlet temperature provided by the user
Fluid cooler UA Value at Design Air Flow Rate[LINK]
To obtain the UA of the fluid cooler, we specify the model inputs (other than the UA) at design conditions and the design fluid cooler load that the fluid cooler must meet. Then we numerically invert the fluid cooler model to solve for the UA that will enable the fluid cooler to meet the design fluid cooler load given the specified inputs.
The design fluid cooler load is:
is provided by the user.
Then we assign the inputs needed for the model.
Tin,air= Design air inlet temperature provided by the user
Tin,air,wb= Design air inlet wetbulb temperature provided by the user
Win is calculated from the entering air drybulb and wetbulb.
The inlet water mass flow rate is just the design entering volumetric flow rate times the density of water.
The inlet water temperature is set slightly differently for the 2 input methods. For
We now have all the data needed to obtain UA. The numerical inversion is carried out by calling subroutine SolveRegulaFalsi. This is a general utility routine for finding the zero of a function. In this case it finds the UA that will zero the residual function – the difference between the design fluid cooler load and the fluid cooler output divided by the design fluid cooler load. The residual is calculated in the function SimpleFluidCoolerUAResidual.
Air Flow Rate at Low Fan Speed[LINK]
The nominal air flow rate at low fan speed is set to a fraction of the full speed air flow rate. The fraction is available for user input in the field called Low Fan Speed Air Flow Rate Sizing Factor. The default is 0.5.
Fan Power at Low Fan Speed[LINK]
The fan power at low fan speed is set to a fraction of the fan power at full speed. The fraction is available for user input in the field called Low Fan Speed Fan Power Sizing Factor. The default is 0.16.
Fluid cooler UA Value at Low Fan Speed[LINK]
For Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate the low speed UA is set to a fraction of the full speed UA. . The fraction is available for user input in the field called Low Fan Speed U-Factor Times Area Sizing Factor. The default is 0.6. For Performance Input Method = NominalCapacity the low speed UA is calculated in the same manner as the full speed UA using instead of .
Evaporative Fluid cooler Sizing[LINK]
The quantities needed to autosize an evaporative fluid cooler include the design water flow rate, the nominal fan power, air flow rate, and the fluid cooler UA. This data may need to be given at more than one operating point:, for instance – high speed fan and low speed fan.
EnergyPlus provides three input choices: the user can input the design water flow rate and fluid cooler UA at each operating point (UFactorTimesAreaAndDesignWaterFlowRate) or the fluid cooler design capacity and the water flow rate and let the program calculate UA (UserSpecifiedDesignCapacity) or only the fluid cooler design capacity and let the program calculate UA and the water flow rate (StandardDesignCapacity). Choice of input method will affect the sizing calculations in ways noted below.
Design Water Flow Rate[LINK]
If Performance Input Method = StandardDesignCapacity then
Else
where 5.38210-08 is m3/s per watt corresponds to the rule-of-thumb of sizing the fluid cooler flow rate at 3 gallons per minute per ton.
Fan Power at Design Air Flow Rate[LINK]
The design fan power is sized to be 0.0105 times the design load.
If Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate then
where
Cp,w is the specific heat of water at the condenser loop design exit temperature;
w is the density of water at standard conditions (5.05 oC);
Tloop,des is the condenser water loop design temperature rise;
Finally
Else[LINK]
Where
is the design capacity provided by the user for the other two performance input methods
Design Air Flow Rate[LINK]
We assume a fan efficiency of 0.5 and a fan pressure rise of 190 Pascals. Then
where
air is the density of air at standard conditions.
Fluid cooler UA Value at Design Air Flow Rate[LINK]
To obtain the UA of the evaporative fluid cooler, we specify the model inputs (other than the UA) at design conditions and the design fluid cooler load that the fluid cooler must meet. Then we numerically invert the fluid cooler model to solve for the UA that will enable the fluid cooler to meet the design fluid cooler load given the specified inputs.
The design fluid cooler load is:
(to allow for compressor heat)
Then we assign the inputs needed for the model.
Tin,air= 35 oC (95 oF design air inlet temperature)
Tin,air,wb= 25.6 oC (78 oF design air inlet wetbulb temperature)
Win is calculated from the entering air drybulb and wetbulb.
Where, is the ratio of actual heat rejection capacity to nominal capacity. This ratio is available as a user input with a default value of 1.25 (to allow for compressor heat)
Then we assign the inputs needed for the model.
Tin,air= Design air inlet temperature provided by the user
Tin,air,wb= Design air inlet wetbulb temperature provided by the user
Win is calculated from the entering air drybulb and wetbulb.
The inlet water mass flow rate is just the design entering volumetric flow rate times the density of water.
The inlet water temperature is set slightly differently for the 3 input methods. For
We now have all the data needed to obtain UA. The numerical inversion is carried out by calling subroutine SolveRegulaFalsi. This is a general utility routine for finding the zero of a function. In this case it finds the UA that will zero the residual function – the difference between the design fluid cooler load and the fluid cooler output divided by the design fluid cooler load. The residual is calculated in the function SimpleEvapFluidCoolerUAResidual.
Air Flow Rate at Low Fan Speed[LINK]
The design air flow rate at low fan speed is set to a fraction of the full speed air flow rate. The fraction is available for user input in the field called Low Fan Speed Air Flow Rate Sizing Factor. The default is 0.5.
Fan Power at Low Fan Speed[LINK]
The fan power at low fan speed is set to a fraction of the fan power at full speed. The fraction is available for user input in the field called Low Fan Speed Fan Power Sizing Factor. The default is 0.16.
Fluid cooler UA Value at Low Fan Speed[LINK]
For Performance Input Method = UFactorTimesAreaAndDesignWaterFlowRate the low speed UA is set to a fraction of the full speed UA. The fraction is available for user input in the field called Low Fan Speed U-Factor Times Area Sizing Factor. The default is 0.6. For Performance Input Method = StandardDesignCapacity (and similarly for UserSpecifiedDesignCapacity method) the low speed UA is calculated in the same manner as the full speed UA using instead of .
Fan Coil Unit Sizing[LINK]
Fan Coil units are compound components: each unit contains a fan, hot water coil, chilled water coil and outside air mixer. The inputs that may need to be autosized are the nominal unit air flow rate, the maximum hot and chilled water flow rates, and the design outside air flow rate. The data needed for sizing the units is obtained from the zone design arrays and the user specified plant sizing input.
Maximum Air Flow Rate[LINK]
Maximum Outside Air Flow Rate[LINK]
Maximum Hot Water Flow[LINK]
Tcoil,in=DesHeatCoilInTempzone
Tcoil,out=HeatDesTempzone
where
cp,air is evaluated at the average of the inlet & outlet temperatures and the coil outlet humidity ratio.
Maximum Cold Water Flow[LINK]
Tcoil,in=DesColdCoilInTempzone
Tcoil,out=ColdDesTempzone
Wcoil,in= DesCoolCoilInHumRatzone
Wcoil,out= CoolDesHumRatzone
Hcoil,in= PsyHFnTdbW(Tcoil,in, Wcoil,in)
Hcoil,out= PsyHFnTdbW(Tcoil,out, Wcoil,out)
where
cp,air is evaluated at the average of the inlet & outlet temperatures and the coil outlet humidity ratio.
Window Air Conditioner Sizing[LINK]
Window air conditioners are compound components: each unit contains a fan, a DX coil and an outside air mixer. The inputs that may need to be autosized are the nominal unit air flow rate and the design outside air flow rate. The data needed for sizing the units is obtained from the zone design arrays.
Maximum Air Flow Rate[LINK]
Maximum Outside Air Flow Rate[LINK]
Unit Ventilator Sizing[LINK]
Unit ventilators are compound components: each unit contains an outdoor air mixer, a fan, a heating coil, and a cooling coil. The inputs that may need to be autosized are the maximum supply air flow rate and the maximum/minimum outside air flow rates. The data needed for sizing the units is obtained from the zone design arrays.
Maximum Air Flow Rate[LINK]
If both the cooling and heating coil are present, then:
If only the heating coil is present, then:
If only cooling coil is present, then:
If neither heating nor cooling coil is present, then:
Maximum Outside Air Flow Rate[LINK]
Minimum Outside Air Flow Rate[LINK]
Packaged Terminal Heat Pump Sizing[LINK]
Packaged terminal heat pumps are compound components: each unit contains a supply air fan, a DX cooling coil, a DX heating coil, a GAS or ELECTRIC supplemental heating coil, and an outside air mixer. The inputs that may need to be autosized are the supply air and outside air volumetric air flow rates during cooling operation, heating operation, and when no cooling or heating is needed. In addition, the maximum supply air temperature from the supplemental heater can also be automatically selected. The data needed for sizing the units are obtained from the zone design arrays.
Supply air volumetric flow rate during cooling operation[LINK]
Supply air volumetric flow rate during heating operation[LINK]
Supply air volumetric flow rate when no cooling or heating is needed[LINK]
Outside air volumetric flow rate during cooling operation[LINK]
Outside air volumetric flow rate during heating operation[LINK]
Outside air volumetric flow rate when no cooling or heating is needed[LINK]
Maximum supply air temperature from supplemental heater[LINK]
MultiSpeed Heat Pump Sizing[LINK]
MultiSpeed heat pumps are compound components: each unit contains a supply air fan, a multispeed DX cooling coil, a multispeed DX heating coil, and a GAS or ELECTRIC supplemental heating coil. The inputs that may need to be autosized are the supply air volumetric air flow rates during cooling operation, heating operation, and when no cooling or heating is needed. The data needed for sizing the units are obtained from the controlled zone design arrays.
Supply air volumetric flow rate during cooling operation at the highest speed[LINK]
Supply air volumetric flow rate during heating operation at the highest speed[LINK]
Supply air volumetric flow rate when no cooling or heating is needed[LINK]
where
ZoneFraction = Fraction of the total volume flow that goes through the controlling zone
Supply air volumetric flow rate during cooling operation at Speed n (1 to NumberOfSpeed-1)[LINK]
Supply air volumetric flow rate during heating operation at Speed n (1 to NumberOfSpeed-1)[LINK]
where
n= Speed Index number from 1 to NumberOfSpeed-1
NumberOfSpeed= The highest speed number
Single Duct Terminal Units[LINK]
These are all the EnergyPlus components whose names begin with “AirTerminal:SingleDuct:” (except for Cooled Beam units). This includes Uncontrolled, ConstantVolume:Reheat, VAV:NoReheat, VAV:Reheat, VAV:Reheat:VariableSpeedFan, VAV:HeatAndCool:NoReheat, VAV:HeatAndCool:Reheat, SeriesPIU:Reheat, ParallelPIU:Reheat, and ConstantVolume:FourPipeInduction. The inputs that may need to be autosized are the various maximum air flow rates through the unit, minimum air flow rates, and maximum hot water and/or chilled water flow rates if heating or cooling coils are present.
Note: all zone design flow rates and loads referenced below may have been altered by system sizing inputs. For instance, if the user specifies a Cooling Design Air Flow Method = Flow/System and specifies a Cooling Design Air Flow Rate the zone cooling design values will be altered to match the specified system flow rate.
Maximum Air Flow Rate[LINK]
Maximum Heating Air Flow Rate[LINK]
Maximum Primary and Secondary Air Flow Rates[LINK]
For the PIU terminal units, the maximum primary and secondary air flow rates are sized to the same value as the maximum total air flow rate.
Minimum Air Flow Rate[LINK]
Basically minimum air flow rates are sized to the ventilation air requirement. This may be more or less complicated.
For the PIU’s, the minimum primary air flow fraction is set to
.
For other VAV terminal units
where, Fracair,min corresponds to the minimum flow fraction of the teminal unit. This value is provided as user input, typically as the field “Zone Minimum Air Flow Fraction.” For the VAV terminals that allow scheduling minimum flow fraction (e.g., AirTerminal:SingleDuct:VAV:Reheat), there are two ways that Fracair,min can be determined. If a value is entered in the input field Constant Minimum Air Flow Fraction, then it is always used for Fracair,min. If the mimimum air flow fraction method is “Schedule” and the Constant Minimum Air Flow Fraction is left blank, then the program uses the average of the minimum and maximum values in the schedule for Fracair,min.
Fan On Flow Fraction[LINK]
For the parallel PIU, this is set to the minimum primary air flow fraction.
Max Hot Water Flow[LINK]
The coil load and max hot water flow rate are then:
where
cp,air is evaluated at the average of the inlet & outlet temperatures and the coil outlet humidity ratio.
The four-pipe induction unit sizes the heating coil differently: to meet the zone load rather than match the design zone supply temperature. The load on the hot water coil is then the zone load minus whatever the central system does.
where
Max Chilled Water Flow[LINK]
The chilled water flow for the four-pipe induction unit is sized analogously to the hot water flow.
Indirect Evaporative Cooler Sizing[LINK]
The model for the object called EvaporativeCooler:Indirect:ResearchSpecial has a field for the secondary fan flow rate that can be autosized.
Secondary Fan Flow Rate[LINK]
The secondary fan is not part of an airstream that is directly modeled in EnergyPlus. Because the primary side air flows can be autosized as part of the air system, it is convenent to also scale the size of the secondary flow. If the cooler is part of the main loop of a central air system, then the secondary fan flow rate is sized to equal to the main design flow rate.
If the cooler is part of the outdoor air path of a central air system, then the secondary fan flow rate is sized to be the maximum of either the design minimum outdoor air flow rate or one-half of the main design flow rate.
Documentation content copyright © 1996-2014 The Board of Trustees of the University of Illinois and the Regents of the University of California through the Ernest Orlando Lawrence Berkeley National Laboratory. All rights reserved. EnergyPlus is a trademark of the US Department of Energy.
This documentation is made available under the EnergyPlus Open Source License v1.0.