Screw Conveyor Flow Rate Calculation

.sc-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .sc-calculator-title { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 24px; font-weight: 700; } .sc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } @media (max-width: 600px) { .sc-form-grid { grid-template-columns: 1fr; } } .sc-input-group { margin-bottom: 15px; } .sc-input-group label { display: block; margin-bottom: 5px; font-weight: 600; color: #444; font-size: 14px; } .sc-input-group input, .sc-input-group select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .sc-input-group input:focus, .sc-input-group select:focus { border-color: #0073aa; outline: none; } .sc-input-help { font-size: 11px; color: #888; margin-top: 2px; } .sc-calc-btn { width: 100%; padding: 15px; background-color: #0073aa; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: 700; cursor: pointer; transition: background-color 0.3s; margin-top: 10px; } .sc-calc-btn:hover { background-color: #005177; } .sc-results { margin-top: 30px; padding: 20px; background-color: #f8f9fa; border-left: 5px solid #0073aa; border-radius: 4px; display: none; } .sc-result-item { margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 10px; } .sc-result-item:last-child { border-bottom: none; margin-bottom: 0; } .sc-result-label { font-weight: 600; color: #555; } .sc-result-value { font-weight: 700; font-size: 18px; color: #2c3e50; } .sc-article-content { margin-top: 50px; line-height: 1.6; color: #333; } .sc-article-content h2 { color: #2c3e50; margin-top: 30px; } .sc-article-content h3 { color: #444; margin-top: 20px; } .sc-article-content ul { padding-left: 20px; } .sc-article-content li { margin-bottom: 10px; } .sc-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .sc-table th, .sc-table td { border: 1px solid #ddd; padding: 10px; text-align: left; } .sc-table th { background-color: #f2f2f2; } function calculateConveyor() { // Retrieve inputs using var var diameterIn = parseFloat(document.getElementById('sc_diameter').value); var pitchIn = parseFloat(document.getElementById('sc_pitch').value); var rpm = parseFloat(document.getElementById('sc_rpm').value); var density = parseFloat(document.getElementById('sc_density').value); var loadingPercent = parseFloat(document.getElementById('sc_loading').value); var inclineDeg = parseFloat(document.getElementById('sc_incline').value); // Validation if (isNaN(diameterIn) || isNaN(pitchIn) || isNaN(rpm) || isNaN(density)) { alert("Please enter valid numerical values for all required fields."); return; } // 1. Calculate Geometry // Cross sectional area of screw (assuming standard pipe, ignoring shaft volume for simplified calculation or using simplified disc model) // Area (sq ft) = pi * (d/24)^2 var radiusFt = (diameterIn / 2) / 12; var areaSqFt = Math.PI * Math.pow(radiusFt, 2); // Pitch in feet var pitchFt = pitchIn / 12; // 2. Theoretical Capacity per Revolution (ft³) var volPerRev = areaSqFt * pitchFt; // 3. Apply Loading Percentage (fill factor) // CEMA standards usually dictate 15%, 30%, 45% or 95% depending on material abrasiveness and flowability. var fillFactor = loadingPercent / 100; var activeVolPerRev = volPerRev * fillFactor; // 4. Calculate Base Hourly Volume (ft³/hr) // Base = Active Vol per Rev * RPM * 60 min/hr var baseVolPerHour = activeVolPerRev * rpm * 60; // 5. Apply Incline Factor // Efficiency decreases as angle increases. // Rough approximation: Capacity Factor = 1.0 – (0.018 * degrees) // This is a linearization of CEMA data where 15 deg ~ 80%, 25 deg ~ 70%. var inclineFactor = 1.0; if (inclineDeg > 0) { inclineFactor = 1.0 – (inclineDeg * 0.015); // Approximation logic if (inclineFactor < 0) inclineFactor = 0; } var finalVolFlowFt3 = baseVolPerHour * inclineFactor; // 6. Calculate Mass Flow var massFlowLbs = finalVolFlowFt3 * density; var massFlowTons = massFlowLbs / 2000; // Display Results document.getElementById('res_vol_ft').innerText = finalVolFlowFt3.toFixed(2); document.getElementById('res_mass_lbs').innerText = massFlowLbs.toLocaleString(undefined, {maximumFractionDigits: 0}); document.getElementById('res_mass_tons').innerText = massFlowTons.toFixed(2); // Additional metric: Transport Speed var speedFtMin = (pitchIn / 12) * rpm; document.getElementById('res_speed').innerText = speedFtMin.toFixed(1); document.getElementById('sc_results_area').style.display = 'block'; }
Screw Conveyor Flow Rate Calculator
Common sizes: 6, 9, 12, 16, 20, 24 inches
Standard pitch usually equals diameter
Grain ~45, Sand ~100, Cement ~90
15% (Abrasive/Heavy) 30% (Avg. Industrial) 45% (Free Flowing/Light) 95% (Feeder Application)
0 for horizontal. Efficiency drops with incline.
Volumetric Flow Rate: 0 ft³/hr
Mass Flow Rate (lbs): 0 lbs/hr
Capacity (Tons): 0 TPH
Conveying Speed: 0 ft/min

How to Calculate Screw Conveyor Capacity

Determining the flow rate of a screw conveyor is essential for properly sizing equipment in bulk material handling operations. Whether you are moving grain, cement, sand, or chemical powders, the capacity calculation relies on the geometry of the screw, the rotation speed, and the characteristics of the material.

The Flow Rate Formula

The standard industry formula (based on CEMA standards) for calculating the capacity of a screw conveyor is:

C = 60 × (π/4) × (D² – d²) × P × N × F × e

However, for most practical estimations, we simplify this to the volumetric displacement multiplied by efficiency factors:

  • N (RPM): The speed at which the screw shaft rotates.
  • Cross-Sectional Area: Determined by the screw diameter.
  • Pitch (P): The distance the material moves forward in one revolution (usually equal to the diameter in "standard pitch" screws).
  • Trough Loading (F): The percentage of the trough cross-section occupied by material.
  • Incline Factor: A reduction coefficient applied when the conveyor operates at an angle.

Understanding Trough Loading (%)

Not all screw conveyors run full. In fact, overloading a screw can lead to bearing failure or motor stalls. The loading percentage is chosen based on the material type:

Material Type Recommended Loading Examples
Abrasive / Heavy 15% Silica sand, fly ash, cement clinker
Average Industrial 30% Coal, limestone, sawdust
Light / Free-Flowing 45% Grain, malt, dry plastic pellets

Effect of Incline on Flow Rate

Gravity works against the flow of material when a screw conveyor is inclined. As the angle of inclination increases, the conveying efficiency drops significantly because material tends to tumble back over the screw flights. A standard rule of thumb is:

  • 0° – 10°: Minimal loss (approx 95-100% efficiency).
  • 10° – 20°: Noticeable loss (approx 80-90% efficiency).
  • 20° – 30°: Significant loss (approx 60-70% efficiency).
  • > 45°: Requires specialized vertical screw designs.

Using This Calculator

To use the Screw Conveyor Flow Rate Calculator above, input the Screw Diameter and Pitch in inches. If you are unsure of the pitch, standard screws usually have a pitch equal to their diameter (e.g., a 12-inch screw has a 12-inch pitch). Enter the RPM and the Material Density to get the mass flow rate in Tons Per Hour (TPH).

Leave a Comment