Pixhawk Auto Tune Pid

Hello all,

First, THIS IS EXPERIMENTAL FOR SIMULATION ONLY. Video coming shortly of me using it in the simulator.

I have a functional first attempt at automatic P gain tuning. I'm calling it Pretty Good Gains (pun intended). There is definitely room for improvement, but here is how it works:

PID controllers usually end up with an output graph that looks something like this (from wikipedia):

As you can see by the above graph the most well tuned P gain value in this controller is 2. Why? Because it arrives at its target value the fastest with the least amount of overshoot and oscillation. One can see this in practice when flying a multi-copter and the PIDs are too high producing an oscillation. I have read a lot of different PID tuning strategies looking for something that I could replicate in code. I came across something called the Good Gain Method. Essentially this method of tuning requires the user to set the Integral and Derivative gains to zero and first focus on the P gain. Adjust the P gain until the least amount of oscillation is seen with an acceptable arrival time at the target value. If the P value is too low, the curve will take too long to get to the target and if the P value is too high you will see the more violent oscillations.

Nov 29, 2016  Pixhawk PID tuning. Hi all, Could someone please tell me which settings I will need to adjust to tune out this oscillation in my pixhawk - see vid below? I had a play with the 'roll / pitch sensitivity' slider on the Basic Tuning page in Mission Planner but it seems sloppy while still oscillating. I haven't PID tuned a pixhawk before and I'm. Oct 06, 2015  Showing how to setup a Pixhawk flight controller including initial test flight. How to connect the devices like power module, GPS & compass. Load the firmware, load a parameters file to get you started, then calibration steps. Jan 22, 2015  Pixhawk twitchy after autotune on 3.2. The default is level 6, which produces a medium tune, suitable for beginner to intermediate pilots. If you are a more experienced pilot then you could choose level 7, which will result in a bit sharper tune (faster attitude changes). Levels above 7 are not recommended until you have done an.

How do we do this in code? Well, first I require the user to input a disturbance into the system (ie. pitch right) and then wait for the user's input to return to zero (center stick). Now we have our starting point (the disturbance) and our target (zero pitch, or stable hover). As the copter attempts to return to a stable hover the error values follow a path similar to the curve above. As this is happening I measure the distance between the first peak and the first valley of that curve and how long it took to produce that peak and valley. Now we have our starting point. When another disturbance is introduced we can compare its peak/valley to the previous oscillation and decide which direction to move the P gain. Once that is done enough times, the P value is tuned.

Right now I move the P gain value in increments of 10%, but I can see changing that to adapt to the degree of the oscillation with increasing granularity as the P gain improves. I have tested this in the HIL simulator and it seems to work well. It works best if you set the P values a bit too high and let the auto-tune lower it.

I am attaching a zip of the files I modified. Please give me feedback and discuss my method. Again, Pretty Good Gains means that this isn't perfect. It also doesn't address the Integral gain... but I have plans for that too.

This tutorial explains how to tune the PID loops on PX4 for all multicopter setups (Quads, Hexa, Octo etc).

Generally if you're using a supported specific configuration (e.g. using an airframe in QGroundControl > Airframe) the default tuning should be sufficient to fly the vehicle safely.To get the very best performance it is usually good to tune a new vehicle. For example, different ESCs or motors require different tuning gains for optimal flight.

This guide is for advanced users. Un- or partially- tuned vehicles are likely to be unstable, and easy to crash.Make sure to have a Kill-switch assigned.

Introduction

PX4 uses Proportional, Integral, Derivative (PID) controllers, which are the most widespread control technique.

The controllers are layered, which means a higher-level controller passes itsresults to a lower-level controller. The lowest-level controller is the the ratecontroller, then there is the attitude contoller, and then the velocity& position controller.The PID tuning needs to be done in the same order, starting with the ratecontroller, as it will affect all other controllers.

Preconditions

  • You have selected the closest matching default airframe configuration for your vehicle. This should give you a vehicle that already flies.
  • You should have done an ESC calibration.
  • PWM_MIN is set correctly. It needs to be set low, but such that the motors never stop when the vehicle is armed.

    This can be tested in Acro mode or in Manual/Stabilized mode:

    • Remove propellers
    • Arm the vehicle and lower the throttle to the minimum
    • Tilt the vehicle to all directions, about 60 degrees
    • Check that no motors turn off
  • Optionally enable the high-rate logging profile with the SDLOG_PROFILE parameter so you can use the log to evaluate the rate and attitude tracking performance (the option can be disabled afterwards).

