Repository Summary
Checkout URI | https://github.com/debi-ml/summit_ws.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2023-06-16 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
isaac_ros_navigation_goal | 0.1.0 |
summit_navigation | 0.0.0 |
README
Simulation Design of a Robotic Mobile Manipulator
Description
This repository is part of a master thesis project that focuses on the implementation of a mobile manipulator robotic system using the Summit XL omnidirectional mobile platform and the Franka Emika Panda robot arm within the Isaac Sim simulation tool. The project utilizes the ROS (Robot Operating System) framework for controlling and simulating the robotic system.
The main objectives of this project are:
- Integrate the Summit XL mobile platform and the Franka Emika Panda robot arm.
- Utilize the Isaac Sim simulation tool for realistic and accurate simulation of the robotic system.
- Achieve autonomous navigation using the nav2 package.
- Implement motion planning and trajectory execution using the Moveit2 platform.
The repository contains the necessary code, configurations, and documentation to set up and run the robotic system in the simulated environment. The codebase includes modules for performing navigation tasks, and executing motion planning and trajectory generation.
Table of Contents
Installation
-
Install Isaac Sim by following the installation instructions provided in the official documentation.
-
Install ROS2 Foxy by following the installation instructions provided in the official documentation.
-
Install nav2 by following the installation instructions provided in the official documentation.
-
Install Docker by following the installation instructions provided in the official documentation.
-
Clone the repository:
git clone https://github.com/mld95/Summit_ws.git
- Build your packages:
cd your-repository
colcon build
-
Follow the tutorial here to install and build a Ubuntu 22.04 Humble based Docker image with Moveit2.
-
Run the Docker container and run the terminal using the following command:
docker exec -it isaac_panda-demo_isaac-1 bash
- Inside the Docker container, clone and build the forked and modified
pymoveit2
repository for sending the motion commands for the robot arm using the python scripts:
cd ..
git clone https://github.com/mld95/pymoveit2.git
cd pymoveit2
colcon build
Usage
-
Launch the simulation environment by opening the following .usd file in the Isaac Sim:
src/robot_description/summit_xl_franka_navigation.usd
-
Start the autonomous navigation:
ros2 launch summit_navigation summit_franka_navigation.launch.py
- To send the navigation goals programatictly which are defined in
src/isaac_ros_navigation_goal/assets/goals.txt
run the following command:
ros2 launch isaac_ros_navigation_goal isaac_ros_navigation_goal.launch.py
- To control the robot arm using Moveit2 start the docker container:
docker compose up demo_isaac
- To send commands for the robot arm programaticlly open a terminal in a docker container:
docker exec -it isaac_panda-demo_isaac-1 bash
- Source the pymoveit2 package and run one of the examples:
cd ~/pymoveit2
source install/local_setup.bash
ros2 run pymoveit2 grasp_test.py
Features
- Utilizes the Isaac Sim simulation tool and ROS framework for controlling and simulating robotic systems.
- Implements an omnidirectional mobile manipulator composed of a Summit XL mobile platform and a Franka Emika Panda robot arm.
- Incorporates the Navigation Stack 2 for autonomous navigation and the Moveit2 platform for motion planning and trajectory execution.
- Provides a testing environment to gain insights into the system’s workflow and identify areas for improvement.