Blowdown Rate Calculation

Blowdown Rate Calculator body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 0 auto; padding: 20px; } .calculator-wrapper { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 30px; margin-bottom: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .calc-title { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 24px; font-weight: 700; } .input-group { margin-bottom: 20px; } .input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #495057; } .input-group input { width: 100%; padding: 12px; border: 1px solid #ced4da; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .input-group input:focus { border-color: #4dabf7; outline: none; box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2); } .btn-calculate { width: 100%; background-color: #007bff; color: white; border: none; padding: 15px; font-size: 18px; font-weight: 600; border-radius: 4px; cursor: pointer; transition: background-color 0.2s; } .btn-calculate:hover { background-color: #0056b3; } .results-area { margin-top: 25px; background: #ffffff; border: 1px solid #dee2e6; border-radius: 4px; padding: 20px; display: none; } .result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f1f3f5; } .result-row:last-child { border-bottom: none; } .result-label { font-weight: 600; color: #495057; } .result-value { font-weight: 700; color: #2c3e50; font-size: 18px; } .error-msg { color: #dc3545; text-align: center; margin-top: 10px; display: none; font-weight: 600; } .article-section h2 { color: #2c3e50; margin-top: 30px; border-bottom: 2px solid #e9ecef; padding-bottom: 10px; } .article-section h3 { color: #495057; margin-top: 25px; } .article-section p { margin-bottom: 15px; } .formula-box { background: #eef2f5; padding: 15px; border-left: 4px solid #007bff; font-family: monospace; margin: 20px 0; } @media (max-width: 600px) { .calculator-wrapper { padding: 15px; } }
Cooling Tower Blowdown Calculator
Must be greater than 1.0
Blowdown Rate (B):
Makeup Water Rate (M):
Percent Water Loss:
function calculateBlowdown() { var evapInput = document.getElementById("evaporationRate").value; var cyclesInput = document.getElementById("cyclesOfConcentration").value; var resultDiv = document.getElementById("result"); var errorDiv = document.getElementById("errorDisplay"); var blowdownDisplay = document.getElementById("blowdownResult"); var makeupDisplay = document.getElementById("makeupResult"); var lossDisplay = document.getElementById("lossPercent"); // Reset display resultDiv.style.display = "none"; errorDiv.style.display = "none"; // Parsing var E = parseFloat(evapInput); var COC = parseFloat(cyclesInput); // Validation if (isNaN(E) || isNaN(COC)) { errorDiv.innerHTML = "Please enter valid numbers for both fields."; errorDiv.style.display = "block"; return; } if (E < 0) { errorDiv.innerHTML = "Evaporation rate cannot be negative."; errorDiv.style.display = "block"; return; } if (COC <= 1) { errorDiv.innerHTML = "Cycles of Concentration must be greater than 1 to calculate blowdown."; errorDiv.style.display = "block"; return; } // Calculation Logic // Formula: B = E / (COC – 1) var B = E / (COC – 1); // Formula: M = E + B var M = E + B; // Efficiency Metric: % of makeup lost to blowdown var percentLoss = (B / M) * 100; // Display Results blowdownDisplay.innerHTML = B.toFixed(2) + " units"; makeupDisplay.innerHTML = M.toFixed(2) + " units"; lossDisplay.innerHTML = percentLoss.toFixed(2) + "%"; resultDiv.style.display = "block"; }

Blowdown Rate Calculation: Optimizing Water Efficiency

Efficient water management is critical in the operation of cooling towers and boilers. The Blowdown Rate Calculator helps engineers and facility managers determine the optimal volume of water that must be removed from the system to maintain dissolved solids at acceptable levels. By balancing the Evaporation Rate with the Cycles of Concentration, operators can minimize water waste while preventing scale and corrosion.

What is Blowdown?

In cooling systems and boilers, pure water evaporates, leaving impurities (minerals and dissolved solids) behind. As evaporation continues, the concentration of these impurities increases. If left unchecked, this leads to scaling, fouling, and corrosion inside the equipment.

"Blowdown" (or bleed) is the process of intentionally discharging a portion of this concentrated water and replacing it with fresh "makeup" water. The goal is to limit the concentration of impurities to a specific threshold, known as the Cycles of Concentration.

The Blowdown Formula

To calculate the required blowdown rate, you need two primary variables: the rate at which water is evaporating from the system and the target cycles of concentration. The mathematical relationship is:

B = E / (COC – 1)

Where:

  • B (Blowdown Rate): The volume of water discharged per unit of time (e.g., GPM).
  • E (Evaporation Rate): The volume of water evaporating per unit of time.
  • COC (Cycles of Concentration): The ratio of the concentration of dissolved solids in the blowdown water to the makeup water.

Calculating Makeup Water

Once the blowdown rate is known, the total Makeup Water (M) required by the system is simply the sum of the evaporation and the blowdown:

M = E + B

Understanding Cycles of Concentration (COC)

The Cycles of Concentration represents how concentrated the system water is compared to the inlet water. For example, if the inlet water has 100 ppm of hardness and the system water has 400 ppm, the system is operating at 4 cycles.

Higher cycles mean less blowdown and less makeup water, resulting in cost savings on water and chemicals. However, if cycles are too high, the solubility limits of minerals (like calcium and silica) may be exceeded, causing scale deposits. Finding the "sweet spot" is the key to efficient water treatment.

How to Use This Calculator

  1. Enter Evaporation Rate: Input the estimated evaporation rate. For cooling towers, a common rule of thumb is that evaporation equals roughly 0.1% of the recirculation rate for every 1°F of cooling range.
  2. Enter Cycles of Concentration: Input your target COC. This is usually determined by the water treatment chemical program and the quality of your makeup water.
  3. Calculate: The tool will output the necessary Blowdown Rate and the total Makeup Water required.

Example Calculation

Imagine a cooling tower with an Evaporation Rate of 100 GPM. The water treatment vendor recommends running at 5 Cycles of Concentration to prevent scaling.

Using the formula:

  • B = 100 / (5 – 1)
  • B = 100 / 4
  • Blowdown Rate = 25 GPM

Total Makeup Water required would be 100 + 25 = 125 GPM.

Why Proper Calculation Matters

Under-blowing the system (insufficient blowdown) leads to scale formation, which reduces heat transfer efficiency and can damage equipment. Over-blowing the system (excessive blowdown) wastes water and expensive treatment chemicals. Using this calculator ensures you are operating exactly at your target parameters for maximum efficiency.

Leave a Comment