1
0
Fork 0

Bug fix suggested by Gonzalo Peralta:

Convert the fuel flow from gallons to pounds <kludge>assuming 100LL at
sea level, 6lb/gallon.</kludge>
This commit is contained in:
david 2002-12-30 22:16:16 +00:00
parent e80c093681
commit c153e21174

View file

@ -567,5 +567,5 @@ void FGPiston::Debug(int from)
double
FGPiston::CalcFuelNeed(void)
{
return FuelFlow_gph / 3600 * State->Getdt() * Propulsion->GetRate();
return FuelFlow_gph / 3600 * 6 * State->Getdt() * Propulsion->GetRate();
}