Advertisement
Guest User

Untitled

a guest
Oct 16th, 2014
627
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. tum_simulator on Indigo
  2. These packages are used to simulate the flying robot Ardrone in ROS environment using gazebo simulator. Totally they are 4 packages. Their functions are descript as below:
  3. 1. cvg_sim_gazebo: contains object models, sensor models, quadrocopter models, flying environment information and individual launch files for each objects and pure environment without any other objects.
  4. 2. cvg_sim_gazebo_plugins: contains gazebo plugins for the quadrocopter model. quadrotor_simple_controller is used to control the robot motion and deliver navigation information, such as: /ardrone/navdata. Others are plugins for sensors in the quadrocopter, such as: IMU sensor, sonar sensor, GPS sensor.
  5. 3. message_to_tf: is a package used to create a ros node, which transfers the ros topic /ground_truth/state to a /tf topic.
  6. 4. cvg_sim_msgs: contains message forms for the simulator.
  7.  
  8. How to install the simulator:
  9. 1. Create a workspace for the simulator
  10.  
  11. $ mkdir -p ~/tum_simulator_ws/src
  12. $ cd ~/tum_simulator_ws/src
  13. $ catkin_init_workspace
  14.  
  15. 2. Download first package from source
  16.  
  17. $ git clone https://github.com/AutonomyLab/ardrone_autonomy.git -b indigo-devel
  18.  
  19.  
  20. 3. Build #1 pack
  21.  
  22. $ cd ~/catkin_ws
  23. $ catkin_make
  24.  
  25. 4. Download second package from source
  26.  
  27. $ git clone https://github.com/algron/tum_simulator.git -b indigo
  28.  
  29. 5. Build #2 pack
  30.  
  31. $ cd ~/catkin_ws
  32. $ catkin_make
  33.  
  34. 6. Source the environment
  35.  
  36. $ source devel/setup.bash
  37.  
  38.  
  39. 7. Run a simulation by executing a launch file in cvg_sim_gazebo package:
  40.  
  41. $ roslaunch cvg_sim_gazebo ardrone_testworld.launch
  42.  
  43.  
  44.  
  45. Sites:
  46.  
  47. - http://wiki.ros.org/tum_simulator
  48.  
  49. - https://github.com/AutonomyLab/ardrone_autonomy
  50.  
  51. - https://github.com/algron/tum_simulator/tree/indigo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement