-
Notifications
You must be signed in to change notification settings - Fork 716
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(accel_brake_map_calibrator): add new Recursive Least Square method #1255
feat(accel_brake_map_calibrator): add new Recursive Least Square method #1255
Conversation
c7b996d
to
1d86132
Compare
I rebased to autowarefoundation/main. The original code was saved in my fork just for in case. |
Codecov ReportBase: 10.82% // Head: 10.36% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #1255 +/- ##
==========================================
- Coverage 10.82% 10.36% -0.47%
==========================================
Files 1178 1170 -8
Lines 84624 84005 -619
Branches 19947 19581 -366
==========================================
- Hits 9159 8704 -455
- Misses 65756 65795 +39
+ Partials 9709 9506 -203
*This pull request uses carry forward flags. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
@@ -791,6 +829,128 @@ void AccelBrakeMapCalibrator::executeUpdate( | |||
.emplace_back(measured_acc); | |||
} | |||
|
|||
bool AccelBrakeMapCalibrator::updateFourCellAroundOffset( |
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.
There are so many if-condition for accel_mode in this function.
Please define variables for the accel_mode at the top of the function, and remove the if-condition from the algorithm code, like below:
before
const double zll = accel_mode ? update_accel_map_value_.at(accel_pedal_index).at(accel_vel_index)
: update_brake_map_value_.at(brake_pedal_index).at(brake_vel_index);
const double zhl = accel_mode
? update_accel_map_value_.at(accel_pedal_index + 1).at(accel_vel_index)
: update_brake_map_value_.at(brake_pedal_index + 1).at(brake_vel_index);
const double zlh = accel_mode
? update_accel_map_value_.at(accel_pedal_index).at(accel_vel_index + 1)
: update_brake_map_value_.at(brake_pedal_index).at(brake_vel_index + 1);
const double zhh = accel_mode
? update_accel_map_value_.at(accel_pedal_index + 1).at(accel_vel_index + 1)
: update_brake_map_value_.at(brake_pedal_index + 1).at(brake_vel_index + 1);
...
if (accel_mode) {
update_accel_map_value_.at(accel_pedal_index).at(accel_vel_index) =
accel_map_value_.at(accel_pedal_index).at(accel_vel_index) + map_offset(0);
update_accel_map_value_.at(accel_pedal_index + 1).at(accel_vel_index) =
accel_map_value_.at(accel_pedal_index + 1).at(accel_vel_index) + map_offset(1);
update_accel_map_value_.at(accel_pedal_index).at(accel_vel_index + 1) =
accel_map_value_.at(accel_pedal_index).at(accel_vel_index + 1) + map_offset(2);
update_accel_map_value_.at(accel_pedal_index + 1).at(accel_vel_index + 1) =
accel_map_value_.at(accel_pedal_index + 1).at(accel_vel_index + 1) + map_offset(3);
} else {
update_brake_map_value_.at(brake_pedal_index).at(brake_vel_index) =
brake_map_value_.at(brake_pedal_index).at(brake_vel_index) + map_offset(0);
update_brake_map_value_.at(brake_pedal_index + 1).at(brake_vel_index) =
brake_map_value_.at(brake_pedal_index + 1).at(brake_vel_index) + map_offset(1);
update_brake_map_value_.at(brake_pedal_index).at(brake_vel_index + 1) =
brake_map_value_.at(brake_pedal_index).at(brake_vel_index + 1) + map_offset(2);
update_brake_map_value_.at(brake_pedal_index + 1).at(brake_vel_index + 1) =
brake_map_value_.at(brake_pedal_index + 1).at(brake_vel_index + 1) + map_offset(3);
}
after
auto & update_map_value = accel_mode ? update_accel_map_value_ : update_brake_map_value_;
const auto & map_value = accel_mode ? accel_map_value_ : brake_map_value_;
const auto & pedal_index = accel_mode ? accel_pedal_index : brake_pedal_index;
const auto & vel_index = accel_mode ? accel_vel_index : brake_vel_index;
const double zll = update_map_value.at(pedal_index + 0).at(vel_index + 0);
const double zhl = update_map_value.at(pedal_index + 1).at(vel_index + 0);
const double zlh = update_map_value.at(pedal_index + 0).at(vel_index + 1);
const double zhh = update_map_value.at(pedal_index + 1).at(vel_index + 1);
...
update_map_value.at(pedal_index + 0).at(vel_index + 0) = map_value.at(pedal_index + 0).at(vel_index + 0) + map_offset(0);
update_map_value.at(pedal_index + 1).at(vel_index + 0) = map_value.at(pedal_index + 1).at(vel_index + 0) + map_offset(1);
update_map_value.at(pedal_index + 0).at(vel_index + 1) = map_value.at(pedal_index + 0).at(vel_index + 1) + map_offset(2);
update_map_value.at(pedal_index + 1).at(vel_index + 1) = map_value.at(pedal_index + 1).at(vel_index + 1) + map_offset(3);
This pull request has been automatically marked as stale because it has not had recent activity. |
Signed-off-by: Takamasa Horibe <[email protected]>
184a8ae
to
d63ca87
Compare
Signed-off-by: Shumpei Wakabayashi <[email protected]>
Signed-off-by: Shumpei Wakabayashi <[email protected]>
3c1f6b4
to
af09aa7
Compare
LGTM! (For TIER IV internal infomation) |
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
…od (autowarefoundation#1255) * Add 4-cell around Recursive Least Squares * Add evaluation rules * Fix index reference bug and Change implementation of covariance matrix * Remove some dead code * format by pre-commit Signed-off-by: Takamasa Horibe <[email protected]> * fix map_index bag * add support for new calibration method to view_plot.py * remove if-condition * fix typo * fix: spell miss Signed-off-by: Shumpei Wakabayashi <[email protected]> * fix: lint Signed-off-by: Shumpei Wakabayashi <[email protected]> Signed-off-by: Takamasa Horibe <[email protected]> Signed-off-by: Shumpei Wakabayashi <[email protected]> Co-authored-by: Takamasa Horibe <[email protected]> Co-authored-by: Shumpei Wakabayashi <[email protected]> Co-authored-by: Shumpei Wakabayashi <[email protected]> Signed-off-by: Kotaro Yoshimoto <[email protected]>
autowarefoundation#1255) fix(behavior_velocity_traffic_light): do not use the timed out remaining time information Signed-off-by: Tomohito Ando <[email protected]>
Description
For accel_map_calibrator, implemented a new method to execute Recursive Least Squares on 4 points around new data.
Related links
Gabrielle Lochrie, Michael Doljevic, Mario Nona, Yongsoon Yoon, Anti-Windup Recursive Least Squares Method for Adaptive Lookup Tables with Application to Automotive Powertrain Control Systems, IFAC-PapersOnLine, Volume 54, Issue 20, 2021, Pages 840-845
Tests performed
run accel_brake_map_calibrator and play a rosbag data.
Notes for reviewers
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.