Always disable MC_AIRMODE when tuning a vehicle.

Tuning Steps

For safety reasons, the default gains are set to low values.
You must increase the gains before you can expect good control responses.

Here are some general points to follow when tuning:

  • All gains should be increased very slowly as large gains may cause dangerous oscillations! Typically increase gains by 20-30% per iteration, reducing to 5-10% for final fine tuning.
  • Land before changing a parameter. Slowly increase the throttle and check for oscillations.
  • Tune the vehicle around the hovering thrust point, and use the thrust curve parameter or TPA to account for thrust non-linearities or high-thrust oscillations.

Rate Controller

The rate controller is the inner-most loop with three independent PID controllers to control the body rates:

  • Roll rate control (MC_ROLLRATE_P, MC_ROLLRATE_I, MC_ROLLRATE_D)
  • Pitch rate control (MC_PITCHRATE_P, MC_PITCHRATE_I, MC_PITCHRATE_D)
  • Yaw rate control (MC_YAWRATE_P, MC_YAWRATE_I, MC_YAWRATE_D)

A well-tuned rate controller is very important as it affects all flight modes. A badly tuned rate controller will be visible in Position mode, for example, as 'twitches' (the vehicle will not hold perfectly still in the air).

The rate controller can be tuned in Acro mode or Manual/Stabilized mode:

Pixhawk Auto Tune Pid 1

  • Acro mode is preferred, but is harder to fly. If you choose this mode, disable all stick expo:
    • MC_ACRO_EXPO = 0, MC_ACRO_EXPO_Y = 0, MC_ACRO_SUPEXPO = 0, MC_ACRO_SUPEXPOY = 0
    • MC_ACRO_P_MAX = 200, MC_ACRO_R_MAX = 200
    • MC_ACRO_Y_MAX = 100
  • Manual/Stabilized mode is simpler to fly, but it is also more difficult to see if the attitude or the rate controller needs more tuning.

In case your vehicle does not fly at all:

  • If you notice strong oscillations when first trying to takeoff (to the point where it does not fly), decrease all P and D gains until it takes off.
  • If on the other hand you hardly get any reaction at all to your RC commands, increase the P gains.

The actual tuning is roughly the same in Manual mode or Acro mode:You iteratively tune the P and D gains for roll and pitch, and then the I gain.Initially you can use the same values for roll and pitch, and once you have good values, you can fine-tune them by looking at roll and pitch response separately (if your vehicle is symmetric, this is not needed).For yaw it is very similar, except that D can be left at 0.

Auto

P Gain

The P (proportional) gain is used to minimize the tracking error. It is responsible for a quick response and thus should be set as high as possible, but without introducing oscillations.

  • If the P gain is too high: you will see high-frequency oscillations.
  • If the P gain is too low:
    • the vehicle will react slowly to input changes.
    • In Acro mode the vehicle will drift, and you will constantly need to correct to keep it level.

D Gain

The D (derivative) gain is used for dampening. It is required but should be set only as high as needed to avoid overshoots.

  • If the D gain is too high: the motors become twitchy (and maybe hot), because the D term amplifies noise.
  • If the D gain is too low: you see overshoots after a step-input.

I Gain

The I (integral) gain keeps a memory of the error. The I term increases when the desired rate is not reached over some time. It is important (especially when flying Acro mode), but it should not be set too high.

  • If the I gain is too high: you will see slow oscillations.
  • If the I gain is too low: this is best tested in Acro mode, by tilting the vehicle to one side about 45 degrees, and keeping it like that. It should keep the same angle. If it drifts back, increase the I gain. A low I gain is also visible in a log, when there is an offset between the desired and the actual rate over a longer time.

Typical values are between 0.3 and 0.5, and the pitch gain usually needs to be a bit higher.

Testing Procedure

To test the current gains, provide a fast step-input when hovering and observe how the vehicle reacts. It should immediately follow the command, and neither oscillate, nor overshoot (it feels 'locked-in').

