2024.4.8.1 update

This commit is contained in:
thenetworkgrinch
2024-02-06 16:03:08 -06:00
parent c478a800b2
commit 2a78abb56b
113 changed files with 316 additions and 277 deletions

View File

@@ -100,7 +100,7 @@ public class SwerveController
* @param angle The desired angle of the robot in radians.
* @param currentHeadingAngleRadians The current robot heading in radians.
* @param maxSpeed Maximum speed in meters per second.
* @return {@link ChassisSpeeds} which can be sent to th Swerve Drive.
* @return {@link ChassisSpeeds} which can be sent to the Swerve Drive.
*/
public ChassisSpeeds getTargetSpeeds(
double xInput, double yInput, double angle, double currentHeadingAngleRadians, double maxSpeed)
@@ -138,7 +138,7 @@ public class SwerveController
* @param currentHeadingAngleRadians The current robot heading in radians.
* @param maxSpeed Maximum speed of the drive motors in meters per second, multiplier of the xInput
* and yInput.
* @return {@link ChassisSpeeds} which can be sent to th Swerve Drive.
* @return {@link ChassisSpeeds} which can be sent to the Swerve Drive.
*/
public ChassisSpeeds getTargetSpeeds(
double xInput,

View File

@@ -1141,4 +1141,19 @@ public class SwerveDrive
}
}
/**
* Enable or disable the {@link swervelib.parser.SwerveModuleConfiguration#useCosineCompensator} for all
* {@link SwerveModule}'s in the swerve drive. The cosine compensator will slow down or speed up modules that are
* close to their desired state in theory.
*
* @param enabled Usage of the cosine compensator.
*/
public void setCosineCompensator(boolean enabled)
{
for (SwerveModule module : swerveModules)
{
module.configuration.useCosineCompensator = enabled;
}
}
}

View File

@@ -4,7 +4,6 @@ import edu.wpi.first.math.controller.SimpleMotorFeedforward;
import edu.wpi.first.math.geometry.Rotation2d;
import edu.wpi.first.math.kinematics.SwerveModulePosition;
import edu.wpi.first.math.kinematics.SwerveModuleState;
import edu.wpi.first.math.util.Units;
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
import swervelib.encoders.SwerveAbsoluteEncoder;
import swervelib.math.SwerveMath;
@@ -29,15 +28,15 @@ public class SwerveModule
/**
* Absolute encoder position cache.
*/
public final Cache<Double> absolutePositionCache;
public final Cache<Double> absolutePositionCache;
/**
* Drive motor position cache.
*/
public final Cache<Double> drivePositionCache;
public final Cache<Double> drivePositionCache;
/**
* Drive motor velocity cache.
*/
public final Cache<Double> driveVelocityCache;
public final Cache<Double> driveVelocityCache;
/**
* Swerve Motors.
*/
@@ -235,6 +234,7 @@ public class SwerveModule
} else
{
driveMotor.setReference(velocity, feedforward.calculate(velocity));
desiredState.speedMetersPerSecond = velocity;
}
// If we are forcing the angle
@@ -290,14 +290,14 @@ public class SwerveModule
// https://api.ctr-electronics.com/phoenix6/release/java/src-html/com/ctre/phoenix6/mechanisms/swerve/SwerveModule.html#line.46
/* From FRC 900's whitepaper, we add a cosine compensator to the applied drive velocity */
/* To reduce the "skew" that occurs when changing direction */
double steerMotorError = desiredState.angle.getDegrees() - getAbsolutePosition();
/* If error is close to 0 rotations, we're already there, so apply full power */
/* If the error is close to 0.25 rotations, then we're 90 degrees, so movement doesn't help us at all */
cosineScalar = Math.cos(Units.degreesToRadians(steerMotorError));
cosineScalar = Rotation2d.fromDegrees(desiredState.angle.getDegrees())
.minus(Rotation2d.fromDegrees(getAbsolutePosition())).getCos(); // TODO: Investigate angle modulus by 180.
/* Make sure we don't invert our drive, even though we shouldn't ever target over 90 degrees anyway */
if (cosineScalar < 0.0)
{
cosineScalar = 0.0;
cosineScalar = 1;
}
return desiredState.speedMetersPerSecond * (cosineScalar);

View File

@@ -130,6 +130,6 @@ public class AnalogAbsoluteEncoderSwerve extends SwerveAbsoluteEncoder
public double getVelocity()
{
inaccurateVelocities.set(true);
return encoder.getValue();
return encoder.getValue() * 360;
}
}