Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
increased maximum dt
Browse files Browse the repository at this point in the history
  • Loading branch information
Lewy Seiden committed Oct 29, 2023
1 parent 72e34f2 commit 6f3cc83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/optimization/SwerveTrajoptUtil.inc
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void ApplyKinematicsConstraints(
auto ay_n = ay.at(idx);
auto alpha_n = alpha.at(idx);
opti.SubjectTo(dt_n >= 0);
opti.SubjectTo(dt_n <= 0.1);
opti.SubjectTo(dt_n <= 0.2);
opti.SubjectTo(x_n_1 + vx_n * dt_n == x_n);
opti.SubjectTo(y_n_1 + vy_n * dt_n == y_n);
opti.SubjectTo(theta_n_1 + omega_n * dt_n == theta_n);
Expand Down

0 comments on commit 6f3cc83

Please sign in to comment.