You can create a step-input for example for roll, by quickly pushing the roll stick to one side, and then let it go back quickly (be aware that the stick will oscillate too if you just let go of it, because it is spring-loaded — a well-tuned vehicle will follow these oscillations).

A well-tuned vehicle in Acro mode will not tilt randomly towards one side,but keeps the attitude for tens of seconds even without any corrections.

Logs

Looking at a log helps to evaluate tracking performance as well. Here is an example for good roll and yaw rate tracking:

Pixhawk Auto Tune Pid Code

And here is a good example for the roll rate tracking with several flips, which create an extreme step-input. You can see that the vehicle overshoots only by a very small amount:

Attitude Controller

This controls the orientation and outputs desired body rates with the following tuning parameters:

  • Roll control (MC_ROLL_P)
  • Pitch control (MC_PITCH_P
  • Yaw control (MC_YAW_P)

The attitude controller is much easier to tune. In fact, most of the time the defaults do not need to be changed at all.

To tune the attitude controller, fly in Manual/Stabilized mode and increase the P gains gradually. If you start to see oscillations or overshoots, the gains are too high.

The following parameters can also be adjusted. These determine the maximum rotation rates around all three axes:

  • Maximum roll rate (MC_ROLLRATE_MAX)
  • Maximum pitch rate (MC_PITCHRATE_MAX
  • Maximum yaw rate (MC_YAWRATE_MAX)

Thrust Curve / Throttle PID Attenuation (TPA)

The tuning above optimises performance around the hover throttle. But it can be that you start to see oscillations when going towards full throttle.

There are two ways to counteract that:

  • Adjust the thrust curve with the THR_MDL_FAC parameter (preferred method).The thrust to PWM mapping is linear by default — setting THR_MDL_FAC to 1 makes it quadratic. Values in between use a linear interpolation of the two.Typical values are between 0.3 and 0.5.You can start off with 0.3 and then increase it by 0.1 at a time. If it is too high, you will start to notice oscillations at lower throttle values.

    The rate controller must be re-tuned if you change this parameter.

  • Enable Throttle PID Attenuation (TPA), which is used to linearly reduce thePID gains when the throttle isabove a threshold (breakpoint,MC_TPA_BREAK_* parameters). The attenuation rate is controlled viaMC_TPA_RATE_* parameters. TPA should generally not be needed, but it can beused in addition to the thrust curve parameter. The following illustrationshows the thrust in relationship to the attenuated PID values:

Pixhawk Auto Tune Pid 2

Airmode & Mixer Saturation

The rate controller outputs torque commands for all three axis (roll, pitch and yaw) and a scalar thrust value, which need to be converted into individual motor thrust commands. This step is called mixing.

It can happen that one of the motor commands becomes negative, for example for a low thrust and large roll command (and similarly it can go above 100%). This is a mixer saturation. It is physically impossible for the vehicle to execute these commands (except for reversible motors). PX4 has two modes to resolve this:

  • Either by reducing the commanded torque for roll such that none of the motor commands isbelow zero (Airmode disabled). In the extreme case where the commanded thrustis zero, it means that no attitude correction is possible anymore, which iswhy a minimum thrust is always required for this mode.
  • Or by increasing (boosting) the commanded thrust, such that none of the motorcommands is negative (Airmode enabled). This has the big advantage that theattitude/rates can be tracked correctly even at low or zero throttle. Itgenerally improves the flight performance.

    However it increases the total thrust which can lead to situations where thevehicle continues to ascend even though the throttle is reduced to zero. For awell-tuned, correctly functioning vehicle it is not the case, but for exampleit can happen when the vehicle strongly oscillates due to too high P tuninggains.

Both modes are shown below with a 2D illustration for two motors and a torquecommand for roll r. On the left motorr is added to the commanded thrust, while onthe right motor it is substracted from it.The motor thrusts are in green.With Airmode enabled, the commanded thrust is increased byb. When it is disabled,r is reduced.

If mixing becomes saturated towards the upper bound the commanded thrust is reduced to ensure that no motor is commanded to deliver more than 100% thrust. This behaviour is similar to the Airmode logic, and is applied whether Airmode is enabled or disabled.

Once your vehicle flies well you can enable Airmode via the MC_AIRMODE parameter.