Orbital Mechanics - nullstar/SecondBrain GitHub Wiki
An ellipse is defined by its semi-major axis 'a' (half its maximum diameter) and semi-minor axis 'b' (half its minimum diameter).
Ellipses can also be described using ecentricity 'e' which describes the ellipses deviation from circularity. The relationship between these parameters is:
-
$e == 0$ is a circle -
$0 < e < 1$ is an ellipse -
$e == 1$ is a parabola -
$e > 1$ is a hyperbola
An ellipse has a minimum radius 'rmin' and a maximum radius 'rmax' as measured from one of its focal points. These can be caclulated using the following equations:
Assuming a small body orbiting a much larger body with mass 'm' with no external forces other than gravity 'g', the orbital velocity 'v' can be calculated from its orbital radius 'r' using:
The orbital period 'T' can be calculated using:
The mean motion 'n' is the angular speed for a body to complete one orbit and can be calculated using:
The mean anomaly 'M' is the fraction of an elliptical orbits period that has elapsed since the orbiting body passed minimum radius. At time 't' and where the time the body was at minimum radius is '$t_0$', the mean anomaly is calcualted using:
The eccentric anomaly 'E' is useful to compute the position of a body moving in an orbit. It appears in Keplers equation which is:
The issue is that there is no closed form solution for calculating E from the above equation. Instead numerical approximation using Newton Raphson Method can be employed:
For most elliptical orbits using an initial value
The cartesian position of an obiting body at any time can now be calculated using the equations:
#Physics #Math #Ellipse #Orbit