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:
parent
e80c093681
commit
c153e21174
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue