I am trying to set up a code to calculate the equation of motion of a rocket using ode45
    3 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
My equation for the EOM are
dv/dt= T/m - D/m - g*sin(gam): at=tangential acceleration, T=thrust, D=drag, g=acceleration of gravity, gam= path angle
dgam/dt= -1/v*(g-(v^2/(Re+h)))*cos(gam):  v=velocity, Re=radius of earth, h= altitude
dx/dt=Re/(Re+h)*v*cos(gam): x is downrange distance
dh/dt=v*sin(gam):
I have been watching videos, but I am not sure how to use ode45 with multiple functions, I would appreciate the help.
2 Commenti
  Torsten
      
      
 il 8 Ott 2018
				Name v=y(1), gam=y(2), x=y(3) and h=y(4) and set up the ODE system for ODE45 like in the examples of the documentation.
Risposte (0)
Vedere anche
Categorie
				Scopri di più su Earth and Planetary Science in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

