ode45 Event Option

조회 수: 2 (최근 30일)
Duncan McIntosh
Duncan McIntosh 2016년 12월 11일
댓글: Duncan McIntosh 2016년 12월 11일
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)

답변 (1개)

Mischa Kim
Mischa Kim 2016년 12월 11일
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
Duncan McIntosh
Duncan McIntosh 2016년 12월 11일
Works great. Thanks.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by