Skip to content

Commit

Permalink
feat(franka_gazebo): add incompatibly physics engine warning
Browse files Browse the repository at this point in the history
This commit ensures a warning is thrown when the user specifies the
'bullet' and 'simbody' physics engines since these are not yet supported
with `franka_gazebo`.
  • Loading branch information
rickstaa committed Sep 1, 2023
1 parent 52f4e48 commit 0e8a5fb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions franka_gazebo/src/franka_hw_sim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,17 @@ bool FrankaHWSim::initSim(const std::string& robot_namespace,

ROS_INFO_STREAM_NAMED("franka_hw_sim", "Using physics type " << physics->GetType());

// 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.
auto gravity = physics->World()->Gravity();
Expand Down

0 comments on commit 0e8a5fb

Please sign in to comment.