]> git.mxchange.org Git - flightgear.git/commitdiff
Fix units bug with fuel flow
authorandy <andy>
Wed, 13 Apr 2005 19:42:29 +0000 (19:42 +0000)
committerandy <andy>
Wed, 13 Apr 2005 19:42:29 +0000 (19:42 +0000)
src/FDM/YASim/TurbineEngine.cpp

index 6e489bbb49324a0019fee8f9e99b2181d8c2a110..ab27c3c9d0699f41af8f885024654068fda1dc33 100644 (file)
@@ -12,7 +12,7 @@ TurbineEngine::TurbineEngine(float power, float omega, float alt,
     _rho0 = Atmosphere::getStdDensity(0);
     _maxTorque = (power/omega) * _rho0 / Atmosphere::getStdDensity(alt);
     _flatRating = flatRating;
-    _bsfc = 0.047; // == 0.5 lb/hr per hp
+    _bsfc = 8.47e-08; // in kg/s per watt == 0.5 lb/hr per hp
     _n2LowIdle = 50;
     _n2HighIdle = 70;
     _n2Max = 100;