Route Efficiency Calculator
Quantify the savings from route optimisation — compare planned vs actual routes, calculate
Formula: deviation_pct = (actual_km_per_vehicle_per_day - planned_km_per_vehicle_per_day) / planned_km_per_vehicle_per_day * 100; monthly_total_km_fleet = actual_km_per_vehicle_per_day * fleet_size * working_days_per_month; monthly_empty_km_fleet = monthly_total_km_fleet * empty_running_pct / 100; monthly_empty_running_cost = monthly_empty_km_fleet * fuel_cost_per_km; annual_empty_running_cost = monthly_empty_running_cost * 12; optimised_empty_km = monthly_total_km_fleet * target_empty_running_pct / 100; route_optimisation_monthly_saving = (monthly_empty_km_fleet - optimised_empty_km) * fuel_cost_per_km; annual_optimisation_saving = route_optimisation_monthly_saving * 12
Quantify the savings from route optimisation — compare planned vs actual routes, calculate empty running costs, and model trip consolidation benefits.
Inputs
Results
Warnings & checks
- ⚠Show warning when configured threshold is crossed
Recommended next actions
- →Review the result against your operational targets
Formula
deviation_pct = (actual_km_per_vehicle_per_day - planned_km_per_vehicle_per_day) / planned_km_per_vehicle_per_day * 100; monthly_total_km_fleet = actual_km_per_vehicle_per_day * fleet_size * working_days_per_month; monthly_empty_km_fleet = monthly_total_km_fleet * empty_running_pct / 100; monthly_empty_running_cost = monthly_empty_km_fleet * fuel_cost_per_km; annual_empty_running_cost = monthly_empty_running_cost * 12; optimised_empty_km = monthly_total_km_fleet * target_empty_running_pct / 100; route_optimisation_monthly_saving = (monthly_empty_km_fleet - optimised_empty_km) * fuel_cost_per_km; annual_optimisation_saving = route_optimisation_monthly_saving * 12Use for estimation. Verify safety-critical calculations with qualified review.