Circular and Elliptical Orbits (\(e < 1\))#

For circular and elliptical orbits, combining Eq. (189) and Eq. (190) results in:

(193)#\[\frac{\mu}{h^3}t = \frac{1}{\left(1 - e^2\right)^{3/2}}\left[2\tan^{-1}\left(\sqrt{\frac{1 - e}{1 + e}}\tan\frac{\nu}{2}\right)-\frac{e\sqrt{1 - e^2}\sin \nu}{1 + e \cos \nu}\right]\]

Mean Anomaly#

We define the term in the square brackets in Eq. (193) to be the mean anomaly, \(M_e\), where the subscript \(e\) indicates that this is for the ellipse. We will have different equations for the parabola and hyperbola.

(194)#\[M_e = \left[2\tan^{-1}\left(\sqrt{\frac{1 - e}{1 + e}}\tan\frac{\nu}{2}\right)-\frac{e\sqrt{1 - e^2}\sin \nu}{1 + e \cos \nu}\right]\]

The mean anomaly is a monotonically increasing function of the true anomaly, as shown in Fig. 48. This is good because it means that \(M_e\) can be used in place of \(\nu\) for all four quadrants on the \(x\)-\(y\) plane. If \(M_e\) had a peak, we would have to be concerned about which quadrant we were in.

../_images/385ab3a008fc205bc92e8cac192da52911a7e0192c473800a2077b4a03a50a63.png

Fig. 48 Mean anomaly as a function of true anomaly for a range of eccentricities. Note that \(e < 1\).#

Notice that when \(e = 0\) (a circular orbit), the mean anomaly and true anomaly are equal.

Plugging Eq. (194) into Eq. (193) and solving for \(M_e\), we find:

(195)#\[M_e = \frac{\mu^2}{h^3} t \left(1 - e^2\right)^{3/2}\]

If we know the period of the orbit, we can simplify the equation for the mean anomaly:

(196)#\[M_e = \frac{2\pi}{T}t\]

For a circle, the mean anomaly equals the true anomaly:

(197)#\[\nu_{\text{circle}} = \frac{2\pi}{T} t\]

Further solution is not needed if the orbit is circular.

Eccentric Anomaly#

We can simplify the equation for \(M_e\) even further by using an auxiliary angle, \(E\), called the eccentric anomaly. \(E\) is defined as the angle from the \(x\) axis to a point on a circle that circumscribes the orbital ellipse and where the point is located vertically above a point with true anomaly \(\nu\) on the ellipse. This is shown in Fig. 47 and Fig. 49.

../_images/definition-of-eccentric-anomaly-ellipse.svg

Fig. 49 The eccentric anomaly. The blue ellipse is the trajectory of the spacecraft; the green circle is circumscribed around the ellipse. Point \(O\) is the origin, point \(F\) is the focus of the ellipse, point \(S\) is the spacecraft, point \(P\) is the intersection of the apse line and a perpendicular line through \(S\), and point \(Q\) is the intersection of the circle and the perpendicular line through \(S\).#

From Fig. 49, we see that the distance \(OP\) is equal to:

(198)#\[OP = ae + FP = a \cos E\]

where \(a\) is the semimajor axis of the ellipse, \(e\) is the eccentricity, and the distance \(FP\) is related to the true anomaly:

(199)#\[FP = r \cos\nu\]

Combining Eq. (198) and Eq. (199), we find:

(200)#\[a\cos E = ae + r\cos\nu\]

Replacing \(r\) with the orbit equation in terms of the semimajor axis and simplifying, we find:

(201)#\[\cos E = \frac{e + \cos\nu}{1 + e\cos\nu}\]

or, solving for \(\nu\):

(202)#\[\cos\nu = \frac{e - \cos E}{e\cos E - 1}\]

Unfortunately, these equations result in a quadrant ambiguity. We can resolve this by some further trigonometric transformations:

