ODE for 2 variables
34 views (last 30 days)
Show older comments
Hello all,
Does matlab support DE of this type: d(xy)/dt (ie. y dx/dt + x dy/dt)? If so how to werite these type of equations? I am a new comer to matlab and any help would be great!
Thanks.
2 Comments
Torsten
on 6 Aug 2019
You will need two equations to determine x and y. What is your second equation ?
Accepted Answer
Torsten
on 6 Aug 2019
Edited: Torsten
on 6 Aug 2019
function main
p = [1 2 3 4 5 6 7];
A = 20;
x0 = 2;
y0 = 5;
z0 = 27;
u0 = -34;
a0 = [x0; x0*y0; x0*z0; x0*u0];
tspan = [0, 1];
[T a] = ode45(@(t,a)fun(t,a,A,p),tspan,a0)
end
function da = fun(t,a,A,p)
x = a(1);
y = a(2)/a(1);
z = a(3)/a(1);
u = a(4)/a(1);
da = zeros(4,1);
da(1) = A;
da(2) = A*(p(1)-y)+p(2)*a(2);
da(3) = A*(p(3)-z)-p(4)*a(2);
da(4) = p(5)*x*(p(6)-u)-p(7)*a(2);
end
2 Comments
Torsten
on 19 Aug 2019
You will have to call the ODE integrator two times (from t1 to t2 and from t2 to t3) and adjust the equations to be integrated depending on the time span (4 active equations from t1 to t2 and 5 active equations from t2 to t3).
More Answers (1)
Steven Lord
on 6 Aug 2019
Write your equations in the form M*DV = RHS where:
,
and M is the mass matrix. Since your second equation expands to:
the second row of your mass matrix will be [y, x, 0, 0]. Multiply that vector times DV and you'll see that you've recreated the left side of the second differential equation. Generate the remaining rows of the mass matrix similarly.
Create an options structure that specifies the mass matrix using odeset and the 'Mass' name-value pair. The value for that pair will be a function handle that accepts t (time) and the vector V and returns the mass matrix M.
Then write the function that evaluates RHS as a function of t and V. Call the ODE solver specifying that function and the options structure (so the solver knows how to create the mass matrix.
0 Comments
See Also
Categories
Find more on Ordinary Differential Equations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!