Analyzing the Parker Solar Probe flybys

1. Modulus of the exit velocity, some features of Orbit #2

First, using the data available in the reports, we try to compute some of the properties of orbit #2. This is not enough to completely define the trajectory, but will give us information later on in the process:

[1]:
from astropy import units as u
[2]:
T_ref = 150 * u.day
T_ref
[2]:
$150 \; \mathrm{d}$
[3]:
from poliastro.bodies import Earth, Sun, Venus
[4]:
k = Sun.k
k
[4]:
$1.3271244 \times 10^{20} \; \mathrm{\frac{m^{3}}{s^{2}}}$
[5]:
import numpy as np
\[T = 2 \pi \sqrt{\frac{a^3}{\mu}} \Rightarrow a = \sqrt[3]{\frac{\mu T^2}{4 \pi^2}}\]
[6]:
a_ref = np.cbrt(k * T_ref**2 / (4 * np.pi**2)).to(u.km)
a_ref.to(u.au)
[6]:
$0.55249526 \; \mathrm{AU}$
\[\varepsilon = -\frac{\mu}{r} + \frac{v^2}{2} = -\frac{\mu}{2a} \Rightarrow v = +\sqrt{\frac{2\mu}{r} - \frac{\mu}{a}}\]
[7]:
energy_ref = (-k / (2 * a_ref)).to(u.J / u.kg)
energy_ref
[7]:
$-8.0283755 \times 10^{8} \; \mathrm{\frac{J}{kg}}$
[8]:
from astropy.time import Time

from poliastro.ephem import Ephem
from poliastro.util import norm
[9]:
flyby_1_time = Time("2018-09-28", scale="tdb")
flyby_1_time
[9]:
<Time object: scale='tdb' format='iso' value=2018-09-28 00:00:00.000>
[10]:
r_mag_ref = norm(Ephem.from_body(Venus, flyby_1_time).rv()[0].squeeze())
r_mag_ref.to(u.au)
[10]:
$0.72573132 \; \mathrm{AU}$
[11]:
v_mag_ref = np.sqrt(2 * k / r_mag_ref - k / a_ref)
v_mag_ref.to(u.km / u.s)
[11]:
$28.967364 \; \mathrm{\frac{km}{s}}$

2. Lambert arc between #0 and #1

To compute the arrival velocity to Venus at flyby #1, we have the necessary data to solve the boundary value problem:

[12]:
d_launch = Time("2018-08-11", scale="tdb")
d_launch
[12]:
<Time object: scale='tdb' format='iso' value=2018-08-11 00:00:00.000>
[13]:
r0, _ = Ephem.from_body(Earth, d_launch).rv()
r1, V = Ephem.from_body(Venus, flyby_1_time).rv()
[14]:
r0 = r0[0]
r1 = r1[0]
V = V[0]
[15]:
tof = flyby_1_time - d_launch
[16]:
from poliastro import iod
[17]:
v0, v1_pre = iod.lambert(Sun.k, r0, r1, tof.to(u.s))
[18]:
v0
[18]:
$[9.5993373,~11.298552,~2.9244933] \; \mathrm{\frac{km}{s}}$
[19]:
v1_pre
[19]:
$[-16.980821,~23.307528,~9.1312908] \; \mathrm{\frac{km}{s}}$
[20]:
norm(v1_pre)
[20]:
$30.248465 \; \mathrm{\frac{km}{s}}$

3. Flyby #1 around Venus

We compute a flyby using poliastro with the default value of the entry angle, just to discover that the results do not match what we expected:

[21]:
from poliastro.threebody.flybys import compute_flyby
[22]:
V.to(u.km / u.day)
[22]:
$[648499.74,~2695078.4,~1171563.7] \; \mathrm{\frac{km}{d}}$
[23]:
h = 2548 * u.km
[24]:
d_flyby_1 = Venus.R + h
d_flyby_1.to(u.km)
[24]:
$8599.8 \; \mathrm{km}$
[25]:
V_2_v_, delta_ = compute_flyby(v1_pre, V, Venus.k, d_flyby_1)
[26]:
norm(V_2_v_)
[26]:
$27.755339 \; \mathrm{\frac{km}{s}}$

4. Optimization

Now we will try to find the value of \(\theta\) that satisfies our requirements:

[27]:
from poliastro.twobody import Orbit
[28]:
def func(theta):
    V_2_v, _ = compute_flyby(v1_pre, V, Venus.k, d_flyby_1, theta * u.rad)
    orb_1 = Orbit.from_vectors(Sun, r1, V_2_v, epoch=flyby_1_time)
    return (orb_1.period - T_ref).to(u.day).value

