How to Calculate Condenser Water Flow Rate

Condenser Water Flow Rate Calculator

Tons of Refrigeration (TR) BTU/hr
function updateLabels() { var loadType = document.getElementById("loadType").value; var loadLabel = document.getElementById("loadLabel"); if (loadType === "tons") { loadLabel.innerHTML = "Cooling Capacity (Tons):"; } else { loadLabel.innerHTML = "Cooling Capacity (BTU/hr):"; } } function calculateFlowRate() { var loadType = document.getElementById("loadType").value; var coolingLoad = parseFloat(document.getElementById("coolingLoad").value); var tempEntering = parseFloat(document.getElementById("tempEntering").value); var tempLeaving = parseFloat(document.getElementById("tempLeaving").value); var resultDiv = document.getElementById("flowResult"); var flowValue = document.getElementById("flowValue"); var flowDetail = document.getElementById("flowDetail"); if (isNaN(coolingLoad) || isNaN(tempEntering) || isNaN(tempLeaving)) { alert("Please enter valid numerical values for all fields."); return; } var deltaT = tempLeaving – tempEntering; if (deltaT <= 0) { alert("Leaving water temperature must be higher than entering water temperature."); return; } var totalHeatRejectionBTU; // Total Heat Rejection (THR) calculation // For chillers, THR = Cooling Load + Compressor Heat // Rule of thumb for water-cooled: 1 Ton = 15,000 BTU/hr for THR if (loadType === "tons") { totalHeatRejectionBTU = coolingLoad * 15000; } else { // If user enters BTU, we assume they enter cooling BTU. // We add a 25% heat of compression factor for standard condenser sizing. totalHeatRejectionBTU = coolingLoad * 1.25; } // Formula: GPM = BTU/hr / (500 * Delta T) var gpm = totalHeatRejectionBTU / (500 * deltaT); resultDiv.style.display = "block"; resultDiv.style.backgroundColor = "#e7f3ff"; flowValue.innerHTML = gpm.toFixed(2) + " GPM"; flowDetail.innerHTML = "Total Heat Rejection: " + totalHeatRejectionBTU.toLocaleString() + " BTU/hr | ΔT: " + deltaT.toFixed(1) + "°F"; }

How to Calculate Condenser Water Flow Rate

In HVAC and process cooling, calculating the condenser water flow rate is essential for sizing pumps, pipes, and cooling towers. The flow rate ensures that the heat absorbed by the refrigerant in the evaporator, plus the heat added by the compressor, is effectively rejected into the atmosphere.

The Standard Formula

The fundamental equation for water-side heat transfer is:

GPM = BTU/hr / (500 × ΔT)

Where:

  • GPM: Gallons Per Minute (the water flow rate).
  • BTU/hr: The Total Heat Rejection (THR) of the system.
  • 500: A constant derived from (8.33 lb/gal × 60 min/hr × 1.0 Specific Heat of water).
  • ΔT (Delta T): The temperature difference between the entering and leaving condenser water.

Why Use 15,000 BTU/hr Per Ton?

In refrigeration, a "Ton" of cooling is 12,000 BTU/hr. However, the condenser must reject more than just the cooling load; it must also reject the heat generated by the compressor (heat of compression). For standard water-cooled systems, a common rule of thumb is to use 15,000 BTU/hr per ton for condenser sizing. This accounts for approximately 25% additional heat from the electrical work of the compressor.

Example Calculation

Imagine you have a 100-Ton water-cooled chiller. The design specifies an entering water temperature of 85°F and a leaving water temperature of 95°F.

  1. Calculate THR: 100 Tons × 15,000 BTU/ton = 1,500,000 BTU/hr.
  2. Calculate ΔT: 95°F – 85°F = 10°F.
  3. Calculate GPM: 1,500,000 / (500 × 10) = 300 GPM.

This follows the standard industry rule of thumb that a typical cooling tower requires 3.0 GPM per nominal ton when operating at a 10°F Delta T.

Common Design Values

Application Typical ΔT Typical Flow
Comfort Cooling 10°F (5.5°C) 3.0 GPM/Ton
Process Cooling 12°F – 15°F 2.0 – 2.5 GPM/Ton
High Efficiency Chiller 8°F – 10°F 3.0+ GPM/Ton

Importance of Accuracy

If the flow rate is too low, the condenser pressure will rise, causing the chiller to consume more energy or trip on high-pressure alarms. If the flow rate is too high, you waste pumping energy and risk eroding the internal tubes of the condenser heat exchanger. Using this calculator helps ensure your system operates within its designed hydraulic and thermal parameters.

Leave a Comment