Calculating Sprayer Rate

Sprayer Calibration Calculator

Required Nozzle Output:

0.00 GPM per nozzle

(Gallons Per Minute)


Ounces Per Minute: 0.00 fl oz/min

function calculateSprayerRate() { var gpa = parseFloat(document.getElementById('targetGPA').value); var mph = parseFloat(document.getElementById('groundSpeed').value); var spacing = parseFloat(document.getElementById('nozzleSpacing').value); var resultDiv = document.getElementById('resultsArea'); if (isNaN(gpa) || isNaN(mph) || isNaN(spacing) || gpa <= 0 || mph <= 0 || spacing <= 0) { alert("Please enter valid positive numbers for all fields."); resultDiv.style.display = "none"; return; } // Formula: GPM = (GPA * MPH * W) / 5940 // W = Nozzle spacing in inches var gpm = (gpa * mph * spacing) / 5940; var ozm = gpm * 128; // 128 oz in a gallon document.getElementById('gpmResult').innerHTML = gpm.toFixed(3); document.getElementById('ozmResult').innerHTML = ozm.toFixed(2); resultDiv.style.display = "block"; }

Understanding Sprayer Calibration

Proper sprayer calibration is essential for effective pest control, nutrient management, and environmental safety. Using too much product wastes money and can damage crops or the environment, while using too little results in poor control and potential resistance issues.

The Sprayer Calibration Formula

The standard formula for calculating the required Gallons Per Minute (GPM) per nozzle is:

GPM = (GPA × MPH × W) / 5940
  • GPA: Your target application rate (e.g., how many gallons of liquid you want to apply per acre).
  • MPH: The actual ground speed of the equipment during application.
  • W: The nozzle spacing in inches (or spray width per nozzle).
  • 5940: A mathematical constant used to convert units (inches and MPH) to acres.

Example Calculation

If you want to apply 15 Gallons Per Acre (GPA) at a speed of 6 Miles Per Hour (MPH) with nozzles spaced 20 inches apart:

GPM = (15 × 6 × 20) / 5940
GPM = 1800 / 5940
GPM = 0.303

In this scenario, you would select a nozzle that delivers 0.30 GPM at your intended operating pressure.

3 Steps to Verify Your Calibration

  1. Check Nozzle Flow: Use a calibration cup to measure the actual output of each nozzle for one minute. If a nozzle deviates more than 10% from its rated output, it should be replaced.
  2. Verify Ground Speed: Mark out 100 feet and time how long it takes to drive it at your operating RPM. Use the formula: MPH = (Distance in feet × 0.68) / Time in seconds.
  3. Calculate Total Volume: Once you have your GPM and speed confirmed, ensure the total volume in the tank matches the acreage you intended to cover.

Common Application Rates

Application Type Typical GPA Range
Systemic Herbicides 10 – 20 GPA
Contact Fungicides 20 – 40 GPA
Liquid Fertilizers 10 – 30 GPA

Leave a Comment