Chilled Water Flow Rate Calculation in Si Units

.hvac-calc-wrapper { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; background-color: #f9fbfd; border: 1px solid #e1e8ed; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .hvac-calc-header { text-align: center; margin-bottom: 25px; } .hvac-calc-header h2 { color: #2c3e50; margin: 0; font-size: 24px; } .hvac-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .hvac-input-group { margin-bottom: 15px; } .hvac-input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #4a5568; font-size: 14px; } .hvac-input-group input { width: 100%; padding: 10px; border: 1px solid #cbd5e0; border-radius: 4px; font-size: 16px; color: #2d3748; box-sizing: border-box; } .hvac-input-group input:focus { border-color: #3182ce; outline: none; box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1); } .hvac-input-help { font-size: 12px; color: #718096; margin-top: 4px; } .hvac-btn-group { grid-column: 1 / -1; text-align: center; margin-top: 10px; } .hvac-btn { background-color: #3182ce; color: white; border: none; padding: 12px 24px; font-size: 16px; font-weight: 600; border-radius: 4px; cursor: pointer; transition: background-color 0.2s; } .hvac-btn:hover { background-color: #2b6cb0; } .hvac-btn.reset { background-color: #e2e8f0; color: #4a5568; margin-left: 10px; } .hvac-btn.reset:hover { background-color: #cbd5e0; } .hvac-results { margin-top: 30px; background-color: #ffffff; border: 1px solid #e2e8f0; border-radius: 6px; padding: 20px; display: none; } .hvac-result-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #edf2f7; } .hvac-result-item:last-child { border-bottom: none; } .hvac-result-label { font-weight: 500; color: #718096; } .hvac-result-value { font-weight: 700; color: #2d3748; font-size: 18px; } .hvac-result-primary { background-color: #ebf8ff; padding: 15px; border-radius: 4px; margin-bottom: 15px; text-align: center; } .hvac-result-primary .hvac-result-value { color: #2b6cb0; font-size: 28px; display: block; } .calc-content { margin-top: 40px; line-height: 1.6; color: #333; } .calc-content h3 { color: #2c3e50; margin-top: 25px; border-bottom: 2px solid #3182ce; padding-bottom: 8px; display: inline-block; } .calc-content p { margin-bottom: 15px; } .calc-content ul { margin-bottom: 15px; padding-left: 20px; } .calc-content li { margin-bottom: 8px; } .formula-box { background: #f1f5f9; padding: 15px; border-left: 4px solid #3182ce; font-family: monospace; margin: 15px 0; } @media (max-width: 600px) { .hvac-form-grid { grid-template-columns: 1fr; } }

Chilled Water Flow Rate Calculator (SI Units)

Calculate the required volumetric flow rate based on Cooling Capacity and ΔT.

Total heat removal required in Kilowatts.
Standard water is approx 4.186.
Water temperature entering the chiller.
Water temperature leaving the chiller.
Volumetric Flow Rate (Liters/second)
0.00 l/s
Flow Rate (Cubic meters/hour)
0.00 m³/h
Mass Flow Rate (kg/second)
0.00 kg/s
Temperature Difference (ΔT)
0.00 °C

About Chilled Water Flow Rate Calculations

In HVAC engineering and plant design, determining the correct chilled water flow rate is fundamental to sizing pumps, pipes, and control valves. This calculator uses SI units (International System of Units) to derive the flow rate based on the thermodynamic relationship between heat load, specific heat capacity, and temperature differential.

The SI Formula

The fundamental equation for heat transfer in a fluid is:

Q = m × Cp × ΔT

Where:

  • Q = Cooling Capacity or Heat Load (kW)
  • m = Mass Flow Rate (kg/s)
  • Cp = Specific Heat Capacity of the fluid (kJ/kg·K)
  • ΔT = Temperature difference between Return and Supply (°C or K)

To solve for the Flow Rate, we rearrange the formula. Since water density is approximately 1 kg/L (at standard chilled water temperatures), the calculation simplifies to:

Flow (l/s) = Q (kW) / (Cp × ΔT)

Key Variables Explained

Cooling Capacity (kW): This represents the total amount of heat that the chiller needs to remove from the system. It is often calculated based on the building's cooling load.

Specific Heat Capacity (Cp): For pure water, this value is approximately 4.186 kJ/kg·K. If you are using a glycol mixture (for freeze protection), this value will decrease, requiring a higher flow rate to achieve the same cooling effect.

ΔT (Delta T): The design temperature difference between the supply water (leaving the chiller) and the return water (entering the chiller). Standard HVAC designs often use a ΔT of 5°C to 6°C.

Example Calculation

Consider a chiller with a capacity of 500 kW. The system is designed for a return temperature of 12°C and a supply temperature of 7°C.

  1. ΔT: 12 – 7 = 5°C
  2. Cp: 4.186 kJ/kg·K (Standard Water)
  3. Flow (l/s): 500 / (4.186 × 5) = 23.89 l/s
  4. Flow (m³/h): 23.89 × 3.6 = 86.0 m³/h
function calculateFlowRate() { // Get Input Values var capacity = parseFloat(document.getElementById('coolingCapacity').value); var cp = parseFloat(document.getElementById('specificHeat').value); var tReturn = parseFloat(document.getElementById('returnTemp').value); var tSupply = parseFloat(document.getElementById('supplyTemp').value); // Validation if (isNaN(capacity) || isNaN(cp) || isNaN(tReturn) || isNaN(tSupply)) { alert("Please enter valid numeric values for all fields."); return; } if (cp <= 0) { alert("Specific Heat Capacity must be greater than zero."); return; } // Calculate Delta T var dt = Math.abs(tReturn – tSupply); if (dt === 0) { alert("Supply and Return temperatures cannot be the same. Delta T is zero."); return; } // Calculation Logic (SI Units) // Formula: Flow (kg/s) = kW / (kJ/kg.K * K) var massFlowKgS = capacity / (cp * dt); // Assuming density of water approx 1 kg/L for simplified HVAC calc // Therefore kg/s is roughly equivalent to l/s volumetrically at standard temps var volFlowLps = massFlowKgS; // Convert l/s to m3/h: 1 l/s = 3.6 m3/h var volFlowM3h = volFlowLps * 3.6; // Display Results document.getElementById('resultsArea').style.display = "block"; document.getElementById('resLps').innerHTML = volFlowLps.toFixed(2) + " l/s"; document.getElementById('resM3h').innerHTML = volFlowM3h.toFixed(2) + " m³/h"; document.getElementById('resKgs').innerHTML = massFlowKgS.toFixed(2) + " kg/s"; document.getElementById('resDt').innerHTML = dt.toFixed(1) + " °C"; } function resetCalculator() { document.getElementById('coolingCapacity').value = "; document.getElementById('specificHeat').value = '4.186'; document.getElementById('returnTemp').value = "; document.getElementById('supplyTemp').value = "; document.getElementById('resultsArea').style.display = "none"; }

Leave a Comment