forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
evaluation node updated(autowarefoundation#567)
message files arranged, structure changed(autowarefoundation#567) ci(pre-commit): autofix added another condition added velocity history information to estimate acceleration fix new message file added monitor variables ready fix can build runtime errors works works fix Signed-off-by: Berkay <berkay@leodrive.ai> ci(pre-commit): autofix odom history interval param added (autowarefoundation#567) Signed-off-by: Berkay <berkay@leodrive.ai>
- Loading branch information
Berkay
authored and
M. Fatih Cırıt
committed
May 24, 2022
1 parent
cbde4b7
commit 1adb272
Showing
12 changed files
with
348 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
control/control_performance_analysis/config/control_performance_analysis.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
/**: | ||
ros__parameters: | ||
# -- publishing period -- | ||
control_period: 0.033 | ||
double curvature_interval_length_: 5.0 | ||
control_period: 0.01 | ||
curvature_interval_length_: 5.0 | ||
odom_interval_: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 5 additions & 3 deletions
8
control/control_performance_analysis/launch/controller_performance_analysis.launch.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
<launch> | ||
<arg name="control_performance_analysis_param_path" default="$(find-pkg-share control_performance_analysis)/config/control_performance_analysis.param.yaml"/> | ||
<arg name="input/reference_trajectory" default="/planning/scenario_planning/trajectory"/> | ||
<arg name="input/control_raw" default="/control/trajectory_follower/lateral/control_cmd"/> | ||
<arg name="input/control_raw" default="/control/command/control_cmd"/> | ||
<arg name="input/measured_steering" default="/vehicle/status/steering_status"/> | ||
<arg name="input/current_odometry" default="/localization/kinematic_state"/> | ||
<arg name="output/error_stamped" default="/control_performance/performance_vars"/> | ||
<arg name="output/driving_status_stamped" default="/control_performance/driving_status"/> | ||
|
||
<!-- vehicle info --> | ||
<arg name="vehicle_info_param_file" default="$(find-pkg-share vehicle_info_util)/config/vehicle_info.param.yaml"/> | ||
|
||
<node pkg="control_performance_analysis" exec="control_performance_analysis" name="control_performance_analysis" output="screen"> | ||
<node pkg="control_performance_analysis" exec="control_performance_analysis_exe" name="control_performance_analysis_exe" output="screen"> | ||
<param from="$(var control_performance_analysis_param_path)"/> | ||
<param from="$(var vehicle_info_param_file)"/> | ||
|
||
<remap from="~/input/reference_trajectory" to="$(var input/reference_trajectory)"/> | ||
<remap from="~/input/control_raw" to="$(var input/control_raw)"/> | ||
<remap from="~/input/measured_steering" to="$(var input/measured_steering)"/> | ||
<remap from="~/input/current_odometry" to="$(var input/current_odometry)"/> | ||
<remap from="~/input/odometry" to="$(var input/current_odometry)"/> | ||
<remap from="~/output/error_stamped" to="$(var output/error_stamped)"/> | ||
<remap from="~/output/driving_status_stamped" to="$(var output/driving_status_stamped)"/> | ||
</node> | ||
</launch> |
11 changes: 5 additions & 6 deletions
11
control/control_performance_analysis/msg/DrivingMonitor.msg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
float64 longitudinal_acceleration | ||
float64 longitudinal_jerk | ||
float64 lateral_acceleration | ||
float64 lateral_jerk | ||
float64 tracking_curvature_discontinuity_ability | ||
float64 controller_processing_time | ||
control_performance_analysis/FloatStamped longitudinal_acceleration | ||
control_performance_analysis/FloatStamped longitudinal_jerk | ||
control_performance_analysis/FloatStamped lateral_acceleration | ||
control_performance_analysis/FloatStamped lateral_jerk | ||
control_performance_analysis/FloatStamped controller_processing_time |
1 change: 0 additions & 1 deletion
1
control/control_performance_analysis/msg/DrivingMonitorStamped.msg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
std_msgs/Header header | ||
control_performance_analysis/DrivingMonitor driving_monitor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
std_msgs/Header header | ||
float64 data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.