-
Notifications
You must be signed in to change notification settings - Fork 320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(franka_gazebo): add physics engine launch argument #211
Open
rickstaa
wants to merge
2
commits into
frankaemika:develop
Choose a base branch
from
rickstaa:add_physics_engine_launch_arg
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
feat(franka_gazebo): add physics engine launch argument #211
rickstaa
wants to merge
2
commits into
frankaemika:develop
from
rickstaa:add_physics_engine_launch_arg
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
c40eafa
to
7d35d82
Compare
7d35d82
to
dcc5eb0
Compare
dcc5eb0
to
d547046
Compare
d547046
to
d58e014
Compare
d58e014
to
f7144c5
Compare
rickstaa
commented
Mar 18, 2022
franka_gazebo/launch/panda.launch
Outdated
@@ -7,6 +7,7 @@ | |||
<arg name="paused" default="false" doc="Should the simulation directly be stopped at 0s?" /> | |||
<arg name="world" default="worlds/empty.world" doc="Filename to a SDF World for gazebo to use" /> | |||
<arg name="rviz" default="false" doc="Should RVIz be launched?" /> | |||
<arg name="physics" default="dart" doc="The physics engine used by gazebo"/> <!--Phyics engines: dart|ode--> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
756bc65
to
bd12808
Compare
1 task
2 tasks
6f45ba5
to
0e8a5fb
Compare
@Maverobot, @gollth I rebased this pull request on the |
This will fix #362. |
5 tasks
1 task
This commit gives users the ability to set the Gazebo physics engine through the `physics` launch file argument.
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`.
0e8a5fb
to
8c2a000
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
A simple pull request gives users the ability to change the physics engine. I used DART as the default physics engine since it appears to be the most stable (#160 (comment)). The only downside of using this engine compared to the ODE engine is that the
get_physics_properties
service call does not yet support the physics engine [bullet].Please note that the BULLET and SIMBODY physics engines do not work with the current model (see #160 (comment)). dcc5eb0 adds a warning to communicate this to the user.