Calculate Steam Flow Rate

Steam Flow Rate Calculator

Typical for 7 bar g saturated steam.

Calculation Results:

Mass Flow Rate: 0.00 kg/h

Volume Flow Rate: 0.00 m³/h

function calculateSteamFlow() { var diameter = parseFloat(document.getElementById("pipeDiameter").value); var velocity = parseFloat(document.getElementById("steamVelocity").value); var specVolume = parseFloat(document.getElementById("specificVolume").value); if (isNaN(diameter) || isNaN(velocity) || isNaN(specVolume) || diameter <= 0 || velocity <= 0 || specVolume <= 0) { alert("Please enter valid positive numbers for all fields."); return; } // Area Calculation: A = pi * (d/2)^2. Diameter converted from mm to meters. var radiusInMeters = (diameter / 1000) / 2; var area = Math.PI * Math.pow(radiusInMeters, 2); // Volume Flow (m3/s) = Area (m2) * Velocity (m/s) var volFlowPerSec = area * velocity; var volFlowPerHour = volFlowPerSec * 3600; // Mass Flow (kg/h) = Volume Flow (m3/h) / Specific Volume (m3/kg) var massFlowPerHour = volFlowPerHour / specVolume; document.getElementById("massFlowResult").innerText = massFlowPerHour.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("volumeFlowResult").innerText = volFlowPerHour.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("result-box").style.display = "block"; }

Understanding Steam Flow Rate Calculation

In industrial thermal systems, determining the steam flow rate is critical for pipe sizing, boiler load management, and process efficiency. Whether you are designing a new steam line or auditing an existing utility system, accurate flow measurements ensure safety and prevent energy waste.

The Physics Behind the Calculation

The calculation is based on the relationship between pipe cross-sectional area, the velocity of the steam, and the steam's physical properties (density or specific volume) at a given pressure. The core formula used by our calculator is:

Mass Flow Rate (kg/h) = (Area × Velocity × 3600) / Specific Volume

Key Variables Explained

  • Pipe Internal Diameter (mm): This is the actual inside diameter of the pipe. Note that "nominal" pipe sizes (like 4-inch Schedule 40) differ from the exact internal diameter.
  • Steam Velocity (m/s): Generally, saturated steam lines are designed for velocities between 25 and 40 m/s. High velocities lead to noise and erosion, while low velocities lead to oversized pipes and excessive heat loss.
  • Specific Volume (m³/kg): This is the reciprocal of density. It changes significantly based on the steam pressure. As pressure increases, steam becomes denser, and its specific volume decreases.

Quick Reference Table: Specific Volume of Saturated Steam

Pressure (bar gauge) Specific Volume (m³/kg)
1 bar g0.885
3 bar g0.462
7 bar g0.240
10 bar g0.177

Practical Example

Suppose you have a 150mm (internal diameter) pipe carrying saturated steam at 10 bar g. You aim for a conservative velocity of 30 m/s. Using the specific volume of 0.177 m³/kg for 10 bar g:

  1. Area: π × (0.075m)² = 0.01767 m²
  2. Volume Flow: 0.01767 m² × 30 m/s × 3600 = 1,908 m³/h
  3. Mass Flow: 1,908 m³/h / 0.177 m³/kg = 10,779 kg/h

Why This Matters

Calculating the steam flow rate allows engineers to select the correct size of control valves, steam traps, and flow meters. Underestimating flow leads to "starving" the process equipment of heat, while overestimating results in unnecessary capital costs and poor control performance at low loads.

Leave a Comment