Chapter 29 : Humidity Charts and their Uses

Example 29.1 page no. 895

In [1]:
DBT = 90. ;			# Dry bulb temperature - [degree F]
WBT = 70. ;			# Wet bulb temperature - [degree F]

#Get point A using DBT & WBT. Following information is obtained from humidity chart, fig. E29.1
# Results
print '(a) The Dew point is located at point B or about 60 degree F, using constant humidity line.'
print ' (b) By interpolation between 40%% and 30%% RH , you can find point A is at 37%% relative humidity .'
print ' (c) You can read humidity from the righthand ordinate as 0.0112 lb H2O/lb dry air .'
print ' (d) By interpolation again between 14.0 cubic feet/lb and 14.5 cubic feet/lb lines , you can find humid volume to be 14.1 cubic feet/lb dry air.'
print ' (e) The enthalpy value of saturated air with WBT 70 degree F is 34.1 Btu/lb dry air .'
(a) The Dew point is located at point B or about 60 degree F, using constant humidity line.
 (b) By interpolation between 40%% and 30%% RH , you can find point A is at 37%% relative humidity .
 (c) You can read humidity from the righthand ordinate as 0.0112 lb H2O/lb dry air .
 (d) By interpolation again between 14.0 cubic feet/lb and 14.5 cubic feet/lb lines , you can find humid volume to be 14.1 cubic feet/lb dry air.
 (e) The enthalpy value of saturated air with WBT 70 degree F is 34.1 Btu/lb dry air .

Example 29.2 page no. 897

In [2]:
# Variables
DBT1 = 38 ;			# Initial dry bulb temperature - [degree C]
DBT2 = 86 ;			# Final dry bulb temperature - [degree C]
RH1 = 49 ;			# Relative humidity - [%]

#A is initial and B is final  point , see fig. E29.2 . Dew point is obtained graphically and it is 24.8 degree C,therefore
print 'The Dew point is unchanged in the process because humidity is unchanged, and it is located at 24.8 degree C.'

# Calculations
# Additional data is obtained from humidity chart , according to book data is as follows
A_Hsat = 90.0 ;			# Enthalpy of saturation at point A- [kJ/kg]
A_dH = -0.5 ;			#Enthalpy deviation-[kJ/kg]
A_Hact = A_Hsat + A_dH ;			# Actual enthalpy at point A -[kJ/kg]
B_Hsat = 143.3 ;			# Enthalpy of saturation at point B- [kJ/kg]
B_dH = -3.3 ;			#Enthalpy deviation -[kJ/kg]
B_Hact = B_Hsat + B_dH ;			# Actual enthalpy at point B -[kJ/kg]

			# Energy balance reduces to Q = del_H 
del_H = B_Hact - A_Hact ;			# Total change in enthalpy - [kJ/kg]
v = 0.91 ;			# Specific volume of moist air at point A -[cubic metre / kg]
Q = del_H/v ;			# Heat added per cubic metre of inital moist air -[kJ]

# Results
print ' Heat added per cubic metre of inital moist air is %.1f kJ.'%Q
The Dew point is unchanged in the process because humidity is unchanged, and it is located at 24.8 degree C.
 Heat added per cubic metre of inital moist air is 55.5 kJ.

Example 29.3 page no. 898

In [3]:
# Variables
DBT1 = 40 ;			# Initial dry bulb temperature - [degree C]
DBT2 = 27 ;			# Final dry bulb temperature - [degree C]

# Process is assumed to be adiabatic, therefore  wet bulb temperature is constant
WBT1 = 22 ;			# Initial wet bulb temperature - [degree C]
WBT2 = WBT1 ;			# Final wet bulb temperature - [degree C]

# Calculations
#A is initial and B is final  point , see fig. E29.3b . Humidity is obtained from humidity chart, according to book the respective humidities are as follows
H_B = 0.0145 ;			# Humidity at point B -[kg H2O/kg dry air]
H_A = 0.0093 ;			# Humidity at point A -[kg H2O/kg dry air]
Diff = H_B - H_A ;			# Moisture added in kg per kilogram of dry air going through humidifier -[kg H2O/kg dry air] 

