-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
153 additions
and
1 deletion.
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
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
50 changes: 50 additions & 0 deletions
50
include/humap_local_planner/unsaturated_translation_cost_function.h
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,50 @@ | ||
#pragma once | ||
|
||
#include <base_local_planner/trajectory_cost_function.h> | ||
|
||
namespace humap_local_planner { | ||
|
||
/** | ||
* @brief Cost function penalizing the unsaturated translational movements | ||
* | ||
* Penalizes robot's for not keeping its velocity close to the maximum allowable | ||
*/ | ||
class UnsaturatedTranslationCostFunction: public base_local_planner::TrajectoryCostFunction { | ||
public: | ||
UnsaturatedTranslationCostFunction(); | ||
|
||
/** | ||
* @brief Updates internal parameters | ||
* | ||
* @param max_trans_vel max translational speed of the robot | ||
* @param compute_whole_horizon set to true if the cost function should be computed for each entry | ||
* of the trajectory | ||
*/ | ||
void setParameters( | ||
double max_trans_vel, | ||
double max_vel_x, | ||
double max_vel_y, | ||
bool compute_whole_horizon = true | ||
); | ||
|
||
/** | ||
* @brief General updating of context values if required. | ||
* Subclasses may overwrite. Return false in case there is any error. | ||
*/ | ||
virtual bool prepare() override; | ||
|
||
/** | ||
* @brief Returns a score for trajectory @ref traj | ||
*/ | ||
virtual double scoreTrajectory(base_local_planner::Trajectory& traj) override; | ||
|
||
protected: | ||
/// Max translational speed of the robot | ||
double max_trans_vel_; | ||
double max_vel_x_; | ||
double max_vel_y_; | ||
|
||
bool compute_whole_horizon_; | ||
}; | ||
|
||
} // namespace humap_local_planner |
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,89 @@ | ||
#include <humap_local_planner/unsaturated_translation_cost_function.h> | ||
#include <humap_local_planner/trajectory.h> | ||
|
||
#include <cmath> | ||
|
||
namespace humap_local_planner { | ||
|
||
UnsaturatedTranslationCostFunction::UnsaturatedTranslationCostFunction(): | ||
max_trans_vel_(0.0), | ||
max_vel_x_(0.0), | ||
max_vel_y_(0.0), | ||
compute_whole_horizon_(true) | ||
{} | ||
|
||
void UnsaturatedTranslationCostFunction::setParameters( | ||
double max_trans_vel, | ||
double max_vel_x, | ||
double max_vel_y, | ||
bool compute_whole_horizon | ||
) { | ||
max_trans_vel_ = max_trans_vel; | ||
max_vel_x_ = max_vel_x; | ||
max_vel_y_ = max_vel_y; | ||
compute_whole_horizon_ = compute_whole_horizon; | ||
} | ||
|
||
bool UnsaturatedTranslationCostFunction::prepare() { | ||
return true; | ||
} | ||
|
||
double UnsaturatedTranslationCostFunction::scoreTrajectory(base_local_planner::Trajectory& traj) { | ||
if (traj.getPointsSize() == 0) { | ||
return 0.0; | ||
} | ||
|
||
// compute differences between the current velocity and maximum | ||
double vx_deviation = 0.0; | ||
double vy_deviation = 0.0; | ||
double vxy_deviation = 0.0; | ||
|
||
// convert to a more friendly type than received | ||
// `false` keeps velocities in the base coordinate system | ||
Trajectory t(traj, false); | ||
|
||
// check if we can compare the current velocity with anything | ||
if (t.getVelocitiesNum() == 0) { | ||
return 0.0; | ||
} | ||
|
||
// helper | ||
auto computeTransVel = [](double vx, double vy) -> double { | ||
return std::hypot(vx, vy); | ||
}; | ||
|
||
// counter to compute mean | ||
size_t vels_num = 0; | ||
|
||
// first velocity of the trajectory is the control command | ||
vx_deviation += std::abs(t.getVelocity(0).getX() - max_vel_x_); | ||
vy_deviation += std::abs(t.getVelocity(0).getY() - max_vel_y_); | ||
double vxy = computeTransVel( | ||
t.getVelocity(0).getX(), | ||
t.getVelocity(0).getY() | ||
); | ||
vxy_deviation += std::abs(vxy - max_trans_vel_); | ||
vels_num++; | ||
|
||
if (compute_whole_horizon_) { | ||
// iterate over velocities of the trajectory | ||
for (unsigned int sim_step = 1; sim_step < t.getVelocitiesNum(); sim_step++) { | ||
// compute deviation from the currently investigated velocity | ||
vx_deviation += std::abs(t.getVelocity(sim_step).getX() - max_vel_x_); | ||
vy_deviation += std::abs(t.getVelocity(sim_step).getY() - max_vel_y_); | ||
|
||
double vxy = computeTransVel( | ||
t.getVelocity(sim_step).getX(), | ||
t.getVelocity(sim_step).getY() | ||
); | ||
vxy_deviation += std::abs(vxy - max_trans_vel_); | ||
vels_num++; | ||
} | ||
} | ||
|
||
// divide by trajectory length to make cost function's scale independent of the actual trajectory horizon | ||
double max_deviation = std::max(std::max(vx_deviation, vy_deviation), vxy_deviation); | ||
return (max_deviation) / static_cast<double>(vels_num); | ||
} | ||
|
||
} // namespace humap_local_planner |