Skip to content

Ackermann Rover

main (PX4 v1.16+) Experimental

An Ackermann rover controls its direction by pointing the front wheels in the direction of travel — the Ackermann steering geometry compensates for the fact that wheels on the inside and outside of the turn move at different rates. This kind of steering is used on most commercial vehicles, including cars, trucks etc.

Axial Trail Honcho

INFO

PX4 does not require that the vehicle uses the Ackermann geometry and will work with any front-steering rover.

Basic Setup

To start using the ackermann rover:

  1. Enable the module by flashing the PX4 rover build onto your flight controller.

  2. In the Airframe configuration select the Generic Rover Ackermann:

    QGC screenshot showing selection of the airframe 'Generic ackermann rover'

    WARNING

    Do not use the Generic Ground Vehicle (Ackermann) airframe as that will load the (Deprecated) Rover Position Control module.

    Select the Apply and Restart button.

    INFO

    If this airframe is not displayed and you have checked that you are using rover firmware (not the default), you can alternatively enable this frame by setting the SYS_AUTOSTART parameter to 51000.

  3. Open the Actuators Configuration & Testing to map the steering and throttle functions to flight controller outputs.

This is sufficient to drive the the rover in manual mode (see Drive modes).

INFO

Many features of this module are disabled by default, and are only enabled by setting certain parameters. The Tuning (basic) section goes through the minimum setup required to start driving missions and the Tuning (advanced) section outlines the remaining features and tuning variables of the module.

Tuning (Basic)

To start driving missions navigate to Parameters in QGroundControl and set the following parameters:

ParameterDescriptionUnit
RA_WHEEL_BASEWheel-base of the rover which is measured from the back to the front wheelm
RA_MAX_STR_ANGMaximum steering angle of the roverdeg
RA_MISS_VEL_DEFDefault velocity the rover will drive during the missionm/s

Geometric parameters

This is enough to start driving missions, but depending on the rover might not yet lead to satisfactory performance . If that is the case further tuning is required which is outlined in Mission parameters.

Tuning (Advanced)

To get an overview of all parameters that are related to the Ackermann rover module navigate to the Rover Ackermann group in the Parameters section of QGroundControl.

General Parameters

These parameters affect the general behaviour of the rover. This will influence both auto and manual modes.

ParameterDescriptionUnit
RA_MAX_SPEEDSpeed the rover drives at maximum throttlem/s

This is used for a feed-forward term on the speed controller in mission mode and necessary for the acceleration slew rate.

Slew Rates

Slew rates limit how fast the signal that is sent to the motors is allowed to change:

ParameterDescriptionUnit
RA_MAX_ACCELLimit on the acceleration of the roverm/s^2
RA_MAX_STR_RATELimit on the steering ratedeg/s

WARNING

The slew rates are not based on measurements but on assumed linear relation between the throttle input and RA_MAX_SPEED or steering input and RA_MAX_STR_ANG respectively. Therefore these two parameters have to be set for the slew rates to work!

Mission Parameters

These parameters only affect vehicle in Mission Mode.

WARNING

The parameters in Tuning (basic) must also be set to drive missions!

The module uses a control algorithm called pure pursuit, see Pure Pursuit Guidance Logic for the basic tuning process.

INFO

Increasing PP_LOOKAHD_MIN can help to make the steering less aggressive at slow speeds. This can be useful especially if the corner slow down effect is enabled.

Cornering Parameters

Corner cutting

The module employs a special cornering logic causing the rover to "cut corners" to achieve a smooth trajectory. This is done by scaling the acceptance radius based on the corner the rover has to drive (for geometric explanation see Cornering logic).

Cornering Logic

The degree to which corner cutting is allowed can be tuned, or disabled, with the following parameters:

ParameterDescriptionUnit
NAV_ACC_RADDefault acceptance radiusm
RA_ACC_RAD_MAXMaximum radius the acceptance radius can be scaled tom
RA_ACC_RAD_GAINTuning parameter-

The tuning parameter is a multiplicand on the calculated ideal acceptance radius to account for dynamic effects.

Corner slow down

To smoothen the trajectory further and reduce the risk of the rover rolling over, the mission speed is reduced as the rover gets closer to a waypoint:

  • During cornering the rover drives at a speed that is equal to the the inverse of the acceptance radius (calculated using the corner cutting logic) multiplied with a tuning parameter called RA_MISS_VEL_GAIN.
  • In between waypoints (straight line) the rover speed is regulated such that it will arrive at the acceptance radius of the waypoint with the desired cornering speed. This requires RA_MAX_ACCEL and RA_MAX_JERK to be set.

The mission speed is constrained between a minimum allowed speed RA_MISS_VEL_MIN and the default mission speed RA_MISS_VEL_DEF.

ParameterDescriptionUnit
RA_MISS_VEL_DEFDefault mission speedm/s
RA_MISS_VEL_MINMinimum the speed can be reduced to during corneringm/s
RA_MISS_VEL_GAINTuning parameter for the velocity reduction-
RA_MAX_JERKLimit for forwards acc/deceleration change.m/s3

Mission Cornering Logic (Info only)

To enable a smooth trajectory, the acceptance radius of waypoints is scaled based on the angle between a line segment from the current-to-previous and current-to-next waypoints. The ideal trajectory would be to arrive at the next line segment with the heading pointing towards the next waypoint. For this purpose the minimum turning circle of the rover is inscribed tangentially to both line segments.

Cornering Logic

The acceptance radius of the waypoint is set to the distance from the waypoint to the tangential points between the circle and the line segments:

rmin=Lsin(δmax)θ=12arccos(ab|a||b|)racc=rmintan(θ)
SymbolDescriptionUnit
aVector from current to previous WPm
bVector from current to next WPm
rminMinimum turn radiusm
δmaxMaximum steer anglem
raccAcceptance radiusm