Package Summary

Tags No category tags.
Version 1.3.2
License Apache-2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/navigation2.git
VCS Type git
VCS Version jazzy
Last Updated 2024-09-10
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

A loopback simulator to replace physics simulation

Additional Links

No additional links.

Maintainers

  • steve macenski

Authors

No additional authors.

Nav2 Loopback Simulation

The Nav2 loopback simulator is a stand-alone simulator to create a "loopback" for non-physical simulation to replace robot hardware, physics simulators (Gazebo, Bullet, Isaac Sim, etc). It computes the robot's odometry based on the command velocity's output request to create a perfect 'frictionless plane'-style simulation for unit testing, system testing, R&D on higher level systems, and testing behaviors without concerning yourself with localization accuracy or system dynamics.

This was created by Steve Macenski of Open Navigation LLC and donated to Nav2 by the support of our project sponsors. If you rely on Nav2, please consider supporting the project!

⚠️ If you need professional services related to Nav2, please contact Open Navigation at info@opennav.org.

It is drop-in replacable with AMR simulators and global localization by providing: - Map -> Odom transform - Odom -> Base Link transform, nav_msgs/Odometry odometry - Accepts the standard /initialpose topic for transporting the robot to another location

Note: This does not provide sensor data, so it is required that the global (and probably local) costmap contain the StaticLayer to avoid obstacles.

It is convenient to be able to test systems by being able to: - Arbitrarily transport the robot to any location and accurately navigate without waiting for a particle filter to converge for testing behaviors and reproducing higher-level issues - Write unit or system tests on areas that are not dependent on low-level controller or localization performance without needing to spin up a compute-heavy process like Gazebo or Isaac Sim to provide odometry and sensor data, such as global planning, autonomy behavior trees, etc - Perform R&D on various sensitive systems easily without concerning yourself with the errors accumulated with localization performance or imperfect dynamic models to get a proof of concept started - Simulate N robots simultaneously with a lower compute footprint - When otherwise highly compute constrained and need to simulate a robotic system

How to Use

ros2 run nav2_loopback_sim loopback_simulator  # As a node, if in simulation
ros2 launch nav2_loopback_sim loopback_simulation.launch.py  # As a launch file
ros2 launch nav2_bringup tb3_loopback_simulation.launch.py  # Nav2 integrated navigation demo using it
ros2 launch nav2_bringup tb4_loopback_simulation.launch.py  # Nav2 integrated navigation demo using it

API

Parameters

  • update_duration: the duration between updates (default 0.01 -- 100hz)
  • base_frame_id: The base frame to use (default base_link)
  • odom_frame_id: The odom frame to use (default odom)
  • map_frame_id: The map frame to use (default map)
  • scan_frame_id: The can frame to use to publish a scan to keep the collision monitor fed and happy (default base_scan for TB3, rplidar_link for TB4)
  • enable_stamped_cmd_vel: Whether cmd_vel is stamped or unstamped (i.e. Twist or TwistStamped). Default false for Twist.

Topics

This node subscribes to: - initialpose: To set the initial robot pose or relocalization request analog to other localization systems - cmd_vel: Nav2's output twist to get the commanded velocity

This node publishes: - odom: To publish odometry from twist - tf: To publish map->odom and odom->base_link transforms - scan: To publish a bogus max range laser scan sensor to make the collision monitor happy

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged nav2_loopback_sim at Robotics Stack Exchange