Orbit of satellite 2nd order ODE using Matlab

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 3K views
olski1
Messages
14
Reaction score
0
Hi,

I am completely stuck on this problem that has been given to us.

I must solve a set of 2nd order differential equations using Euler's method. It is for a geosychronous orbit of a satellite, meaning the orbit is circular and the velocity vector is perpendicular to the radius vector (r.V=0). The equations are:

d2x/dt2=-k2x/r3

and

d2y/dt2=-k2y/r3

k^2,r and V are all given.

My first step was to set up sets of ode's to solve.

for the first equation we have,

let y1=x and y2=dy1/dt

hence, dy2/dt= -k2y1/r3

and for the second,

let y3=y and y4=dy3/dt

hence, dy4/dt= -k2y3/r3

which I think is correct.

Now I have to pass this into a MATLAB function which uses eulers method. But I have no idea how to implement it. my main problem at the moment is that I do not know what to use as my initial y1,2,3,4 values in the function vector.

Can anyone help?
 
Physics news on Phys.org
I am not sure why anyone would want to solve and ODE for motion which is completely known, but still.

You can take any initial position as long as it is on the orbit (circle). The velocity, as you say, is perpendicular to it and must be equal to the length of the orbit divided by one sidereal day.