Phasing Maneuvers#

When two spacecraft want to rendezvous in space, they must simultaneously have the same position and velocity vectors. Common examples of rendezvous are resupply craft for the ISS or the Lunar Module (LM) with the Command and Service Module (CSM) during the Apollo missions.

For two spacecraft to rendezvous, there are typically two stages to the maneuver:

  1. Phasing maneuver: The two spacecraft may begin the maneuver very far apart. The first stage of the rendezvous is to bring the two spacecraft into close proximity by performing a phasing maneuver, usually by one of the spacecraft.

  2. Final approach: Once the spacecraft are in close proximity, the final approach maneuver requires small adjustments to the approaching craft’s velocity so that the two can match.

In this section, we are going to focus on the first stage, the phasing maneuver. A phasing maneuver, in general, is a two-impulse transfer from an orbit into a different orbit, then back to the original orbit. The period of the transfer orbit is different from the original orbit, so the spacecraft will arrive back at the original impulse point at a different time than if it had stayed on the original orbit.

We assume that the velocity change is applied parallel to the velocity vector at the impulse point. This gives the minimum propellant usage for such a maneuver, but is relatively slow. More general orbital transfers, including rendezvous maneuvers that require less than a full orbit, will be covered in Non-Hohmann Transfers with a Common Apse Line.

Returning At A Later Time#

As shown in Fig. 63, two spacecraft are initially on Orbit 1. The chase or interceptor spacecraft is at the point marked Impulse Point and the target spacecraft is behind the chase craft in the orbit.

../_images/phasing-orbit-increase-period.svg

Fig. 63 A phasing orbit to allow a target spacecraft to catch up to the interceptor spacecraft. The semi-major axis of the phasing orbit (Orbit 2, blue) is larger than the initial orbit, so the period of the phasing orbit is longer.#

At the impulse point, the interceptor spacecraft increases its velocity to place itself on Orbit 2. The period of Orbit 2 is:

(292)#\[T_2 = \frac{2\pi}{\sqrt{\mu}} a_2^{3/2}\]

while the period of Orbit 1 is:

(293)#\[T_1 = \frac{2\pi}{\sqrt{\mu}} a_1^{3/2}\]

Since \(a_1 < a_2\), the period of Orbit 2 is greater. Therefore, while the interceptor craft travels 360° of true anomaly in time \(T_2\), the target spacecraft travels more than 360° of true anomaly. This allows the target spacecraft to catch up and reach the impulse point at the same time that the interceptor returns there.

Returning At An Earlier Time#

As shown in Fig. 64, two spacecraft are initially on Orbit 1. The chase or interceptor spacecraft is at the point marked Impulse Point and the target spacecraft is behind the chase craft in the orbit.

../_images/phasing-orbit-decrease-period.svg

Fig. 64 A phasing orbit to allow an interceptor spacecraft to catch up to the target spacecraft. The semi-major axis of the phasing orbit (Orbit 2, blue) is smaller than the initial orbit, so the period of the phasing orbit is shorter.#

At the impulse point, the interceptor spacecraft decreases its velocity to place itself on Orbit 2. The period of Orbit 2 is given by Eq. (292) while the period of Orbit 1 is given by Eq. (293).

Since \(a_1 > a_2\), the period of Orbit 2 is smaller. Therefore, while the interceptor craft travels 360° of true anomaly in time \(T_2\), the target spacecraft travels less than_ 360° of true anomaly. This allows the interceptor spacecraft to catch up and reach the impulse point at the same time that the target returns there.

Example#

Although we’ve treated phasing maneuvers as useful to rendezvous two spacecraft, they can also be used to change the longitude above which a satellite orbits. Assume a satellite is in GEO above the prime meridian, a longitude of 0°E. The target longitude is 137.2°W. Determine the \(\Delta v\) requirement if the phasing maneuver takes 1, 2, and 5 rotations of Earth.

Fig. 65 shows the impulse point and the target longitude at the initial state. Earth is rotating counterclockwise and the orbit of the satellite is prograde, the same as Earth’s rotation.

../_images/phasing-maneuver-example.svg

Fig. 65 The initial conditions for the phasing maneuver to 137.2°W longitude. Not to scale.#

To find the \(\Delta v\) requirement, we need to know how much \(\Delta v\) is required to get onto the phasing orbit and then return back to GEO. This is determined by the GEO velocity as well as the velocity at the impulse point on the phasing orbit.

The parameters of the phasing orbit depend on its period. For the satellite to be at the target longitude after the maneuver, the period of the phasing orbit has to be the same as the amount of time it takes for Earth to rotate 137.2°. After this amount of rotation, the target longitude will be pointing at the impulse point, and the satellite also needs to be at the impulse point at that moment to perform its second impulse and get back on GEO.

