Stiff differential equation solvers
6 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Steven Lord
2019-1-10
There are several stiff solvers. See the "Basic Solver Selection" section on this documentation page for a table indicating which solvers are stiff and which are nonstiff. For more details about a particular solver, see the Algorithms and References sections on each solver's documentation page.
0 个评论
更多回答(0 个)
另请参阅
类别
在 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!