Hmm, there's no easy way to visually inspect whether the orbit lines do intersect in Celestia, because looking at a 2D screen with constant width lines doesn't tell you what's in front of what. You'd have to wiggle the scene a little to get a 3D impression. Even so, looking at the orbits of Neptune and Pluto together, you can't easily see that they never get within a few A.U. of each other.
I can't guess your level of Celestia knowledge from what you sent so can I check you do know that in Celestia, if orbits overlap and each body co-incides, they just move though each other - there's no explosions or such? Unrealistic, but not a showstopper.
You could 'audit' for moon collisions by following one (F) and centering it (C), then moving above the moon's orbital plane and speed up time. The other moons make funny looping patterns as they sweep passed the moon you are following. That should let you catch moments of close approach. Slow, rewind or freeze time, and zoom in to see how close the approach is. Practice with Janus and Epimetheus for Saturn. Turn moon labels on!
I also can't guess your level of astronomy knowledge. Checks can be done certainly with very difficult mathematics, but you'd have done that if you knew. If you want a simple way I could suggest these ideas:
1. you calculate the nearest and farthest points for each orbit from the parent body as:
Code: Select all
Minimum Distance = SemiMajorAxis ?— ( 1 - Eccentricity )
Maximum Distance = SemiMajorAxis ?— ( 1 + Eccentricity )
You could tabulate those in a spreadsheet and check the innermost distance of one moon isn't less than the outermost distance of a nearer moon, and
vice versa.
If they do overlap and the orbits are in the same plane, you could do the following things:
- Reduce Eccentricity.
- Or if you want to keep eccentricity, reduce SemiMajorAxis.
- Or, if you want to keep that, change Inclination. Tip an orbit by adjusting Inclination (a few degrees should be enough) about a random AscendingNode between 0?° and 360?°. It's not a certain method, but there'll be a very small chance orbits still intersect. It will be rather ineffective though if ArgOfPericenter happens to be close to 0?° or 180?°, because you'll be tipping the orbit about a line very close to the collision point
2. Make the moons' orbits resonant. That is, define their Period's first with integer relations (3:2, 4:3, or for closely spaced moons, 21:20, or even 100:99). Then work out their SemiMajorAxes using Kepler's Law (you need to 'know' the mass of the central body here) to keep astronomical consistency. Audit your moons as I mentioned above. If any two moons keep colliding, offset one of the moon's MeanAnomaly by a random amount between 0?° and 360?° to keep them apart.
3. Use the orbits of those chaotic outer moons of Jupiter
or Saturn (they are in an add-on), and scale their Semi-Major Axes. Each set definitely consists of moons that are naturally unlikely to collide. I hope 50-odd for Jupiter is enough!
Spiff.