import math as m

sidereal_day = 86_164.0905  # s
omega_E = 2 * m.pi / sidereal_day  # rad/s
target_longitude = 137.2  # °W longitude

period_0 = m.radians(target_longitude) / omega_E  # s

The period of the phasing orbit has to be \(T =\) 32838.092 s = 9.122 h. With the period, we can calculate the semi-major axis distance of the phasing orbit.

mu = 3.986E5  # km**3/s**2
period_constant = (mu / (4 * m.pi**2))**(1/3)
a_0 = period_0**(2/3) * period_constant  # km

The semi-major axis of the phasing orbit is \(a_0 =\) 22163.8 km. Since the period of the phasing orbit is shorter than that of the GEO orbit, the impulse point is the apogee point of the phasing orbit. Thus, we know \(a\) and \(r_a\) for the phasing orbit and we can determine the other parameters from these two.

r_geo = sidereal_day**(2/3) * period_constant  # km
v_geo = m.sqrt(mu / r_geo)

r_a_0 = r_geo  # km
r_p_0 = 2 * a_0 - r_a_0  # km

The perigee radius of the phasing orbit is \(r_{p_0} =\) 2163.47 km. Since this is less than the radius of Earth, this phasing orbit is not possible. Nonetheless, we can calculate the \(\Delta v\) requirement for comparison.

The two impulses in the phasing orbit occur at the same location relative to the phasing orbit. Thus, the \(\Delta v\) required to move from the initial orbit onto the phasing orbit has the same magnitude as the \(\Delta v\) required to do the reverse.

When the period of the phasing orbit is less than the original orbit, and the impulse point is apoapsis of the phasing orbit, then we find:

(294)#\[\Delta v = 2 \left\lvert v_a - v_i \right\rvert\]

where \(v_a\) is the apoapsis velocity of the phasing orbit and \(v_i\) is the velocity at the impulse point on the original orbit. Conversely, when the period of the phasing orbit is longer than the original orbit, we find that the impulse point is the periapsis of the phasing orbit, such that:

(295)#\[\Delta v = 2 \left\lvert v_p - v_i \right\rvert\]
E_0 = -mu / (2 * a_0)
v_a_0 = m.sqrt(2 * (E_0 + mu / r_a_0))
delta_v_0 = 2 * abs(v_a_0 - v_geo)

The GEO velocity is \(v_{\text{GEO}} =\) 3.075 km/s, the phasing orbit apogee velocity is \(v_{a_0} =\) 0.961 km/s, and the \(\Delta v\) is 4.228 km/s.

Now, let’s allow the phasing maneuver to cover multiple revolutions of Earth. This means that the period of the phasing orbit will be:

(296)#\[T_{\text{phasing}} = t_{137.2°} + n T_{\text{one orbit}}\]

where \(T_{137.2°}\) is the time for the target longitude to reach the impulse point, \(n\) is the number of Earth rotations, and \(T_{\text{one orbit}}\) is the period of one of the initial orbits. In this case, \(T_{\text{one orbit}}\) is one sidereal day, since the initial orbit is GEO.

In this case, the period of the phasing orbit is longer than the GEO period, so the impulse point is at perigee of the phasing orbit.

r_p = r_geo
def delta_v(a):
    E = -mu / (2 * a)
    v_p = m.sqrt(2 * (E + mu / r_p))
    delta_v = 2 * abs(v_p - v_geo)
    return delta_v

n = 1
period_1 = m.radians(target_longitude) / omega_E + n * sidereal_day  # s
a_1 = period_1**(2/3) * period_constant  # km
delta_v_1 = delta_v(a_1)

n = 2
period_2 = m.radians(target_longitude) / omega_E + n * sidereal_day  # s
a_2 = period_2**(2/3) * period_constant  # km
delta_v_2 = delta_v(a_2)

n = 5
period_5 = m.radians(target_longitude) / omega_E + n * sidereal_day  # s
a_5 = period_5**(2/3) * period_constant  # km
delta_v_5 = delta_v(a_5)
Table 3 Comparison of results for various phasing orbits.#

Number of
Complete Rotations

Period (hours)

\(\Delta v\) (km/s)

0

9.12

4.228

1

33.06

0.569

2

56.99

1.228

5

128.79

1.808

A comparison of the results is shown in Table 3. We can see that the impossible phasing orbit, taking only 9.2 hours and cutting through the earth, has the highest \(\Delta v\) requirement. The smallest \(\Delta v\) requirement is for the case of a single complete rotation of the earth. This is because having a longer period requires raising apogee higher than is necessary, incurring additional \(\Delta v\) to do so.