In this question we see how to solve the problem when running catkin_make on a Catkin Workspace: The specified base path /home/user/catkin_ws contains a CMakeLists.txt but catkin_make must be invoked in the root of workspace
A: The problem is because the user had a CMakeLists.txt on the root folder of the Workspace (~/catkin_ws/CMakeLists.txt). The file must be on the src folder: ~/catkin_ws/src/CMakeLists.txt
Q: Need information on aerodynamic parameters of lift-drag plugin A: You have to calculate the area for the new shapes and also decide the axis for the front and upwards forces.
Q: I created a custom gazebo world for my turtleBot containing several walls and saved it as a .world file. However when I run the world file the walls that i created do not load.
A: Here you can see a simple example of how to launch a simple Gazebo world with a wall in it.
When developing for ROS, you will have to create the URDF of your robot. If your robot is complex and contains lots of different joints, you would like to test how is it going and if you are building the model properly. Here we provide you with a method to check the status of your robot URDF model.