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

Add note about TEM #1136

Merged
merged 5 commits into from
Oct 10, 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
13 changes: 13 additions & 0 deletions ur_moveit_config/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,16 @@ interaction using

Now you should be able to use the MoveIt Plugin in rviz2 to plan and execute trajectories with the
robot as explained `here <https://moveit.picknik.ai/main/doc/tutorials/quickstart_in_rviz/quickstart_in_rviz_tutorial.html>`_.

.. note::
Usually, MoveIt uses trajectory execution monitoring (TEM). If executing a trajectory takes too long,
e.g. because the action server died or the robot is blocked, this will lead to an error in
trajectory execution. However, with the scaled joint trajectory controller used by this driver,
fmauch marked this conversation as resolved.
Show resolved Hide resolved
this doesn't make much sense (as long as TEM is not aware of the scaling), as execution time can
fmauch marked this conversation as resolved.
Show resolved Hide resolved
be unbounded on purpose. Hence, TEM is disabled in the example moveit configuration:
fmauch marked this conversation as resolved.
Show resolved Hide resolved

.. literalinclude:: ../config/moveit_controllers.yaml
:language: yaml
:start-at: trajectory_execution:
:end-at: execution_duration_monitoring
:caption: moveit_controllers.yaml
7 changes: 7 additions & 0 deletions ur_robot_driver/doc/usage/move.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,11 @@ To test the driver with the example MoveIt-setup, first start the driver as desc
Now you should be able to use the MoveIt Plugin in rviz2 to plan and execute trajectories with the
robot as explained `here <https://moveit.picknik.ai/main/doc/tutorials/quickstart_in_rviz/quickstart_in_rviz_tutorial.html>`_.

.. note::
Usually, MoveIt uses trajectory execution monitoring (TEM). If executing a trajectory takes too long,
e.g. because the action server died or the robot is blocked, this will lead to an error in
trajectory execution. However, with the scaled joint trajectory controller used by this driver,
this doesn't make much sense (as long as TEM is not aware of the scaling), as execution time can
be unbounded on purpose. Hence, TEM is disabled in the example moveit configuration.

For more details, please see :ref:`ur_moveit_config`.
Loading