Engineering Reference — EnergyPlus 9.2

<< Prev | Table of Contents | Next >>

Air System Humidifiers[LINK]

Overview[LINK]

Air system humidifiers are components that add moisture to the supply air stream. They fall into 2 broad categories: spray type humidifiers which act like direct evaporative coolers, cooling the supply air as well as humidifying it; and dry steam humidifiers, which humidify the supply air stream while causing almost no change to the supply air stream temperature. The EnergyPlus electric and gas fired steam humidifier uses electrical energy and thermal energy, respectively, to convert ordinary tap water to steam which it then injects into the supply air stream by means of a blower fan. The actual electric dry steam unit might be an electrode-type humidifier or a resistance-type humidifier.

Electric and Gas Steam Humidifier[LINK]

The electric and gas steam humidifier models (object names: Humidifier:Steam:Electric and Humidifier:Steam:Gas) are based on moisture and enthalpy balance equations plus standard psychrometric relationships. The approach is similar to that taken in the ASHRAE HVAC 2 Toolkit, page 4-112 (ASHRAE 1993). EnergyPlus contains its own module of psychrometric routines; the psychrometric theory and relations are given in the 2001 edition of ASHRAE Fundamentals, Chapter 6 (ASHRAE 2001). The model contains both an ideal controller and the component. The control model assumes that there is a minimum humidity setpoint on the component air outlet node. This setpoint is established by a setpoint manager described elsewhere.

Model[LINK]

The component model is a forward model: its inputs are its inlet conditions; its outputs are its outlet conditions and its energy consumption. The inputs are the temperature, humidity ratio, and mass flow rate of the inlet air stream, which are known; and the water addition rate (kg/s) which is determined by the controller. The moisture mass balance and psychometric calculations are identical for both gas and electric dry steam humidifiers. The only difference is how a heat source (electric or gas) is used to generate the steam.

Controller[LINK]

The controller first decides whether the humidifier is on or off. For the humidifier to be on:

  • the humidifier schedule value must be nonzero;

  • the inlet air mass flow must be greater than zero;

  • the inlet air humidity ratio must be less than the minimum humidity ratio setpoint.

If the humidifier is off, the water addition rate is set to zero. If the humidifier is on, the water addition rate needed to meet the humidity setpoint is calculated.

˙mawin+˙mw,add,needed=˙mawset

where:

˙ma is the the air mass flow rate (kg/s)

win is the inlet air humidity ratio (kg/kg)

˙mw,add,needed is the water addition rate needed to meet the setpoint (kg/s)

wset is the humidity ratio setpoint (kg/kg).

Equation [eq:AirHumidifierControllerWaterAdditionRate] is the moisture balance equation for the component. It is solved for ˙mw,add,needed (the other variables are known) which is passed to the humidifier component model as its desired inlet water addition rate.

Component[LINK]

The inputs to the component model are the air inlet conditions and mass flow rate and the water addition rate set by the controller. The outputs are the air outlet conditions. First the desired water addition rate is checked against component capacity.

˙mw,add,needed,max=Min(˙mw,add,Capnom)

where Capnom is the humidifier nominal capacity (kg/s), a user input.

If ˙mw,add,needed,max is zero, the outlet conditions are set to the inlet conditions and the water addition rate is set to zero. If the humidifier is scheduled on the component power consumption is set to the standby power consumption: Whum=Wstby. Otherwise Whum = 0.

If ˙mw,add,needed,max > 0, then the moisture and enthalpy balance equations are:

˙mawin+˙mw=˙mawout

˙mahin+˙mwhw=˙mahout

where:

˙mw is set equal to ˙mw,add,needed,max and then the above equations are solved for wout and hout

˙ma is the air mass flow rate (kg/s)

win is the inlet air humidity ratio (kg/kg)

˙mw is the inlet water addition rate (kg/s)

wout is the outlet air humidity ratio (kg/kg)

hin is the inlet air specific enthalpy (J/kg)

hw is the steam specific enthalpy = 2676125 J/kg at 100C

hout is the outlet air specific enthalpy (J/kg).

The outlet temperature is obtained from:

Tout=PsyHFnTdbW(hout,wout)

where:

Tout is the outlet air temperature (C)

PsyHFnTdbW is an EnergyPlus psychrometric function.

The humidity ratio at saturation at the outlet temperature is:

wout,sat=PsyWFnTdbRhPb(Tout,1.0,Patmo)

where:

Patmo is the barometric pressure (Pa)

1.0 is the relative humidity at saturation

PsyWFnTdbRhPb is an EnergyPlus psychrometric function.

