I don't get how to fix it. I commented out some bits because I can't seem to find the initial velocity of Phobos. Here's my code:
import math
import matplotlib.pyplot as plt
G = 6.6743*(10**-11)
MMars = 0.64169 * (10**24) #kg
MPhobos = 10.6 * (10**15) #kg
#Vxphobos = 2138
#Vxphobos = 7696700
Vxphobos = 0
#Vxphobos = 3520
Vyphobos = 4100
mars = [100,100]
phobos = [mars[1]-(6*(10**3)),0]
t = 0
phobosunit = [0,0]
def distt(distx,disty):
totaldist = math.sqrt(distx**2+disty**2)
return totaldist
while t < 57552: #time in seconds that phobos takes to orbit mars #27552
tchange = 300
t += tchange
phobosr = distt((mars[0]-phobos[0]),(mars[1]-phobos[1]))
phobosdist = (math.sqrt(((distt(phobos[0],mars[0]))**2)+((distt(phobos[1],mars[1]))**2)))
for i in range(2):
phobosunit[i] = -(mars[i]-phobos[i])/phobosdist
plt.quiver(phobos[0],phobos[1],phobos[0]+phobosunit[0],phobos[1]+phobosunit[1])
axphobos = (G*MMars/(phobosr**2))*phobosunit[0]
ayphobos = (G*MMars/(phobosr**2))*phobosunit[1]
#axphobos = (G*MMars/((distt(phobos[0],mars[0]))**2))*phobosunit[0]
#ayphobos = (G*MMars/((distt(phobos[1],mars[1]))**2))*phobosunit[1]
Vxphobos += axphobos*tchange
Vyphobos += ayphobos*tchange
phobos[0] += Vxphobos*tchange
phobos[1] += Vyphobos*tchange
plt.plot(phobos[0],phobos[1],'go')
print(phobosunit)
force.append(G*MMars*MPhobos/(phobosr**2))
#plt.xticks([-3*e,-2*e,-1*e,0,1*e,2*e,3*e])
#plt.yticks([-3*e,-2*e,-1*e,0,1*e,2*e,3*e])
e = 10**8
plt.plot(mars[0],mars[1],'ro')
plt.xticks([-1*e,0,1*e,2*e,3*e])
plt.yticks([-1*e,0,1*e,2*e,3*e])
plt.show()
I used linearization to get from the force to the position. I feel like I made a really stupid mistake, but I have absolutely no idea on where to start to fix it. I've stared at this code for much too long now lmao. Any ideas?
It's making a straight line instead of a circle/oval.
Your equations of motion look alright to me. I think your constants are what's wrong.
If you're using SI units, then you should start with a speed of
Vyphobos = 2.138e3
when it's at a height of ~9500km. Take a look at the following constants I defined, and their sources:Phobos Mars
In addition, I used vector math with numpy to make the calculations easier. The vector form of gravity is
a = G M R / r**3
, whereR
is the vector between the bodies, andr
is its norm.Now, define an array to hold the results:
Do the timestepping
And to plot:
Which gives the following plot: