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

Update docs to add velocity limit parameter in DWB Controller #591

Merged
merged 3 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions configuration/packages/configuring-dwb-controller.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ Example
xy_goal_tolerance: 0.25
trans_stopped_velocity: 0.25
short_circuit_trajectory_evaluation: True
limit_vel_cmd_in_traj: False
stateful: True
critics: ["RotateToGoal", "Oscillation", "BaseObstacle", "GoalAlign", "PathAlign", "PathDist", "GoalDist"]
BaseObstacle.scale: 0.02
Expand Down
11 changes: 11 additions & 0 deletions configuration/packages/dwb-plugins/standard_traj_generator.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,14 @@ Parameters

Description
Whether to include the last pose in the trajectory.

:``<dwb plugin>``.limit_vel_cmd_in_traj:

==== =======
Type Default
---- -------
bool false
==== =======

Description
Whether to limit velocity command in trajectory using current velocity.
huiyulhy marked this conversation as resolved.
Show resolved Hide resolved
12 changes: 11 additions & 1 deletion migration/Jazzy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,14 @@ Before:

After:

.. image:: images/fix_flickering_visualization_after.png
.. image:: images/fix_flickering_visualization_after.png

Option to limit velocity through DWB trajectory
huiyulhy marked this conversation as resolved.
Show resolved Hide resolved
****************************

In `PR #4663 <https://github.com/ros-navigation/navigation2/pull/4663>`_ a ``limit_vel_cmd_in_traj`` parameter was introduced to DWB local planner to allow the user to limit the velocity used in the trajectory generation based on the robot's current velocity.

Default value:

- false

Loading