Nav2 Navigation Stack - lyrical  lyrical
ROS 2 Navigation Stack
standard_traj_generator.cpp
1 /*
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (c) 2017, Locus Robotics
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above
14  * copyright notice, this list of conditions and the following
15  * disclaimer in the documentation and/or other materials provided
16  * with the distribution.
17  * * Neither the name of the copyright holder nor the names of its
18  * contributors may be used to endorse or promote products derived
19  * from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  */
34 
35 #include "dwb_plugins/standard_traj_generator.hpp"
36 #include <string>
37 #include <vector>
38 #include <algorithm>
39 #include <memory>
40 #include "dwb_plugins/xy_theta_iterator.hpp"
41 #include "pluginlib/class_list_macros.hpp"
42 #include "dwb_core/exceptions.hpp"
43 #include "tf2/utils.hpp"
44 #include "tf2_geometry_msgs/tf2_geometry_msgs.hpp"
45 
46 namespace dwb_plugins
47 {
48 
50  const nav2::LifecycleNode::SharedPtr & nh,
51  const std::string & plugin_name)
52 {
53  plugin_name_ = plugin_name;
54  kinematics_handler_ = std::make_shared<KinematicsHandler>();
55  kinematics_handler_->initialize(nh, plugin_name_);
57 
58  /*
59  * If discretize_by_time, then sim_granularity represents the amount of time that should be between
60  * two successive points on the trajectory.
61  *
62  * If discretize_by_time is false, then sim_granularity is the maximum amount of distance between
63  * two successive points on the trajectory, and angular_sim_granularity is the maximum amount of
64  * angular distance between two successive points.
65  */
66  sim_time_ = nh->declare_or_get_parameter(
67  plugin_name + ".sim_time", 1.7);
68  discretize_by_time_ = nh->declare_or_get_parameter(
69  plugin_name + ".discretize_by_time", false);
70  time_granularity_ = nh->declare_or_get_parameter(
71  plugin_name + ".time_granularity", 0.5);
72  linear_granularity_ = nh->declare_or_get_parameter(
73  plugin_name + ".linear_granularity", 0.5);
74  angular_granularity_ = nh->declare_or_get_parameter(
75  plugin_name + ".angular_granularity", 0.025);
76  include_last_point_ = nh->declare_or_get_parameter(
77  plugin_name + ".include_last_point", true);
78  limit_vel_cmd_in_traj_ = nh->declare_or_get_parameter(
79  plugin_name + ".limit_vel_cmd_in_traj", false);
80 }
81 
83 {
84  kinematics_handler_->activate();
85 }
86 
88 {
89  kinematics_handler_->deactivate();
90 }
91 
93  const nav2::LifecycleNode::SharedPtr & nh)
94 {
95  velocity_iterator_ = std::make_shared<XYThetaIterator>();
96  velocity_iterator_->initialize(nh, kinematics_handler_, plugin_name_);
97 }
98 
100  const nav_2d_msgs::msg::Twist2D & current_velocity)
101 {
102  velocity_iterator_->startNewIteration(current_velocity, sim_time_);
103 }
104 
106 {
107  return velocity_iterator_->hasMoreTwists();
108 }
109 
110 nav_2d_msgs::msg::Twist2D StandardTrajectoryGenerator::nextTwist()
111 {
112  return velocity_iterator_->nextTwist();
113 }
114 
116  const nav_2d_msgs::msg::Twist2D & cmd_vel)
117 {
118  std::vector<double> steps;
119  if (discretize_by_time_) {
120  steps.resize(ceil(sim_time_ / time_granularity_));
121  } else { // discretize by distance
122  double vmag = hypot(cmd_vel.x, cmd_vel.y);
123 
124  // the distance the robot would travel in sim_time if it did not change velocity
125  double projected_linear_distance = vmag * sim_time_;
126 
127  // the angle the robot would rotate in sim_time
128  double projected_angular_distance = fabs(cmd_vel.theta) * sim_time_;
129 
130  // Pick the maximum of the two
131  int num_steps = ceil(
132  std::max(
133  projected_linear_distance / linear_granularity_,
134  projected_angular_distance / angular_granularity_));
135  steps.resize(num_steps);
136  }
137  if (steps.size() == 0) {
138  steps.resize(1);
139  }
140  std::fill(steps.begin(), steps.end(), sim_time_ / steps.size());
141  return steps;
142 }
143 
145  const geometry_msgs::msg::Pose & start_pose,
146  const nav_2d_msgs::msg::Twist2D & start_vel,
147  const nav_2d_msgs::msg::Twist2D & cmd_vel)
148 {
149  dwb_msgs::msg::Trajectory2D traj;
150  traj.velocity = cmd_vel;
151  // simulate the trajectory
152  geometry_msgs::msg::Pose pose = start_pose;
153  nav_2d_msgs::msg::Twist2D vel = start_vel;
154  double running_time = 0.0;
155  std::vector<double> steps = getTimeSteps(cmd_vel);
156  traj.poses.push_back(start_pose);
157  bool first_vel = false;
158  for (double dt : steps) {
159  // calculate velocities
160  vel = computeNewVelocity(cmd_vel, vel, dt);
161  if (!first_vel && limit_vel_cmd_in_traj_) {
162  traj.velocity = vel;
163  first_vel = true;
164  }
165 
166  // update the position of the robot using the velocities passed in
167  pose = computeNewPosition(pose, vel, dt);
168 
169  traj.poses.push_back(pose);
170  traj.time_offsets.push_back(rclcpp::Duration::from_seconds(running_time));
171  running_time += dt;
172  } // end for simulation steps
173 
174  if (include_last_point_) {
175  traj.poses.push_back(pose);
176  traj.time_offsets.push_back(rclcpp::Duration::from_seconds(running_time));
177  }
178 
179  return traj;
180 }
181 
186  const nav_2d_msgs::msg::Twist2D & cmd_vel,
187  const nav_2d_msgs::msg::Twist2D & start_vel, const double dt)
188 {
189  KinematicParameters kinematics = kinematics_handler_->getKinematics();
190  nav_2d_msgs::msg::Twist2D new_vel;
191  new_vel.x = projectVelocity(
192  start_vel.x, kinematics.getAccX(),
193  kinematics.getDecelX(), dt, cmd_vel.x);
194  new_vel.y = projectVelocity(
195  start_vel.y, kinematics.getAccY(),
196  kinematics.getDecelY(), dt, cmd_vel.y);
197  new_vel.theta = projectVelocity(
198  start_vel.theta,
199  kinematics.getAccTheta(), kinematics.getDecelTheta(),
200  dt, cmd_vel.theta);
201  return new_vel;
202 }
203 
205  const geometry_msgs::msg::Pose start_pose,
206  const nav_2d_msgs::msg::Twist2D & vel, const double dt)
207 {
208  geometry_msgs::msg::Pose new_pose;
209 
210  double theta = tf2::getYaw(start_pose.orientation);
211  new_pose.position.x = start_pose.position.x +
212  (vel.x * cos(theta) + vel.y * cos(M_PI_2 + theta)) * dt;
213  new_pose.position.y = start_pose.position.y +
214  (vel.x * sin(theta) + vel.y * sin(M_PI_2 + theta)) * dt;
215 
216  double new_theta = theta + vel.theta * dt;
217  tf2::Quaternion q;
218  q.setRPY(0.0, 0.0, new_theta);
219  new_pose.orientation = tf2::toMsg(q);
220 
221  return new_pose;
222 }
223 
224 } // namespace dwb_plugins
225 
226 PLUGINLIB_EXPORT_CLASS(
Interface for iterating through possible velocities and creating trajectories.
Standard DWA-like trajectory generator.
void startNewIteration(const nav_2d_msgs::msg::Twist2D &current_velocity) override
Start a new iteration based on the current velocity.
double angular_granularity_
If not discretizing by time, the amount of angular space between points.
virtual nav_2d_msgs::msg::Twist2D computeNewVelocity(const nav_2d_msgs::msg::Twist2D &cmd_vel, const nav_2d_msgs::msg::Twist2D &start_vel, const double dt)
Calculate the velocity after a set period of time, given the desired velocity and acceleration limits...
std::string plugin_name_
the name of the overlying plugin ID
bool hasMoreTwists() override
Test to see whether there are more twists to test.
virtual std::vector< double > getTimeSteps(const nav_2d_msgs::msg::Twist2D &cmd_vel)
Compute an array of time deltas between the points in the generated trajectory.
bool limit_vel_cmd_in_traj_
Option to limit velocity in the trajectory generator by using current velocity.
void activate() override
Registers callbacks for dynamic parameter handling.
double linear_granularity_
If not discretizing by time, the amount of linear space between points.
virtual geometry_msgs::msg::Pose computeNewPosition(const geometry_msgs::msg::Pose start_pose, const nav_2d_msgs::msg::Twist2D &vel, const double dt)
Use the robot's kinematic model to predict new positions for the robot.
double time_granularity_
If discretizing by time, the amount of time between each point in the traj.
void initialize(const nav2::LifecycleNode::SharedPtr &nh, const std::string &plugin_name) override
Initialize parameters as needed.
virtual void initializeIterator(const nav2::LifecycleNode::SharedPtr &nh)
Initialize the VelocityIterator pointer. Put in its own function for easy overriding.
dwb_msgs::msg::Trajectory2D generateTrajectory(const geometry_msgs::msg::Pose &start_pose, const nav_2d_msgs::msg::Twist2D &start_vel, const nav_2d_msgs::msg::Twist2D &cmd_vel) override
Given a cmd_vel in the robot's frame and initial conditions, generate a Trajectory2D.
void deactivate() override
Resets callbacks for dynamic parameter handling.
nav_2d_msgs::msg::Twist2D nextTwist() override
Return the next twist and advance the iteration.
A struct containing one representation of the robot's kinematics.