# Results
print 'Moisture added per kilogram of dry air going through humidifier is %.4f kg H2O.'%Diff
Moisture added per kilogram of dry air going through humidifier is 0.0052 kg H2O.

Example 29.4 page no. 900

In [4]:
# Variables
c_bl = 8.30 * 10**6 ;			# Capacity of blower - [cubic feet/hr]
DBT_A = 80 ;			# Initial dry bulb temperature of moist air - [degree F]
DBT_B = 95 ;			# Final dry bulb temperature of exit air - [degree F]
WBT_A = 65 ;			# Initial wet bulb temperature of moist air - [degree F]
WBT_B = 90 ;			# Final wet bulb temperature of exit air - [degree F]
T1_H2O = 120 ;			# Initial temperature of water - [degree F]
T2_H2O = 90 ;			# Final temperature of water - [degree F]

#A is initial and B is final  point , see fig. E29.4 . Humidity is obtained from humidity chart, according to book the respective humidities are as follows
H_A = 0.0098; 			# Humidity of air at A - [lb H2O / lb dry air]
H1_A = 69 ;			# Humidity of air at A - [grains H2O / lb dry air]

# Calculations
delH_A = 30.05 - 0.12; 			# Enthalpy of entering air -[Btu/lb dry air]
v_A = 13.82 ;			# Specific volume of entering air -[cubic feet/lb dry air]
H_B = 0.0297;			# Humidity of air at B - [lb H2O / lb dry air]
H1_B = 208 ;			# Humidity of air at B - [grains H2O / lb dry air]
delH_B = 55.93 - 0.10  ;			# Enthalpy of exit air -[Btu/lb dry air]
v_B = 14.65 ;			# Specific volume of exit air -[cubic feet/lb dry air]
Eq_A = c_bl /v_A ;			# Entering dry air equivalent of capacity of blower -[lb dry air]

# Reference temperature for water stream is 32 degree F 
del_H1_H2O = 1*(T1_H2O - 32) ;			#Enthalpy of entering water -[Btu/lb H2O]
del_H2_H2O = 1*(T2_H2O - 32) ;			#Enthalpy of exit water -[Btu/lb H2O]
tr_H2O = H_B - H_A ;			# Transfer of water to air -[lb H2O / lb dry air] 

# Energy balance around the entire process yields W -
W = (delH_B - del_H2_H2O*tr_H2O - delH_A)/(del_H1_H2O - del_H2_H2O) ;			# Water entering tower - [lb H2O/lb dry air]
W1 = W - tr_H2O ;			# Water leaving tower -[lb H2O/lb dry air]
Total_W1 = W1* Eq_A ;			# Total water leaving tower -[lb/hr]

# Results
print 'Amount of water cooled per hour is %.2e lb/hr .'%Total_W1
Amount of water cooled per hour is 4.83e+05 lb/hr .

Example 29.5 page no. 902

In [5]:
# Variables
W = 100 ;			# Amount of entering water -[lb/hr]
H1 = .020 ;			# Humidity of entering air -[lb H2O / lb dry air]
T1 = 155 ;			#Temperature of entering air -[degree F]
DTB = 110 ;			# Dry bulb temperature of exit air -[degree F]
WTB = 100 ;			# Wet bulb temperature of exit air -[degree F]

# Additional data is obtained from humidity chart, it is as follows
H2 = .0405 ;			#Humidity of exit air -[lb H2O / lb dry air]

# Calculations
del_H = H2 - H1 ;			# Change in humidity betwween two states -[lb H2O / lb dry air]
air_in = (W*1.02)/(del_H * 1)   ;			# Amount of wet air entering -[lb]

mol_air = 29. ;			# Molecular wt. of air -[lb]
Ref_T = 32 + 460. ;			# Reference temperature - [ degree R]
gi_T = 90 + 460.; 			# Given temperature on which calculation is based - [degree R] 
air = (air_in *359*gi_T)/( mol_air*Ref_T) ;			# Air consumption of dryer at 90 degree F and 1 atm -[cubic feet]

# Results
print 'Air consumption of dryer at 90 degree F and 1 atm  is %.2e cubic feet .'%air
Air consumption of dryer at 90 degree F and 1 atm  is 6.89e+04 cubic feet .
In [5]: