How to Calculate Seed Rate per Hectare Formula

Seed Rate Per Hectare Calculator .seed-calculator-wrapper { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 20px; background: #f9fbf9; border: 1px solid #e0e6e0; border-radius: 8px; color: #333; } .seed-calculator-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; background: #ffffff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); margin-bottom: 40px; } .seed-input-group { margin-bottom: 20px; } .seed-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #2c5e2e; } .seed-input-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; transition: border 0.3s; } .seed-input-group input:focus { border-color: #4CAF50; outline: none; } .seed-input-group .help-text { font-size: 12px; color: #666; margin-top: 4px; } .calc-btn { background-color: #4CAF50; color: white; padding: 14px 24px; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; font-weight: bold; width: 100%; margin-top: 10px; transition: background 0.3s; } .calc-btn:hover { background-color: #45a049; } .results-section { background-color: #f1f8f1; padding: 20px; border-radius: 6px; border-left: 5px solid #4CAF50; } .results-section h3 { margin-top: 0; color: #2c5e2e; border-bottom: 1px solid #dcebdc; padding-bottom: 10px; } .result-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 15px; } .result-value { font-weight: bold; color: #2c5e2e; font-size: 18px; } .final-result { font-size: 24px; color: #1b4d1e; margin-top: 10px; border-top: 1px solid #dcebdc; padding-top: 10px; } .calculator-article { line-height: 1.6; } .calculator-article h2 { color: #2c5e2e; margin-top: 30px; } .calculator-article h3 { color: #4CAF50; } .calculator-article ul { background: #fff; padding: 20px 40px; border-radius: 4px; border: 1px solid #eee; } .formula-box { background: #333; color: #fff; padding: 15px; border-radius: 4px; font-family: monospace; margin: 20px 0; overflow-x: auto; } @media (max-width: 768px) { .seed-calculator-container { grid-template-columns: 1fr; } }

Field & Seed Inputs

Desired number of plants per square meter.
Weight of 1000 seeds in grams.
Percentage of seeds expected to sprout.
Compensates for inert matter or field loss.
Optional: Calculates total bags needed.

Calculation Results

Seed Rate per Hectare: – kg/ha
Seeds per Hectare:
Total Seed Required: – kg

How to Calculate Seed Rate Per Hectare Formula

Calculating the correct seed rate is one of the most critical steps in agronomy to ensure optimal crop yield. Planting too sparsely results in wasted land potential and weed proliferation, while planting too densely can lead to competition for nutrients, water, and light, causing poor crop development and disease susceptibility.

This calculator uses the standard agronomic formula to determine exactly how many kilograms of seed you need per hectare based on your target plant population and the specific quality of your seed lot.

The Seed Rate Formula

To calculate the seed rate (kg/ha), you need to account for the weight of the seeds and the percentage of seeds that will actually establish a viable plant. The mathematical formula is:

Seed Rate (kg/ha) = (Target Plants/m² × TSW × 100) / (Germination % × Purity %)

Understanding the Variables

  • Target Plant Population (Plants/m²): This is your agronomic goal. For example, wheat might require 200-300 plants/m², while canola might require 40-70 plants/m². Consult local agronomy guides for your specific crop and region.
  • Thousand Seed Weight (TSW): This represents the weight of 1,000 seeds in grams. This varies significantly between varieties and seed lots. Large heavy seeds require a higher weight (kg) to achieve the same number of plants compared to small light seeds.
  • Germination (%): The percentage of seeds capable of sprouting, usually found on the seed analysis tag.
  • Purity/Establishment (%): This accounts for inert matter (dirt, chaff) and expected field losses. Even if germination is 100%, field conditions (pests, soil crusting) might reduce establishment. A common default is 90-95% for purity or anticipated field emergence.

Example Calculation

Let's say you are planting Winter Wheat. Your inputs are:

  • Target Population: 250 plants/m²
  • TSW (Thousand Seed Weight): 42 grams
  • Germination: 95%
  • Purity/Field Establishment: 90%

Step 1: Multiply Target Density by TSW by 100.
250 × 42 × 100 = 1,050,000

Step 2: Multiply Germination by Purity.
95 × 90 = 8,550

Step 3: Divide the result of Step 1 by Step 2.
1,050,000 / 8,550 = 122.8 kg/ha

You would set your seeder to distribute approximately 123 kg of seed per hectare.

Why TSW Matters

Many farmers plant by weight (e.g., "100 kg per hectare") rather than by seed count. However, if your seed lot has a low TSW (small seeds), planting 100kg might result in overcrowding. Conversely, if the seeds are large (high TSW), 100kg might result in a stand that is too thin. Always adjust your rate based on the specific TSW of the batch you are planting.

function calculateSeedRate() { // 1. Get DOM elements var densityInput = document.getElementById("plantDensity"); var tswInput = document.getElementById("tsw"); var germInput = document.getElementById("germination"); var purityInput = document.getElementById("purity"); var fieldSizeInput = document.getElementById("fieldSize"); var resultRateEl = document.getElementById("resultRate"); var resultSeedsEl = document.getElementById("resultSeedsPerHa"); var resultTotalEl = document.getElementById("resultTotalKg"); var alertEl = document.getElementById("alertMessage"); // 2. Parse values var density = parseFloat(densityInput.value); var tsw = parseFloat(tswInput.value); var germination = parseFloat(germInput.value); var purity = parseFloat(purityInput.value); var fieldSize = parseFloat(fieldSizeInput.value); // 3. Validation if (isNaN(density) || isNaN(tsw) || isNaN(germination) || isNaN(purity)) { alertEl.style.display = "block"; alertEl.innerHTML = "Please enter valid numbers for Density, TSW, Germination, and Purity."; resultRateEl.innerHTML = "- kg/ha"; resultSeedsEl.innerHTML = "-"; resultTotalEl.innerHTML = "- kg"; return; } if (germination <= 0 || purity 0) { var totalKg = seedRateKgPerHa * fieldSize; resultTotalEl.innerHTML = totalKg.toFixed(1) + " kg"; } else { resultTotalEl.innerHTML = "Enter Field Size"; } }

Leave a Comment