-
Notifications
You must be signed in to change notification settings - Fork 682
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(lane_change): cap ego's predicted path velocity (RT1-8505) #9341
fix(lane_change): cap ego's predicted path velocity (RT1-8505) #9341
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
03b38f7
to
29f942c
Compare
fdb2aa8
to
69e9625
Compare
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
69e9625
to
cac877c
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #9341 +/- ##
==========================================
+ Coverage 29.50% 29.51% +0.01%
==========================================
Files 1441 1443 +2
Lines 108596 108614 +18
Branches 41502 41501 -1
==========================================
+ Hits 32038 32058 +20
+ Misses 73438 73436 -2
Partials 3120 3120
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…arefoundation#9341) * fix(lane_change): cap ego's predicted path velocity (RT1-8505) Signed-off-by: Zulfaqar Azmi <[email protected]> * properly cap based on 0.0 instead of min lc vel Signed-off-by: Zulfaqar Azmi <[email protected]> * fix build error Signed-off-by: Zulfaqar Azmi <[email protected]> --------- Signed-off-by: Zulfaqar Azmi <[email protected]>
…arefoundation#9341) * fix(lane_change): cap ego's predicted path velocity (RT1-8505) Signed-off-by: Zulfaqar Azmi <[email protected]> * properly cap based on 0.0 instead of min lc vel Signed-off-by: Zulfaqar Azmi <[email protected]> * fix build error Signed-off-by: Zulfaqar Azmi <[email protected]> --------- Signed-off-by: Zulfaqar Azmi <[email protected]>
…arefoundation#9341) * fix(lane_change): cap ego's predicted path velocity (RT1-8505) Signed-off-by: Zulfaqar Azmi <[email protected]> * properly cap based on 0.0 instead of min lc vel Signed-off-by: Zulfaqar Azmi <[email protected]> * fix build error Signed-off-by: Zulfaqar Azmi <[email protected]> --------- Signed-off-by: Zulfaqar Azmi <[email protected]>
Description
the current ego predicted path velocity doesn’t have any maximum limit put into it.
However, it should have limit, since for each lane change path, there is prepare velocity and lane changing velocity assigned to it.
With the current computation, the velocity might exceed prepare velocity and lane changing velocity.
Before
The polygon is longer.
After
The size of the polygon is reduced.
Related links
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.