forked from LLNL/sundials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
64 lines (55 loc) · 3.8 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
SUNDIALS
SUite of Nonlinear and DIfferential/ALgebraic equation Solvers
David Gardner, Alan Hindmarsh, Slaven Peles, Daniel Reynolds, Radu Serban,
and Carol Woodward
Center for Applied Scientific Computing, LLNL
The family of solvers referred to as SUNDIALS consists of the following solvers:
ARKODE - for integration of ordinary differential equation systems (ODEs)
ARKODE treats stiff, nonstiff and multi-rate ODE systems of the form
y' = fe(t,y) + fi(t,y), y(t0) = y0
CVODE - for integration of ordinary differential equation systems (ODEs)
CVODE treats stiff and nonstiff ODE systems of the form
y' = f(t,y), y(t0) = y0
CVODES - for integration and sensitivity analysis of ODEs
CVODES treats stiff and nonstiff ODE systems of the form
y' = f(t,y,p), y(t0) = y0(p)
IDA - for integration of differential-algebraic equation systems (DAEs)
IDA treats DAE systems of the form
F(t,y,y') = 0, y(t0) = y0, y'(t0) = y0'
IDAS - for integration and sensitivity analysis of DAEs
IDAS treats DAE systems of the form
F(t,y,y',p) = 0, y(t0) = y0(p), y'(t0) = y0'(p)
KINSOL - for solution of nonlinear algebraic systems
KINSOL treats nonlinear systems of the form
F(u) = 0
The various solvers of this family share many subordinate modules.
For this reason, it is organized as a family, with a directory structure
that exploits that sharing. Each individual solver includes documentation
on installation, along with full usage documentation.
Warning to users who receive more than one of these individual solvers
at different times: The mixing of old and new versions of SUNDIALS may fail.
To avoid such failures, obtain all desired solvers at the same time.
For installation directions see the file INSTALL_GUIDE.pdf.
Release history:
+----------+----------------------------------------------------------------------------+
| | SUNDIALS | Solver version |
| Date | +----------+----------+----------+----------+---------------------+
| | release | ARKODE | CVODE | CVODES | IDA | IDAS | KINSOL |
+----------+----------+----------+----------+----------+----------+---------------------+
| Nov 2017 | 3.1.0 | 2.1.0 | 3.1.0 | 3.1.0 | 3.1.0 | 2.1.0 | 3.1.0 |
| Sep 2017 | 3.0.0 | 2.0.0 | 3.0.0 | 3.0.0 | 3.0.0 | 2.0.0 | 3.0.0 |
| Sep 2016 | 2.7.0 | 1.1.0 | 2.9.0 | 2.9.0 | 2.9.0 | 1.3.0 | 2.9.0 |
| Aug 2015 | 2.6.2 | 1.0.2 | 2.8.2 | 2.8.2 | 2.8.2 | 1.2.2 | 2.8.2 |
| Mar 2015 | 2.6.1 | 1.0.1 | 2.8.1 | 2.8.1 | 2.8.1 | 1.2.1 | 2.8.1 |
| Mar 2015 | 2.6.0 | 1.0.0 | 2.8.0 | 2.8.0 | 2.8.0 | 1.2.0 | 2.8.0 |
| Mar 2012 | 2.5.0 | | 2.7.0 | 2.7.0 | 2.7.0 | 1.1.0 | 2.7.0 |
| May 2009 | 2.4.0 | | 2.6.0 | 2.6.0 | 2.6.0 | 1.0.0 | 2.6.0 |
| Nov 2006 | 2.3.0 | | 2.5.0 | 2.5.0 | 2.5.0 | | 2.5.0 |
| Mar 2006 | 2.2.0 | | 2.4.0 | 2.4.0 | 2.4.0 | | 2.4.0 |
| May 2005 | 2.1.1 | | 2.3.0 | 2.3.0 | 2.3.0 | | 2.3.0 |
| Apr 2005 | 2.1.0 | | 2.3.0 | 2.2.0 | 2.3.0 | | 2.3.0 |
| Mar 2005 | 2.0.2 | | 2.2.2 | 2.1.2 | 2.2.2 | | 2.2.2 |
| Jan 2005 | 2.0.1 | | 2.2.1 | 2.1.1 | 2.2.1 | | 2.2.1 |
| Dec 2004 | 2.0 | | 2.2.0 | 2.1.0 | 2.2.0 | | 2.2.0 |
| Jul 2002 | 1.0 | | 2.0 | 1.0 | 2.0 | | 2.0 |
+----------+----------+----------+----------+----------+----------+---------------------+