Numerical Solution of Stiff IVPs in Maple
Description
Examples
References
If it takes too long to solve an initial value problem (IVP) with the default numerical solver rkf45 or ck45 or with the default 'adamsfunc' option in lsode, then the IVP might be "stiff". A stiff IVP can be solved efficiently with either the default solver using the 'stiff=true' option (rosenbrock) or any of the `back-' options in lsode.
rosenbrock is intended for modest accuracy, so by default it uses a relative tolerance of 11000. You should use lsode if you need high accuracy. By default it uses a relative tolerance of 110000000. Numerical methods for stiff IVPs must form partial derivatives. rosenbrock does this analytically, but if this is not possible, you can use lsode because it approximates them with finite differences.
Stiffness is complicated because it involves both the IVP and the method used to solve it. A stiff IVP has a solution that is very stable (some solutions that start near it converge to it very quickly) and is slowly varying (other solutions change on much faster time scales). Special methods allow stiff problems to be solved efficiently, but they can be very inefficient for problems that are not stiff.
Unless you have reason to believe your IVP is stiff, you should try a method for nonstiff problems first, such as the default method of dsolve[numeric] or lsode with its default option. If that proves unsatisfactory, try the option 'stiff=true' in the call to dsolve[numeric], which invokes a Rosenbrock method. You might also try the one of the 'back-' options of lsode, which invoke backward differentiation methods (BDFs, also known as Gear's method).
A simple example of a stiff linear IVP:
deq1≔diff⁡y⁡t,t+10000⁢y⁡t−cos⁡t=−sin⁡t
deq1≔ⅆⅆty⁡t+10000⁢y⁡t−10000⁢cos⁡t=−sin⁡t
ic1≔y⁡0=2
dsol1≔dsolve⁡deq1,ic1,numeric,range=0..10,stiff=true
dsol1 ≔ procx_rosenbrock...end proc
dsol1⁡10.0
t=10.0,y⁡t=−0.839071537030767
cos⁡10.0
−0.8390715291
Issue the following command to see a plot of the solution.
plotsodeplot⁡dsol1,t,y⁡t
Trying to solve this IVP with the stiff=false option is too expensive. From the general solution of this equation, cos⁡t+_C1⁢ⅇ−10000⁢t, we see that the solution of the IVP is very stable because all solutions come together exponentially fast. And, after an initial transient, the solution of the IVP approaches the slowly varying solution cos⁡t.
We can solve this same example with the backfull option for lsode, which by default asks for more accuracy than rosenbrock.
dsol2≔dsolve⁡deq1,ic1,numeric,method=lsodebackfull
dsol2 ≔ procx_lsode...end proc
dsol2⁡10.0
t=10.0,y⁡t=−0.839071701470174
The van der Pol equation in relaxation oscillation is a famous example of a stiff nonlinear problem.
μ≔1000
deq3≔diff⁡y⁡x,x,x−μ⁢1−y⁡x2⁢diff⁡y⁡x,x+y⁡x=0
deq3≔ⅆ2ⅆx2y⁡x−1000⁢1−y⁡x2⁢ⅆⅆxy⁡x+y⁡x=0
ic3≔y⁡0=2,D⁡y⁡0=0
dsol3≔dsolve⁡deq3unionic3,numeric,range=0..3000,stiff=true
dsol3 ≔ procx_rosenbrock...end proc
Issue the following command to see a plot of the solution that shows regions of sharp change.
plotsodeplot⁡dsol3,x,y⁡x
If you experiment with other initial conditions, you will see that all non-trivial solutions converge very rapidly to this limit cycle. The IVP is stiff where the solution is slowly varying.
A stiff nonlinear system from reactor kinetics:
deq4≔diff⁡u⁡t,t=0.01−1+u⁡t+1000⁢u⁡t+1⁢0.01+u⁡t+v⁡t,diff⁡v⁡t,t=0.01−1+v⁡t2⁢0.01+u⁡t+v⁡t
deq4≔ⅆⅆtu⁡t=0.01−1+u⁡t+1000⁢u⁡t+1⁢0.01+u⁡t+v⁡t,ⅆⅆtv⁡t=0.01−1+v⁡t2⁢0.01+u⁡t+v⁡t
ic4≔u⁡0=0,v⁡0=0:
dsol4≔dsolve⁡deq4,ic4,numeric,method=rosenbrock,range=0..20
dsol4 ≔ procx_rosenbrock...end proc
plotsodeplot⁡dsol4,t,u⁡t,v⁡t
Gear, C. W. Numerical Initial Value Problems in Ordinary Differential Equations. Prentice Hall, 1971.
Hairer, E., and Wanner, G. Solving Ordinary Differential Equations II, Stiff and Differential-Algebraic Problems. Springer, 1996.
Shampine, L. F., and Corless, R. M. "Initial Value Problems for ODEs in Problem Solving Environments." Journal of Computational and Applied Mathematics, Vol. 125 (2000): 31-40.
See Also
dsolve/Error_Control
dsolve[lsode]
dsolve[numeric,IVP]
dsolve[numeric]
dsolve[rosenbrock]
Download Help Document