]> git.mxchange.org Git - flightgear.git/commitdiff
Change from JSBSim:
authordavid <david>
Wed, 27 Nov 2002 01:38:26 +0000 (01:38 +0000)
committerdavid <david>
Wed, 27 Nov 2002 01:38:26 +0000 (01:38 +0000)
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.]

src/FDM/JSBSim/FGLGear.cpp

index 52d834168a59cdc22c5d8cd8ca995a3baec26719..c928f12dc790714e0f68f4dbb4a6da90c98c34e1 100644 (file)
@@ -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;