-
Notifications
You must be signed in to change notification settings - Fork 467
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
Acceleration Calculation of the RNE in modified DH #266
Comments
I read the ne.c code, It also show that, after calculate the sum of |
I write a test:
but get two difference result. the testcase get two result:
so, I think the rne and rne_python may have some bug in it. Even I update the vd_ in Line 1468, the result also not same. After read the rne_python code, I think the Line1539 maybe have some problem.
nn should be the sum of 4 part of vector, the third part which should be the |
Quick question, it's been ages since I looked at this code, the |
Describe the bug
the
vd
is codevd_ = Rt @ _cross(wd, pstar) + _cross(w, _cross(w, pstar)) + vd
may be have some problem.Version information
master
Expected behavior
when the joint is revolute, I think the
vd
=Rt@(vd + _cross(wd,pstar) + _cross(w, _cross(w, pstar)))
since,
then, We add the RT trans at each side.
The text was updated successfully, but these errors were encountered: