How to Calculate Chiller Flow Rate

Chiller Flow Rate Calculator

Usually 10°F for comfort cooling or 12°F for industrial process.

Required Flow Rate:


How to Calculate Chiller Flow Rate

In HVAC and industrial process cooling, determining the correct chilled water flow rate is critical for equipment efficiency and system longevity. If the flow rate is too low, the chiller may trip on low-pressure faults; if it is too high, it leads to excessive energy consumption and potential tube erosion.

The Chiller Flow Formula

The relationship between cooling capacity, temperature difference, and flow rate is governed by the principles of heat transfer. For water-based systems, the standard formula used in North America is:

GPM = (Tons × 24) / ΔT

Where:

  • GPM: Gallons per minute of chilled water.
  • Tons: The cooling capacity of the chiller (1 Ton = 12,000 BTU/hr).
  • ΔT (Delta T): The difference between the Entering Water Temperature (EWT) and the Leaving Water Temperature (LWT).
  • 24: A constant derived from the weight and specific heat of water (500 / 20.83).

Step-by-Step Calculation Example

Let's say you have a 50-ton chiller and your system design requires a 10°F temperature drop (returning at 55°F and leaving at 45°F).

  1. Identify Capacity: 50 Tons.
  2. Identify ΔT: 10°F.
  3. Apply Formula: (50 × 24) / 10 = 1,200 / 10 = 120 GPM.

In this scenario, your pump must be capable of delivering 120 GPM to ensure the chiller operates within its design parameters.

Common Design Standards

Most commercial comfort cooling systems are designed around a ΔT of 10°F or 12°F. However, High Delta T systems (using 15°F to 20°F) are becoming more popular in large-scale district cooling to reduce pipe sizes and pumping energy. Always verify your specific chiller's manufacturer data sheet for minimum and maximum allowable flow rates.

function calculateFlowRate() { var tons = document.getElementById('coolingCapacity').value; var deltaT = document.getElementById('deltaT').value; var resultDiv = document.getElementById('flowResult'); var gpmOutput = document.getElementById('gpmOutput'); var lpmOutput = document.getElementById('lpmOutput'); if (tons === "" || deltaT === "" || tons <= 0 || deltaT <= 0) { alert("Please enter valid positive numbers for both Capacity and Delta T."); return; } // Formula: GPM = (Tons * 24) / Delta T var gpm = (parseFloat(tons) * 24) / parseFloat(deltaT); var lpm = gpm * 3.78541; // Liters per minute conversion gpmOutput.innerHTML = gpm.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + " GPM"; lpmOutput.innerHTML = "Equivalent to " + lpm.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + " Liters per Minute (LPM)"; resultDiv.style.display = "block"; }

Leave a Comment