-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopks-sum.txt
365 lines (302 loc) · 18.5 KB
/
opks-sum.txt
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
Brief Description of
ODEPACK - A Systematized Collection of ODE Solvers
Single Precision Version
Alan C. Hindmarsh
Center for Applied Scientific Computing, L-561
Lawrence Livermore National Laboratory
Livermore, CA 94551, U.S.A.
20 June 2001
Work performed under the auspices of the U.S. Department of Energy
by the Lawrence Livermore National Laboratory under contract
No. W-7405-Eng-48, and supported (formerly) by the DOE Office of
Energy Research, Applied Mathematical Sciences Research Program.
---------------------------------------------------------------------------
ODEPACK is a collection of Fortran solvers for the initial value
problem for ordinary differential equation systems. It consists of nine
solvers, namely a basic solver called LSODE and eight variants of it --
LSODES, LSODA, LSODAR, LSODPK, LSODKR, LSODI, LSOIBT, and LSODIS.
The collection is suitable for both stiff and nonstiff systems. It
includes solvers for systems given in explicit form, dy/dt = f(t,y),
and also solvers for systems given in linearly implicit form,
A(t,y) dy/dt = g(t,y). Two of the solvers use general sparse matrix
solvers for the linear systems that arise. Two others use iterative
(preconditioned Krylov) methods instead of direct methods for these
linear systems. The most recent addition is LSODIS, which solves
implicit problems with general sparse treatment of all matrices involved.
The ODEPACK solvers are written in standard Fortran 77, with a few
exceptions, and with minimal machine dependencies. There are separate
double and single precision versions of ODEPACK. The actual solver
names are those given above with a prefix of D- or S- for the double
or single precision version, respectively, i.e. DLSODE/SLSODE, etc.
Each solver consists of a main driver subroutine having the same name
as the solver and some number of subordinate routines. For each
solver, there is also a demonstration program, which solves one or two
simple problems in a somewhat self-checking manner.
Recently, the ODEPACK solvers were upgraded to improve their
portability in numerous ways. Among the improvements are (a) renaming
of routines and Common blocks to distinguish double and single
precision versions, (b) use of generic intrinsic function names, (c)
elimination of the Block Data subprogram, (d) use of a portable
routine to set the unit roundoff, and (e) passing of quoted strings to
the error message handler. In addition, the prologue and internal
comments were reformatted, and use mixed upper/lower case. Numerous
minor corrections and improvements were also made.
The above upgrade operations were applied to LSODE earlier than they
were to the rest of ODEPACK, and the two upgrades were done somewhat
independently. As a result, some differences will be apparent in the
source files of LSODE and the other solvers -- primarily in the
formatting of the comment line prologue of the main driver routine.
In Subroutines DLSODE/SLSODE and their subordinate routines, the
prologue was written in "SLATEC format", while for the other solvers a
more relaxed style was used. The differences are entirely cosmetic,
however, and do not affect performance.
Documentation on the usage of each solver is provided in the
initial block of comment lines in the source file, which (in most
cases) includes a simple example. A demonstration program (in
seperate double/single precision versions) is also available.
What follows is a summary of the capabilities of ODEPACK, comments
about usage documentation, and notes about installing the collection.
For additional documentation on ODEPACK, see also the papers [1], [2]
(for LSODE), and [3] (for LSODPK and LSODKR), and in the references
cited there. (However, the document [2] does not reflect the upgrade
operations described above.)
References:
[1] A. C. Hindmarsh, "ODEPACK, A Systematized Collection of ODE Solvers,"
in Scientific Computing, R. S. Stepleman et al. (eds.), North-Holland,
Amsterdam, 1983 (vol. 1 of IMACS Transactions on Scientific Computation),
pp. 55-64.
[2] K. Radhakrishnan and A. C. Hindmarsh, "Description and Use of LSODE,
the Livermore Solver for Ordinary Differential Equations," LLNL
report UCRL-ID-113855, December 1993.
[3] P. N. Brown and A. C. Hindmarsh, "Reduced Storage Matrix Methods
in Stiff ODE Systems," J. Appl. Math. & Comp., 31 (1989), pp.40-91.
---------------------------------------------------------------------------
I. Summary of the ODEPACK Solvers
A. Solvers for explicitly given systems.
For each of the following solvers, it is assumed that the ODEs are
given explicitly, so that the system can be written in the form
dy/dt = f(t,y), where y is the vector of dependent variables, and t is
the independent variable.
1. LSODE (Livermore Solver for Ordinary Differential Equations) is the
basic solver of the collection. It solves stiff and nonstiff systems
of the form dy/dt = f. In the stiff case, it treats the Jacobian
matrix df/dy as either a dense (full) or a banded matrix, and as either
user-supplied or internally approximated by difference quotients.
It uses Adams methods (predictor-corrector) in the nonstiff case,
and Backward Differentiation Formula (BDF) methods (the Gear methods)
in the stiff case. The linear systems that arise are solved by direct
methods (LU factor/solve). LSODE supersedes the older GEAR and GEARB
packages, and reflects a complete redesign of the user interface
and internal organization, with some algorithmic improvements.
2. LSODES, written jointly with A. H. Sherman, solves systems dy/dt = f
and in the stiff case treats the Jacobian matrix in general sparse
form. It determines the sparsity structure on its own, or optionally
accepts this information from the user. It then uses parts of the
Yale Sparse Matrix Package (YSMP) to solve the linear systems that
arise, by a sparse (direct) LU factorization/backsolve method.
LSODES supersedes, and improves upon, the older GEARS package.
3. LSODA, written jointly with L. R. Petzold, solves systems dy/dt = f
with a dense or banded Jacobian when the problem is stiff, but it
automatically selects between nonstiff (Adams) and stiff (BDF)
methods. It uses the nonstiff method initially, and dynamically
monitors data in order to decide which method to use.
4. LSODAR, also written jointly with L. R. Petzold, is a variant of
LSODA with a rootfinding capability added. Thus it solves problems
dy/dt = f with dense or banded Jacobian and automatic method
selection, and at the same time, it finds the roots of any of a
set of given functions of the form g(t,y). This is often useful
for finding stop conditions, or for finding points at which a switch
is to be made in the function f.
5. LSODPK, written jointly with Peter N. Brown, is a variant of LSODE
in which the direct solvers for the linear systems have been replaced
by a selection of four preconditioned Krylov (iterative) solvers.
The user must supply a pair of routine to evaluate, preprocess, and
solve the (left and/or right) preconditioner matrices. LSODPK also
includes an option for a user-supplied linear system solver to be used
without Krylov iteration.
6. LSODKR is a variant of LSODPK with the addition of the same
rootfinding capability as in LSODAR, and also of automatic switching
between functional and Newton iteration. The nonlinear iteration
method-switching differs from the method-switching in LSODA and LSODAR,
but provides similar savings by using the cheaper method in the non-stiff
regions of the problem. LSODKR also improves on the Krylov methods in
LSODPK by offering the option to save and reuse the approximate Jacobian
data underlying the preconditioner.
B. Solvers for linearly implicit systems.
The following solvers treat systems in the linearly implicit form
A(t,y) dy/dt = g(t,y), A = a square matrix, i.e. with the derivative
dy/dt implicit, but linearly so. These solvers allow A to be
singular, in which case the system is a differential-algebraic
equation (DAE) system. In that case, the user must be very careful
to supply a well-posed problem with consistent initial conditions.
7. LSODI, written jointly with J. F. Painter, solves linearly implicit
systems in which the matrices involved (A, dg/dy, and d(A dy/dt)/dy)
are all assumed to be either dense or banded. LSODI supersedes the
older GEARIB solver and improves upon it in numerous ways.
8. LSOIBT, written jointly with C. S. Kenney, solves linearly implicit
systems in which the matrices involved are all assumed to be
block-tridiagonal. Linear systems are solved by the LU method.
9. LSODIS, written jointly with S. Balsdon, solves linearly implicit
systems in which the matrices involved are all assumed to be sparse.
Like LSODES, LSODIS either determines the sparsity structure or
accepts it from the user, and uses parts of the Yale Sparse Matrix
Package to solve the linear systems that arise, by a direct method.
---------------------------------------------------------------------------
II. Usage Documentation
Each of the solvers in the ODEPACK collection is headed by a
user-callable driver subroutine, with the same name as the solver
(SLSODE, etc.). The call sequence of the driver routine includes the
names of one or more user-supplied subroutines that define the ODE
system, and various other problem and solution parameters. Complete
user documentation is given in the initial block of comment lines
(the prologue) in the driver routine. In each case, this prologue is
organized as follows:
* Summary of Usage (short, for standard modes of use)
* Example Problem, with code and output (except for LSODPK and LSODKR)
* Full Description of User Interface, further divided as follows:
1. Call sequence description (including optional inputs/outputs)
2. Optionally callable routines
3. Descriptions of internal Common blocks
4. Optionally user-replaceable routines
* Revision History, showing date written and dates of revisions
* Other Routines, a list of all subordinate routines for the solver
First-time users should read only the Summary of Usage and look at the
the Example Problem (or demonstration program), then later refer to the
Full Description if and when more details or nonstandard options are needed.
---------------------------------------------------------------------------
III. Installation Notes
1. In addition to this document, the single precision version of ODEPACK
consists of three source files, plus a demonstration program file.
The solver source files are organized as follows:
opksmain.f = Main Source File, consisting of the driver subroutine
for each of the nine solvers
opksa1.f = First Auxiliary Source File, consisting of subordinate
routines for the solvers
opksa2.f = Second Auxiliary Source File, consisting of subordinate
routines which may already reside on the user's system
(See Notes 2 and 3 below.)
The demonstration program file is:
opksdemos = a merge of the nine demonstration programs, with the
source for each followed by a sample output
2. The Second Auxiliary Source File includes the routines from the
LINPACK and BLAS collections that are needed by the solvers (and by two
of the demonstration programs), for the solution of dense and banded
linear systems and associated basic linear algebra operations.
These routine are:
From LINPACK: SGEFA, SGESL, SGBFA, SGBSL
From the BLAS: SAXPY, SCOPY, SDOT, SSCAL, SNRM2, ISAMAX
If your computer system already has these routines, and especially if it
has machine-optimized versions, the copies provided here can be discarded.
3. The Second Auxiliary Source File includes a set of five routines --
XERRWV, XSETUN, XSETF, IXSAV, IUMACH -- which handle error messages
from the solvers. This set is in fact a reduced version (sufficient
for the needs of ODEPACK) of a much larger error handling package from
the SLATEC Library. If your computer system already has the full
SLATEC error handler, the version provided here can be discarded. If
the reduced version is used, its machine-dependent features should be
checked first; see comments in Subroutine XERRWV.
4. ODEPACK contains a few instances where ANSI Fortran 77 is violated:
(a) In various places in the LSODES and LSODIS solvers, a call to a
subroutine has a subscripted real array as an argument where the
subroutine called expects an integer array. Calls of this form
occur in Subroutine SLSODES (to SSTODE), in SIPREP (to SPREP),
in Subroutine SLSODIS (to SSTODI), and in SIPREPI (to SPREPI).
Another such call occurs in the SLSODES demonstration program,
from the main program to Subroutine SSOUT. This is done in order
to use work space in an efficient manner, as the same space is
sometimes used for real work space and sometimes for integer work
space. If your compiler does not accept this feature, one possible
way to get the desired result is to compile the called routines
and calling routines in separate jobs, and then combine the binary
modules in an appropriate manner. If this procedure is still not
acceptable under your system, it will be necessary to radically
alter the structure of the array RWORK within the LSODES or LSODIS
solver package. (See also Note 5 below.)
(b) Each ODEPACK solver treats the arguments NEQ, Y, RTOL, and ATOL
as arrays, even though the length may be only 1. Moreover,
except for Y, the usage instructions say that these arguments
may be either arrays or scalars. If your system does not allow
such a mismatch, then the documentation of these arguments
should be changed accordingly.
5. For maximum storage economy, the LSODES and LSODIS solvers make use
of the real to integer wordlength ratio. This is assumed to be an
integer L such that if a real array R and an integer array M occupy
the same space in memory, R(1) having the same bit address as M(1),
then R(I) has the same address as M((I-1)*L+1). This ratio L is
usually 1 for single precision, and this is the value used in the
single precision version supplied. If this value is incorrect, it
needs to be changed in two places:
(a) The integer LENRAT is DATA-loaded in Subroutines SLSODES and
SLSODIS to this ratio, shortly below the prologue.
(b) The integer LRATIO is DATA-loaded in Subroutine SCDRV to this
ratio, shortly below the prologue of that routine.
(See comments in both places.) If the ratio is not an integer, use
the greatest integer not exceeding the ratio.
6. For installation of ODEPACK on a Cray computer, the source files
supplied include compiler directives for the CFT compiler. These have
the form CDIR$ IVDEP and occur prior to certain loops that involve
subscript shifts (and would otherwise not be vectorized). These
directives are (or should be) treated as comments by any other compiler.
7. On first obtaining ODEPACK, the demonstration programs should be
compiled and executed prior to any other use of the solvers. In most
cases, these excercise all of the major method options in each solver,
and are self-checking. (In the case of LSODPK and LSODKR, the
demonstration programs are not self-checking, and for LSODKR only one
major method option is used.) In any case, the output can be compared
with the sample output supplied, which was generated from the double
precision version of ODEPACK on a 32-bit computer. When comparing your
output with that supplied, differences of 10-20% in the final values of
the various statistical counters can be attributed to differences in
the roundoff properties of different computer systems.
8. If some subset of the whole ODEPACK collection is desired, without
unneeded routines, the appropriate routines must be extracted
accordingly. The following lists give the routines needed for the
single precision version of each solver.
The SLSODE solver consists of the routines
SLSODE, SINTDY, SSTODE, SCFODE, SPREPJ, SSOLSY, SEWSET, SVNORM, SSRCOM,
SGEFA, SGESL, SGBFA, SGBSL, SAXPY, SSCAL, SDOT, ISAMAX,
RUMACH, XERRWV, XSETUN, XSETF, IXSAV, IUMACH
The SLSODES solver consists of the routines
SLSODES, SIPREP, SPREP, JGROUP, ADJLR, CNTNZU, SINTDY, SSTODE, SCFODE,
SPRJS, SSOLSS, SEWSET, SVNORM, SSRCMS,
SODRV, MD, MDI, MDM, MDP, MDU, SSRO,
SCDRV, SNROC, SNSFC, SNNFC, SNNSC, SNNTC,
RUMACH, XERRWV, XSETUN, XSETF, IXSAV, IUMACH
The SLSODA solver consists of the routines
SLSODA, SINTDY, SSTODA, SCFODE, SPRJA, SSOLSY, SEWSET,
SMNORM, SFNORM, SBNORM, SSRCMA,
SGEFA, SGESL, SGBFA, SGBSL, SAXPY, SSCAL, SDOT, ISAMAX,
RUMACH, XERRWV, XSETUN, XSETF, IXSAV, IUMACH
The SLSODAR solver consists of the routines
SLSODAR, SRCHEK, SROOTS, SINTDY, SSTODA, SCFODE, SPRJA, SSOLSY, SEWSET,
SMNORM, SFNORM, SBNORM, SSRCAR,
SGEFA, SGESL, SGBFA, SGBSL, SAXPY, SSCAL, SDOT, SCOPY, ISAMAX,
RUMACH, XERRWV, XSETUN, XSETF, IXSAV, IUMACH
The SLSODPK solver consists of the routines
SLSODPK, SINTDY, SEWSET, SVNORM, SSTODPK, SCFODE, SPKSET, SSOLPK,
SSPIOM, SATV, SORTHOG, SHEFA, SHESL, SSPIGMR, SHEQR, SHELS,
SPCG, SPCGS, SATP, SUSOL, SSRCPK,
SAXPY, SSCAL, SCOPY, SDOT, SNRM2, ISAMAX,
RUMACH, XERRWV, XSETUN, XSETF, IXSAV, IUMACH
The SLSODKR solver consists of the routines
SLSODKR, SRCHEK, SROOTS, SLHIN, SINTDY, SEWSET, SVNORM, SSTOKA,
SCFODE, SSETPK, SSOLPK, SSPIOM, SATV, SORTHOG, SHEFA, SHESL, SSPIGMR,
SHEQR, SHELS, SPCG, SPCGS, SATP, SUSOL, SSRCKR,
SAXPY, SSCAL, SCOPY, SDOT, SNRM2, ISAMAX,
RUMACH, XERRWV, XSETUN, XSETF, IXSAV, IUMACH
The SLSODI solver consists of the routines
SLSODI, SAINVG, SINTDY, SSTODI, SCFODE, SPREPJI, SSOLSY, SEWSET,
SVNORM, SSRCOM,
SGEFA, SGESL, SGBFA, SGBSL, SAXPY, SSCAL, SDOT, ISAMAX,
RUMACH, XERRWV, XSETUN, XSETF, IXSAV, IUMACH
The SLSOIBT solver consists of the routines
SLSOIBT, SAIGBT, SINTDY, SSTODI, SCFODE, SPJIBT, SSLSBT, SEWSET,
SVNORM, SSRCOM, SDECBT, SSOLBT,
SGEFA, SGESL, SAXPY, SSCAL, SDOT, ISAMAX,
RUMACH, XERRWV, XSETUN, XSETF, IXSAV, IUMACH
The SLSODIS solver consists of the routines
SLSODIS, SAINVGS, SIPREPI, SPREPI, JGROUP, ADJLR, CNTNZU, SINTDY,
SSTODI, SCFODE, SPRJIS, SSOLSS, SEWSET, SVNORM, SSRCMS,
SODRV, MD, MDI, MDM, MDP, MDU, SSRO,
SCDRV, SNROC, SNSFC, SNNFC, SNNSC, SNNTC,
RUMACH, XERRWV, XSETUN, XSETF, IXSAV, IUMACH