MecanumKinematics

public class MecanumKinematics

Mecanum drive kinematic equations. All wheel positions and velocities are given starting with front left and proceeding counter-clockwise (i.e., front left, back left, back right, front right). Robot poses are specified in a coordinate system with positive x pointing forward, positive y pointing left, and positive heading measured counter-clockwise from the x-axis.

This paper provides a motivated derivation.

Properties

Link copied to clipboard
public final static MecanumKinematics INSTANCE

Functions

Link copied to clipboard
public final static List<Double> robotToWheelAccelerations(Pose2d robotAccel, Double trackWidth)
public final static List<Double> robotToWheelAccelerations(Pose2d robotAccel, Double trackWidth, Double wheelBase)
public final static List<Double> robotToWheelAccelerations(Pose2d robotAccel, Double trackWidth, Double wheelBase, Double lateralMultiplier)

Computes the wheel accelerations corresponding to robotAccel given the provided trackWidth and wheelBase.

Link copied to clipboard
public final static List<Double> robotToWheelVelocities(Pose2d robotVel, Double trackWidth)
public final static List<Double> robotToWheelVelocities(Pose2d robotVel, Double trackWidth, Double wheelBase)
public final static List<Double> robotToWheelVelocities(Pose2d robotVel, Double trackWidth, Double wheelBase, Double lateralMultiplier)

Computes the wheel velocities corresponding to robotVel given the provided trackWidth and wheelBase.

Link copied to clipboard
public final static Pose2d wheelToRobotVelocities(List<Double> wheelVelocities, Double trackWidth)
public final static Pose2d wheelToRobotVelocities(List<Double> wheelVelocities, Double trackWidth, Double wheelBase)
public final static Pose2d wheelToRobotVelocities(List<Double> wheelVelocities, Double trackWidth, Double wheelBase, Double lateralMultiplier)

Computes the robot velocity corresponding to wheelVelocities and the given drive parameters.