-
Notifications
You must be signed in to change notification settings - Fork 294
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
feat: update acceleration limit #1181
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ | |
|
||
# stopped state | ||
stopped_vel: 0.0 | ||
stopped_acc: -3.4 # denotes pedal position | ||
stopped_acc: -2.49 # denotes pedal position | ||
|
||
# emergency state | ||
emergency_vel: 0.0 | ||
|
@@ -65,8 +65,8 @@ | |
acc_feedback_gain: 0.0 | ||
|
||
# acceleration limit | ||
max_acc: 3.0 | ||
min_acc: -5.0 | ||
max_acc: 1.5 | ||
min_acc: -2.49 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In order to follow the trajectory planned with |
||
|
||
# jerk limit | ||
max_jerk: 2.0 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
|
||
# constraints to be observed | ||
limit: | ||
min_acc: -2.5 # min deceleration limit [m/ss] | ||
min_acc: -2.49 # min deceleration limit [m/ss] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change may be only for Dense Urban ODD. |
||
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] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stopped_acc does not denote deceleration value, but denotes pedal position after the stop has achieved.
Hence this change is not required.