Trucking Rate per Mile Calculator

Trucking Rate Per Mile Calculator body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; } .calculator-container { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 30px; margin-bottom: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .calc-header { text-align: center; margin-bottom: 25px; color: #2c3e50; } .input-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 25px; } .input-group { display: flex; flex-direction: column; } .input-group label { font-weight: 600; margin-bottom: 8px; font-size: 0.95em; color: #495057; } .input-group input { padding: 10px 12px; border: 1px solid #ced4da; border-radius: 4px; font-size: 16px; transition: border-color 0.2s; } .input-group input:focus { border-color: #0056b3; outline: none; box-shadow: 0 0 0 3px rgba(0,86,179,0.1); } .calculate-btn { background-color: #0056b3; color: white; border: none; padding: 12px 24px; font-size: 18px; font-weight: bold; border-radius: 4px; cursor: pointer; width: 100%; transition: background-color 0.2s; } .calculate-btn:hover { background-color: #004494; } .results-section { background: white; padding: 20px; border-radius: 6px; border: 1px solid #dee2e6; margin-top: 25px; display: none; } .result-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #eee; } .result-row:last-child { border-bottom: none; } .result-label { color: #6c757d; font-weight: 500; } .result-value { font-weight: 700; font-size: 1.1em; color: #212529; } .final-rate { background-color: #e8f4fd; padding: 15px; border-radius: 4px; color: #0056b3; border: 1px solid #b8daff; } .article-content { background: #fff; padding: 30px; border-top: 3px solid #0056b3; } h2, h3 { color: #2c3e50; } p { margin-bottom: 1.5em; } ul { margin-bottom: 1.5em; } .info-box { background-color: #fff3cd; border: 1px solid #ffeeba; padding: 15px; border-radius: 4px; margin-bottom: 20px; } @media (max-width: 600px) { .input-grid { grid-template-columns: 1fr; } }

Owner-Operator Trucking Rate Calculator

Truck payments, insurance, permits, parking
Tires, repairs, oil changes (excluding fuel)
Percent of miles driven empty

Calculation Results

Fuel Cost Per Mile:
Fixed Cost Per Mile:
Break-Even Point (All Miles):
Required Rate Per Loaded Mile:

*This rate accounts for your desired profit and covers the cost of deadhead (empty) miles.

Understanding Trucking Rate Per Mile

Calculating your cost per mile is the single most important mathematical operation for owner-operators and fleet managers. Without knowing exactly what it costs to move your truck one mile down the road, you are essentially gambling with your business finances. This calculator helps determine the minimum rate you must negotiate to cover all fixed expenses, variable operating costs, fuel, and your desired driver salary.

The Formula Components

To determine an accurate rate, expenses are broken down into three categories:

  • Fixed Costs: These are expenses that must be paid regardless of whether the truck moves or sits parked. They include truck and trailer payments, insurance premiums, license plates, permits (IFTA, IRP), parking, and software subscriptions.
  • Variable Costs: These costs correlate directly with miles driven. They include tires, maintenance, repairs, washouts, tolls, and broker fees. Fuel is often calculated separately due to its price volatility.
  • Deadhead (Empty Miles): Since you only get paid for loaded miles, your rate must be high enough to pay for the fuel and wear-and-tear accumulated while driving empty to the next pickup.

How to Calculate Your Rate

The mathematical approach used in this calculator follows these steps:

  1. Determine Fuel Cost Per Mile: Divide current diesel price by your truck's average MPG.
    Example: $4.00 / 6.5 MPG = $0.62 per mile.
  2. Calculate Fixed Cost Per Mile: Divide total monthly fixed costs by total monthly miles.
    Example: $3,000 / 10,000 miles = $0.30 per mile.
  3. Add Variable Costs: Add maintenance and tire costs (e.g., $0.15 per mile).
  4. Factor in Profit: Divide your desired monthly income by total monthly miles.
  5. Adjust for Deadhead: The final "All-In" rate is adjusted so that the paid (loaded) miles cover the cost of the unpaid (empty) miles.
Strategic Tip: Never accept a load below your Break-Even Point unless it is a strategic move to get out of a bad market area ("dead zone") to a location with higher paying freight.

Realistic Example

Let's look at a standard Owner-Operator scenario:

  • Fixed Costs: $2,500/month (Insurance + Truck Note)
  • Variable Costs: $0.12/mile (Maintenance)
  • Fuel: $3.80/gallon at 6.0 MPG
  • Miles: 11,000 total miles, with 10% deadhead
  • Goal: $6,000 monthly take-home pay

In this scenario, the Fuel Cost is $0.63/mile. Fixed Cost is $0.23/mile. Profit requirement is $0.55/mile. The base cost to run is roughly $0.98/mile. However, to achieve the salary goal and cover the 10% empty miles, the driver needs to charge a broker roughly $1.70 – $1.80 per loaded mile.

function calculateTruckingRate() { // 1. Get Inputs using var var fixedCostsInput = document.getElementById("fixedCosts").value; var variableCostsInput = document.getElementById("variableCosts").value; var fuelPriceInput = document.getElementById("fuelPrice").value; var mpgInput = document.getElementById("truckMpg").value; var totalMilesInput = document.getElementById("totalMiles").value; var deadheadInput = document.getElementById("deadhead").value; var desiredIncomeInput = document.getElementById("desiredIncome").value; // 2. Parse values var fixedCosts = parseFloat(fixedCostsInput); var variableCosts = parseFloat(variableCostsInput); var fuelPrice = parseFloat(fuelPriceInput); var mpg = parseFloat(mpgInput); var totalMiles = parseFloat(totalMilesInput); var deadheadPercent = parseFloat(deadheadInput); var desiredIncome = parseFloat(desiredIncomeInput); // 3. Validate Inputs if (isNaN(fixedCosts) || isNaN(variableCosts) || isNaN(fuelPrice) || isNaN(mpg) || isNaN(totalMiles) || isNaN(deadheadPercent) || isNaN(desiredIncome)) { alert("Please fill in all fields with valid numbers."); return; } if (mpg <= 0 || totalMiles <= 0) { alert("MPG and Total Miles must be greater than zero."); return; } // 4. Perform Calculations // Fuel cost per mile var fuelCostPerMile = fuelPrice / mpg; // Fixed cost per mile (distributed over all miles) var fixedCostPerMile = fixedCosts / totalMiles; // Profit requirement per mile (distributed over all miles) var profitPerMile = desiredIncome / totalMiles; // Total operational cost per mile (Fuel + Variable + Fixed) var breakEvenPerMile = fuelCostPerMile + variableCosts + fixedCostPerMile; // Total rate needed per mile (Break Even + Profit) BEFORE deadhead adjustment var rateAllMiles = breakEvenPerMile + profitPerMile; // Adjust for Deadhead // If 15% is deadhead, only 85% of miles are paid (loaded) // Loaded Miles Ratio = (100 – Deadhead) / 100 var loadedRatio = (100 – deadheadPercent) / 100; // Prevent division by zero if deadhead is 100% if (loadedRatio <= 0) loadedRatio = 0.01; // Required Rate Per Loaded Mile // This calculates what you must charge for the loaded miles to cover the costs of the empty miles as well var requiredRatePerLoadedMile = rateAllMiles / loadedRatio; // 5. Update UI document.getElementById("resFuelCost").innerText = "$" + fuelCostPerMile.toFixed(3); document.getElementById("resFixedCost").innerText = "$" + fixedCostPerMile.toFixed(3); document.getElementById("resBreakEven").innerText = "$" + breakEvenPerMile.toFixed(3); document.getElementById("resRequiredRate").innerText = "$" + requiredRatePerLoadedMile.toFixed(2); // Show results document.getElementById("resultDisplay").style.display = "block"; }

Leave a Comment