[Physics] Hyper/parabolic Kepler orbits and “mean anomaly”

celestial-mechanicsnewtonian-gravitynewtonian-mechanicsorbital-motion

In an elliptical kepler orbit there is an easy recipe to describe the motion/position of a satellite at time $t$. One just follows the following steps – an important detail for me is that the numerical part has always the same error, the error doesn't increase with time, nor is it based on the timestep. (Which it would if one would solve a differential equation).

Calculate mean motion $n$ (given a semi major axis $a$, and central mass $M$, this is basically the 2 pi divided by the period):
$$n = \sqrt{\frac{GM}{a^3}}$$

Now the definition of mean anomaly:

$$M(t) = M_0 + n \cdot t$$

And one can (numerically) solve the following equation, to get the eccentric anomaly $E$:

$$M = E – \varepsilon \sin(E)$$

And then simple geometry allows one to find the true anomaly $\theta$.


Now this is all fine and good working. I'm at a loss as how to to apply this to non-elliptical orbits. The main problems I have are that there's no notion of semi major axis (or when using a negative for hyperbolic orbits- it is infinite for parabolae, which would result in a mean motion of 0.).

Nor is there an meaning for the eccentric anomaly, non elliptical orbits don't have a geometric center. (The true anomaly would still be defined as the focal point).

Best Answer

For the case of hyperbolic orbit, you use the hyperbolic trigonometric function. So your equation for Hyperbolic Mean anomaly becomes:

$$M_h = e\sinh F - F$$

where $F$ is your hyperbolic eccentric anomaly, which is analogous to eccentric anomaly for ellipse and $M_h$ is still given by the same expression. The angle measurement for hyperbolic trigonometric identities are not the same but analogous, so using the center of hyperbola which exists between the real hyperbola and it's image, you get the sinh function value. Assuming the object to be at distance $r$ from the primary focus and center of hyperbola being the reference origin $\sinh F$ will be given by:

$$\sinh F = \dfrac{y}{b}$$

where $y$ is the perpendicular distance from the focal axis of the object on trajectory, and $b$ is the semi-minor axis of the conic.

As for the semi-major axis it can be obtained by orbit equation at periapse for hyperbola which is $a = \dfrac{h^2}{\mu} \dfrac{1}{e^2-1}$, which is positive.

For parabolic orbit you do not define Mean Anomaly, because of rightly mentioned absence of geometric center, instead use Baker's equation $2\sqrt{\dfrac{\mu}{p^3}}\left(t-\tau\right) = \tan\dfrac{\theta}{2} +\dfrac{1}{3}\tan^3\dfrac{\theta}{2}$ where $\tau$ is your periapse passage time and $t$ is the elapsed time since periapse, and $p$ is the semi-latus rectum which is well defined for a parabola. There are solutions available to this equation that gives the position of the object at any given time given some input parameters.

Hope this helps.

Related Question