Fuel Cost Analyzer
Analyse your fleet fuel spend, compare routes, identify inefficiencies, and estimate savin
Formula: daily_fuel_litres_per_vehicle = (avg_daily_km * fuel_consumption_per_100km) / 100; monthly_fuel_cost_per_vehicle = daily_fuel_litres_per_vehicle * operating_days_per_month * fuel_cost_per_litre; total_monthly_fuel_cost = monthly_fuel_cost_per_vehicle * fleet_size; total_annual_fuel_cost = total_monthly_fuel_cost * 12; potential_monthly_savings = total_monthly_fuel_cost * (route_optimisation_savings_pct / 100); potential_annual_savings = potential_monthly_savings * 12; idling_monthly_waste = total_monthly_fuel_cost * (idling_waste_pct / 100)
Analyse your fleet fuel spend, compare routes, identify inefficiencies, and estimate savings from optimisation.
Inputs
Results
Warnings & checks
- ⚠Show warning when configured threshold is crossed
Recommended next actions
- →Review the result against your operational targets
Formula
daily_fuel_litres_per_vehicle = (avg_daily_km * fuel_consumption_per_100km) / 100; monthly_fuel_cost_per_vehicle = daily_fuel_litres_per_vehicle * operating_days_per_month * fuel_cost_per_litre; total_monthly_fuel_cost = monthly_fuel_cost_per_vehicle * fleet_size; total_annual_fuel_cost = total_monthly_fuel_cost * 12; potential_monthly_savings = total_monthly_fuel_cost * (route_optimisation_savings_pct / 100); potential_annual_savings = potential_monthly_savings * 12; idling_monthly_waste = total_monthly_fuel_cost * (idling_waste_pct / 100)Use for estimation. Verify safety-critical calculations with qualified review.