Article 77W8G The difference orbit inclination makes

The difference orbit inclination makes

by
John
from John D. Cook on (#77W8G)

Suppose you wanted to find the distance between Earth and Mars over time. To first approximation, both planets orbit the sun in elliptic orbits in the same plane.

If you wanted to be more accurate, you'd need to take into account the fact that the orbit of Mars is tilted about 1.85 relative to the Earth's orbit. How much difference does that make?

To simplify things, let's assume the Earth orbits the sun in a circle of radius 1 and Mars orbits the sun in a circle of radius 1.5. The distance between Earth and Mars over time would be basically sinusoidal.

mars_distance0.png

How much does inclination contribute to this distance? In other words, what is the difference between the distance accounting for the inclination of Mars' orbit and the distance if we assume the two orbits are in the same plane?

This plot gives the answer.

mars_distance1.png

The effect is not large, about three orders of magnitude smaller than the main effect, but it's interesting how erratic it is.

The plots were made with the following code.

from numpy import *R = 1.5T = R**1.5 # Kepler's third lawdef f(t, theta): return sqrt( (cos(t) - R*cos(t/T)*cos(theta))**2 + (sin(t) - R*sin(t/T))**2 + (R*sin(theta)*cos(t/T))**2 )

The first plot graphs f(t, ) and the second graphs f(t, ) - f(t, 0).

The post The difference orbit inclination makes first appeared on John D. Cook.
External Content
Source RSS or Atom Feed
Feed Location http://feeds.feedburner.com/TheEndeavour?format=xml
Feed Title John D. Cook
Feed Link https://www.johndcook.com/blog
Reply 0 comments