ode23s can't solve system
1 次查看(过去 30 天)
显示 更早的评论
Hi I hope somebody can help me. I have what should be a very simple bit of code that i'm trying to use to solve an ODE. For some reason it won't run. There are no error messages but i've waited for about 3 minutes on a system that should only take a couple of seconds. Any ideas on why this is taking so long would be much appreciated. I've attached the solver and below is the code for my system of ODEs.
%antODE
function dYdt = antODE(t,Y);
gamma = 5;
mu = .6;
tau = .2;
c = .1;
dYdt = zeros(3,1);
T = Y(1);
F = Y(2);
L = Y(3);
dYdt(1) = (gamma/c)*(T - L -tau*F);
dYdt(2) = (1/(1-c))*(-F + L*T);
dYdt(3) = ((1-c)/mu)*F - (c/mu)*L;
end
2 个评论
回答(1 个)
Star Strider
2014-4-12
编辑:Star Strider
2014-4-12
This works fine for me:
gamma = 5; mu = .6; tau = .2; c = .1;
antODE = @(t,y) [(gamma/c).*(y(1) - y(3) -tau.*y(2)); (1/(1-c)).*(-y(2) + y(3).*y(1)); ((1-c)/mu).*y(2) - (c/mu).*y(3)];
[t, y] = ode23s(antODE, [0 0.5], [0.1 0.1 0.1]);
figure(1)
plot(t, y)
legend('y_1', 'y_2', 'y_3', 'Location', 'SouthWest')
grid
You need to be careful with your time interval, though, because y(1) takes off to negative infinity from the outset, and reaches -1.7E+9 at t=0.5, while y(2) and y(3) behave themselves. (The output is huge, 11813 rows at t=0.5, and takes 8.102798 seconds.) I suspect the behaviour of y(1) may be the problem you are having.
另请参阅
类别
在 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!