Cooling Tower Recirculation Rate Calculation

Cooling Tower Recirculation Rate Calculator body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 0 auto; padding: 20px; } .calculator-container { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 30px; margin-bottom: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .calc-title { text-align: center; margin-bottom: 25px; color: #2c3e50; font-size: 24px; font-weight: 700; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #495057; } .input-wrapper { position: relative; } .form-control { width: 100%; padding: 12px; font-size: 16px; border: 1px solid #ced4da; border-radius: 4px; box-sizing: border-box; /* Ensures padding doesn't affect width */ transition: border-color 0.15s ease-in-out; } .form-control:focus { border-color: #007bff; outline: 0; box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25); } .unit-tag { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #6c757d; font-size: 14px; pointer-events: none; } .btn-calculate { display: block; width: 100%; padding: 14px; background-color: #0056b3; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: 600; cursor: pointer; transition: background-color 0.2s; margin-top: 10px; } .btn-calculate:hover { background-color: #004494; } .result-box { margin-top: 25px; padding: 20px; background-color: #e8f4fd; border: 1px solid #b8daff; border-radius: 4px; display: none; } .result-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #d6e9fc; } .result-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .result-label { font-weight: 600; color: #004085; } .result-value { font-weight: 700; color: #0056b3; font-size: 18px; } .error-msg { color: #dc3545; text-align: center; font-weight: 600; margin-top: 10px; display: none; } .content-section { margin-top: 50px; } h2 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; } h3 { color: #34495e; margin-top: 25px; } p { margin-bottom: 15px; } ul { margin-bottom: 15px; padding-left: 20px; } li { margin-bottom: 8px; } .formula-box { background: #f1f3f5; padding: 15px; border-left: 4px solid #0056b3; font-family: monospace; margin: 20px 0; font-size: 1.1em; }
Cooling Tower Recirculation Rate Calculator
BTU/hr
Enter total heat to be removed (Note: 1 Tower Ton ≈ 15,000 BTU/hr)
°F
°F
Please enter valid inputs. Inlet Temp must be higher than Outlet Temp.
Temperature Range (ΔT):
Fluid Factor: 500
Required Flow Rate:
function calculateRecirculationRate() { // Get input values using var var heatLoadInput = document.getElementById('heatLoad').value; var inletTempInput = document.getElementById('inletTemp').value; var outletTempInput = document.getElementById('outletTemp').value; var errorMsg = document.getElementById('errorMessage'); var resultBox = document.getElementById('resultBox'); // Reset display errorMsg.style.display = 'none'; resultBox.style.display = 'none'; // Parse floats var heatLoad = parseFloat(heatLoadInput); var inletTemp = parseFloat(inletTempInput); var outletTemp = parseFloat(outletTempInput); // Validation if (isNaN(heatLoad) || isNaN(inletTemp) || isNaN(outletTemp)) { errorMsg.innerText = "Please fill in all fields with valid numbers."; errorMsg.style.display = 'block'; return; } if (inletTemp <= outletTemp) { errorMsg.innerText = "Inlet temperature must be greater than outlet temperature to calculate cooling range."; errorMsg.style.display = 'block'; return; } if (heatLoad <= 0) { errorMsg.innerText = "Heat load must be greater than zero."; errorMsg.style.display = 'block'; return; } // Calculation Logic // Formula: GPM = Heat Load / (500 * Delta T) var range = inletTemp – outletTemp; var constant = 500; // 8.33 lbs/gal * 60 min/hr * 1.0 specific heat var gpm = heatLoad / (constant * range); // Display Results document.getElementById('resRange').innerText = range.toFixed(1) + " °F"; document.getElementById('resGPM').innerText = gpm.toFixed(2) + " GPM"; resultBox.style.display = 'block'; }

Calculating Cooling Tower Recirculation Rates

The recirculation rate, or water flow rate, is a critical parameter in the design and operation of cooling tower systems. It represents the volume of water circulating through the system per minute required to reject a specific amount of heat. Understanding this rate ensures that pumps are sized correctly and that the cooling tower operates at peak thermal efficiency.

The Recirculation Rate Formula

To determine the required flow rate in Gallons Per Minute (GPM), engineers use a fundamental thermodynamic equation derived from the specific heat capacity of water. The standard formula used in the HVAC and industrial cooling industry is:

GPM = Q / (500 × ΔT)

Where:

  • GPM: The recirculation rate in Gallons Per Minute.
  • Q: The Total Heat Load in BTU/hr (British Thermal Units per hour).
  • ΔT (Range): The difference between the water temperature entering the tower (Hot Water) and leaving the tower (Cold Water) in °F.
  • 500: A "fluid factor" constant derived from: 8.33 lbs/gal (weight of water) × 60 min/hr × 1.0 (specific heat of water).

Understanding the Inputs

1. Heat Load (BTU/hr)

This is the amount of thermal energy the system needs to reject to the atmosphere. If you are working with tons of cooling, you can convert it. While a standard chiller ton is 12,000 BTU/hr, cooling towers are typically sized at 15,000 BTU/hr per ton to account for the heat of compression added by the chiller.

2. Cooling Range (ΔT)

The Range is simply the temperature drop across the tower. Standard HVAC design conditions often utilize a 10°F range (e.g., entering at 95°F and leaving at 85°F), though industrial processes may require significantly larger ranges.

Calculation Example

Consider a facility that needs to reject 3,000,000 BTU/hr of heat. The system is designed to take water in at 100°F and cool it down to 85°F.

  • Heat Load (Q): 3,000,000 BTU/hr
  • Range (ΔT): 100°F – 85°F = 15°F
  • Calculation: 3,000,000 / (500 × 15)
  • Denominator: 7,500
  • Result: 400 GPM

In this scenario, you would need a pump capable of moving 400 gallons of water per minute through the cooling loop to maintain the desired temperatures.

Why Accurate Calculation Matters

If the recirculation rate is underestimated, the water will not carry enough heat away from the source, leading to overheating equipment and system trips. Conversely, overestimating the flow rate can lead to oversized pumps, increased energy consumption, and water velocity issues that may damage piping or cooling tower fill media.

Leave a Comment