Anyway, here is a representation of the same barycenter orbit, the white one leaving the visual representation (the frame of reference) as it is, the orange one "correcting" the positions so that it appears that the more massive body is "stationary". It is a visual trick, they are really the same orbit.

And here's the "correcting" code.
barycenter_length = radius * (charon_mass / (charon_mass + pluto_mass));
bary_x = sin(angle_to_charon) * barycenter_length;
bary_y = cos(angle_to_charon) * barycenter_length;
Then, this code keeps the more massive body centered...
pluto_x + bary_x
pluto_y + bary_y
And so on for Charon. That is, by the way, the formula for establishing a barycenter;
Bc = Radius * (lesser_mass / (lesser_mass + greater_mass))
I am sort of up to my eyes in work this month, so progress will be slow.
'Till the next!
No comments:
Post a Comment