Pea Seeding Rate Calculator

.pea-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .pea-calc-header { text-align: center; margin-bottom: 30px; } .pea-calc-header h2 { color: #2e7d32; margin-bottom: 10px; } .pea-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } .pea-input-group { display: flex; flex-direction: column; } .pea-input-group label { font-weight: 600; margin-bottom: 8px; color: #333; font-size: 14px; } .pea-input-group input { padding: 12px; border: 2px solid #ddd; border-radius: 6px; font-size: 16px; transition: border-color 0.3s; } .pea-input-group input:focus { border-color: #2e7d32; outline: none; } .pea-calc-btn { grid-column: span 2; background-color: #2e7d32; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .pea-calc-btn:hover { background-color: #1b5e20; } .pea-result-box { margin-top: 30px; padding: 20px; background-color: #f1f8e9; border-radius: 8px; border: 1px solid #c5e1a5; text-align: center; } .pea-result-value { font-size: 32px; font-weight: 800; color: #2e7d32; margin: 10px 0; } .pea-article { margin-top: 40px; line-height: 1.6; color: #444; } .pea-article h3 { color: #2e7d32; border-bottom: 2px solid #f0f0f0; padding-bottom: 10px; } .pea-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .pea-table th, .pea-table td { border: 1px solid #ddd; padding: 12px; text-align: left; } .pea-table th { background-color: #f8f9fa; } @media (max-width: 600px) { .pea-calc-grid { grid-template-columns: 1fr; } .pea-calc-btn { grid-column: 1; } }

Field Pea Seeding Rate Calculator

Determine the precise amount of seed required per acre based on target plant population and seed weight.

Recommended Seeding Rate
0 lb/acre
(0 kg/ha)

How to Calculate Pea Seeding Rates

Calculating the correct seeding rate for field peas is critical for maximizing yield and ensuring effective weed competition. Unlike smaller grains, pea seed sizes (Thousand Kernel Weight or TKW) vary significantly between varieties and even different lots of the same variety.

The standard formula used by agronomists to determine the seeding rate is:

Seeding Rate (lb/acre) = (Target Population/sq ft × TKW in grams) ÷ (Germination % × Survival % × 10)

Understanding the Variables

  • Target Population: For field peas, the recommended target is usually 7 to 9 plants per square foot (approx. 75-90 plants per square meter).
  • TKW (Thousand Kernel Weight): This is the weight in grams of 1,000 seeds. Pea seeds can range from 150g (small yellows) to over 350g (large greens). You can usually find this on your seed tag.
  • Germination Rate: The percentage of seeds expected to sprout under ideal conditions, provided by the seed lab.
  • Expected Survival: This accounts for "seedling mortality" due to mechanical damage during seeding, soil-borne diseases, or deep planting. Typically, farmers assume 85% to 95% survival.

Common Pea TKW References

Pea Type Average TKW Range (Grams)
Small Yellow Peas 170 – 210g
Medium Yellow/Green Peas 210 – 260g
Large Green Peas 280 – 360g
Maple/Austrian Winter Peas 140 – 200g

Example Calculation

If your target is 8 plants/sq ft, your TKW is 250g, germination is 95%, and you expect 90% survival:

Calculation: (8 × 250) / (0.95 × 0.90 × 10) = 2000 / 8.55 = 234 lbs/acre.

function calculatePeaRate() { var targetPop = parseFloat(document.getElementById('peaTargetPop').value); var tkw = parseFloat(document.getElementById('peaTKW').value); var germ = parseFloat(document.getElementById('peaGerm').value); var surv = parseFloat(document.getElementById('peaSurv').value); if (isNaN(targetPop) || isNaN(tkw) || isNaN(germ) || isNaN(surv) || germ <= 0 || surv <= 0) { alert("Please enter valid positive numbers for all fields."); return; } // Convert percentages to decimals var germDecimal = germ / 100; var survDecimal = surv / 100; // Formula: (Target plants/ft2 * TKW) / (Germ * Survival * 10) = lb/acre var lbPerAcre = (targetPop * tkw) / (germDecimal * survDecimal * 10); // Convert lb/acre to kg/ha (approx 1.12085 conversion factor) var kgPerHa = lbPerAcre * 1.12085; // Update UI var resultBox = document.getElementById('peaResult'); var resultDisplay = document.getElementById('peaResultValue'); var metricDisplay = document.getElementById('peaMetricValue'); resultDisplay.innerHTML = lbPerAcre.toFixed(1) + " lb/acre"; metricDisplay.innerHTML = "(" + kgPerHa.toFixed(1) + " kg/ha)"; resultBox.style.display = "block"; resultBox.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment