How to solve coupled ODE problem
古いコメントを表示
I'm trying to solve system of coupled ODE's.
assume that
=Ydot,
=Y, r=4.
If I have five equations which are
Ydot1 = 

Ydot2 = 

Ydot3 = 

Ydot4 = 

Ydot5 = 

How can I solve these ODE equations with its result as a graph.
Or at least, how can I solve coupled ODE with Ydot on both sides. Like,


回答 (1 件)
David Goodmanson
2020 年 5 月 11 日
Hi seoyeon,
It's easy enough to solve for Ydot4 in the fourth equation. Then if you put that up front in the code, you can plug the result into what is now the first equation to obtain
Ydot4 = 8*Y3*Y4 / (1+Y1);
Ydot1 = r*Y1^2 + 6*Y1*Y3 + Ydot4;
The (1+Y1) in the denominator may cause some problems, but that's what the equations are saying.
カテゴリ
ヘルプ センター および File Exchange で Ordinary Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!