How to Calculate Blowdown Rate in Boiler

Boiler Blowdown Rate Calculator .boiler-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #ffffff; color: #333; box-shadow: 0 4px 6px rgba(0,0,0,0.1); } .boiler-calc-header { text-align: center; margin-bottom: 25px; } .boiler-calc-header h2 { color: #2c3e50; margin-bottom: 10px; } .boiler-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } @media (max-width: 600px) { .boiler-calc-grid { grid-template-columns: 1fr; } } .input-group { display: flex; flex-direction: column; } .input-group label { font-weight: 600; margin-bottom: 8px; font-size: 14px; } .input-group input { padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .calc-button { background-color: #27ae60; color: white; border: none; padding: 15px 20px; font-size: 18px; font-weight: bold; border-radius: 4px; cursor: pointer; width: 100%; transition: background-color 0.3s; } .calc-button:hover { background-color: #219150; } .result-box { margin-top: 25px; padding: 20px; background-color: #f8f9fa; border-left: 5px solid #27ae60; border-radius: 4px; display: none; } .result-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 18px; } .result-value { font-weight: bold; color: #2c3e50; } .article-section { margin-top: 40px; line-height: 1.6; color: #444; } .article-section h3 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; } .formula-box { background-color: #eee; padding: 15px; border-radius: 4px; font-family: "Courier New", Courier, monospace; text-align: center; margin: 20px 0; }

Boiler Blowdown Rate Calculator

Calculate the required blowdown rate to maintain optimal boiler water quality.

Blowdown Percentage: 0 %
Blowdown Rate: 0 kg/h
Total Water Make-up: 0 kg/h
Daily Blowdown Volume: 0 kg/day

How to Calculate Boiler Blowdown Rate

In steam boiler operations, water is evaporated to produce steam. However, the dissolved solids (TDS) present in the feedwater do not evaporate. Instead, they remain in the boiler water, becoming increasingly concentrated over time. If these solids are not managed, they lead to scale formation, corrosion, and "carryover," where water droplets contaminate the steam.

Blowdown is the process of removing a portion of the concentrated boiler water and replacing it with fresh feedwater to maintain the Total Dissolved Solids (TDS) within acceptable limits.

The Blowdown Formula

To determine the correct amount of water to discharge, we use the mass balance formula. The basic calculation for the blowdown rate as a percentage of steam generation is:

Blowdown % = [Feedwater TDS / (Max Boiler TDS – Feedwater TDS)] × 100

Once you have the percentage, you can calculate the mass flow rate of the blowdown water:

Blowdown Rate (kg/h) = Steam Rate × [Feedwater TDS / (Max Boiler TDS – Feedwater TDS)]

Key Variables Explained

  • Feedwater TDS: The concentration of dissolved solids in the water entering the boiler (after treatment/deaeration).
  • Max Boiler TDS: The maximum allowable concentration inside the boiler drum, usually specified by the boiler manufacturer or water treatment consultant (e.g., 2500–3500 ppm for firetube boilers).
  • Steam Generation Rate: The amount of steam the boiler is currently producing (kg/h or lb/h).

Example Calculation

Suppose you have a boiler producing 10,000 kg/h of steam. Your feedwater TDS is 200 ppm, and your maximum allowable boiler TDS is 3,000 ppm.

  1. Subtract feedwater TDS from max TDS: 3,000 – 200 = 2,800.
  2. Divide feedwater TDS by that result: 200 / 2,800 = 0.0714.
  3. Multiply by 100 for percentage: 7.14%.
  4. Multiply by steam rate for mass: 10,000 × 0.0714 = 714 kg/h.

In this scenario, you must discharge 714 kg of water every hour to keep the boiler clean and efficient.

Why Monitoring Blowdown is Critical

Excessive blowdown results in significant energy loss because you are dumping hot, pressurized water that has already been heated. Conversely, insufficient blowdown leads to scale buildup on heat exchange surfaces. A 1mm layer of scale can reduce boiler efficiency by up to 5%, leading to higher fuel costs and potential tube failure.

function calculateBoilerBlowdown() { var feedwaterTDS = parseFloat(document.getElementById("feedwaterTDS").value); var maxBoilerTDS = parseFloat(document.getElementById("maxBoilerTDS").value); var steamRate = parseFloat(document.getElementById("steamRate").value); var operatingHours = parseFloat(document.getElementById("operatingHours").value); // Validation if (isNaN(feedwaterTDS) || isNaN(maxBoilerTDS) || isNaN(steamRate) || isNaN(operatingHours)) { alert("Please enter valid numerical values for all fields."); return; } if (maxBoilerTDS <= feedwaterTDS) { alert("Maximum Boiler TDS must be greater than Feedwater TDS."); return; } // Calculation logic // Formula: Blowdown Rate = (Feedwater TDS * Steam Rate) / (Max Boiler TDS – Feedwater TDS) var denominator = maxBoilerTDS – feedwaterTDS; var blowdownRate = (feedwaterTDS * steamRate) / denominator; // Blowdown Percentage var blowdownPercentage = (feedwaterTDS / denominator) * 100; // Total Makeup Water needed = Steam Rate + Blowdown Rate var totalMakeup = steamRate + blowdownRate; // Daily blowdown var dailyBlowdown = blowdownRate * operatingHours; // Display Results document.getElementById("resPercentage").innerText = blowdownPercentage.toFixed(2) + " %"; document.getElementById("resRate").innerText = blowdownRate.toFixed(2) + " kg/h"; document.getElementById("resTotalWater").innerText = totalMakeup.toFixed(2) + " kg/h"; document.getElementById("resDaily").innerText = dailyBlowdown.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + " kg/day"; document.getElementById("results").style.display = "block"; }

Leave a Comment