From: david Date: Wed, 27 Nov 2002 01:38:26 +0000 (+0000) Subject: Change from JSBSim: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b79c943aa3b32a5c0ee4397422b3aa927cc0b9a8;p=flightgear.git Change from JSBSim: Changed steering to use the rudder command rather than the rudder position. During taxi, the rudder trim shouldn't affect the steering in any serious way. This should be configurable in the aircraft file, since not all aircraft use the rudder pedals for ground steering. [In FlightGear, this may make it easier to taxi straight.] --- diff --git a/src/FDM/JSBSim/FGLGear.cpp b/src/FDM/JSBSim/FGLGear.cpp index 52d834168..c928f12dc 100644 --- a/src/FDM/JSBSim/FGLGear.cpp +++ b/src/FDM/JSBSim/FGLGear.cpp @@ -308,7 +308,7 @@ FGColumnVector3& FGLGear::Force(void) switch (eSteerType) { case stSteer: - SteerAngle = SteerGain*FCS->GetDrPos(); + SteerAngle = SteerGain*FCS->GetDrCmd(); break; case stFixed: SteerAngle = 0.0;