DifferentialDriveKinematics

class wpimath.kinematics.DifferentialDriveKinematics(trackWidth: meters)

Bases: pybind11_object

Helper class that converts a chassis velocity (dx and dtheta components) to left and right wheel velocities for a differential drive.

Inverse kinematics converts a desired chassis speed into left and right velocity components whereas forward kinematics converts left and right component velocities into a linear and angular chassis speed.

Constructs a differential drive kinematics object.

Parameters:

trackWidth – The track width of the drivetrain. Theoretically, this is the distance between the left wheels and right wheels. However, the empirical value may be larger than the physical measured value due to scrubbing effects.

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

Returns a chassis speed from left and right component velocities using forward kinematics.

Parameters:

wheelSpeeds – The left and right velocities.

Returns:

The chassis speed.

toTwist2d(leftDistance: meters, rightDistance: meters) wpimath.geometry._geometry.Twist2d

Returns a twist from left and right distance deltas using forward kinematics.

Parameters:
  • leftDistance – The distance measured by the left encoder.

  • rightDistance – The distance measured by the right encoder.

Returns:

The resulting Twist2d.

toWheelSpeeds(chassisSpeeds: wpimath.kinematics._kinematics.ChassisSpeeds) wpimath.kinematics._kinematics.DifferentialDriveWheelSpeeds

Returns left and right component velocities from a chassis speed using inverse kinematics.

Parameters:

chassisSpeeds – The linear and angular (dx and dtheta) components that represent the chassis’ speed.

Returns:

The left and right velocities.

property trackWidth