Skip to content

Commit

Permalink
Update coupling ratio for the 16T pinion
Browse files Browse the repository at this point in the history
  • Loading branch information
superpenguin612 committed Mar 6, 2024
1 parent 35ca3fc commit a55ac92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ private MusicTrack(String filename) {

SWERVE_CONSTANTS.DRIVE_GEARING = 5.357;
SWERVE_CONSTANTS.STEER_GEARING = 150.0 / 7.0;
SWERVE_CONSTANTS.COUPLING_RATIO = 50.0 / 16.0;
SWERVE_CONSTANTS.WHEEL_CIRCUMFERENCE = 2.0 * Math.PI * 0.04762663828;
SWERVE_CONSTANTS.DRIVE_ENCODER_ROTATIONS_TO_METERS = SWERVE_CONSTANTS.WHEEL_CIRCUMFERENCE
/ SWERVE_CONSTANTS.DRIVE_GEARING;
Expand Down Expand Up @@ -241,7 +242,7 @@ public static final class Shooter {
public static final double right_kS = 0.12047;
public static final double right_kV = 0.10746;
public static final double right_kA = 0.021566;
public static final double TOLERANCE = 1;
public static final double TOLERANCE = 5;

public static final double MAX_VELOCITY_METERS_PER_SECOND = 80;
public static final double MAX_ACCELERATION_METERS_PER_SECOND_SQUARED = 10;
Expand Down

0 comments on commit a55ac92

Please sign in to comment.