-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathom.py
More file actions
57 lines (45 loc) · 1.71 KB
/
om.py
File metadata and controls
57 lines (45 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from matplotlib import pyplot as plt
import numpy as np
from scipy.constants import G, pi
import astropy.units as u
from astropy.constants import M_sun
import matplotlib.pyplot as plt
import numpy as np
from scipy.optimize import curve_fit
from numpy.polynomial import Polynomial
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
# Orbital parameters for 'Oumuamua
eccentricity = 1.2
perihelion = 0.25 # closest approach to the sun in astronomical units
inclination = np.radians(122.74) # convert degrees to radians
semi_major_axis = -1.279 # for a hyperbolic trajectory, semi-major axis is negative
# Function to calculate position in the orbit
def calculate_orbit(e, q, num_points=1000):
# theta range for one branch of the hyperbola
theta = np.linspace(-np.pi, np.pi, num_points)
# r = q * (1 + e) / (1 + e*cos(theta)) for hyperbolic trajectory
r = q * (1 + e) / (1 + e * np.cos(theta))
return r, theta
# Generate the orbit
r, theta = calculate_orbit(eccentricity, perihelion)
# Convert polar coordinates to Cartesian coordinates in the plane of the orbit
x = r * np.cos(theta)
y = r * np.sin(theta)
z = np.zeros_like(x) # No out-of-plane component initially
# Rotate the orbit to account for the inclination
x_rot = x
y_rot = y * np.cos(inclination) - z * np.sin(inclination)
z_rot = y * np.sin(inclination) + z * np.cos(inclination)
# Plotting
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.plot(x_rot, y_rot, z_rot, label='Orbit of \'Oumuamua')
ax.scatter([0], [0], [0], color='yellow', label='Sun') # Sun at the origin
# Setting labels and legend
ax.set_xlabel('X in AU')
ax.set_ylabel('Y in AU')
ax.set_zlabel('Z in AU')
ax.legend()
plt.show()