-
Notifications
You must be signed in to change notification settings - Fork 683
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
fix(controller): revival of dry steering #7903
fix(controller): revival of dry steering #7903
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
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!
Thank you!
…onstraint (autowarefoundation#7673)" This reverts commit 69258bd.
Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
fdfe33c
to
bbd6042
Compare
Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #7903 +/- ##
==========================================
- Coverage 28.76% 28.75% -0.01%
==========================================
Files 1592 1592
Lines 116667 116696 +29
Branches 49937 49952 +15
==========================================
+ Hits 33554 33560 +6
- Misses 74008 74024 +16
- Partials 9105 9112 +7
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
* Revert "fix(autoware_mpc_lateral_controller): delete the zero speed constraint (autowarefoundation#7673)" This reverts commit 69258bd. * dry steering Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * add comments Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * add minor fix and modify unit test for dry steering Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> --------- Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
* Revert "fix(autoware_mpc_lateral_controller): delete the zero speed constraint (autowarefoundation#7673)" This reverts commit 69258bd. * dry steering Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * add comments Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * add minor fix and modify unit test for dry steering Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> --------- Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
…1404) * Revert "fix(autoware_mpc_lateral_controller): delete the zero speed constraint (autowarefoundation#7673)" This reverts commit 69258bd. * dry steering * add comments * add minor fix and modify unit test for dry steering --------- Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
…1405) * Revert "fix(autoware_mpc_lateral_controller): delete the zero speed constraint (autowarefoundation#7673)" This reverts commit 69258bd. * dry steering * add comments * add minor fix and modify unit test for dry steering --------- Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
* Revert "fix(autoware_mpc_lateral_controller): delete the zero speed constraint (autowarefoundation#7673)" This reverts commit 69258bd. * dry steering Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * add comments Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * add minor fix and modify unit test for dry steering Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> --------- Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Description
Once the dry steering (steering while the ego stops) was supported in the controller for the geometric path by the start/goal planner.
However, this dry steering feature does not work well currently due to the recent change.
This PR revived the the dry steering feature.
Without this PR
case1 (geometric path planning)
https://github.com/autowarefoundation/autoware.universe/assets/20228327/07fc0dcb-21ba-45d5-9f8e-a4a10519488a
With this PR
case1 (geometric path planning)
https://github.com/autowarefoundation/autoware.universe/assets/20228327/5220ed78-d093-4c24-aae8-0ef3c9bbc9e3
case2 (freespace path planning)
https://github.com/autowarefoundation/autoware.universe/assets/20228327/23891825-e5d4-46ca-bf6b-b50f6f37b58c
Related links
How was this PR tested?
https://evaluation.tier4.jp/evaluation/reports/9cbcc1d0-bd17-5a1a-b383-c306c8e901cb?project_id=prd_jt
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.