MecanumDriveKinematics

class wpimath.kinematics.MecanumDriveKinematics(frontLeftWheel: wpimath.geometry._geometry.Translation2d, frontRightWheel: wpimath.geometry._geometry.Translation2d, rearLeftWheel: wpimath.geometry._geometry.Translation2d, rearRightWheel: wpimath.geometry._geometry.Translation2d)

Bases: pybind11_object

Helper class that converts a chassis velocity (dx, dy, and dtheta components) into individual wheel speeds.

The inverse kinematics (converting from a desired chassis velocity to individual wheel speeds) uses the relative locations of the wheels with respect to the center of rotation. The center of rotation for inverse kinematics is also variable. This means that you can set your set your center of rotation in a corner of the robot to perform special evasion maneuvers.

Forward kinematics (converting an array of wheel speeds into the overall chassis motion) is performs the exact opposite of what inverse kinematics does. Since this is an overdetermined system (more equations than variables), we use a least-squares approximation.

The inverse kinematics: [wheelSpeeds] = [wheelLocations] * [chassisSpeeds] We take the Moore-Penrose pseudoinverse of [wheelLocations] and then multiply by [wheelSpeeds] to get our chassis speeds.

Forward kinematics is also used for odometry – determining the position of the robot on the field using encoders and a gyro.

Constructs a mecanum drive kinematics object.

Parameters:
  • frontLeftWheel – The location of the front-left wheel relative to the physical center of the robot.

  • frontRightWheel – The location of the front-right wheel relative to the physical center of the robot.

  • rearLeftWheel – The location of the rear-left wheel relative to the physical center of the robot.

  • rearRightWheel – The location of the rear-right wheel relative to the physical center of the robot.

toChassisSpeeds(wheelSpeeds: wpimath.kinematics._kinematics.MecanumDriveWheelSpeeds) wpimath.kinematics._kinematics.ChassisSpeeds

Performs forward kinematics to return the resulting chassis state from the given wheel speeds. This method is often used for odometry – determining the robot’s position on the field using data from the real-world speed of each wheel on the robot.

Parameters:

wheelSpeeds – The current mecanum drive wheel speeds.

Returns:

The resulting chassis speed.

toTwist2d(wheelDeltas: wpimath.kinematics._kinematics.MecanumDriveWheelPositions) wpimath.geometry._geometry.Twist2d

Performs forward kinematics to return the resulting Twist2d from the given wheel position deltas. This method is often used for odometry – determining the robot’s position on the field using data from the distance driven by each wheel on the robot.

Parameters:

wheelDeltas – The change in distance driven by each wheel.

Returns:

The resulting chassis speed.

toWheelSpeeds(chassisSpeeds: wpimath.kinematics._kinematics.ChassisSpeeds, centerOfRotation: wpimath.geometry._geometry.Translation2d = Translation2d(x=0.000000, y=0.000000)) wpimath.kinematics._kinematics.MecanumDriveWheelSpeeds

Performs inverse kinematics to return the wheel speeds from a desired chassis velocity. This method is often used to convert joystick values into wheel speeds.

This function also supports variable centers of rotation. During normal operations, the center of rotation is usually the same as the physical center of the robot; therefore, the argument is defaulted to that use case. However, if you wish to change the center of rotation for evasive maneuvers, vision alignment, or for any other use case, you can do so.

Parameters:
  • chassisSpeeds – The desired chassis speed.

  • centerOfRotation – The center of rotation. For example, if you set the center of rotation at one corner of the robot and provide a chassis speed that only has a dtheta component, the robot will rotate around that corner.

Returns:

The wheel speeds. Use caution because they are not normalized. Sometimes, a user input may cause one of the wheel speeds to go above the attainable max velocity. Use the MecanumDriveWheelSpeeds.normalize() method to rectify this issue. In addition, you can use Python unpacking syntax to directly assign the wheel speeds to variables:

fl, fr, bl, br = kinematics.toWheelSpeeds(chassisSpeeds)