Skip to content

Commit

Permalink
refactor: change default physics engine
Browse files Browse the repository at this point in the history
This commit changes the default physics engine back from DART to ODE.
  • Loading branch information
rickstaa committed Dec 13, 2023
1 parent 58de091 commit 9325086
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion panda_gazebo/launch/put_robot_in_world.launch
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<arg name="pitch" default="0" doc="How much to rotate the base of the robot around its Y-axis in [rad]?"/>
<arg name="yaw" default="0" doc="How much to rotate the base of the robot around its Z-axis in [rad]?"/>
<!-- The used phyics engine (options: dart and ode)-->
<arg name="physics" default="dart" doc="The physics engine used by gazebo"/>
<arg name="physics" default="ode" doc="The physics engine used by gazebo"/>
<!--Control arguments-->
<!-- The control type used for controlling the robot (Options: Trajectory, position, effort)-->
<arg name="control_type" default="trajectory" doc="The type of control used for controlling the arm. Options: trajectory, position, effort"/>
Expand Down
2 changes: 1 addition & 1 deletion panda_gazebo/launch/start_pick_and_place_world.launch
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<arg name="verbose" default="false" doc="Enable Gazebo verbose mode"/>
<arg name="gazebo_gui" default="true" doc="Start the gazebo GUI"/>
<!-- The used phyics engine (options: dart and ode)-->
<arg name="physics" default="dart" doc="The physics engine used by gazebo"/>
<arg name="physics" default="ode" doc="The physics engine used by gazebo"/>

<!--Start the Gazebo world-->
<include file="$(find panda_gazebo)/launch/start_world.launch.xml">
Expand Down
2 changes: 1 addition & 1 deletion panda_gazebo/launch/start_push_world.launch
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<arg name="verbose" default="false" doc="Enable Gazebo verbose mode"/>
<arg name="gazebo_gui" default="true" doc="Start the gazebo GUI"/>
<!-- The used phyics engine (options: dart and ode)-->
<arg name="physics" default="dart" doc="The physics engine used by gazebo"/>
<arg name="physics" default="ode" doc="The physics engine used by gazebo"/>

<!--Start the Gazebo world-->
<include file="$(find panda_gazebo)/launch/start_world.launch.xml">
Expand Down
2 changes: 1 addition & 1 deletion panda_gazebo/launch/start_reach_world.launch
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<arg name="verbose" default="false" doc="Enable Gazebo verbose mode"/>
<arg name="gazebo_gui" default="true" doc="Start the gazebo GUI"/>
<!-- The used phyics engine (options: dart and ode)-->
<arg name="physics" default="dart" doc="The physics engine used by gazebo"/>
<arg name="physics" default="ode" doc="The physics engine used by gazebo"/>

<!--Start the Gazebo world-->
<include file="$(find panda_gazebo)/launch/start_world.launch.xml">
Expand Down
2 changes: 1 addition & 1 deletion panda_gazebo/launch/start_simulation.launch
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<arg name="verbose" default="false" doc="Enable Gazebo verbose mode"/>
<arg name="gazebo_gui" default="true" doc="Start the gazebo GUI"/>
<!-- The used phyics engine (options: dart and ode)-->
<arg name="physics" default="dart" doc="The physics engine used by gazebo"/>
<arg name="physics" default="ode" doc="The physics engine used by gazebo"/>
<!--Control arguments-->
<!-- The control type used for controlling the robot (Options: Trajectory, position, effort)-->
<arg name="control_type" default="trajectory" doc="The type of control used for controlling the arm. Options: trajectory, position, effort"/>
Expand Down
2 changes: 1 addition & 1 deletion panda_gazebo/launch/start_slide_world.launch
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<arg name="verbose" default="false" doc="Enable Gazebo verbose mode"/>
<arg name="gazebo_gui" default="true" doc="Start the gazebo GUI"/>
<!-- The used phyics engine (options: dart and ode)-->
<arg name="physics" default="dart" doc="The physics engine used by gazebo"/>
<arg name="physics" default="ode" doc="The physics engine used by gazebo"/>

<!--Start the Gazebo world-->
<include file="$(find panda_gazebo)/launch/start_world.launch.xml">
Expand Down
2 changes: 1 addition & 1 deletion panda_gazebo/launch/start_world.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<arg name="verbose" default="false" doc="Enable Gazebo verbose mode"/>
<arg name="gazebo_gui" default="true" doc="Start the gazebo GUI"/>
<!-- The used phyics engine (options: dart and ode)-->
<arg name="physics" default="dart" doc="The physics engine used by gazebo"/> <!--Phyics engines: dart|ode-->
<arg name="physics" default="ode" doc="The physics engine used by gazebo"/> <!--Phyics engines: dart|ode-->

<!--Start the gazebo world-->
<include file="$(find gazebo_ros)/launch/empty_world.launch">
Expand Down

0 comments on commit 9325086

Please sign in to comment.