如何在 python 中设置三体问题?如何定义求解 ODE 的函数?
这三个方程是
x'' = -mu / np.sqrt(x ** 2 + y ** 2 + z ** 2) * x
、
y'' = -mu / np.sqrt(x ** 2 + y ** 2 + z ** 2) * y
和
z'' = -mu / np.sqrt(x ** 2 + y ** 2 + z ** 2) * z
。
写成 6 first order 我们有
x' = x2
,
y' = y2
,
z' = z2
,
x2' = -mu / np.sqrt(x ** 2 + y ** 2 + z ** 2) * x
,
y2' = -mu / np.sqrt(x ** 2 + y ** 2 + z ** 2) * y
, 和
z2' = -mu / np.sqrt(x ** 2 + y ** 2 + z ** 2) * z
我还想添加地球轨道和火星的路径,我们可以假设它是圆形的。地球149.6 * 10 ** 6
距离太阳公里,火星227.9 * 10 ** 6
公里。
#!/usr/bin/env python
# This program solves the 3 Body Problem numerically and plots the trajectories
import pylab
import numpy as np
import scipy.integrate as integrate
import matplotlib.pyplot as plt
from numpy import linspace
mu = 132712000000 #gravitational parameter
r0 = [-149.6 * 10 ** 6, 0.0, 0.0]
v0 = [29.0, -5.0, 0.0]
dt = np.linspace(0.0, 86400 * 700, 5000) # time is seconds