How to Calculate Chilled Water Flow Rate

Chilled Water Flow Rate Calculator

Calculate the required GPM (Gallons Per Minute) for your HVAC system based on cooling load and temperature delta.

Note: 1 Ton = 12,000 BTU/h
Results:
function calculateFlowRate() { var tons = parseFloat(document.getElementById('coolingCapacity').value); var supply = parseFloat(document.getElementById('supplyTemp').value); var returnT = parseFloat(document.getElementById('returnTemp').value); var resultArea = document.getElementById('resultArea'); var flowResultText = document.getElementById('flowResultText'); var deltaTText = document.getElementById('deltaTText'); if (isNaN(tons) || isNaN(supply) || isNaN(returnT)) { alert("Please enter valid numbers in all fields."); return; } var deltaT = returnT – supply; if (deltaT <= 0) { alert("Return temperature must be higher than supply temperature."); return; } // Formula: GPM = (Tons * 12,000) / (500 * Delta T) // Or simplified: GPM = (Tons * 24) / Delta T var gpm = (tons * 24) / deltaT; resultArea.style.display = 'block'; flowResultText.innerHTML = "Required Flow Rate: " + gpm.toFixed(2) + " GPM"; deltaTText.innerHTML = "Calculated Temperature Difference (ΔT): " + deltaT.toFixed(1) + " °F"; }

Understanding Chilled Water Flow Rate Calculations

In commercial HVAC systems and industrial cooling, determining the correct chilled water flow rate is critical for equipment selection and energy efficiency. If the flow rate is too low, the system won't meet the cooling demand; if it's too high, you waste pumping energy and risk erosion in the piping.

The Chilled Water Formula

The calculation is based on the fundamental heat transfer equation. For water-based systems, we use a simplified version of the formula:

GPM = (Cooling Tons × 24) / ΔT

Where:

  • GPM: Flow rate in Gallons Per Minute.
  • Cooling Tons: The total cooling capacity (1 Ton = 12,000 BTU/h).
  • ΔT (Delta T): The difference between the Chilled Water Return Temperature and the Chilled Water Supply Temperature.
  • 24: A constant derived from (12,000 BTU/h) / 500. The number 500 represents the weight of water per gallon times minutes per hour times specific heat (approx 8.33 × 60 × 1).

Step-by-Step Calculation Example

Imagine you have a building requiring a 200-ton chiller system. The design engineer specifies a supply temperature of 44°F and expects a return temperature of 56°F.

  1. Determine Capacity: 200 Tons.
  2. Calculate ΔT: 56°F – 44°F = 12°F.
  3. Apply Formula: (200 × 24) / 12.
  4. Result: 4,800 / 12 = 400 GPM.

In this scenario, your pump and piping must be sized to handle 400 gallons of water per minute to maintain the design cooling capacity.

Why Delta T (ΔT) Matters

Low Delta T syndrome is a common issue in HVAC systems where the return water is not warm enough. This forces pumps to move more water than necessary, leading to inefficiency. Most modern chilled water systems are designed for a 10°F to 15°F Delta T. Increasing the design Delta T allows for smaller pipe sizes and smaller pumps, reducing both capital and operational costs.

Common Design Parameters

Application Typical ΔT GPM per Ton
Standard Commercial 10°F 2.4 GPM/Ton
High Efficiency / District 12°F – 16°F 1.5 – 2.0 GPM/Ton
Process Cooling Varies Specific to Load

Leave a Comment