solving coupled differential system
1 回表示 (過去 30 日間)
古いコメントを表示
Hello. I am trying to solve two coupled differential equation as below:
m1x"+m2ry"=-k1(2x1-x2-x0)
m2x"+Ay"=-k2x1+Ky-f
Note: m1,m2,k1,k2,x2,x0,A,k2,K,f are known
thanks alot
1 件のコメント
John D'Errico
2020 年 4 月 25 日
編集済み: John D'Errico
2020 年 4 月 25 日
Why was it necessaryu to ask this question twice? I've closed the other one you asked.
回答 (1 件)
Radu Trimbitas
2020 年 4 月 25 日
Dear Saman,
If set x=u(1), x'=u(2), y=u(3), y'=u(4) and
M=[1,0,0,0; 0, m1,0,m2; 0,0,1,0; 0, m2,0,A], then the system becomes
[u(2); -k1*(2*x1-x2-x0); u(4);-k2*x1+K*u(3)-f];M could be seen as a mass matrix and can be introduced using option Mass in odeset function, see the attachment.
参考
カテゴリ
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!