Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: 50kmph params #508

Draft
wants to merge 4 commits into
base: awf-latest
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
max_trajectory_length: 200.0 # max trajectory length for resampling [m]
min_trajectory_length: 180.0 # min trajectory length for resampling [m]
resample_time: 2.0 # resample total time for dense sampling [s]
dense_resample_dt: 0.2 # resample time interval for dense sampling [s]
dense_resample_dt: 0.05 # resample time interval for dense sampling [s]
dense_min_interval_distance: 0.1 # minimum points-interval length for dense sampling [m]
sparse_resample_dt: 0.5 # resample time interval for sparse sampling [s]
sparse_min_interval_distance: 4.0 # minimum points-interval length for sparse sampling [m]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/**:
ros__parameters:
max_vel: 11.1 # max velocity limit [m/s]
max_vel: 13.9 # max velocity limit [m/s]

# constraints param for normal driving
normal:
min_acc: -1.0 # min deceleration [m/ss]
max_acc: 1.0 # max acceleration [m/ss]
min_jerk: -1.0 # min jerk [m/sss]
max_jerk: 1.0 # max jerk [m/sss]
min_acc: -2.0 # min deceleration [m/ss]
max_acc: 1.5 # max acceleration [m/ss]
min_jerk: -2.0 # min jerk [m/sss]
max_jerk: 2.5 # max jerk [m/sss]

# constraints to be observed
limit:
min_acc: -2.5 # min deceleration limit [m/ss]
max_acc: 1.0 # max acceleration limit [m/ss]
min_jerk: -1.5 # min jerk limit [m/sss]
max_jerk: 1.5 # max jerk limit [m/sss]
max_acc: 2.0 # max acceleration limit [m/ss]
min_jerk: -2.5 # min jerk limit [m/sss]
max_jerk: 3.5 # max jerk limit [m/sss]
Loading