-
Notifications
You must be signed in to change notification settings - Fork 669
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
refactor(vehicle_cmd_gate)!: delete rate limit skipping function for vehicle departure #7720
refactor(vehicle_cmd_gate)!: delete rate limit skipping function for vehicle departure #7720
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
6606369
to
ea52b3a
Compare
ea52b3a
to
81c5197
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7720 +/- ##
=======================================
Coverage 29.13% 29.14%
=======================================
Files 1610 1614 +4
Lines 118128 118163 +35
Branches 50850 50848 -2
=======================================
+ Hits 34422 34434 +12
- Misses 74499 74525 +26
+ Partials 9207 9204 -3
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
steer_lim: [1.0, 1.0, 1.0, 0.8] | ||
steer_rate_lim: [1.0, 1.0, 1.0, 0.8] | ||
lon_acc_lim: [5.0, 5.0, 5.0, 4.0] | ||
lon_jerk_lim: [80.0, 5.0, 5.0, 4.0] |
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.
Please add some comments here to describe the reasons/backgrounds of this parameter.
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.
@TakaHoribe
Thank you. I added a brief comments
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.
@TakaHoribe
I also add some comments to the readme document
bd2a006
to
544bd64
Compare
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.
LGTM, but please check my suggestion before merge.
steer_lim: [1.0, 1.0, 1.0, 0.8] | ||
steer_rate_lim: [1.0, 1.0, 1.0, 0.8] | ||
lon_acc_lim: [5.0, 5.0, 5.0, 4.0] | ||
lon_jerk_lim: [80.0, 5.0, 5.0, 4.0] # The first element is required for quick pedal changes when stopping and starting on a slope. |
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.
This setting is not unique for a slope.
lon_jerk_lim: [80.0, 5.0, 5.0, 4.0] # The first element is required for quick pedal changes when stopping and starting on a slope. | |
lon_jerk_lim: [80.0, 5.0, 5.0, 4.0] # The first element is required for quick pedal changes when stopping and starting. |
… the parameter settings. Signed-off-by: Yuki Takagi <[email protected]>
Signed-off-by: Yuki Takagi <[email protected]>
Signed-off-by: Yuki Takagi <[email protected]>
Signed-off-by: Yuki Takagi <[email protected]>
823d345
to
745374d
Compare
Signed-off-by: Yuki Takagi <[email protected]>
…vehicle departure (autowarefoundation#7720) * delete a fucntion block. More appropriate function can be achieved by the parameter settings. * add notation to readme --------- Signed-off-by: Yuki Takagi <[email protected]>
…vehicle departure (autowarefoundation#7720) * delete a fucntion block. More appropriate function can be achieved by the parameter settings. * add notation to readme --------- Signed-off-by: Yuki Takagi <[email protected]>
…vehicle departure (autowarefoundation#7720) * delete a fucntion block. More appropriate function can be achieved by the parameter settings. * add notation to readme --------- Signed-off-by: Yuki Takagi <[email protected]>
…vehicle departure (autowarefoundation#7720) * delete a fucntion block. More appropriate function can be achieved by the parameter settings. * add notation to readme --------- Signed-off-by: Yuki Takagi <[email protected]>
* feat(simple_planning_simulator): add new vehicle model with falling down (autowarefoundation#7651) * add new vehicle model Signed-off-by: Yuki Takagi <[email protected]> * refactor(vehicle_cmd_gate)!: delete rate limit skipping function for vehicle departure (autowarefoundation#7720) * delete a fucntion block. More appropriate function can be achieved by the parameter settings. * add notation to readme --------- Signed-off-by: Yuki Takagi <[email protected]> * feat(pid_longitudinal_controller): re-organize diff limit structure and fix state change condition (autowarefoundation#7718) change diff limit structure change stopped condition define a new param Signed-off-by: Yuki Takagi <[email protected]> --------- Signed-off-by: Yuki Takagi <[email protected]>
…vehicle departure (autowarefoundation#7720) * delete a fucntion block. More appropriate function can be achieved by the parameter settings. * add notation to readme --------- Signed-off-by: Yuki Takagi <[email protected]>
Description
This PR delete rate limit skipping function which is activated when the vehicle departure.
More appropriate feature, including stopping, can be achieved by the parameter settings.
Related links
autowarefoundation/autoware_launch#1077
How was this PR tested?
I have tested this change by two type of real vehicles.
Notes for reviewers
None.
Effects on system behavior
None.