Forces the commanded trajectories to only be rotations if within a certain distance window. More...
#include <rotate_to_goal.h>
Public Member Functions | |
void | onInit () override |
bool | prepare (const geometry_msgs::Pose2D &pose, const nav_2d_msgs::Twist2D &vel, const geometry_msgs::Pose2D &goal, const nav_2d_msgs::Path2D &global_plan) override |
void | reset () override |
virtual double | scoreRotation (const dwb_msgs::Trajectory2D &traj) |
Assuming that this is an actual rotation when near the goal, score the trajectory. More... | |
double | scoreTrajectory (const dwb_msgs::Trajectory2D &traj) override |
Public Member Functions inherited from dwb_local_planner::TrajectoryCritic | |
virtual void | addCriticVisualization (sensor_msgs::PointCloud &pc) |
virtual void | debrief (const nav_2d_msgs::Twist2D &cmd_vel) |
std::string | getName () |
virtual double | getScale () const |
void | initialize (const ros::NodeHandle &planner_nh, std::string name, nav_core2::Costmap::Ptr costmap) |
void | setScale (const double scale) |
virtual | ~TrajectoryCritic () |
Protected Attributes | |
double | current_xy_speed_sq_ |
double | goal_yaw_ |
bool | in_window_ |
double | lookahead_time_ |
bool | rotating_ |
double | slowing_factor_ |
double | stopped_xy_velocity_sq_ |
double | xy_goal_tolerance_ |
double | xy_goal_tolerance_sq_ |
Cached squared tolerance. More... | |
Protected Attributes inherited from dwb_local_planner::TrajectoryCritic | |
nav_core2::Costmap::Ptr | costmap_ |
ros::NodeHandle | critic_nh_ |
std::string | name_ |
ros::NodeHandle | planner_nh_ |
double | scale_ |
Additional Inherited Members | |
Public Types inherited from dwb_local_planner::TrajectoryCritic | |
typedef std::shared_ptr< dwb_local_planner::TrajectoryCritic > | Ptr |
Forces the commanded trajectories to only be rotations if within a certain distance window.
This used to be built in to the DWA Local Planner as the LatchedStopRotate controller, but has been moved to a critic for consistency.
The critic has three distinct phases. 1) If the current pose is outside xy_goal_tolerance LINEAR distance from the goal pose, this critic will just return score 0.0. 2) If within the xy_goal_tolerance and the robot is still moving with non-zero linear motion, this critic will only allow trajectories that are slower than the current speed in order to stop the robot (within the robot's acceleration limits). The returned score will be the robot's linear speed squared, multiplied by the slowing_factor parameter (default 5.0) added to the result of scoreRotation. 3) If within the xy_goal_tolerance and the robot has sufficiently small linear motion, this critic will score trajectories that have linear movement as invalid and score the rest based on the result of the scoreRotation method
The scoreRotation method can be overriden, but the default behavior is to return the shortest angular distance between the goal pose and a pose from the trajectory. Which pose depends on the lookahead_time parameter.
Definition at line 70 of file rotate_to_goal.h.
|
overridevirtual |
Reimplemented from dwb_local_planner::TrajectoryCritic.
Definition at line 55 of file rotate_to_goal.cpp.
|
overridevirtual |
Reimplemented from dwb_local_planner::TrajectoryCritic.
Definition at line 72 of file rotate_to_goal.cpp.
|
overridevirtual |
Reimplemented from dwb_local_planner::TrajectoryCritic.
Definition at line 66 of file rotate_to_goal.cpp.
|
virtual |
Assuming that this is an actual rotation when near the goal, score the trajectory.
This (easily overridden) method assumes that the critic is in the third phase (as described above) and returns a numeric score for the trajectory relative to the goal yaw.
traj | Trajectory to score |
Definition at line 110 of file rotate_to_goal.cpp.
|
overridevirtual |
Implements dwb_local_planner::TrajectoryCritic.
Definition at line 84 of file rotate_to_goal.cpp.
|
protected |
Definition at line 94 of file rotate_to_goal.h.
|
protected |
Definition at line 91 of file rotate_to_goal.h.
|
protected |
Definition at line 90 of file rotate_to_goal.h.
|
protected |
Definition at line 96 of file rotate_to_goal.h.
|
protected |
Definition at line 90 of file rotate_to_goal.h.
|
protected |
Definition at line 95 of file rotate_to_goal.h.
|
protected |
Definition at line 94 of file rotate_to_goal.h.
|
protected |
Definition at line 92 of file rotate_to_goal.h.
|
protected |
Cached squared tolerance.
Definition at line 93 of file rotate_to_goal.h.