Package swervelib
Class SwerveDriveTest
java.lang.Object
swervelib.SwerveDriveTest
Class to perform tests on the swerve drive.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final edu.wpi.first.units.MutableMeasure<edu.wpi.first.units.Angle>Tracks the rotations of an angular motorprivate static final edu.wpi.first.units.MutableMeasure<edu.wpi.first.units.Velocity<edu.wpi.first.units.Angle>>Tracks the velocity of an angular motorprivate static final edu.wpi.first.units.MutableMeasure<edu.wpi.first.units.Voltage>Tracks the voltage being applied to a motorprivate static final edu.wpi.first.units.MutableMeasure<edu.wpi.first.units.Distance>Tracks the distance travelled of a position motorprivate static final edu.wpi.first.units.MutableMeasure<edu.wpi.first.units.Velocity<edu.wpi.first.units.Distance>>Tracks the velocity of a positional motor -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidangleModules(SwerveDrive swerveDrive, edu.wpi.first.math.geometry.Rotation2d moduleAngle) Set the angle of the modules to a givenRotation2dstatic voidcenterModules(SwerveDrive swerveDrive) Set the modules to center to 0.static edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.ConfigcreateConfigCustomTimeout(double timeout) Creates a SysIdRoutine.Config with a custom final timeoutstatic doublefindCouplingRatio(SwerveDrive swerveDrive, double volts, boolean automatic) Find the coupling ratio for all modules.static doublefindDriveMotorKV(SwerveDrive swerveDrive, double minMovement, double testDelaySeconds, double maxVolts) Find the minimum amount of power required to move the swerve drive motors.static edu.wpi.first.wpilibj2.command.CommandgenerateSysIdCommand(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine sysIdRoutine, double delay, double quasiTimeout, double dynamicTimeout) Creates a command that can be mapped to a button or other trigger.static voidlogAngularMotorActivity(SwerveModule module, edu.wpi.first.wpilibj.sysid.SysIdRoutineLog log, Supplier<Double> powerSupplied) Logs info about the angle motor to the SysIdRoutineLogstatic voidlogAngularMotorDutyCycle(SwerveModule module, edu.wpi.first.wpilibj.sysid.SysIdRoutineLog log) Logs info about the angle motor to the SysIdRoutineLog.static voidlogAngularMotorVoltage(SwerveModule module, edu.wpi.first.wpilibj.sysid.SysIdRoutineLog log) Logs info about the angle motor to the SysIdRoutineLogstatic voidlogDriveMotorActivity(SwerveModule module, edu.wpi.first.wpilibj.sysid.SysIdRoutineLog log, Supplier<Double> powerSupplied) Logs power, position and velocuty info form the drive motor to the SysIdRoutineLogstatic voidlogDriveMotorDutyCycle(SwerveModule module, edu.wpi.first.wpilibj.sysid.SysIdRoutineLog log) Logs output, position and velocuty info form the drive motor to the SysIdRoutineLog
Although SysIdRoutine expects to be logging Voltage, this function logs in Duty-Cycle (percent output) because it results in correctly adjusted values in the analysis for use in this library.static voidlogDriveMotorVoltage(SwerveModule module, edu.wpi.first.wpilibj.sysid.SysIdRoutineLog log) Logs voltage, position and velocuty info form the drive motor to the SysIdRoutineLogstatic voidpowerAngleMotorsDutyCycle(SwerveDrive swerveDrive, double percentage) Power the angle motors for the swerve drive to a set percentage.static voidpowerAngleMotorsVoltage(SwerveDrive swerveDrive, double volts) Power the angle motors for the swerve drive to a set voltage.static voidpowerDriveMotorsDutyCycle(SwerveDrive swerveDrive, double percentage) Power the drive motors for the swerve drive to a set duty cycle percentage.static voidpowerDriveMotorsVoltage(SwerveDrive swerveDrive, double volts) Power the drive motors for the swerve drive to a set voltage.static edu.wpi.first.wpilibj2.command.sysid.SysIdRoutinesetAngleSysIdRoutine(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Config config, edu.wpi.first.wpilibj2.command.SubsystemBase swerveSubsystem, SwerveDrive swerveDrive) Sets up the SysId runner and logger for the angle motorsstatic edu.wpi.first.wpilibj2.command.sysid.SysIdRoutinesetDriveSysIdRoutine(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Config config, edu.wpi.first.wpilibj2.command.SubsystemBase swerveSubsystem, SwerveDrive swerveDrive, double maxVolts) Sets up the SysId runner and logger for the drive motors
-
Field Details
-
m_appliedVoltage
private static final edu.wpi.first.units.MutableMeasure<edu.wpi.first.units.Voltage> m_appliedVoltageTracks the voltage being applied to a motor -
m_distance
private static final edu.wpi.first.units.MutableMeasure<edu.wpi.first.units.Distance> m_distanceTracks the distance travelled of a position motor -
m_velocity
private static final edu.wpi.first.units.MutableMeasure<edu.wpi.first.units.Velocity<edu.wpi.first.units.Distance>> m_velocityTracks the velocity of a positional motor -
m_anglePosition
private static final edu.wpi.first.units.MutableMeasure<edu.wpi.first.units.Angle> m_anglePositionTracks the rotations of an angular motor -
m_angVelocity
private static final edu.wpi.first.units.MutableMeasure<edu.wpi.first.units.Velocity<edu.wpi.first.units.Angle>> m_angVelocityTracks the velocity of an angular motor
-
-
Constructor Details
-
SwerveDriveTest
public SwerveDriveTest()
-
-
Method Details
-
angleModules
public static void angleModules(SwerveDrive swerveDrive, edu.wpi.first.math.geometry.Rotation2d moduleAngle) Set the angle of the modules to a givenRotation2d- Parameters:
swerveDrive-SwerveDriveto use.moduleAngle-Rotation2dto set every module to.
-
powerDriveMotorsDutyCycle
Power the drive motors for the swerve drive to a set duty cycle percentage.- Parameters:
swerveDrive-SwerveDriveto control.percentage- Duty cycle percentage of voltage to send to drive motors.
-
powerAngleMotorsDutyCycle
Power the angle motors for the swerve drive to a set percentage.- Parameters:
swerveDrive-SwerveDriveto control.percentage- DutyCycle percentage to send to angle motors.
-
powerDriveMotorsVoltage
Power the drive motors for the swerve drive to a set voltage.- Parameters:
swerveDrive-SwerveDriveto control.volts- DutyCycle percentage of voltage to send to drive motors.
-
powerAngleMotorsVoltage
Power the angle motors for the swerve drive to a set voltage.- Parameters:
swerveDrive-SwerveDriveto control.volts- Voltage to send to angle motors.
-
centerModules
Set the modules to center to 0.- Parameters:
swerveDrive- Swerve Drive to control.
-
findDriveMotorKV
public static double findDriveMotorKV(SwerveDrive swerveDrive, double minMovement, double testDelaySeconds, double maxVolts) Find the minimum amount of power required to move the swerve drive motors.- Parameters:
swerveDrive-SwerveDriveto control.minMovement- Minimum amount of movement to drive motors.testDelaySeconds- Time in seconds for the motor to move.maxVolts- The maximum voltage to send to drive motors.- Returns:
- minimum voltage required.
-
findCouplingRatio
Find the coupling ratio for all modules.- Parameters:
swerveDrive-SwerveDriveto operate with.volts- Voltage to send to angle motors to spin.automatic- Attempt to automatically spin the modules.- Returns:
- Average coupling ratio.
-
createConfigCustomTimeout
public static edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Config createConfigCustomTimeout(double timeout) Creates a SysIdRoutine.Config with a custom final timeout- Parameters:
timeout- - the most a SysIdRoutine should run- Returns:
- A custom SysIdRoutine.Config
-
logDriveMotorDutyCycle
public static void logDriveMotorDutyCycle(SwerveModule module, edu.wpi.first.wpilibj.sysid.SysIdRoutineLog log) Logs output, position and velocuty info form the drive motor to the SysIdRoutineLog
Although SysIdRoutine expects to be logging Voltage, this function logs in Duty-Cycle (percent output) because it results in correctly adjusted values in the analysis for use in this library.- Parameters:
module- - the swerve module being loggedlog- - the logger
-
logDriveMotorVoltage
public static void logDriveMotorVoltage(SwerveModule module, edu.wpi.first.wpilibj.sysid.SysIdRoutineLog log) Logs voltage, position and velocuty info form the drive motor to the SysIdRoutineLog- Parameters:
module- - the swerve module being loggedlog- - the logger
-
logDriveMotorActivity
public static void logDriveMotorActivity(SwerveModule module, edu.wpi.first.wpilibj.sysid.SysIdRoutineLog log, Supplier<Double> powerSupplied) Logs power, position and velocuty info form the drive motor to the SysIdRoutineLog- Parameters:
module- - the swerve module being loggedlog- - the loggerpowerSupplied- - a functional supplier of the power to be logged
-
setDriveSysIdRoutine
public static edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine setDriveSysIdRoutine(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Config config, edu.wpi.first.wpilibj2.command.SubsystemBase swerveSubsystem, SwerveDrive swerveDrive, double maxVolts) Sets up the SysId runner and logger for the drive motors- Parameters:
config- - The SysIdRoutine.Config to useswerveSubsystem- - the subsystem to add to requirementsswerveDrive- - the SwerveDrive from which to access motor infomaxVolts- - The maximum voltage that should be applied to the drive motors.- Returns:
- A SysIdRoutine runner
-
logAngularMotorDutyCycle
public static void logAngularMotorDutyCycle(SwerveModule module, edu.wpi.first.wpilibj.sysid.SysIdRoutineLog log) Logs info about the angle motor to the SysIdRoutineLog.
Although SysIdRoutine expects to be logging Voltage, this function logs in Duty-Cycle (percent output) because it results in correctly adjusted values in the analysis for use in this library.- Parameters:
module- - the swerve module being loggedlog- - the logger
-
logAngularMotorVoltage
public static void logAngularMotorVoltage(SwerveModule module, edu.wpi.first.wpilibj.sysid.SysIdRoutineLog log) Logs info about the angle motor to the SysIdRoutineLog- Parameters:
module- - the swerve module being loggedlog- - the logger
-
logAngularMotorActivity
public static void logAngularMotorActivity(SwerveModule module, edu.wpi.first.wpilibj.sysid.SysIdRoutineLog log, Supplier<Double> powerSupplied) Logs info about the angle motor to the SysIdRoutineLog- Parameters:
module- - the swerve module being loggedlog- - the loggerpowerSupplied- - a functional supplier of the power to be logged
-
setAngleSysIdRoutine
public static edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine setAngleSysIdRoutine(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Config config, edu.wpi.first.wpilibj2.command.SubsystemBase swerveSubsystem, SwerveDrive swerveDrive) Sets up the SysId runner and logger for the angle motors- Parameters:
config- - The SysIdRoutine.Config to useswerveSubsystem- - the subsystem to add to requirementsswerveDrive- - the SwerveDrive from which to access motor info- Returns:
- A SysIdRoutineRunner
-
generateSysIdCommand
public static edu.wpi.first.wpilibj2.command.Command generateSysIdCommand(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine sysIdRoutine, double delay, double quasiTimeout, double dynamicTimeout) Creates a command that can be mapped to a button or other trigger. Delays can be set to customize the length of each part of the SysId Routine- Parameters:
sysIdRoutine- - The Sys Id routine runnerdelay- - seconds between each portion to allow motors to spin down, etc...quasiTimeout- - seconds to run the Quasistatic routines, so robot doesn't get too fardynamicTimeout- - seconds to run the Dynamic routines, 2-3 secs should be enough- Returns:
- A command that can be mapped to a button or other trigger
-