im currently trying to do an assignment where i have to write a simulation for the restricted 3 body gravitational problem, with two fixed masses and one test mass. i have been given the equations i need to use in order to do so, but either im not understanding them correctly or im not implementing correctly. i would be very grateful is someone could help to push me in the right direction.
The information ive been given is as follows:
http://www.flickr.com/photos/91029993@N07/8269806430/in/photostream
basicly ive been trying to test for a single mass,but my program is giving me a straight line for the movement of the test mass, over small times it looks as though the program is functioning correctly but then it doesnt work as you get higher. (see images, inputs for these were 1 0.4 0.5 0 -1)
http://www.flickr.com/photos/91029993@N07/8268764897/in/photostream
I originally wrote my program quite faithfully to the eqns given as follows:
#include<stdlib.h>
#include<stdio.h>
#include <math.h>
int main (int argc, char* argv[])
{
double dt=0.005, x[20000],y[20000],xv,yv,ax[20000],ay[20000],mneg,mpos,time;
int n;
FILE* output=fopen("proj1.out", "w");
sscanf(argv[1], "%lf", &mneg);
sscanf(argv[2], "%lf", &mpos);
sscanf(argv[3], "%lf", &x[0]);
sscanf(argv[4], "%lf", &y[0]);
sscanf(argv[5], "%lf", &xv);
sscanf(argv[6], "%lf", &yv);
x[1]=x[0]+(xv*dt);
y[1]=y[0]+(yv*dt);
for(n=1;n<150;n++)
{
ax[n]= (-mneg*(x[n]+1)/(pow((sqrt(pow((x[n]+1),2))),3))) -(mpos*(x[n]-1)/(pow((sqrt(pow((x[n]-1),2))),3)));
ay[n]= (-mneg*(y[n])/(pow(y[n],3))) -(mpos*(y[n])/(pow(y[n],3)));
x[n+1]=((2*x[n])-x[n-1] +(dt*dt*ax[n]));
y[n+1]=((2*y[n])-y[n-1]+(dt*dt*ay[n]));
fprintf(output, "%lf %lf\n",x[n-1], y[n-1]);
}
return(0);
}
i then tried a new method following the advice given here :http://stackoverflow.com/questions/13306596/simulate-the-gravitational-pull-of-a-star , so that i now have:
#include<stdlib.h>
#include<stdio.h>
#include <math.h>
int main (int argc, char* argv[])
{
double dt=0.005, x[20000],y[20000],xv,yv,ax[20000],ay[20000],mneg,time,r,a;
int n;
FILE* output=fopen("proj1.out", "w");
sscanf(argv[1], "%lf", &mneg);
sscanf(argv[2], "%lf", &x[0]);
sscanf(argv[3], "%lf", &y[0]);
sscanf(argv[4], "%lf", &xv);
sscanf(argv[5], "%lf", &yv);
x[1]=x[0]+(xv*dt);
y[1]=y[0]+(yv*dt);
for(n=1;n<150;n++)
{
r=sqrt(pow((x[n]+1),2)+pow(y[n],2));
a=mneg/(r*r);
ax[n]=a*((x[n]+1)/r);
ay[n]=a*((y[n])/r);
x[n+1]=((2*x[n])-x[n-1] +(dt*dt*ax[n]));
y[n+1]=((2*y[n])-y[n-1]+(dt*dt*ay[n]));
fprintf(output, "%lf %lf\n",x[n-1], y[n-1]);
}
return(0);
}
however, this doesn't give me any better results.
i really dont know where to go from here, i think im using the method right but i cant see any issues in the actual programming so i really dont know whats going on, so any advice or pointers in the right direction would be very very much appreciated!