Robotics StackExchange | Archived questions

Gazbo GUI too slow in Ubutu18.04

Hi,

I'm trying to use PX4 gazebo SITL to make a drone simulation under Ubuntu 18.04. However, once the gazebo GUI was started, the system became extremely slow and took minutes to react. I also tried to use the gzclient on mac and connect it to the server in ubuntu, but the following errors were showed:

[Msg] Waiting for model database update to complete... [Wrn] [FuelModelDatabase.cc:248] URI not supported by Fuel [model://uuvhippocampus/meshes/uuvhippocampus_prop.stl] [Wrn] [SystemPaths.cc:464] File or path does not exist [""] [model://uuvhippocampus/meshes/uuvhippocampus_prop.stl] [Err] [Visual.cc:3034] No mesh specified

Does anyone have any ideas?

Cheers

Asked by yang on 2020-06-18 01:51:50 UTC

Comments

Answers

Gazebo cannot find the STL files and therefore searches the database, which can take a few minutes.

You can either specify the absolute path in the model file, or set the GAZEBO_MODEL_PATH to find the "models" folder. It's usually:

export GAZEBO_MODEL_PATH ="~/.gazebo/models"

Have a look at this tutorial.

Asked by stephanr on 2020-06-20 16:44:24 UTC

Comments