Questions on rigid body dynamics & Julia

Hi all! I’m just getting started with Julia. I’ll be working on motion planning algorithms and controls for rigid bodies. I’ve started to play around with various packages and had some general questions:

  1. RigidBodyDynamics seems great so far! However, I’ve used Drake in the past and noticed it has Julia bindings. It looks like the author of the Julia package also tried the Julia bindings (and contributes to Drake?) but has contributed more actively to the Julia package. I’ll try out the Julia bindings soon but, in the meantime, can anyone share their experience with either of those options?
  2. There is a Quaternions package. Based on the multiplication implementation, it appears to be the Hamilton convention. Can anyone confirm?
  3. There is a Rotations package. Based on the multiplication implementation, it appears to be the Hamilton convention. Can anyone confirm?

Sorry if these questions were asked elsewhere, I couldn’t find anything through the search toolbar.

Thanks for reading!
Kyle

1 Like

I’m not the author of RigidBodyDynamics.jl, but I do sit next to him in lab. I’m also one of the original developers of Drake and I’m currently using RigidBodyDynamics.jl in Julia for my research.

We briefly played around with Julia bindings to Drake as a proof-of-concept, but I’m pretty confident that they’ve never been used for any actual projects and I wouldn’t recommend that route. Drake is very heavily C++ and Python-focused and there’s no indication of that changing in the near future. For dynamics in Julia I’d definitely recommend RigidBodyDynamics.jl over trying to wrap Drake.

On the other hand, if you need access to a few Drake functions, it should be pretty easy to call them via the Python bindings with PyCall.jl. I’ve never actually needed to do that in my work, but it should be pretty functional.

I don’t use Quaternions.jl so I can’t comment on that, but you can see that Rotations.jl is indeed using the Hamilton convention for its quaternions:

https://github.com/FugroRoames/Rotations.jl/blob/a405b90e3856bd5025f7de6f959bcc1d4ec33b9e/src/quaternion_types.jl#L85-L140

This is the code that (lazily) computes each element of the rotation matrix corresponding to the quaternion. The i==2 element is at indices (2, 1) and has the sign we would expect from the Hamilton convention: Quaternion Conventions: Hamilton and JPL

1 Like

We also have a few other tools that are designed to work well with RBD.jl like RigidBodySim.jl and MeshCatMechanisms.jl. You can find more info here: http://www.juliarobotics.org/ and some tutorials here: JuliaRobotics Tutorials | JuliaRobotics

1 Like

RigidBodyDynamics seems great so far!

Thanks, that’s great to hear!

Re: Julia bindings for Drake, those were just instructions for calling the C++ code using Cxx.jl. These aren’t really ‘bindings’ per se, Cxx.jl just makes it quite easy to call arbitrary C++ code. I’m not sure if those instructions still work; I haven’t used Drake in a while. I’m biased of course, but I think you’ll have a better time just using RigidBodyDynamics.jl than trying to call Drake using Cxx.jl.

I wouldn’t recommend building stuff on top of Quaternions.jl. I used to have it as a dependency of RigidBodyDynamics, but switched to Rotations.jl. Quaternions.jl has been pretty much unmaintained for quite a while now (often months go by before anybody responds to PRs/issues). Again, I’m biased, because I’ve contributed quite a bit to Rotations.jl, but Rotations has a lot of nice features, is fast, and already up to date with Julia 0.7. One difference is that Quaternions.jl allows non-normalized quaternions as well, while Rotations.jl doesn’t.

Hamilton convention

Wow, I’d honestly never heard of the other (JPL) convention before. Both Rotations and Quaternions use Hamilton convention, yeah:

(compare to (8) in [PDF] Indirect Kalman Filter for 3 D Attitude Estimation | Semantic Scholar)

1 Like

Pretty compelling that you’ve switched to RigidBodyDynamics yourself. Thanks for the recommendations and appreciate the links to the extra tutorials!

Thanks for the quick reply! Well that’s 2/2, so I’ll stick to just Julia for the time being. Also, thanks for pointing out the differences in quaternion normalisation – another good reason to stick to Rotations.jl.

Regarding quaternion conventions, I hadn’t heard of other quaternion conventions either recently I got bitten by it. If you’re interested, I found another article that goes into the topic a bit more: http://www.iri.upc.edu/people/jsola/JoanSola/objectes/notes/kinematics.pdf.

And I suppose here’s a general question to the both of you: it seems that we’re all in agreement that Rotations.jl uses the Hamilton convention based off the implementation details but would you happen to know off of which text the library is originally based?

@andyferris is the original author, not sure which text he used.

Great, thanks! Just curious if there is one but I have plenty to stay busy for now.

Hi!

I didn’t follow any particular text. In fact I inherited (ahem, stole) a lot of the code, especially the mathematical parts, from a co-worker and extensitively re-worked it so that it nicely fit into StaticArrays.jl and CoordinateTransformations.jl just the way I wanted it to :slight_smile:

In turn, I believe my co-worker had been using Quaternions.jl as a basis for his quaternion rotation and added some of his own Eurler rotation types, derivatives, etc. I suspect that’s the only reason we use the Hamilton convention.

1 Like

Ha, fair enough! It does fit together very nicely though :slight_smile:

1 Like

Just a comment:

If you want a package with syntax similar to Octave/MATLAB, then you can try ReferenceFrameRotations.jl. It is being used on a daily basis at the National Institute for Space Research to simulate satellite attitude dynamics.

3 Likes

Nice :slight_smile:

2 Likes

Awesome, thanks for the tip!