[Documentation] [TitleIndex] [WordIndex

Only released in EOL distros:  

grizzly_simulator: grizzly_gazebo | grizzly_gazebo_plugins

Package Summary

Metapackage allowing easy installation of Grizzly simulation components.

grizzly_simulator: grizzly_gazebo | grizzly_gazebo_plugins

Package Summary

Metapackage allowing easy installation of Grizzly simulation components.

grizzly_simulator: grizzly_gazebo

Package Summary

Metapackage allowing easy installation of Grizzly simulation components.

gg.jpg

Metapackage for the Grizzly simulator.

Overview

The Grizzly simulator is implemented using simulator_gazebo stack. It is a three-dimensional, rigid-body model of the Grizzly with most of the hardware-ROS interfaces found on the actual robot. You can see the source for all Grizzly related software here.

Running the simulation

Starting with a basic ROS install, execute the following in a terminal:

sudo apt-get update
sudo apt-get install ros-$ROS_DISTRO-grizzly-simulator ros-$ROS_DISTRO-grizzly-desktop ros-$ROS_DISTRO-grizzly-navigation

Open a terminal window, and enter:

roslaunch grizzly_gazebo grizzly_empty_world.launch

Open another terminal window, and enter:

roslaunch grizzly_viz view_robot.launch

The Gazebo window shows the simulation's ground truth, while the rviz window shows the robot's perception.

You can click the Interact button in rviz, and use the interactive markers to give Grizzly some motion commands:

rviz_view_robot.png

When you do this, note that the difference between what you observe in Gazebo and rviz:

If you'd like to command your simulated Grizzly using raw messages, open a third terminal window, and enter:

rostopic pub /cmd_vel geometry_msgs/Twist -r 50 '{ linear: { x: 0.5 } }'

In the above command, we publish to the cmd_vel topic, of topic type geometry_msgs/Twist, at a rate of 50Hz. The data we publish tells the simulated Grizzly to go forwards at 0.5m/s, without any rotation. You should see your Grizzly move forwards. In the gazebo window, you might also notice simulated wheel slip, and skidding.

Known Issues

Report a Bug

Please flag any found bugs on the github page.


2024-03-23 12:36