SwerveKinematics

public class SwerveKinematics

Swerve 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.

Properties

Link copied to clipboard
public final static SwerveKinematics INSTANCE

Functions

Link copied to clipboard
public final static List<Vector2d> getModulePositions(Double trackWidth)

Returns the modules positions of a swerve drive with two modules spaced trackWidth apart.

public final static List<Vector2d> getModulePositions(Double trackWidth, Double wheelBase)

Returns the module positions of a swerve drive with four modules in a rectangular configuration.

Link copied to clipboard
public final static Pose2d moduleToRobotVelocities(List<Double> wheelVelocities, List<Angle> moduleOrientations, List<Vector2d> modulePositions)
public final static Pose2d moduleToRobotVelocities(List<Double> wheelVelocities, List<Angle> moduleOrientations, Double trackWidth)
public final static Pose2d moduleToRobotVelocities(List<Double> wheelVelocities, List<Angle> moduleOrientations, Double trackWidth, Double wheelBase)

Computes the robot velocities corresponding to wheelVelocities, moduleOrientations, and the drive parameters.

Link copied to clipboard
public final static List<Vector2d> robotToModuleAccelerationVectors(Pose2d robotAccel, List<Vector2d> modulePositions)

Computes the acceleration vectors corresponding to robotAccel given the provided modulePositions.

Link copied to clipboard
public final static List<Angle> robotToModuleAngularVelocities(Pose2d robotVel, Pose2d robotAccel, List<Vector2d> modulePositions)

Computes the module angular velocities corresponding to robotAccel given the provided modulePositions.

Link copied to clipboard
public final static List<Angle> robotToModuleOrientations(Pose2d robotVel, List<Vector2d> modulePositions)

Computes the module orientations corresponding to robotVel given the provided modulePositions.

Link copied to clipboard
public final static List<Vector2d> robotToModuleVelocityVectors(Pose2d robotVel, List<Vector2d> modulePositions)

Computes the module velocity vectors corresponding to robotVel given the provided modulePositions.

Link copied to clipboard
public final static List<Double> robotToWheelAccelerations(Pose2d robotVel, Pose2d robotAccel, List<Vector2d> modulePositions)

Computes the wheel accelerations corresponding to robotAccel given the provided modulePositions.

Link copied to clipboard
public final static List<Double> robotToWheelVelocities(Pose2d robotVel, List<Vector2d> modulePositions)

Computes the wheel velocities corresponding to robotVel given the provided modulePositions.