Tuning Turn Rate

This page describes how a Rover’s Turn Rate controller (aka steering rate controller) can be tuned. This is the most important controller to tune in order to achieve good steering control.

../_images/rover-tuning-steering-rate.png

Turn Rate PID Tuning

The Turn Rate controller attempts to achieve the desired turn rate (set by the pilot or autopilot) using a PID controller. All modes except Hold and Manual use this controller.

The FF, P, I and D gains for this controller are held in the ATC_STR_RAT_FF, ATC_STR_RAT_P, ATC_STR_RAT_I and ATC_STR_RAT_D parameters respectively.

Recommended steps for tuning this controller are:

  • Connect the ground station to the vehicle using a telemetry radio

  • Set the ACRO_TURN_RATE parameter to be roughly what the vehicle’s maximum turn rate is in deg/sec. For a more precise measurement:

    • On Mission Planner’s Flight Data screen, check the “Tuning” checkbox (bottom middle), double click on the graph and select “gz” (Gyro Z-axis)

    • Drive the vehicle in Manual mode at a medium speed making very sharp turns

    • Set ACRO_TURN_RATE to a bit lower than the highest values seen. Note the value shown may be in centi-degrees/sec so its value should be divided by 100 to match the parameter’s deg/sec

  • Set the GCS_PID_MASK to 1 (Steering)

  • On Mission Planner’s Flight Data screen, check the “Tuning” checkbox (bottom middle), double click on the graph and select “pidachieved”, “piddesired”

    ../_images/rover-throttle-and-speed2.png
  • Drive the vehicle in Acro at a medium speed making various wide and tight turns and compare how well pidachieved follows piddesired

  • Tune the FF gain first. This gain converts the desired turn rate directly into a steering servo or motor output. If the vehicle’s turn rate response is sluggish then this parameter should be increased. If the vehicle is constantly overshooting its desired turn rate then this parameter should be reduced.

  • The P gain corrects for short-term error. It can often be set to a low value (e.g. 20% of FF) if the FF value is set well. If set too high the turn rate may oscillate. This P gain should always be lower than the FF gain.

  • The I gain corrects for long-term error. It can often be set to the same value as P. If the vehicle never achieves the desired turn rate, then this parameter should be increased. If the vehicle’s turn rate slowly oscillates then this parameter should be reduced. This I gain should always be lower than then FF gain.

  • The D gain is meant to stabilize the output by fighting against short-term changes in turn rate. This gain can normally be left at zero.

Finally set ATC_STR_RAT_MAX to the ACRO_TURN_RATE value and optionally reduce ACRO_TURN_RATE. The difference between these two parameters is:

  • ACRO_TURN_RATE controls how the pilot’s input is converted to a desired turn rate in Acro mode. This parameter can be reduced to make turns in Acro mode more docile for the driver

  • ATC_STR_RAT_MAX is the maximum turn rate that the vehicle will ever attempt in any mode. This should normally be kept close to the vehicle’s performance limits so the vehicle remains agile

Video