How to Calculate Slurry Flow Rate

Slurry Flow 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-container { 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); } .calculator-title { text-align: center; margin-bottom: 25px; color: #2c3e50; 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: #007bff; outline: none; box-shadow: 0 0 0 3px rgba(0,123,255,0.25); } .input-row { display: flex; gap: 20px; flex-wrap: wrap; } .input-col { flex: 1; min-width: 200px; } .help-text { font-size: 12px; color: #6c757d; margin-top: 4px; } .calculate-btn { 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; margin-top: 10px; } .calculate-btn:hover { background-color: #0056b3; } .result-section { margin-top: 30px; padding-top: 20px; border-top: 2px solid #e9ecef; display: none; } .result-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; } .result-card { background: white; padding: 15px; border-radius: 6px; border-left: 4px solid #007bff; box-shadow: 0 2px 4px rgba(0,0,0,0.05); } .result-label { font-size: 14px; color: #6c757d; text-transform: uppercase; letter-spacing: 0.5px; } .result-value { font-size: 24px; font-weight: 700; color: #2c3e50; margin-top: 5px; } .article-content { background: #fff; padding: 20px; } .article-content h2 { color: #2c3e50; margin-top: 30px; border-bottom: 2px solid #f1f1f1; padding-bottom: 10px; } .article-content h3 { color: #34495e; margin-top: 25px; } .article-content ul { padding-left: 20px; } .article-content li { margin-bottom: 10px; } .formula-box { background: #f8f9fa; padding: 15px; border-left: 4px solid #28a745; font-family: monospace; margin: 15px 0; }
Slurry Flow Rate Calculator
Mass flow rate of dry solids in metric tonnes per hour.
Density ratio of solids (e.g., Sand/Silica ≈ 2.65).
Percentage of solids by weight (0-100%).
Usually 1.0 for water.
Volumetric Flow Rate
0 m³/h
Flow Rate (US)
0 GPM
Slurry Specific Gravity
0.00
Total Slurry Mass
0 TPH

How to Calculate Slurry Flow Rate

Calculating the flow rate of slurry is a critical task in mineral processing, dredging, and chemical engineering. Unlike clear liquids, slurry is a mixture of liquid (usually water) and insoluble solid particles. To accurately size pumps and pipelines, you must convert the required tonnage of dry solids into a volumetric flow rate of the mixture.

Key Parameters Required

To perform this calculation, you need four main parameters:

  • Dry Solids Rate (TPH): The target production rate of dry material you need to move, measured in Tonnes Per Hour.
  • Specific Gravity of Solids (SGs): The density of the solid particles relative to water. Common values include 2.65 for silica sand, 4.0-5.0 for iron ore, and 1.3-1.5 for coal.
  • Concentration by Weight (Cw %): The percentage of the total slurry mass that consists of solid particles.
  • Specific Gravity of Liquid (SGl): Usually 1.0 if the carrier fluid is water, but may be higher for brines or chemical solutions.

The Formulas

The calculation is performed in three steps:

1. Calculate Slurry Specific Gravity (SGm)

First, determine the density of the mixture. This is a weighted harmonic mean of the densities:

SGm = 100 / [ (Cw / SGs) + ((100 – Cw) / SGl) ]

2. Calculate Total Slurry Mass Flow (Mm)

Next, calculate the total mass of the slurry (solids + liquid) required to transport the dry solids:

Mm (TPH) = Dry Solids TPH / (Cw / 100)

3. Calculate Volumetric Flow Rate (Q)

Finally, convert the total mass flow into volume. Since 1 tonne of water occupies 1 cubic meter, we divide the mass flow by the mixture's specific gravity:

Q (m³/h) = Mm / SGm

To convert cubic meters per hour (m³/h) to US Gallons Per Minute (GPM), multiply Q by approximately 4.403.

Example Calculation

Let's say you need to transport 100 TPH of sand (SG 2.65) at a concentration of 30% by weight in water (SG 1.0).

  1. Slurry SG: 100 / [ (30/2.65) + (70/1.0) ] = 100 / [11.32 + 70] = 100 / 81.32 = 1.23 SG
  2. Total Mass: 100 / 0.30 = 333.33 TPH (Total Slurry)
  3. Flow Rate (m³/h): 333.33 / 1.23 = 271 m³/h
  4. Flow Rate (GPM): 271 × 4.403 ≈ 1,193 GPM

Why is accurate calculation important?

Underestimating the flow rate can lead to pipeline sedimentation and blockages if the velocity drops below the settling velocity. Overestimating can result in oversized pumps, wasted energy, and excessive pipe wear due to unnecessarily high velocities.

function calculateSlurryFlow() { // 1. Get input values var drySolids = parseFloat(document.getElementById('drySolids').value); var solidsSG = parseFloat(document.getElementById('solidsSG').value); var concentration = parseFloat(document.getElementById('concentration').value); var liquidSG = parseFloat(document.getElementById('liquidSG').value); // 2. Validate inputs if (isNaN(drySolids) || drySolids < 0) { alert("Please enter a valid positive number for Dry Solids Rate."); return; } if (isNaN(solidsSG) || solidsSG <= 0) { alert("Please enter a valid Specific Gravity for solids."); return; } if (isNaN(concentration) || concentration = 100) { alert("Concentration must be greater than 0% and less than 100%."); return; } if (isNaN(liquidSG) || liquidSG <= 0) { alert("Please enter a valid Specific Gravity for the liquid."); return; } // 3. Perform Calculations // Step A: Calculate Slurry Specific Gravity (SGm) // Formula: 100 / ( (Cw / SGs) + ((100 – Cw) / SGl) ) var term1 = concentration / solidsSG; var term2 = (100 – concentration) / liquidSG; var slurrySG = 100 / (term1 + term2); // Step B: Calculate Total Slurry Mass Flow (Mm in TPH) // Formula: Dry TPH / (Cw / 100) var totalMassTPH = drySolids / (concentration / 100); // Step C: Calculate Volumetric Flow Rate (Q in m3/h) // Formula: Total Mass TPH / Slurry SG // Note: 1 Tonne of water = 1 m3. This holds true for SG ratio logic. var flowM3H = totalMassTPH / slurrySG; // Step D: Convert to US GPM // 1 m3/h = 4.40286754 gpm var flowGPM = flowM3H * 4.40287; // 4. Update UI document.getElementById('resultFlowM3').innerText = flowM3H.toFixed(1) + " m³/h"; document.getElementById('resultFlowGPM').innerText = Math.round(flowGPM).toLocaleString() + " GPM"; document.getElementById('resultSlurrySG').innerText = slurrySG.toFixed(2); document.getElementById('resultTotalMass').innerText = totalMassTPH.toFixed(1) + " TPH"; // Show results container document.getElementById('results').style.display = "block"; }

Leave a Comment