Sewage Flow Rate Calculator

.sewage-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #ddd; border-radius: 8px; background-color: #f9f9f9; color: #333; box-shadow: 0 4px 6px rgba(0,0,0,0.1); } .sewage-calc-container h2 { color: #2c3e50; margin-top: 0; text-align: center; border-bottom: 2px solid #3498db; padding-bottom: 10px; } .calc-row { margin-bottom: 15px; } .calc-row label { display: block; font-weight: bold; margin-bottom: 5px; } .calc-row input, .calc-row select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } .calc-button { width: 100%; padding: 15px; background-color: #3498db; color: white; border: none; border-radius: 4px; font-size: 18px; cursor: pointer; transition: background-color 0.3s; } .calc-button:hover { background-color: #2980b9; } .result-box { margin-top: 20px; padding: 20px; background-color: #e8f4fd; border-left: 5px solid #3498db; display: none; } .result-val { font-size: 24px; font-weight: bold; color: #2c3e50; } .sewage-article { margin-top: 30px; line-height: 1.6; } .sewage-article h3 { color: #2c3e50; margin-top: 25px; } .sewage-article table { width: 100%; border-collapse: collapse; margin: 15px 0; } .sewage-article th, .sewage-article td { border: 1px solid #ddd; padding: 8px; text-align: left; } .sewage-article th { background-color: #f2f2f2; }

Sewage Flow Rate Calculator

Calculate pipe capacity using the Manning Equation for full-pipe gravity flow.

PVC / Plastic (0.009) Smooth Steel (0.011) Cast Iron / Ductile Iron (0.012) Concrete – Smooth (0.013) Vitrified Clay (0.015) Corrugated Metal (0.024)

Flow Velocity: 0 ft/s

Flow Rate (CFS): 0 ft³/s

Flow Rate (GPM): 0 Gallons/Min

Flow Rate (MGD): 0 Million Gallons/Day

How to Calculate Sewage Flow Rate

Designing an efficient sewer system requires precise calculations to ensure that the pipe diameter and slope can handle the anticipated hydraulic load without overflows or excessive sedimentation. This calculator uses the Manning Equation, which is the industry standard for calculating gravity-driven flow in open channels and pipes.

The Manning Equation Formula

For US Customary units, the formula for velocity is:

V = (1.486 / n) × R^(2/3) × S^(1/2)

  • V: Velocity (ft/s)
  • n: Manning's Roughness Coefficient (unitless)
  • R: Hydraulic Radius (ft), which for a full circular pipe is Diameter / 4
  • S: Slope of the pipe (ft/ft)

Common Manning's n Values

Material Typical "n" Value
PVC / HDPE 0.009 – 0.011
Ductile Iron 0.011 – 0.013
Concrete (New/Smooth) 0.012 – 0.014
Brickwork 0.015 – 0.017

Example Calculation

Suppose you have an 8-inch PVC pipe with a 2% slope:

  1. Diameter: 8 inches = 0.667 feet.
  2. Hydraulic Radius (R): 0.667 / 4 = 0.1667 ft.
  3. Slope (S): 2% = 0.02 ft/ft.
  4. n: 0.009 for PVC.
  5. Velocity: (1.486 / 0.009) * (0.1667)^0.667 * (0.02)^0.5 ≈ 7.02 ft/s.
  6. Flow (Q): Velocity * Area ≈ 7.02 * 0.349 ≈ 2.45 CFS.

This flow rate converts to roughly 1,100 Gallons Per Minute (GPM). If your actual peak sewage inflow exceeds this, you would need a larger pipe or a steeper slope.

function calculateSewageFlow() { var dInches = parseFloat(document.getElementById("pipeDiameter").value); var slopePercent = parseFloat(document.getElementById("pipeSlope").value); var n = parseFloat(document.getElementById("manningN").value); var resultDiv = document.getElementById("sewageResult"); if (isNaN(dInches) || isNaN(slopePercent) || dInches <= 0 || slopePercent <= 0) { alert("Please enter valid positive numbers for diameter and slope."); return; } // Conversion to feet var dFeet = dInches / 12; var slopeDecimal = slopePercent / 100; // Area of full pipe (PI * r^2) var radius = dFeet / 2; var area = Math.PI * Math.pow(radius, 2); // Hydraulic Radius (R = Area / Wetted Perimeter) // For full pipe: (PI * r^2) / (2 * PI * r) = r/2 = D/4 var hydraulicRadius = dFeet / 4; // Manning's Equation for Velocity (ft/s) // V = (1.486/n) * R^(2/3) * S^(1/2) var velocity = (1.486 / n) * Math.pow(hydraulicRadius, (2/3)) * Math.sqrt(slopeDecimal); // Flow Rate Q = V * A (Cubic Feet per Second) var flowCFS = velocity * area; // Unit Conversions // 1 CFS = 448.831 GPM var flowGPM = flowCFS * 448.831; // 1 MGD = 1.547 CFS var flowMGD = flowCFS / 1.547; // Display Results document.getElementById("velocityResult").innerText = velocity.toFixed(2); document.getElementById("cfsResult").innerText = flowCFS.toFixed(3); document.getElementById("gpmResult").innerText = Math.round(flowGPM).toLocaleString(); document.getElementById("mgdResult").innerText = flowMGD.toFixed(3); resultDiv.style.display = "block"; resultDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment