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.

Functions

Link copied to clipboard

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

fun getModulePositions(trackWidth: Double, wheelBase: Double): List<Vector2d>

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

Link copied to clipboard
fun moduleToRobotVelocities(wheelVelocities: List<Double>, moduleOrientations: List<Angle>, modulePositions: List<Vector2d>): Pose2d
fun moduleToRobotVelocities(wheelVelocities: List<Double>, moduleOrientations: List<Angle>, trackWidth: Double, wheelBase: Double = trackWidth): Pose2d

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

Link copied to clipboard

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

Link copied to clipboard
fun robotToModuleAngularVelocities(robotVel: Pose2d, robotAccel: Pose2d, modulePositions: List<Vector2d>): List<Angle>

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

Link copied to clipboard
fun robotToModuleOrientations(robotVel: Pose2d, modulePositions: List<Vector2d>): List<Angle>

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

Link copied to clipboard

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

Link copied to clipboard
fun robotToWheelAccelerations(robotVel: Pose2d, robotAccel: Pose2d, modulePositions: List<Vector2d>): List<Double>

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

Link copied to clipboard
fun robotToWheelVelocities(robotVel: Pose2d, modulePositions: List<Vector2d>): List<Double>

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