When I change joint type to fixed, it still appears in the robot configuration with NaN value. Why does it happens?
6 次查看(过去 30 天)
显示 更早的评论
Hello everybody,
I'm trying to reduce my 7DoF manipulator to a 4DoF one in order to control it by a simpler adaptive controller (A 7DoF symbolic Dynamic Regressor is very expensive to compute and evaluate). So I computed the inverse kinemaics, got the final configuration of all my 7 joints and got the proper transforms between each rigidBody I want keep fixed. Then I created the joints, I set them with the proper transform and I replaced them in their rigidBodies.
All seems to be right, but when I ask a random configuration, MATLAB returns an array of 1x7 with three values set as NaN and not a proper 1x4 array. Even the showdetails command returns me all right.
Here below I attach my code for the first three links that I want to fix each other:
robot3DoF_loaded = copy(robot7DoF_loaded);
fixedJnt_Link1ToLink2 = rigidBodyJoint('shoulder_roll_fixed','fixed');
setFixedTransform(fixedJnt_Link1ToLink2, inv(T_Link1ToLink2));
replaceJoint(robot3DoF_loaded, 'link2_ssrms', fixedJnt_Link1ToLink2);
fixedJnt_Link2ToLink3 = rigidBodyJoint('shoulder_yaw_fixed','fixed');
setFixedTransform(fixedJnt_Link2ToLink3, inv(T_Link2ToLink3));
replaceJoint(robot3DoF_loaded, 'link3_ssrms', fixedJnt_Link2ToLink3);
fixedJnt_Link3ToLink4 = rigidBodyJoint('elbow_yaw_fixed','fixed');
setFixedTransform(fixedJnt_Link3ToLink4, inv(T_Link3ToLink4));
replaceJoint(robot3DoF_loaded, 'link3_ssrms', fixedJnt_Link3ToLink4);
Here below I attach what MATLAB returns me
q_random3DoF = randomConfiguration(robot3DoF_loaded) =
[NaN NaN NaN 0.158 1.458 -0.985 0.052]
Warning: Rigid body tree dynamics method returned invalid (NaN or Inf) results. Please check the
inertial parameters of the rigidBodyTree object. For example, a leaf non-fixed body that has zero
mass can cause forwardDynamics to return NaN.
> In robotics.manip.internal.warning (line 19)
In robotics.manip.internal/RigidBodyTree/resultPostProcess (line 1303)
In robotics.manip.internal/RigidBodyTree/randomConfiguration (line 601)
In rigidBodyTree/randomConfiguration (line 450)
PS: I controlled all inertial parameter but they're not zero, except for the end-effector but it was and is still fixed to the last link.
2 个评论
采纳的回答
Yiping Liu
2021-5-11
Hi Valerio,
So this turns out to be a bug in the replaceJoint method (some internal numbers are not updated correctly when you convert a revolute joint into a fixed joint). Sorry for the inconvenience if this bug has blocked your workflow. replaceJoint is one of the lesser used methods on rigidBodyTree, thanks for spotting it. Please reach out directly to the MathWorks tech support and mentioning this post. The dev team can get a hot patch for you in one or two days based on the version of MATLAB you have.
Thanks,
Yiping
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Manipulator Modeling 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!