From 19dff3ac4451b157fdc2edef9a0f2744b8281e83 Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 14 Jun 2004 21:36:10 +0000 Subject: [PATCH] Alternator should still put out some output when RPM < 800. (Yes I know this is hard coded for the C172, but so far no one has asked to do this more generically.) --- src/Systems/electrical.cxx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/Systems/electrical.cxx b/src/Systems/electrical.cxx index 0a02f2c32..72dcf3917 100644 --- a/src/Systems/electrical.cxx +++ b/src/Systems/electrical.cxx @@ -350,12 +350,17 @@ void FGElectricalSystem::update (double dt) { if ( fgGetBool("/controls/engines/engine[0]/master-bat") ) { volts = 24.0; } - if ( fgGetBool("/controls/engines/engine[0]/master-alt") && - fgGetDouble("/engines/engine[0]/rpm") > 800 ) - { - double alt_contrib = 28.0; - if ( alt_contrib > volts ) { - volts = alt_contrib; + if ( fgGetBool("/controls/engines/engine[0]/master-alt") ) { + if ( fgGetDouble("/engines/engine[0]/rpm") > 800 ) { + double alt_contrib = 28.0; + if ( alt_contrib > volts ) { + volts = alt_contrib; + } + } else if ( fgGetDouble("/engines/engine[0]/rpm") > 200 ) { + double alt_contrib = 20.0; + if ( alt_contrib > volts ) { + volts = alt_contrib; + } } } _volts_out->setDoubleValue( volts );