Central Heating Pump Flow Rate Calculator

Central Heating Pump Flow Rate Calculator body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; } .calculator-container { max-width: 800px; margin: 40px auto; padding: 20px; background: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; } .calc-header { text-align: center; margin-bottom: 30px; } .calc-header h2 { color: #d32f2f; margin-bottom: 10px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; } .form-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .form-group .help-text { font-size: 12px; color: #666; margin-top: 5px; } .btn-calculate { display: block; width: 100%; padding: 15px; background-color: #d32f2f; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .btn-calculate:hover { background-color: #b71c1c; } .results-section { margin-top: 30px; background: #fff; padding: 20px; border-radius: 4px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); display: none; } .result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; } .result-row:last-child { border-bottom: none; } .result-label { font-weight: 600; color: #555; } .result-value { font-weight: bold; font-size: 1.2em; color: #d32f2f; } .article-content { max-width: 800px; margin: 40px auto; padding: 20px; } .article-content h2 { color: #333; margin-top: 30px; } .article-content h3 { color: #d32f2f; } .article-content ul { background: #f4f4f4; padding: 20px 40px; border-radius: 5px; } .info-box { background-color: #e3f2fd; border-left: 5px solid #2196f3; padding: 15px; margin: 20px 0; }

Central Heating Pump Flow Rate Calculator

Determine the required mass flow rate for your hydronic heating system.

Enter the total power output of your boiler or the heat loss calculation for the zone.
Standard radiators typically use 20°C (older) or 11°C (modern/heat pumps). Underfloor usually 5-7°C.

Required Flow Rates

Flow Rate (Litres per Minute):
Flow Rate (Cubic Metres per Hour):
Flow Rate (Litres per Second):
function calculatePumpFlow() { // Get Input Values var loadKW = document.getElementById('heatLoadKW').value; var deltaT = document.getElementById('deltaT').value; // Validation if (loadKW === "" || deltaT === "") { alert("Please fill in both the Heating Load and Delta T fields."); return; } var kw = parseFloat(loadKW); var dt = parseFloat(deltaT); if (isNaN(kw) || kw <= 0) { alert("Please enter a valid positive number for the Heating Load."); return; } if (isNaN(dt) || dt <= 0) { alert("Please enter a valid positive number for Delta T."); return; } // Calculation Logic // Specific Heat Capacity of Water (approx) = 4.186 kJ/(kg*K) // Formula: Flow (l/s) = kW / (Specific Heat * Delta T) var specificHeat = 4.186; // 1. Calculate Litres per Second (l/s) // Note: Density of water changes with temp, but 1kg approx 1 litre is standard for pump sizing. var flowLPS = kw / (specificHeat * dt); // 2. Calculate Litres per Minute (l/m) var flowLPM = flowLPS * 60; // 3. Calculate Cubic Meters per Hour (m3/h) var flowM3H = flowLPM * 0.06; // (LPM * 60) / 1000 // Display Results document.getElementById('resLPS').innerHTML = flowLPS.toFixed(3) + " l/s"; document.getElementById('resLPM').innerHTML = flowLPM.toFixed(2) + " l/min"; document.getElementById('resM3H').innerHTML = flowM3H.toFixed(2) + " m³/h"; // Show result div document.getElementById('resultsArea').style.display = "block"; }

Understanding Central Heating Pump Flow Rates

Correctly sizing a central heating pump (often called a circulator pump) is critical for the efficiency and longevity of your heating system. If the flow rate is too low, the water travels too slowly, losing too much heat before it reaches the last radiator, resulting in cold spots. If the flow rate is too high, it can cause system noise, increased electricity usage, and accelerated wear on the pipework (due to velocity erosion).

The Golden Formula:
Flow Rate (l/s) = Power (kW) ÷ (Specific Heat Capacity × Temperature Difference)

What is Delta T (ΔT)?

The "Temperature Differential," or Delta T, is the designed temperature drop between the water leaving the boiler (flow) and the water returning to it (return).

  • 20°C (Standard Boiler): Historically, gas and oil boiler systems with radiators were designed with a flow of 80°C and return of 60°C.
  • 11°C (Condensing Boiler): Modern condensing boilers often aim for a smaller differential to ensure the return temperature is low enough for condensation to occur (improving efficiency).
  • 5°C – 7°C (Underfloor Heating): Heat pumps and underfloor systems operate with much higher flow rates and smaller temperature drops.

How to Use This Calculator

  1. Enter Heat Load (kW): Input the total output of your boiler or the calculated heat loss of the zone the pump is serving. If you have a 30kW boiler, enter 30.
  2. Enter Delta T: Select your system's design temperature drop. If you are unsure, 11°C is a safe assumption for modern radiator systems, while 20°C is common for older gravity conversions or high-temp systems.
  3. Calculate: Click the button to see the required flow rate in three common units used by pump manufacturers (Grundfos, Wilo, etc.).

Selecting the Right Pump

Once you have the flow rate (e.g., 1.5 m³/h), you also need to calculate the Head Loss (pressure drop) of the system, which depends on the pipe diameter, length, and number of fittings. Pump selection charts map "Flow Rate" on the horizontal axis and "Head (meters)" on the vertical axis. Your calculated flow rate tells you how much water needs to move; the head tells you how hard the pump needs to push to move that amount.

Why Specific Heat Matters

This calculator uses the specific heat capacity of water (approx. 4.186 kJ/kgK). If you are adding Glycol (antifreeze) to your system, the specific heat capacity drops, meaning you will need a higher flow rate to transfer the same amount of heat.

Leave a Comment