Skip to content
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_validator): add diag to check control component latency #10240

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
rolling_back_velocity: 0.5
over_velocity_offset: 2.0
over_velocity_ratio: 0.2
nominal_latency: 0.01

vel_lpf_gain: 0.9 # Time constant 0.33
hold_velocity_error_until_stop: true
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <autoware_utils/system/stop_watch.hpp>
#include <rclcpp/rclcpp.hpp>

#include <autoware_control_msgs/msg/control.hpp>
#include <autoware_internal_debug_msgs/msg/float64_stamped.hpp>
#include <autoware_planning_msgs/msg/trajectory.hpp>
#include <diagnostic_msgs/msg/diagnostic_array.hpp>
Expand All @@ -38,6 +39,7 @@

namespace autoware::control_validator
{
using autoware_control_msgs::msg::Control;
using autoware_control_validator::msg::ControlValidatorStatus;
using autoware_planning_msgs::msg::Trajectory;
using autoware_planning_msgs::msg::TrajectoryPoint;
Expand All @@ -51,6 +53,7 @@ struct ValidationParams
double rolling_back_velocity;
double over_velocity_ratio;
double over_velocity_offset;
double nominal_latency_threshold;
};

/**
Expand All @@ -67,6 +70,12 @@ class ControlValidator : public rclcpp::Node
*/
explicit ControlValidator(const rclcpp::NodeOptions & options);

/**
* @brief Callback function for the control component output.
* @param msg Control message
*/
void on_control_cmd(const Control::ConstSharedPtr msg);

/**
* @brief Callback function for the predicted trajectory.
* @param msg Predicted trajectory message
Expand Down Expand Up @@ -134,6 +143,7 @@ class ControlValidator : public rclcpp::Node
DiagnosticStatusWrapper & stat, const bool & is_ok, const std::string & msg) const;

// Subscribers and publishers
rclcpp::Subscription<Control>::SharedPtr sub_control_cmd_;
rclcpp::Subscription<Trajectory>::SharedPtr sub_predicted_traj_;
autoware_utils::InterProcessPollingSubscriber<Odometry>::SharedPtr sub_kinematics_;
autoware_utils::InterProcessPollingSubscriber<Trajectory>::SharedPtr sub_reference_traj_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ builtin_interfaces/Time stamp
bool is_valid_max_distance_deviation
bool is_rolling_back
bool is_over_velocity
bool is_valid_latency

# values
float64 max_distance_deviation
float64 target_vel
float64 vehicle_vel
float64 latency

int64 invalid_count
1 change: 1 addition & 0 deletions control/autoware_control_validator/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<buildtool_depend>autoware_cmake</buildtool_depend>
<build_depend>rosidl_default_generators</build_depend>

<depend>autoware_control_msgs</depend>
<depend>autoware_motion_utils</depend>
<depend>autoware_planning_msgs</depend>
<depend>autoware_signal_processing</depend>
Expand Down
19 changes: 18 additions & 1 deletion control/autoware_control_validator/src/control_validator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
{
using std::placeholders::_1;

sub_control_cmd_ = create_subscription<Control>(
"~/input/control_cmd", 1, std::bind(&ControlValidator::on_control_cmd, this, _1));
sub_predicted_traj_ = create_subscription<Trajectory>(
"~/input/predicted_trajectory", 1,
std::bind(&ControlValidator::on_predicted_trajectory, this, _1));
Expand Down Expand Up @@ -70,6 +72,7 @@
p.rolling_back_velocity = declare_parameter<double>(t + "rolling_back_velocity");
p.over_velocity_offset = declare_parameter<double>(t + "over_velocity_offset");
p.over_velocity_ratio = declare_parameter<double>(t + "over_velocity_ratio");
p.nominal_latency_threshold = declare_parameter<double>(t + "nominal_latency");
}
const auto lpf_gain = declare_parameter<double>("vel_lpf_gain");
vehicle_vel_.setGain(lpf_gain);
Expand Down Expand Up @@ -126,6 +129,10 @@
stat, !validation_status_.is_over_velocity,
"The vehicle is over-speeding against the target.");
});
d.add(ns + "latency", [&](auto & stat) {
set_status(

Check warning on line 133 in control/autoware_control_validator/src/control_validator.cpp

View check run for this annotation

Codecov / codecov/patch

control/autoware_control_validator/src/control_validator.cpp#L133

Added line #L133 was not covered by tests
stat, validation_status_.is_valid_latency, "The latency is larger than expected value.");
});

Check warning on line 135 in control/autoware_control_validator/src/control_validator.cpp

View check run for this annotation

Codecov / codecov/patch

control/autoware_control_validator/src/control_validator.cpp#L135

Added line #L135 was not covered by tests
}

bool ControlValidator::is_data_ready()
Expand All @@ -147,6 +154,15 @@
return true;
}

void ControlValidator::on_control_cmd(const Control::ConstSharedPtr msg)

Check warning on line 157 in control/autoware_control_validator/src/control_validator.cpp

View check run for this annotation

Codecov / codecov/patch

control/autoware_control_validator/src/control_validator.cpp#L157

Added line #L157 was not covered by tests
{
validation_status_.latency = (this->now() - msg->stamp).seconds();
validation_status_.is_valid_latency =
validation_status_.latency < validation_params_.nominal_latency_threshold;
validation_status_.invalid_count =

Check warning on line 162 in control/autoware_control_validator/src/control_validator.cpp

View check run for this annotation

Codecov / codecov/patch

control/autoware_control_validator/src/control_validator.cpp#L160-L162

Added lines #L160 - L162 were not covered by tests
is_all_valid(validation_status_) ? 0 : validation_status_.invalid_count + 1;
}

Check warning on line 164 in control/autoware_control_validator/src/control_validator.cpp

View check run for this annotation

Codecov / codecov/patch

control/autoware_control_validator/src/control_validator.cpp#L164

Added line #L164 was not covered by tests

void ControlValidator::on_predicted_trajectory(const Trajectory::ConstSharedPtr msg)
{
stop_watch.tic();
Expand Down Expand Up @@ -254,7 +270,8 @@

bool ControlValidator::is_all_valid(const ControlValidatorStatus & s)
{
return s.is_valid_max_distance_deviation && !s.is_rolling_back && !s.is_over_velocity;
return s.is_valid_max_distance_deviation && !s.is_rolling_back && !s.is_over_velocity &&
s.is_valid_latency;
}

void ControlValidator::display_status()
Expand Down
1 change: 1 addition & 0 deletions launch/tier4_control_launch/launch/control.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@
<group if="$(var launch_control_validator)">
<load_composable_node target="/control/control_check_container">
<composable_node pkg="autoware_control_validator" plugin="autoware::control_validator::ControlValidator" name="control_validator">
<remap from="~/input/control_cmd" to="/control/command/control_cmd"/>
<remap from="~/input/kinematics" to="/localization/kinematic_state"/>
<remap from="~/input/reference_trajectory" to="/planning/scenario_planning/trajectory"/>
<remap from="~/input/predicted_trajectory" to="/control/trajectory_follower/lateral/predicted_trajectory"/>
Expand Down
Loading