ode45 Event Option
조회 수: 2 (최근 30일)
이전 댓글 표시
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)
댓글 수: 0
답변 (1개)
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;
참고 항목
카테고리
Help Center 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!