|
From: Jon S. B. <jb...@us...> - 2011-07-28 12:48:23
|
Update of /cvsroot/jsbsim/JSBSim/src
In directory vz-cvs-3.sog:/tmp/cvs-serv15987/src
Modified Files:
FGFDMExec.cpp
Log Message:
Major modification that moves towards completely independent engine models
Index: FGFDMExec.cpp
===================================================================
RCS file: /cvsroot/jsbsim/JSBSim/src/FGFDMExec.cpp,v
retrieving revision 1.104
retrieving revision 1.105
diff -C2 -r1.104 -r1.105
*** FGFDMExec.cpp 27 Jul 2011 03:56:47 -0000 1.104
--- FGFDMExec.cpp 28 Jul 2011 12:48:18 -0000 1.105
***************
*** 416,420 ****
break;
case ePropulsion:
- // Propulsion->in.Pressure = Atmosphere->GetPressure(h);
Propulsion->in.SLPressure = Atmosphere->GetPressureSL();
Propulsion->in.Pressure = Atmosphere->GetPressure();
--- 416,419 ----
***************
*** 436,439 ****
--- 435,440 ----
Propulsion->in.ThrottlePos = FCS->GetThrottlePos();
Propulsion->in.MixturePos = FCS->GetMixturePos();
+ Propulsion->in.ThrottleCmd = FCS->GetThrottleCmd();
+ Propulsion->in.MixtureCmd = FCS->GetMixtureCmd();
Propulsion->in.PropAdvance = FCS->GetPropAdvance();
Propulsion->in.PropFeather = FCS->GetPropFeather();
|