-
Notifications
You must be signed in to change notification settings - Fork 34
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(control_debug_tools): controller-dynamics consistency checker created. #20
feat(control_debug_tools): controller-dynamics consistency checker created. #20
Conversation
…eated. Signed-off-by: Zhe Shen <[email protected]>
find_package(builtin_interfaces REQUIRED) | ||
find_package(rosidl_default_generators REQUIRED) | ||
find_package(std_msgs REQUIRED) |
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.
These seem not necessary. Please remove them, and check the build again.
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.
removed in c30816d
built successfully!
<depend>autoware_auto_planning_msgs</depend> | ||
<depend>geometry_msgs</depend> | ||
<depend>motion_utils</depend> | ||
<depend>nav_msgs</depend> | ||
<depend>rclcpp</depend> | ||
<depend>rclcpp_components</depend> | ||
<depend>tier4_autoware_utils</depend> | ||
<depend>tier4_debug_msgs</depend> | ||
<depend>tier4_planning_msgs</depend> |
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.
Remove dependency which you are not using
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.
removed in c30816d
<buildtool_depend>eigen3_cmake_module</buildtool_depend> | ||
|
||
<build_depend>rosidl_default_generators</build_depend> |
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.
Remove
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.
removed in c30816d
Signed-off-by: Zhe Shen <[email protected]>
Description
A mismatch of the parameters between the controllers and the dynamics may cause failing to stabilize the ego.
Therefore, this ticket creates a controller-dynamics consistency checker.
It checks the following parameters:
MPC-related parameters
input_delay
vehicle_model_steer_tau
acceleration_limit
steer_rate_lim_dps_list_by_curvature
steer_rate_lim_dps_list_by_velocity
PID related parameters:
max_acc
min_acc
accelerate_delay
Related links
https://tier4.atlassian.net/jira/software/c/projects/RT1/boards/438?selectedIssue=RT1-5682
Tests performed
Notes for reviewers
Interface changes
Effects on system behavior
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.