Anticogging

Warning

This is an experimental feature. It has not yet been tested with a wide range of motors or ODrive settings. You are encouraged to reach out to us and tell us how it goes, especially if you run into problems.

Overview

When turning a BLDC motor by hand, one can usually feel a bit of “bumpiness”. This is called “cogging torque” and stems from the internal magnet and stator geometry.

Anticogging refers to an algorithm that runs on the motor controller and actively cancels out the motor’s cogging torque in order to get smoother, more accurate motion control.

ODrive’s anticogging algorithm works by first running a one-time calibration that measures the cogging torque map of the motor. This map is then used to add a position-dependent feedforward term to the torque command generated by the controller.

Preparation

  1. Start by configuring the controller in the GUI or odrivetool, such that it can spin the motor in velocity control mode.

  2. Make sure the velocity gain is tuned to a level where it doesn’t vibrate or oscillate. You can do this either in the GUI’s Dashboard, or in odrivetool by setting odrv0.axis0.controller.config.vel_gain.

  3. Additionally, you’ll need to configure a Position Reference Frame which does not shift between reboots (except by integer turn counts).

These modes are suitable for anticogging:

  • Absolute Encoder Reference Frame

  • Index-based Reference Frame

  • Custom User Reference Frame, if the condition above holds.

    A valid implementation would be to set odrv0.axis0.pos_estimate = angle on every start, where angle is the current angle of the axis. For example if you’re using the onboard encoder: odrv0.axis0.pos_estimate = odrv0.onboard_encoder0.raw. If you’re using an AMT21 encoder: odrv0.axis0.pos_estimate = odrv0.rs485_group0.raw.

These modes are not suitable for anticogging:

  • Startup-Relative Reference Frame: Not suitable because the reference frame shifts arbitrarily between reboots.

  • Homed Reference Frame: Not recommended because homing switches are often not precise enough. Compatibility between homing and anticogging will be improved in a future update.

Note

<axis>.controller.config.circular_setpoint_range must be kept at the default of 1. This limitation will be removed in future versions.

How to enable anticogging

  1. Configure your ODrive according to the preparation instructions above.

  2. Configure the anticogging parameters. See here for a full list or parameters and their descriptions.

    Below you can find examples for some selected motors. If you’re using a different motor, you can use these values as an orientation.

  3. Run the calibration: odrv0.axis0.requested_state = AxisState.ANTICOGGING_CALIBRATION. The calibration takes six minutes by default. The motor will start by spinning moderately fast, then slow down, and then do the same in the other direction. During this time it iteratively builds a map of the motor’s cogging torque. The motor should not come to a stop during the calibration even for an instant. If it does, you need to tweak the parameters and try again.

  4. After the calibration has completed, enable anticogging: odrv0.axis0.config.anticogging.enabled = True.

  5. Save the calibrated torque map and configuration changes: odrv0.save_configuration()

For more details, including customization options, refer to the API reference for ODrive.AnticoggingConfig.

../_images/anticogging-d5312s-off-on.png

Anticogging on a D5312s with a velocity setpoint of 0.05 rev/s.

Limitations

While anticogging does the best it can to cancel out the cogging torque, it is not perfect. It introduces a feedforward term in the controller which depends on the position estimate, which itself can be delayed or inaccurate. Thereby it can reduce stability margins for your system and require you to tune down gains to be less aggressive.

Therefore, if you find anticogging to give unsatisfactory results for your application, consider selecting a motor that is specifically designed for low cogging torque. Such motors are typically recognized by their skewed magnet or stator arrangement.

../_images/skewed-magnetization.jpg

Known issues

  • Writing to controller.config during an ongoing calibration causes undefined behavior.