use of com.team2753.trajectory.FollowerConfig in project Relic_Main by TeamOverdrive.
the class TestingSplinesDoubleTrajectory method runOpMode.
@Override
public void runOpMode() throws InterruptedException {
// Used to log the speed and position to be able to plot the data in Excel
PhoneLogger logger = new PhoneLogger("SpeedPosTimeData.csv");
// Generate a simple path for testing
Path path = Line.calculate(defaultTrajectoryConfig, TrajectoryGenerator.SCurvesStrategy, 0, 0, 15, 0);
// Init our drivetrain
Drive mDrive = new Drive();
mDrive.init(this, true);
// Use speed control to make the output of the motor linear
mDrive.setRunMode(DcMotor.RunMode.RUN_USING_ENCODER);
/*
* Used to make it easier to save constants
* P term, D term, V term, A term, P term for gyro compensation
* We are not using I because the feed-forward + feed-back control
* will be enough to control the system
*/
FollowerConfig followerConfig = new FollowerConfig(Constants.p.getDouble(), Constants.d.getDouble(), Constants.v.getDouble(), Constants.a.getDouble(), Constants.headingP.getDouble());
// New Drive Controller
TrajectoryDriveController controller = new TrajectoryDriveController(mDrive, followerConfig);
// Tell the controller what profiles to follow
// (the two 1's are in case we want to mirror the path)
controller.loadPath(path, 1, 1);
// Lets go
telemetry.setAutoClear(false);
telemetry.addData("Ready to Start", "");
telemetry.update();
waitForStart();
telemetry.setAutoClear(true);
telemetry.clearAll();
// Used to calculate the change in time from the last reading
ElapsedTime dtTimer = new ElapsedTime();
ElapsedTime timeToComplete = new ElapsedTime();
double totalTime = 0;
boolean first = true;
// Used to calculate speed
double lastPosition = 0;
while (opModeIsActive()) {
// data
telemetry.addData("Time To Complete", totalTime);
telemetry.addData("Left Distance", mDrive.getLeftDistanceInches());
telemetry.addData("Right Distance", mDrive.getRightDistanceInches());
telemetry.addData("Left Speed", controller.wantedLeftSpeed);
telemetry.addData("Right Speed", controller.wantedRightSpeed);
telemetry.addData("Speed output", controller.getGoal());
telemetry.addData("Gyro", mDrive.getGyroAngleRadians());
telemetry.addData("dt", dtTimer.seconds());
telemetry.addData("Number of Segments", controller.getNumSegments());
telemetry.addData("Current Pos", controller.getFollowerCurrentSegment());
telemetry.update();
// Make sure we only update when we told the controller/trajectory we would
if (dtTimer.seconds() > defaultTrajectoryConfig.dt && !controller.isOnTarget()) {
// Update our controller
controller.update();
// Used to log data so we can plot it
double currentTime = timeToComplete.milliseconds();
double currentLeftPos = mDrive.getLeftDistanceInches();
double left_speed = (currentLeftPos - lastPosition) / dtTimer.milliseconds();
logger.write(String.valueOf(currentTime) + "," + String.valueOf(path.getLeftWheelTrajectory().getSegment(controller.getFollowerCurrentSegment()).pos) + "," + String.valueOf(currentLeftPos));
idle();
dtTimer.reset();
} else if (controller.isOnTarget()) {
mDrive.setLeftRightPower(0, 0);
if (first) {
// Track how long it took to complete the path
totalTime = timeToComplete.seconds();
first = false;
}
}
}
// Close the logger
logger.close();
// Be able to move the robot after we run it
mDrive.setRunMode(DcMotor.RunMode.RUN_WITHOUT_ENCODER);
}
use of com.team2753.trajectory.FollowerConfig in project Relic_Main by TeamOverdrive.
the class TestingSplinesSingleTrajectory method runOpMode.
@Override
public void runOpMode() throws InterruptedException {
telemetry.addData("Started", "");
telemetry.update();
TrajectoryGenerator.Config config = new TrajectoryGenerator.Config();
// In/s
config.max_vel = 2.0 * 12;
// In/s^2
config.max_acc = 0.6 * 12;
// In/s^3
config.max_jerk = 0.4 * 12;
// seconds
config.dt = 0.01;
Trajectory trajectory = TrajectoryGenerator.generate(config, TrajectoryGenerator.SCurvesStrategy, 0, 0, 10, 0, 0);
telemetry.addData("Trajectory Generation Finished", "");
telemetry.update();
double gearing = Constants.DRIVE_GEAR_REDUCTION;
// Volts
double Vmax = 12;
// lbs
double mass = 48.0 / 9.8;
double numberOfMotors = 2;
// lb-in
double stallTorque = 1.531179;
double velocityMax = (5400 * Math.PI * Constants.WHEEL_DIAMETER_INCHES) / (gearing);
double kv = Vmax / velocityMax;
double accelerationMax = (2 * numberOfMotors * stallTorque * gearing) / (4.0 * mass);
double ka = Vmax / accelerationMax;
FollowerConfig followerConfig = new FollowerConfig(0.1, 0, kv, ka, Math.PI / 1000);
TrajectoryFollower follower = new TrajectoryFollower("Follower");
follower.configure(followerConfig.get()[0], followerConfig.get()[1], followerConfig.get()[2], followerConfig.get()[3], followerConfig.get()[4]);
follower.setTrajectory(trajectory);
Drive mDrive = new Drive();
mDrive.init(this, true);
mDrive.setRunMode(DcMotor.RunMode.RUN_USING_ENCODER);
waitForStart();
ElapsedTime time = new ElapsedTime();
sleep(10);
while (!follower.isFinishedTrajectory() && opModeIsActive()) {
if (time.seconds() > config.dt) {
double distance = (mDrive.getRightDistanceInches() + mDrive.getLeftDistanceInches()) / 2;
double forwardSpeed = follower.calculate(distance);
telemetry.addData("Distance", distance);
telemetry.addData("Turning Error", mDrive.getGyroAngleDegrees() - follower.getHeading());
telemetry.addData("Forward", forwardSpeed);
telemetry.update();
mDrive.setLeftRightPower(forwardSpeed, forwardSpeed);
time.reset();
}
}
mDrive.setLeftRightPower(0, 0);
}
use of com.team2753.trajectory.FollowerConfig in project Relic_Main by TeamOverdrive.
the class AutoDrive method loadPathNoReset.
public void loadPathNoReset(Trajectory left, Trajectory right, double direction, double angles) {
followerConfig = new FollowerConfig(Constants.p.getDouble(), Constants.d.getDouble(), Constants.v.getDouble(), Constants.a.getDouble(), Constants.headingP.getDouble());
controller = new TrajectoryDriveController(mDrive, followerConfig);
controller.loadProfileNoReset(left, right, direction, angles);
}
use of com.team2753.trajectory.FollowerConfig in project Relic_Main by TeamOverdrive.
the class AutoDrive method configureForPathFollowing.
public void configureForPathFollowing(Path pathToFollow, double direction, double angles) {
followerConfig = new FollowerConfig(Constants.p.getDouble(), Constants.d.getDouble(), Constants.v.getDouble(), Constants.a.getDouble(), Constants.headingP.getDouble());
controller = new TrajectoryDriveController(mDrive, followerConfig);
controller.loadPath(pathToFollow, direction, angles);
}
Aggregations