IF woutwout,sat, then the outlet condition is below the saturation curve and the desired moisture addition rate can be met. ˙mw,add is set to ˙mw,add,needed,max and the calculation of outlet conditions is done. But if wout>wout,sat then it is assumed that this condition will be detected and the steam addition rate throttled back to bring the outlet conditions back to the saturation condition. We need to find the point where the line drawn between state 1 (inlet) and state 2 (our desired outlet) crosses the saturation curve. This will be the new outlet condition. Rather than iterate to obtain this point, we find it approximately by solving for the point where 2 lines cross: the first drawn from state 1 to state 2, the second from T1, w1,sat to T2, w2,sat; where:

T1 is the inlet temperature (C)

w2,sat is the humidity ratio at saturation at temperature T1 (kg/kg)

T2 is the desired outlet temperature (C)

w2,sat is the humidity ratio at saturation at temperature T2 (kg/kg).

The 2 lines are given by the equations:

w=w1+((w2w1)/(T2T1))(TT1)

w=w1,sat+((w2,satw1,sat)/(T2T1))(TT1)

Solving for the point (state 3) where the lines cross:

w3=w1+((w2w1)(w1,satw1))/(w2w2,sat+w1,satw1)

T3=T1+(w3w1)((T2T1)/(w2w1))

This point isn’t quite on the saturation curve since we made a linear approximation of the curve, but the temperature should be very close to the correct outlet temperature. We will use this temperature as the outlet temperature and move to the saturation curve for the outlet humidity and enthalpy. Thus, we set Tout = T3 and:

wout=PsyWFnTdbRhPb(Tout,1.0,Patmo)

hout=PsyHFnTdbW(Tout,wout)

where PsyHFnTdbW is an EnergyPlus psychrometric function. The water addition rate is set to:

˙mw,add=˙ma(woutwin)

We now have the outlet conditions and the adjusted steam addition rate for the case where the desired outlet humidity results in an outlet state above the saturation curve. The energy consumption of the electric and gas steam humidifiers is calculated separately.

The electric steam humidifier electric consumption is given by:

Whum=(˙mw,add/Capnom)Wnom+Wfan+Wstby

where:

Wfan is the nominal fan power (W), a user input

Wstby is the standby power (W), a user input.

The gas steam humidifier performance calculation is done for fixed and variable entering water temperature. The calculation procedure for fixed and variable entering water temperature are as follows.

Fixed Inlet WaterTemperature:[LINK]

The gas steam humidifier gas consumption rate for fixed entering water temperature is given by:

˙QNG=˙mw,add˙mcap,nomQNG,nom

The actual gas use rate accounting for gas fired humidifier thermal efficiency variation with part load ratio is given by:

QNG=˙QNGηratedηactual

ηactual=ηrated×EffModCurveValue(PLR)

PLR=˙QNGQNG,nom

where:

EffModCurveValue is the thermal efficiency modifier curve value as function of part load ratio. This curve is generated from manufacturer’s part load performance data

PLR is the part load ratio

QNG,nom is the nominal or rated gas use rate, (Watts)

QNG is the actual gas use rate, (Watts)

ηrated is the nominal or rated thermal efficiency of gas fired steam humidifier

ηactual is the actual thermal efficiency of gas fired steam humidifier accounting for part load performance.

Variable Inlet WaterTemperature:[LINK]

The gas use rate is determined from the theoretical gas input rate and actual thermal efficiency. The actual thermal efficiency is the rated thermal efficiency corrected for part load ratio operation. At steady state the gas use rate is given by:

QNG=˙mw(hfg+cp,w(100Tw,inlet))ηrated

PLR=˙QNGQNG,nom

ηactual=ηrated×EffModCurveValue(PLR)

QNG=˙QNGηratedηactual

where Tw,inlet is the temperature of water entering the gas steam humidifier(C). This value depends on the water source.

If the rated gas use rated input field is not autosized, then user specified thermal efficiency will be overridden with a value calculated from user specified rated gas use rate, nominal capacity (m3/s) and design conditions as follows:

ηrated=˙Vcap,nomρw(hfg+cp,wΔTw)QNG,nom

The gas steam humidifier requires electric power input to the blower fan and associated control units. The auxiliary electric power input rate of the gas steam humidifier is given by:

˙Vcons=˙mw,add/ρw

where:

is the nominal fan power (W), a user input

is the control electric power (W), a user input.

The water consumption rate, in m3/s, for electric and steam humidifier at a reference temperature of 5.05C is given by:

where:

is the water consumption rate (m3)

ρw is the density of water (998.2 kg/m3).

References[LINK]

ASHRAE. 1993. HVAC 2 Toolkit: A Toolkit for Secondary HVAC System Energy Calculations. Atlanta: American Society of Heating, Refrigerating and Air-Conditioning Engineers, Inc.

ASHRAE. 2001. 2001 ASHRAE Handbook Fundamentals. Atlanta: American Society of Heating, Refrigerating and Air-Conditioning Engineers, Inc.