There are two solutions:

[29]:
from matplotlib import pyplot as plt
[30]:
theta_range = np.linspace(0, 2 * np.pi)
plt.plot(theta_range, [func(theta) for theta in theta_range])
plt.axhline(0, color="k", linestyle="dashed")
[30]:
<matplotlib.lines.Line2D at 0x7f01fb72cdc0>
../_images/examples_analyzing-the-parker-solar-probe-flybys_36_1.png
[31]:
func(0)
[31]:
-9.142672330001218
[32]:
func(1)
[32]:
7.098115439345711
[33]:
from scipy.optimize import brentq
[34]:
theta_opt_a = brentq(func, 0, 1) * u.rad
theta_opt_a.to(u.deg)
[34]:
$38.598709 \; \mathrm{{}^{\circ}}$
[35]:
theta_opt_b = brentq(func, 4, 5) * u.rad
theta_opt_b.to(u.deg)
[35]:
$279.3477 \; \mathrm{{}^{\circ}}$
[36]:
V_2_v_a, delta_a = compute_flyby(v1_pre, V[0], Venus.k, d_flyby_1, theta_opt_a)
V_2_v_b, delta_b = compute_flyby(v1_pre, V[0], Venus.k, d_flyby_1, theta_opt_b)
[37]:
norm(V_2_v_a)
[37]:
$29.978799 \; \mathrm{\frac{km}{s}}$
[38]:
norm(V_2_v_b)
[38]:
$29.491925 \; \mathrm{\frac{km}{s}}$

5. Exit orbit

And finally, we compute orbit #2 and check that the period is the expected one:

[39]:
ss01 = Orbit.from_vectors(Sun, r1, v1_pre, epoch=flyby_1_time)
ss01
[39]:
0 x 1 AU x 18.8 deg (HCRS) orbit around Sun (☉) at epoch 2018-09-28 00:00:00.000 (TDB)

The two solutions have different inclinations, so we still have to find out which is the good one. We can do this by computing the inclination over the ecliptic - however, as the original data was in the International Celestial Reference Frame (ICRF), whose fundamental plane is parallel to the Earth equator of a reference epoch, we have to change the plane to the Earth ecliptic, which is what the original reports use:

[40]:
orb_1_a = Orbit.from_vectors(Sun, r1, V_2_v_a, epoch=flyby_1_time)
orb_1_a
[40]:
0 x 1 AU x 24.0 deg (HCRS) orbit around Sun (☉) at epoch 2018-09-28 00:00:00.000 (TDB)
[41]:
orb_1_b = Orbit.from_vectors(Sun, r1, V_2_v_b, epoch=flyby_1_time)
orb_1_b
[41]:
0 x 1 AU x 13.3 deg (HCRS) orbit around Sun (☉) at epoch 2018-09-28 00:00:00.000 (TDB)
[42]:
from poliastro.frames import Planes
[43]:
orb_1_a.change_plane(Planes.EARTH_ECLIPTIC)
[43]:
0 x 1 AU x 3.4 deg (HeliocentricEclipticIAU76) orbit around Sun (☉) at epoch 2018-09-28 00:00:00.000 (TDB)
[44]:
orb_1_b.change_plane(Planes.EARTH_ECLIPTIC)
[44]:
0 x 1 AU x 12.8 deg (HeliocentricEclipticIAU76) orbit around Sun (☉) at epoch 2018-09-28 00:00:00.000 (TDB)

Therefore, the correct option is the first one:

[45]:
orb_1_a.period.to(u.day)
[45]:
$158.75975 \; \mathrm{d}$
[46]:
orb_1_a.a
[46]:
$85839412 \; \mathrm{km}$

And, finally, we plot the solution:

[47]:
from poliastro.plotting import OrbitPlotter

frame = OrbitPlotter(plane=Planes.EARTH_ECLIPTIC)

frame.plot_body_orbit(Earth, d_launch)
frame.plot_body_orbit(Venus, flyby_1_time)
frame.plot(ss01, label="#0 to #1", color="C2")
frame.plot(orb_1_a, label="#1 to #2", color="C3")
[47]:
(<matplotlib.lines.Line2D at 0x7f01e471db20>,
 <matplotlib.lines.Line2D at 0x7f01e471ddf0>)
../_images/examples_analyzing-the-parker-solar-probe-flybys_57_1.png