how to solve ODE with variable coefficients?
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Daniel Niu
le 14 Nov 2022
Commenté : John D'Errico
le 14 Nov 2022
Dear friend,
How to solve ODE with variable coefficients like this?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1192603/image.png)
where the speed s_r and s_f depend on the distance they travelled. s_r=sf0*exp(-df(t)) and s_f=sf0*exp(-dr(t))
df and dr are the distance they have travelled.
I only can solve the problem when s_r and s_f are constant. I don't know how to solve the equation when the speed depends on the solution of
the ODE.
Your help would be highly appreciated.
s_r = 13;
s_f = 19;
z0 = [-250 -550];
x_burrow=[-600 600];
mindist = 0.01;
ts=[0 norm(z0)/(s_f-s_r)];
options = odeset ('Events',@(t,z)foxrab1(t,z,s_r, mindist,x_burrow));
[t,z,te,ze,zi] = ode45(@(t,z)foxode2(t,z,s_r,s_f),ts,z0,options);
plot(z(:,1),z(:,2),-(s_r * t)/sqrt(2),(s_r * t)/sqrt(2))
axis([-600 0 -550 600])
function [value , isterminal , direction]=foxrab1(t,z,s_r,mindist,x_burrow)
r = [-(s_r * t)/sqrt(2) (s_r * t)/sqrt(2)];
value(1) = sqrt((r(1)-z(1))^2+(r(2)-z(2))^2) - mindist;
isterminal (1) = 1;
direction (1) = -1;
value(2) = x_burrow(1)-r(1);
isterminal (2) = 1;
direction (2) = 1;
end
function dzdt = foxode2(t,z,s_r,s_f) % the definition of the ODE
r = [-(s_r * t)/sqrt(2) (s_r * t)/sqrt(2)]; % the position of the rabbit
dist = sqrt((r(1)-z(1))^2+(r(2)-z(2))^2);
dzdt = zeros(2,1);% make sure the output is a column vector
dzdt(1) = s_f*(r(1)-z(1))/dist; % horizontal velocity
dzdt(2) = s_f*(r(2)-z(2))/dist; % vertical velocity
end
0 commentaires
Réponse acceptée
John D'Errico
le 14 Nov 2022
Modifié(e) : John D'Errico
le 14 Nov 2022
You cannot use a numerical ODE solver, if you don't provide all of the coefficients. Numerical solvers like ODE45 work ONLY with numbers.
You CAN use tools like dsolve, if an analytical solution exists for the system.
2 commentaires
John D'Errico
le 14 Nov 2022
Then maybe you need to talk to your lecturer. Let me repeat a fact: ODE45 CANNOT solve a problem with a symbolic parameter in there.
Perhaps what your lecturer wanted you to do is to write a code that will solve the problem for some specific value of that parameter, where you can pass that parameter in. You might be doing an optimization of some sort perhaps, or you might be trying to use this to solve for a boundary value as a shooting method. So an optimizer might be varying a parameter of interest, then passing that parameter into the odesolver. At that point, the parameter is known, so ODE45 can be used.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Ordinary Differential Equations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!