Using event function in ode45

1 次查看(过去 30 天)
g618034
g618034 2011-6-16
Hi Everyone!
I'm solving a physical pendulum using ode45. I only want to solve it for one period, and I've chosen to use the event function to complete this task. In here a(2) would be the angular velocity of the pendulum. Right at the moment that the pendulum completes one period, the angular velocity would be zero. However, it would be the second zero point of angular velocity, while the integration stops at the first zero point.
Is there any way I could make the event occur twice before it stops? Here's what I've tried--but it's not working right.
function[value, isterminal, direction] = event(t,a)
persistent count;
value = a(2);
direction = 0;
while count<=2
value = a(1);
direction = 0;
count = count+1;
isterminal = 0;
end
isterminal = 1;
end
Any suggestions would be appreciated. Thank you!

回答(2 个)

Richard Buckalew
Richard Buckalew 2016-2-29
The easiest solution is to integrate it, catch the event, and then let your end Y become a new initial condition and integrate again. The next time it stops will be the second time the event occurs.

Walter Roberson
Walter Roberson 2011-6-16
There was a discussion about event functions in ode45 a few days ago; see here

类别

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