Swerve Drive Kinematics
import com.arcrobotics.ftclib.kinematics.wpilibkinematics.SwerveDriveKinematics
The SwerveDriveKinematics
class is a useful tool that converts between a ChassisSpeeds
object and several SwerveModuleState
objects, which contains velocities and angles for each swerve module of a swerve drive robot.
The SwerveModuleState
Class
SwerveModuleState
ClassThe SwerveModuleState
class contains information about the velocity and angle of a singular module of a swerve drive. The constructor for a SwerveModuleState
takes in two arguments, the velocity of the wheel on the module, and the angle of the module.
The velocity of the wheel must be in meters per second. An angle of 0 from the module represents the forward-facing direction.
Constructing the Kinematics Object
The SwerveDriveKinematics
class accepts a variable number of constructor arguments, with each argument being the location of a swerve module relative to the robot center (as a Translation2d
. The number of constructor arguments corresponds to the number of swerve modules. A swerve bot must have AT LEAST two swerve modules.
The locations for the modules must be relative to the center of the robot. Positive x values represent moving toward the front of the robot whereas positive y values represent moving toward the left of the robot.
Converting Chassis Speeds to Module States
The toSwerveModuleStates(ChassisSpeeds speeds)
method should be used to convert a ChassisSpeeds
object to a an array of SwerveModuleState
objects. This is useful in situations where you have to convert a forward velocity, sideways velocity, and an angular velocity into individual module states.
The elements in the array that is returned by this method are the same order in which the kinematics object was constructed. For example, if the kinematics object was constructed with the front left module location, front right module location, back left module location, and the back right module location in that order, the elements in the array would be the front left module state, front right module state, back left module state, and back right module state in that order.
Field-Oriented Drive
Recall that a ChassisSpeeds
object can be created from a set of desired field-oriented speeds. This feature can be used to get module states from a set of desired field-oriented speeds.
Using Custom Centers of Rotation
Sometimes, rotating around one specific corner might be desirable for certain evasive maneuvers. This type of behavior is also supported by the WPILib classes. The same ToSwerveModuleStates()
method accepts a second parameter for the center of rotation (as a Translation2d
). Just like the wheel locations, the Translation2d
representing the center of rotation should be relative to the robot center.
Because all robots are a rigid frame, the provided vx
and vy
velocities from the ChassisSpeeds
object will still apply for the entirety of the robot. However, the omega
from the ChassisSpeeds
object will be measured from the center of rotation.
For example, one can set the center of rotation on a certain module and if the provided ChassisSpeeds
object has a vx
and vy
of zero and a non-zero omega
, the robot will appear to rotate around that particular swerve module.
Converting Module States to Chassis Speeds
One can also use the kinematics object to convert an array of SwerveModuleState
objects to a singular ChassisSpeeds
object. The toChassisSpeeds(SwerveModuleState... states)
method can be used to achieve this.
Last updated