[franka_description] Docs say `gazebo=true` triggers use of paper's estimated paremters, but they are always used?
EricCousineau-TRI opened this issue · 1 comments
However, upon inspection, it looks like the inertial parameters are not dependent on the gazebo
parameters?
franka_ros/franka_description/robots/common/utils.xacro
Lines 4 to 6 in a58d305
Is this intended? If so, can the docs be updated?
If not, can this possibly be fixed?
Relates
frankaemika/franka_ros2#11
https://www.franka-community.de/t/panda-dynamic-model/4573/3
sorry for the late reply. The inertia parameters are dependent on the gazebo
arg but not in the place you searched for. Rather the condition is placed a little bit further down in the link_with_sc
macro:
franka_ros/franka_description/robots/common/utils.xacro
Lines 51 to 53 in 2d458ab
You can also verify that by simply inspecting the URDFs ;)
$ xacro $(rospack find franka_description)/robots/fr3/fr3.urdf.xacro | grep "<inertial>" | wc -l
0
$ xacro $(rospack find franka_description)/robots/fr3/fr3.urdf.xacro gazebo:=true | grep "<inertial>" | wc -l
8
I hope this answers your question. Feel free to reopen the ticket if not.
All the best