Skip to content

Commit

Permalink
feat(franka_gazebo): add incompatibly physics engine warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rickstaa committed Dec 10, 2021
1 parent 3a63dda commit d547046
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions franka_gazebo/src/franka_hw_sim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,16 @@ bool FrankaHWSim::initSim(const std::string& robot_namespace,
gazebo::physics::PhysicsEnginePtr physics = gazebo::physics::get_world()->GetPhysicsEngine();
#endif

// Print information about the used physics engine
std::vector<std::string> supported_engines{"ode", "dart"};
std::string physics_engine = physics->GetType();
ROS_INFO_STREAM_NAMED("franka_hw_sim", "Using physics type " << physics->GetType());
if (std::find(supported_engines.begin(), supported_engines.end(), physics_engine) ==
supported_engines.end()) {
ROS_ERROR_STREAM_NAMED("franka_hw_sim",
"The Panda Gazebo model does not yet officially support the '" +
physics_engine + "' physics engine.");
}

// Retrieve initial gravity vector from Gazebo
// NOTE: Can be overwritten by the user via the 'gravity_vector' ROS parameter.
Expand Down

0 comments on commit d547046

Please sign in to comment.