Paper Machine Drying Rate Calculation

.pm-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; } .pm-calc-header { text-align: center; margin-bottom: 25px; } .pm-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .pm-calc-group { margin-bottom: 15px; } .pm-calc-group label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 14px; } .pm-calc-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } .pm-calc-btn { grid-column: span 2; background-color: #005a8c; color: white; padding: 12px; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; font-weight: bold; transition: background-color 0.3s; } .pm-calc-btn:hover { background-color: #00446a; } .pm-calc-results { margin-top: 25px; padding: 20px; background-color: #fff; border-radius: 6px; border-left: 5px solid #005a8c; display: none; } .pm-calc-results h3 { margin-top: 0; color: #005a8c; } .pm-result-item { display: flex; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px dashed #eee; padding-bottom: 5px; } .pm-result-value { font-weight: bold; color: #222; } .pm-article { margin-top: 40px; line-height: 1.6; } .pm-article h2 { color: #005a8c; border-bottom: 2px solid #005a8c; padding-bottom: 5px; } .pm-article table { width: 100%; border-collapse: collapse; margin: 20px 0; } .pm-article th, .pm-article td { border: 1px solid #ddd; padding: 10px; text-align: left; } .pm-article th { background-color: #f2f2f2; } @media (max-width: 600px) { .pm-calc-grid { grid-template-columns: 1fr; } .pm-calc-btn { grid-column: 1; } }

Paper Machine Drying Rate Calculator

Calculate evaporative load and drying rate per unit area (Rw)

Calculation Results

Production Rate (lb/hr): 0
Water Evaporated (lb/hr): 0
Total Drying Surface Area (ft²): 0
Drying Rate (lb water/hr/ft²): 0

Understanding Paper Machine Drying Rates

The drying rate of a paper machine is a critical performance metric used by process engineers to evaluate the efficiency of the dryer section. It measures how much water is removed from the sheet per hour, relative to the available drying surface area. This calculation is essential for benchmarking against industry standards (such as TAPPI norms) and identifying bottlenecks in production.

The Core Calculation Formula

The drying rate (Rw) is typically defined as pounds of water evaporated per hour per square foot of drying area. The process involves three main steps:

  1. Determine Production Rate: Production (lb/hr) = [Speed (ft/min) × Basis Weight (lb/3000ft²) × Trim (in) × 60 min/hr] / [12 in/ft × 3000 ft²].
  2. Calculate Water Evaporated: Evaporation (lb/hr) = Production × [(100 – %MoistureOut) / (100 – %MoistureIn) – 1].
  3. Calculate Surface Area: Total Area (ft²) = π × Diameter (ft) × (Trim Width (in) / 12) × Number of Dryers.
  4. Calculate Drying Rate: Rw = Evaporation / Total Area.

Example Calculation

Suppose you have a paper machine with the following parameters:

  • Speed: 2,000 ft/min
  • Basis Weight: 42 lb/3000 ft²
  • Trim Width: 200 inches
  • Moisture In: 58% | Moisture Out: 6%
  • Dryer Section: 40 dryers of 5 ft diameter

First, we find the production at the reel: (2000 * 42 * 200 * 60) / (12 * 3000) = 28,000 lb/hr. Next, we calculate the water evaporated: 28,000 * [(100 – 6) / (100 – 58) – 1] = 34,666 lb/hr. Finally, the drying area: 3.14159 * 5 * (200 / 12) * 40 = 10,472 ft². The resulting drying rate is 3.31 lb/hr/ft².

Why Drying Rate Matters

If your calculated drying rate is lower than the TAPPI average for your specific grade (e.g., Linerboard, Newsprint, or Tissue), it may indicate issues such as:

Potential Issue Impact on Drying
Poor Condensate Removal Higher thermal resistance inside the cylinder.
Foul or Dirty Surfaces Reduced heat transfer from steam to the sheet.
Inadequate Pocket Ventilation High humidity in dryer pockets limits mass transfer.
Poor Sheet-to-Dryer Contact Low felt tension reduces conduction efficiency.
function calculateDryingRate() { // Inputs var speed = parseFloat(document.getElementById("pmSpeed").value); var bw = parseFloat(document.getElementById("pmBasisWeight").value); var trim = parseFloat(document.getElementById("pmTrim").value); var mIn = parseFloat(document.getElementById("pmMoistureIn").value); var mOut = parseFloat(document.getElementById("pmMoistureOut").value); var count = parseFloat(document.getElementById("pmDryerCount").value); var dia = parseFloat(document.getElementById("pmDryerDia").value); // Validation if (isNaN(speed) || isNaN(bw) || isNaN(trim) || isNaN(mIn) || isNaN(mOut) || isNaN(count) || isNaN(dia)) { alert("Please enter valid numerical values in all fields."); return; } if (mIn >= 100 || mIn = 100) { alert("Moisture percentages must be between 0 and 100. Moisture In must be greater than Moisture Out."); return; } // 1. Production Rate (lb/hr) // Formula: [ft/min * lb/3000ft2 * inches * 60] / [12 inches/ft * 3000] var production = (speed * bw * trim * 60) / (12 * 3000); // 2. Water Evaporated (lb/hr) // Mass Balance: Prod_in * (1 – M_in) = Prod_out * (1 – M_out) // Evap = Prod_in – Prod_out var evapLoad = production * (((100 – mOut) / (100 – mIn)) – 1); // 3. Surface Area (ft2) // Area = pi * diameter * (trim/12) * number_of_dryers var area = Math.PI * dia * (trim / 12) * count; // 4. Drying Rate var dryingRate = evapLoad / area; // Display Results document.getElementById("pmResults").style.display = "block"; document.getElementById("resProd").innerText = production.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resEvap").innerText = evapLoad.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resArea").innerText = area.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resRate").innerText = dryingRate.toLocaleString(undefined, {minimumFractionDigits: 3, maximumFractionDigits: 3}); }

Leave a Comment