Compares fuel consumption and cost between hybrid and turbo-engine cars
Hybrid
Turbo
Price
Consumption (km/l)
Fuel price
Km per year
Devaluation %
Interval in years
Hybrid
Turbo
Fuel cost / month
{{((km_per_year / 12) / hybrid.consumption) * fuel_price | currency: ""}}
{{((km_per_year / 12) / turbo.consumption * fuel_price) | currency: ""}}
Liters / month
{{(km_per_year / 12) / hybrid.consumption | number}}
{{(km_per_year / 12) / turbo.consumption | number}}
Car value after {{ interval_in_years }} years
{{ hybrid.price * ((100 - devaluation)/100) | currency: ""}}
{{ turbo.price * ((100 - devaluation)/100) | currency: ""}}
Lost car value due to devaluation after {{ interval_in_years }} years
{{ hybrid.price * ((devaluation)/100) | currency: ""}}
{{ turbo.price * ((devaluation)/100) | currency: ""}}
Fuel and devaluation cost after {{ interval_in_years }} years
{{ ((((km_per_year / 12) / hybrid.consumption) * fuel_price) * 12 * interval_in_years) + (hybrid.price * ((devaluation)/100)) | currency: ""}}
{{ ((((km_per_year / 12) / turbo.consumption) * fuel_price) * 12 * interval_in_years) + (turbo.price * ((devaluation)/100)) | currency: ""}}
a positive difference means that
Hybrid
is more expensive
Cost Difference (Hybrid - Turbo) = {{ (((((km_per_year / 12) / hybrid.consumption) * fuel_price) * 12 * interval_in_years) + (hybrid.price * ((devaluation)/100))) - (((((km_per_year / 12) / turbo.consumption) * fuel_price) * 12 * interval_in_years) + (turbo.price * ((devaluation)/100))) | currency: ""}}