Stiff differential equation solvers
古いコメントを表示
I'm trying to understand how the stiff differential equations are solved in ode5s and ode15i.
If my understanding is right, stiff equation solver implements BDF method if specified in the option given in the call to the solver.
What happens in implicit solver?
e.g. if dx/dt = f(x,t)
is written as
x(n+1) = x(n) + f(x(n),tn) + f(x(n+1),t(n+1))
Is it solved using non-linear equation solver?
Could someone explain? Is there any example files that are available for implementation of BDF and implicit solver?
6 件のコメント
Torsten
2019 年 1 月 10 日
You shouldn't try to program your own implicit solver.
If the MATLAB solvers are not capable to handle your equations, it is very optimistic to think that your own handmade code will succeed.
Deepa Maheshvare
2019 年 1 月 10 日
Deepa Maheshvare
2019 年 1 月 11 日
編集済み: Deepa Maheshvare
2019 年 1 月 11 日
Torsten
2019 年 1 月 11 日
Forget my comment.
I mixed your problem up with another one.
Deepa Maheshvare
2019 年 1 月 11 日
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Ordinary Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!