ode45 Event Option

2 visualizaciones (últimos 30 días)
Duncan McIntosh
Duncan McIntosh el 11 de Dic. de 2016
Comentada: Duncan McIntosh el 11 de Dic. de 2016
I am starting a parachute drop at 15000 ft and trying to stop at 5000 ft using the event option. The code works without the event when I call "solution_module" from the command window. With the event option, I get the following error message. SWITCH expression must be a scalar or character vector constant. Error in odeevents (line 31) switch lower(eventFcn) Error in ode45 (line 148) odeevents(FcnHandlesUsed,odeFcn,t0,y0,options,varargin); Error in solution_module (line 13) [T1,Y1,te,ye,ie]=ode45('ssm_module',[5:1:450],[V;A],options)

Respuestas (1)

Mischa Kim
Mischa Kim el 11 de Dic. de 2016
Duncan, I put the entire code into one file and slightly changed the code (ode calls), see attachment. Works for me.
One more thing, the way you coded the events function the integrator will stop at x = -5000.
Change to
lookfor = x(1) - 5000;
  1 comentario
Duncan McIntosh
Duncan McIntosh el 11 de Dic. de 2016
Works great. Thanks.

Iniciar sesión para comentar.

Categorías

Más información sobre Ordinary Differential Equations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by