(203)#\[\tan\frac{E}{2} = \sqrt{\frac{1 - e}{1 + e}}\tan\frac{\nu}{2}\]

The inverse tangent function is not multivalued for a given value of \(\nu\) or \(E\), so this resolves the quadrant ambiguity.

Note

Note: Eq. (203) can be solved in Python with np.arctan() and in Matlab with atan(). It is not necessary to use np.arctan2() or atan2(). Make sure all your arguments are in terms of radians!

Kepler’s Equation#

Some further trigonometry with Eq. (201) and Eq. (203) yields Kepler’s Equation:

(204)#\[M_e = E - e \sin E\]

This gives the relationship between mean anomaly and eccentric anomaly. The value of \(M_e\) monotonically increases as a function of \(E\), as shown in Fig. 50 for several values of \(e\).

../_images/bcc0f51cfbbaa519ac74b257a88ac98170e4e9b7989112db434cf1c3f55a4fd3.png

Fig. 50 The mean anomaly as a function of eccentric anomaly for several values of the eccentricity. Note that \(e < 1\).#

Solution Procedures#

Now we have all the pieces we need to apply the solution procedures discussed in the introductory section.

Given True Anomaly, Find Time Since Periapsis#

Given a value of the true anomaly \(\nu\), the eccentric anomaly \(E\) can be calculated from Eq. (203). Then, Kepler’s Equation can be solved to find \(M_e\), and the time since periapsis is found by:

(205)#\[t = \frac{M_e}{2\pi} T\]

Given Time Since Periapsis, Find True Anomaly#

If, on the other hand, we are given the time since periapsis and want to find the true anomaly, we must first solve Eq. (196) for \(M_e\). Then we need to solve Kepler’s equation for \(E\). Unfortunately, this equation is transcendental in \(E\), so it cannot be solved analytically. There are several methods to solve Kepler’s equation, depending on the level of accuracy required and the access to computational tools.

Once \(E\) is determined, Eq. (203) can be solved for \(\nu\).

Newton’s Method to Solve Kepler’s Equation#

For Newton’s method, we seek the roots of a function, \(f(E) = 0\). In this case, we can rearrange Kepler’s equation as:

(206)#\[f(E) = E - e\sin E - M_e\]

It is also convenient to supply the derivative, when it is available, since this improves the convergence rate of the algorithm. The derivative is:

(207)#\[\frac{d f(E)}{d E} = f'(E) = 1 - e\cos E\]

These equations can be provided to standard computational solvers for root finding algorithms.

Infinite Series Solutions of Kepler’s Equation#

Although there are no analytical solutions for Kepler’s equation, several people have developed infinite series solutions. The first was developed by Lagrange:

(208)#\[E = M_e + \sum_{n = 1}^{\infty}a_n e^n\]

where the coefficients \(a_n\) are given by:

(209)#\[a_n = \frac{1}{2^{n - 1}} \sum_{k=0}^{\mathrm{floor}(n/2)}(-1)^k\frac{1}{\left(n - k\right)!k!}\left(n - 2k\right)^{n - 1}\sin\left[\left(n - 2k\right)M_e\right]\]

and where \(\mathrm{floor}(x)\) means to take the next lowest integer relative to \(x\).

This infinite series converges for \(e < 0.6627434193\), a limit that was proven by Laplace, and is therefore typically called the Laplace limit. For larger values of \(e\), the series diverges.

Another infinite series was developed by Bessel, which converges for all \(e < 1\):

(210)#\[E = M_e + \sum_{n=1}^{\infty}\frac{2}{n} J_n(ne)\sin n M_e\]

where \(J_n\) are the Bessel functions of the first kind, defined by their own infinite series:

(211)#\[J_n(x) = \sum_{k=0}^{\infty}\frac{\left(-1\right)^k}{k!\left(n + k\right)!}\left(\frac{x}{2}\right)^{n+ k}\]

There are other feasible series solutions to Kepler’s equation, some of which are discussed by Colwell [Col92].