Minor mixup. Engines that are off have a manifold pressure equal to
ambient, not to _rho0, which is the air density of the "calibration environment" (typically sea level).
This commit is contained in:
parent
764eb2a2e7
commit
2f00a7970c
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ void PistonEngine::calc(float pressure, float temp, float speed)
|
|||
{
|
||||
if (_magnetos == 0) {
|
||||
_running = false;
|
||||
_mp = _rho0;
|
||||
_mp = pressure;
|
||||
_torque = 0;
|
||||
_fuelFlow = 0;
|
||||
_egt = 80; // FIXME: totally made-up
|
||||
|
|
Loading…
Add table
Reference in a new issue