Search found 1 match

by mobyfab
Thu Apr 15, 2010 8:40 pm
Forum: Automotive Tech
Topic: Calculate MPG in real-time
Replies: 7
Views: 5766

inj = injection time in milliseconds injsize = injectors size in CC kph = kilometers per hour. //Duty cycle duty = (rpm * inj) / 1200; //minutes needed to travel 100km hundredkm = ((3600 / kph) * 100) / 60; //fuel consumption in Liters per 100km fuelc = (hundredkm * (...