Hybrid dynamics #1864
-
Does pinocchio support hybrid dynamics? If it doesn't, is there a simple way to implement it on top of pinocchio? To give a bit of context, I have a serial chain floating base robot. I want to assign acceleration to the floating base joint and compute the accelerations of other joints using forward dynamics. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Good question. You should be able to do that with the constrained dynamics functions by setting the desired acceleration of the floating base. |
Beta Was this translation helpful? Give feedback.
-
For those of you who are interested in computing hybrid dynamics using Pinocchio, I have discovered a method to do so using inverse dynamics implementation. The details of this method are explained in Roy Featherstone's book. Additionally, I have written a short blog post where I briefly outline the method and provide a simple code snippet demonstrating how to implement it in Pinocchio. |
Beta Was this translation helpful? Give feedback.
Good question. You should be able to do that with the constrained dynamics functions by setting the desired acceleration of the floating base.
In general, it would be nice to add the feature overall.
In which context do you use this feature?