Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 6 additions & 6 deletions doc/how_to_guides/isaac_panda/isaac_panda_tutorial.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
How To Command Simulated Isaac Robot
====================================

This tutorial requires a machine with ``Isaac Sim 4.5`` (recommended) or ``Isaac Sim 4.2`` installed.
For Isaac Sim requirements and installation please see the `Omniverse documentation <https://docs.omniverse.nvidia.com/isaacsim/latest/index.html>`_.
To configure Isaac Sim to work with ROS 2 please see `this guide <https://docs.omniverse.nvidia.com/isaacsim/latest/installation/install_ros.html#running-native-ros>`_.
This tutorial requires a machine with ``Isaac Sim 4.5`` (recommended) or higher installed.
For Isaac Sim requirements and installation please see the `Omniverse documentation <https://docs.isaacsim.omniverse.nvidia.com/5.1.0/installation/requirements.html>`_.
To configure Isaac Sim to work with ROS 2 please see `this guide <https://docs.isaacsim.omniverse.nvidia.com/5.1.0/installation/install_ros.html#>`_.

This tutorial has the following assumptions on system configuration:

Expand Down Expand Up @@ -57,19 +57,19 @@ updated to load the ``TopicBasedSystem`` plugin when the flag ``ros2_control_har
</xacro:if>

In this tutorial we have included a Python script that loads a Panda robot
and builds an `OmniGraph <https://docs.omniverse.nvidia.com/isaacsim/latest/gui_tutorials/tutorial_gui_omnigraph.html>`_
and builds an `OmniGraph <https://docs.isaacsim.omniverse.nvidia.com/5.1.0/introduction/quickstart_isaacsim_robot.html>`_
to publish and subscribe to the ROS topics used to control the robot.
The OmniGraph also contains nodes to publish RGB and Depth images from the camera mounted on the hand of the Panda.
The RGB image is published to the topic ``/rgb``, the camera info to ``/camera_info``, and the depth image to ``/depth``.
The frame ID of the camera frame is ``/sim_camera``.
To learn about configuring your Isaac Sim robot to communicate with ROS 2 please see the
`Joint Control tutorial <https://docs.omniverse.nvidia.com/isaacsim/latest/ros2_tutorials/tutorial_ros2_manipulation.html>`_
`Joint Control tutorial https://docs.isaacsim.omniverse.nvidia.com/latest/ros2_tutorials/tutorial_ros2_manipulation.html>`_
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh, this was missing the opening <

But I think with the < pre-commit was doing newline breaks.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Going to resolve this in #1052

Also going to keep pointing to Isaac latest documentation. Hopefully they'll set up redirects if they chance urls again.

on Omniverse.

Computer Setup
--------------

1. Install `Isaac Sim <https://docs.omniverse.nvidia.com/isaacsim/latest/installation/install_workstation.html>`_.
1. Install `Isaac Sim <https://docs.isaacsim.omniverse.nvidia.com/5.1.0/installation/quick-install.html>`_.

2. Perform a shallow clone of the MoveIt 2 Tutorials repo.

Expand Down
4 changes: 2 additions & 2 deletions doc/how_to_guides/trac_ik/trac_ik_tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ From their documentation:
By default, the IK search returns immediately when either of these algorithms converges to an answer.
Secondary constraints of distance and manipulability are also provided in order to receive back the "best" IK solution.

The package `trac_ik_kinematics_plugin <https://bitbucket.org/traclabs/trac_ik/src/rolling-devel/trac_ik_kinematics_plugin/>`_ provides a ``KinematicsBase`` MoveIt interface that can replace the default KDL solver.
The package `trac_ik_kinematics_plugin <https://bitbucket.org/traclabs/trac_ik/src/rolling/trac_ik_kinematics_plugin/>`_ provides a ``KinematicsBase`` MoveIt interface that can replace the default KDL solver.
Currently, mimic joints are *not* supported.

Install
Expand All @@ -38,7 +38,7 @@ Usage
- **kinematics\_solver\_attempts** parameter is unneeded: unlike KDL, TRAC-IK solver already restarts when it gets stuck.
- **kinematics\_solver\_search\_resolution** is not applicable here.

From the `trac_ik_lib <https://bitbucket.org/traclabs/trac_ik/src/rolling-devel/trac_ik_lib/>`_ package documentation (slightly modified), here is some information about the solve type parameter:
From the `trac_ik_lib <https://bitbucket.org/traclabs/trac_ik/src/rolling/trac_ik_lib/>`_ package documentation (slightly modified), here is some information about the solve type parameter:

- ``Speed``: returns very quickly the first solution found.
- ``Distance``: runs for the full timeout, then returns the solution that minimizes sum of squares error (SSE) from the seed.
Expand Down
Loading