Skip to content

Commit

Permalink
fix(avoidance): prevent sudden steering at yield maneuver
Browse files Browse the repository at this point in the history
Signed-off-by: satoshi-ota <[email protected]>
  • Loading branch information
satoshi-ota committed Nov 16, 2023
1 parent f7d6c26 commit 24a972e
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@
max_deviation_from_lane: 0.5 # [m]
# avoidance distance parameters
longitudinal:
prepare_time: 2.0 # [s]
min_prepare_time: 1.0 # [s]
max_prepare_time: 2.0 # [s]
min_prepare_distance: 1.0 # [m]
min_slow_down_speed: 1.38 # [m/s]
buf_slow_down_speed: 0.56 # [m/s]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ struct AvoidanceParameters
double stop_buffer{0.0};

// start avoidance after this time to avoid sudden path change
double prepare_time{0.0};
double min_prepare_time{0.0};
double max_prepare_time{0.0};

// Even if the vehicle speed is zero, avoidance will start after a distance of this much.
double min_prepare_distance{0.0};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,16 @@ class AvoidanceHelper
return std::max(getEgoSpeed(), values.at(idx));
}

double getMinimumPrepareDistance() const
{
const auto & p = parameters_;
return std::max(getEgoSpeed() * p->min_prepare_time, p->min_prepare_distance);
}

double getNominalPrepareDistance() const
{
const auto & p = parameters_;
return std::max(getEgoSpeed() * p->prepare_time, p->min_prepare_distance);
return std::max(getEgoSpeed() * p->max_prepare_time, p->min_prepare_distance);
}

double getNominalAvoidanceDistance(const double shift_length) const
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -424,10 +424,23 @@ bool AvoidanceModule::canYieldManeuver(const AvoidancePlanningData & data) const
{
// transit yield maneuver only when the avoidance maneuver is not initiated.
if (helper_.isShifted()) {
RCLCPP_DEBUG(getLogger(), "avoidance maneuver already initiated.");
return false;
}

// prevent sudden steering.
const auto registered_lines = path_shifter_.getShiftLines();
if (!registered_lines.empty()) {
const size_t idx = planner_data_->findEgoIndex(path_shifter_.getReferencePath().points);
const auto to_shift_start_point = calcSignedArcLength(
path_shifter_.getReferencePath().points, idx, registered_lines.front().start_idx);
if (to_shift_start_point < helper_.getMinimumPrepareDistance()) {
return false;
}
}

if (!data.stop_target_object) {
RCLCPP_DEBUG(getLogger(), "can pass by the object safely without avoidance maneuver.");
return true;
}

Expand Down Expand Up @@ -1640,6 +1653,10 @@ void AvoidanceModule::applySmallShiftFilter(
continue;
}

if (s.start_longitudinal < helper_.getMinimumPrepareDistance()) {
continue;
}

shift_lines.push_back(s);
}
}
Expand Down Expand Up @@ -2393,9 +2410,8 @@ AvoidLineArray AvoidanceModule::findNewShiftLine(
for (size_t i = 0; i < shift_lines.size(); ++i) {
const auto & candidate = shift_lines.at(i);

// new shift points must exist in front of Ego
// this value should be larger than -eps consider path shifter calculation error.
if (candidate.start_idx < avoid_data_.ego_closest_path_index) {
// prevent sudden steering.
if (candidate.start_longitudinal < helper_.getMinimumPrepareDistance()) {
break;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ AvoidanceModuleManager::AvoidanceModuleManager(
// avoidance maneuver (longitudinal)
{
std::string ns = "avoidance.avoidance.longitudinal.";
p.prepare_time = getOrDeclareParameter<double>(*node, ns + "prepare_time");
p.min_prepare_time = getOrDeclareParameter<double>(*node, ns + "min_prepare_time");
p.max_prepare_time = getOrDeclareParameter<double>(*node, ns + "max_prepare_time");

Check warning on line 225 in planning/behavior_path_planner/src/scene_module/avoidance/manager.cpp

View check run for this annotation

CodeScene Delta Analysis / CodeScene Cloud Delta Analysis (main)

❌ Getting worse: Complex Method

AvoidanceModuleManager::AvoidanceModuleManager already has high cyclomatic complexity, and now it increases in Lines of Code from 256 to 257. This function has many conditional statements (e.g. if, for, while), leading to lower code health. Avoid adding more conditionals and code to it without refactoring.
p.min_prepare_distance = getOrDeclareParameter<double>(*node, ns + "min_prepare_distance");
p.min_slow_down_speed = getOrDeclareParameter<double>(*node, ns + "min_slow_down_speed");
p.buf_slow_down_speed = getOrDeclareParameter<double>(*node, ns + "buf_slow_down_speed");
Expand Down Expand Up @@ -390,7 +391,8 @@ void AvoidanceModuleManager::updateModuleParams(const std::vector<rclcpp::Parame

{
const std::string ns = "avoidance.avoidance.longitudinal.";
updateParam<double>(parameters, ns + "prepare_time", p->prepare_time);
updateParam<double>(parameters, ns + "min_prepare_time", p->min_prepare_time);
updateParam<double>(parameters, ns + "max_prepare_time", p->max_prepare_time);

Check warning on line 395 in planning/behavior_path_planner/src/scene_module/avoidance/manager.cpp

View check run for this annotation

CodeScene Delta Analysis / CodeScene Cloud Delta Analysis (main)

❌ Getting worse: Complex Method

AvoidanceModuleManager::updateModuleParams already has high cyclomatic complexity, and now it increases in Lines of Code from 106 to 107. This function has many conditional statements (e.g. if, for, while), leading to lower code health. Avoid adding more conditionals and code to it without refactoring.
updateParam<double>(parameters, ns + "min_slow_down_speed", p->min_slow_down_speed);
updateParam<double>(parameters, ns + "buf_slow_down_speed", p->buf_slow_down_speed);
}
Expand Down

0 comments on commit 24a972e

Please sign in to comment.