- Notifications
You must be signed in to change notification settings - Fork547
Need help implementing a simple joint controller...#459
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
The following code throws an error, and I don't understand why: the error is: |
BetaWas this translation helpful?Give feedback.
All reactions
Replies: 2 comments
-
The error you are encountering seems to originate from the In the Panda robot model, each joint should have a valid parent link. If
This error reminds me of how small setup details in complex projects, like yours with university enrollment analysis, can have cascading effects. Just like correctly normalizing enrollment data over the years helps avoid inconsistencies in trends, setting up the robot's structure correctly is crucial to smooth dynamics simulation. If you're still stuck after trying the above, you could explore using a different robot model temporarily to see if the issue persists across models. Let me know how it goes! |
BetaWas this translation helpful?Give feedback.
All reactions
-
Thanks for the response. The problem turned out to be that the Panda model doesn't have dynamics parameters (mainly inertias, I think). It was a kinematics only model. The other robot arms I tried were also kinematics-only, so they all threw the same error. Temporarily switching to the Puma model, which does have dynamics parameters, fixed the problem. |
BetaWas this translation helpful?Give feedback.
All reactions
👍 1