9 Numerical Analysis and Software Overview
9.1 Theory: RKMs and BDF for DAEs
DAEs | |
---|---|
unstructured, linear | E(t)˙x=A(t)x+f(t) |
semi-linear | E(t)˙x=f(t,x) |
unstructured | F(t,˙x,x)=0 |
unstructured, strangeness-free/index-1 | {ˆF1(t,˙x,x)=0ˆF2(t,x)=0 |
semi-explicit, strangeness-free/index-1 | {˙x=f(t,x,y)0=g(t,x,y) |
semi-explicit, index-2 | {˙x=f(t,x,y)0=g(t,y) |
Problem / Index | ∗ | 2 | 1 | ∗ | 2 | 1 | ∗ | 2 | 1 | ∗ | 2 | 1 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
nonlinear | c | g,i | b | f | h | e | ||||||
linear TV | ⋅ | ⋅ | ⋅ | ⋅ | ⋅ | ⋅ | ||||||
linear CC | a | ⋅ | ⋅ | ⋅ | ⋅ | ⋅ | d | ⋅ | ⋅ | ⋅ | ⋅ | ⋅ |
Description | Reference | |
---|---|---|
a | RKM, linear constant coefficients | KM Thm. 5.12 |
b | RKM, nonlinear, strangeness-free/index-1, semi-explicit | KM Thm 5.16 / HW Thm. VI.1.1 |
c | RKM, nonlinear, strangeness-free | KM Thm. 5.18 |
d | BDF, linear constant coefficients | KM Thm. 5.24 |
e | BDF(⊂ MSM), nonlinear, strangeness-free/index-1, semi-explicit | KM Thm. 5.26 (⊂ HW Thm. VI.2.1) |
f | BDF, nonlinear, strangeness-free/index-1 | KM Thm. 5.27 |
g | RKM, nonlinear, index-2, semi-explicit | HW Ch. VII.4 |
h | BDF, nonlinear, index-2, semi-explicit | HW Thm. VII.3.5 |
i | half-explicit RKM, nonlinear, index-2, semi-explicit | HW Thm. VII.6.2 |
HW | Ernst Hairer, Gerhard Wanner (1996) | Solving ordinary differential equations. II: Stiff and differential-algebraic problems |
KM | Peter Kunkel, Volker Mehrmann (2006) | Differential-Algebraic Equations. Analysis and Numerical Solution |
9.2 Solvers
As can be seen from the table above, generally usable discretization methods for unstructured DAEs are only there for index-1 problems. However, the solvers GELDA/GENDA include an automated reduction to the strangeness-free form so that they apply for any index; see Lecture Chapter 4++.
9.2.1 Multi purpose
DAEs | Methods | h/p | Language | Remark | Avail | |
---|---|---|---|---|---|---|
GELDA | l-μ-∗ | BDF/RKM | ∗/∗ | F-77 | ∗/⋅ | |
GENDA | n-μ-∗ | BDF | ∗/∗ | F-77 | ∗/⋅ | |
DASSL | n-ν-1 | BDF | ∗/∗ | F-77 | base for Sundials IDA – the base of many DAE solvers | ∗/⋅ |
LIMEX | sl-ν-1 | x-SE-Eul | ∗/∗ | F-77 | ∗/⋅ | |
RADAU | sl-ν-1 | RKM | ∗/∗ | F-77 | ∗/⋅ |
Notes:
Explanation | |
---|---|
DAEs | l-linear, sl-semilinear, nl-nonlinear |
classification: μ-strangeness index, ν-differentiation index | |
∗-includes index reduction | |
h/p | time step control / order control |
availability | code for download / licence provided(∗) or other statement(⋅) |
methods | x-SE-Eul: extrapolation based on semiexplicit Euler |
9.2.2 Application specific
Furthermore, there are solvers for particularly structured DAEs.
DAEs | Resources |
---|---|
Navier-Stokes (nl-se-2) | See, e.g., Sec. 4.3 of our preprint on definitions of different schemes |
Multi-Body (nl-se-3) | See, e.g., the code on Hairer’s homepage |
9.3 Software
Many software suits actually wrap SUNDIALS IDA.
DAEs | Routines | Method | Remark | |
---|---|---|---|---|
Matlab | ind-1 | ode15{i,s} |
BDF | |
Python | — | no built-in functionality, DASSL/IDA wrapped in the modules scikit-odes , assimulo , pyDAS , DAEtools |
||
Julia | ind-1 | DifferentialEquations.jl |
BDF | calls SUNDIALS IDA |