A cooling tower operating with 95°F entering water, 85°F leaving water, and 78°F wet-bulb temperature achieves only 58.8% efficiency—far below the 70–75% typical for well-designed systems. This gap reveals how ambient wet-bulb conditions fundamentally constrain evaporative cooling, regardless of water flow rates or tower size.
The Formula: Breaking Down Wet-Bulb Limited Performance
Cooling tower efficiency isn't about absolute temperature drops but about how close the system approaches the thermodynamic wet-bulb limit. The formula uses three temperature measurements: entering hot-water temperature (T_hot,in), leaving cold-water temperature (T_cold,out), and entering air wet-bulb temperature (T_wb,in). Each term serves a specific physical purpose.
The range calculation (T_hot,in − T_cold,out) quantifies the actual temperature drop across the tower—the work being done. This represents the heat rejection capacity in practical terms. The approach calculation (T_cold,out − T_wb,in) measures how close the leaving water gets to the wet-bulb temperature, which is the theoretical minimum achievable temperature through evaporative cooling. This term reveals the tower's effectiveness relative to ambient conditions.
# Cooling Tower Efficiency Formula
def cooling_tower_efficiency(T_hot_in, T_cold_out, T_wb_in):
range_val = T_hot_in - T_cold_out
approach_val = T_cold_out - T_wb_in
if (T_hot_in - T_wb_in) != 0:
efficiency = (range_val / (T_hot_in - T_wb_in)) * 100
else:
efficiency = 0
return efficiency, range_val, approach_val
The denominator (T_hot,in − T_wb,in) represents the maximum possible temperature drop—the ideal cooling if water could reach wet-bulb temperature. The efficiency ratio compares actual performance to this theoretical maximum. This structure emphasizes that cooling towers don't create cold; they move heat toward the wet-bulb limit, making ambient conditions the ultimate constraint.
Worked Example 1: Industrial Chiller Plant Scenario
Consider a data center cooling system with these operating conditions: entering hot water at 40°C (104°F), leaving cold water at 32°C (89.6°F), and entering air wet-bulb temperature of 25°C (77°F).
First, calculate the range: 40°C − 32°C = 8°C (or 104°F − 89.6°F = 14.4°F). This 8°C temperature drop represents the actual cooling achieved.
Next, calculate the approach: 32°C − 25°C = 7°C (or 89.6°F − 77°F = 12.6°F). The leaving water remains 7°C above the wet-bulb temperature.
Finally, calculate efficiency: (40°C − 32°C) / (40°C − 25°C) × 100 = 8/15 × 100 = 53.3%. In imperial units: (104°F − 89.6°F) / (104°F − 77°F) × 100 = 14.4/27 × 100 = 53.3%. This relatively low efficiency indicates the tower isn't approaching the wet-bulb limit effectively, possibly due to fouled fill or inadequate airflow.
Worked Example 2: Power Plant Condenser Cooling
A natural gas combined-cycle plant operates with different conditions: entering hot water at 110°F (43.3°C), leaving cold water at 85°F (29.4°C), and entering air wet-bulb temperature of 70°F (21.1°C).
Range calculation: 110°F − 85°F = 25°F (or 43.3°C − 29.4°C = 13.9°C). This substantial temperature drop suggests significant heat rejection.
Approach calculation: 85°F − 70°F = 15°F (or 29.4°C − 21.1°C = 8.3°C). The 15°F gap indicates room for improvement in approaching the wet-bulb limit.
Efficiency calculation: (110°F − 85°F) / (110°F − 70°F) × 100 = 25/40 × 100 = 62.5%. In metric: (43.3°C − 29.4°C) / (43.3°C − 21.1°C) × 100 = 13.9/22.2 × 100 = 62.6%. While the range appears impressive at 25°F, the efficiency reveals moderate performance due to the 15°F approach.
What Engineers Often Miss: Three Practical Insights
First, many engineers focus exclusively on range while neglecting approach. A tower can show a healthy 20°F range while maintaining a poor 18°F approach if the leaving water stays well above wet-bulb temperature. This creates the illusion of good performance while actually operating inefficiently. The approach value directly indicates how effectively the tower utilizes evaporative cooling principles.
Second, dry-bulb temperature substitution creates fundamentally flawed analysis. Evaporative cooling depends on wet-bulb conditions because that's where adiabatic saturation occurs. Using dry-bulb instead can overestimate efficiency by 20–40% in humid conditions or underestimate it in arid climates. Always verify instrumentation measures true wet-bulb, not calculated or approximated values.
Third, negative approach values in simplified models should trigger immediate investigation, not acceptance. While the formula mathematically handles negative approaches (when leaving water temperature falls below wet-bulb), this violates thermodynamic principles for conventional cooling towers. In practice, this indicates measurement error, transient conditions, or special hybrid systems requiring different analysis methods.
Try the Calculator
Manually calculating cooling tower efficiency with proper unit conversions and error checking consumes valuable engineering time. For quick field assessments or design verification, use the Cooling Tower Calculator to instantly compute efficiency, range, and approach from your three temperature measurements. The tool handles both metric and imperial units while ensuring calculations respect thermodynamic boundaries.
Originally published at calcengineer.com/blog
Top comments (0)