Skip to content
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

Mysterious negative sign required sometimes #105 #188

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

ElMapacheDelOeste
Copy link

The rotations returned by the function axis_rotation() are the transposed to the ones we expected. Using Modelica for reference, the same function returns the transpose to the Julia's ones :
https://github.com/modelica/ModelicaStandardLibrary/blob/afba9aad9216b472b856b259a002c934b46e6786/Modelica/Mechanics/MultiBody/Frames/axisRotation.mo#L12

This allows to get rid of the suspicious need for the "neg_w" boolean.

I have a doubt for the quaternions, if the transpose is only needed on the rotation matrix or on the angular velocity as weel.

GitHub issue : #105

@@ -262,7 +262,7 @@ function from_Q(Q2, w; normalize=false)
Q2 = Q2 / _norm(Q2)
end
q = Rotations.QuatRotation(Q2, false)
R = RotMatrix(q)
R = RotMatrix(q)'
RotationMatrix(R, w)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should the transpose be done on the RotationMatrix(R,w) and therefore have -w as well?

@baggepinnen
Copy link
Contributor

Thanks for this PR! I'll try to have a look at it when we have the new compiler up and running :)

@pitx-perf
Copy link

Jumping in since I worked with @ElMapacheDelOeste on this.
It's worth mentioning that before this PR, the convention of angles did not match Modelica - I think this is important to point out because people benchmarking the package could get confused and dismiss it.

See the test "resistance in speherical" for instance:
. the Revolute is rotated as expected because it uses a (correct) planar_rotation under the hood
. the Spherical is rotated by the opposite of the angle, because it uses the faulty axes_rotations function. But compensate by a "-" in the translation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants