NAG Library Routine Document
c06lbf
(invlaplace_weeks)
1
Purpose
c06lbf computes the inverse Laplace transform
of a user-supplied function
, defined for complex
. The routine uses a modification of Weeks' method which is suitable when
has continuous derivatives of all orders. The routine returns the coefficients of an expansion which approximates
and can be evaluated for given values of
by subsequent calls of
c06lcf.
2
Specification
Fortran Interface
Integer, Intent (In) | :: |
mmax | Integer, Intent (Inout) | :: |
ifail | Integer, Intent (Out) | :: |
m | Real (Kind=nag_wp), Intent (In) | :: |
sigma0,
epstol | Real (Kind=nag_wp), Intent (Inout) | :: |
sigma,
b | Real (Kind=nag_wp), Intent (Out) | :: |
acoef(mmax),
errvec(8) | Complex (Kind=nag_wp), External | :: |
f |
|
C Header Interface
#include nagmk26.h
void |
c06lbf_ (
Complex (NAG_CALL *f)(
const Complex *s),
const double *sigma0,
double *sigma,
double *b,
const double *epstol,
const Integer *mmax,
Integer *m,
double acoef[],
double errvec[],
Integer *ifail) |
|
3
Description
Given a function
of a real variable
, its Laplace transform
is a function of a complex variable
, defined by
Then
is the inverse Laplace transform of
. The value
is referred to as the abscissa of convergence of the Laplace transform; it is the rightmost real part of the singularities of
.
c06lbf, along with its companion
c06lcf, attempts to solve the following problem:
- given a function , compute values of its inverse Laplace transform for specified values of .
The method is a modification of Weeks' method (see
Garbow et al. (1988a)), which approximates
by a truncated Laguerre expansion:
where
is the Laguerre polynomial of degree
. This routine computes the coefficients
of the above Laguerre expansion; the expansion can then be evaluated for specified
by calling
c06lcf. You must supply the value of
, and also suitable values for
and
: see
Section 9 for guidance.
The method is only suitable when has continuous derivatives of all orders. For such functions the approximation is usually good and inexpensive. The routine will fail with an error exit if the method is not suitable for the supplied function .
The routine is designed to satisfy an accuracy criterion of the form:
where
is a user-supplied bound. The error measure on the left-hand side is referred to as the
pseudo-relative
error, or
pseudo-error for short. Note that if
and
is large, the absolute error in
may be very large.
c06lbf is derived from the subroutine MODUL1 in
Garbow et al. (1988a).
4
References
Garbow B S, Giunta G, Lyness J N and Murli A (1988a) Software for an implementation of Weeks' method for the inverse laplace transform problem ACM Trans. Math. Software 14 163–170
Garbow B S, Giunta G, Lyness J N and Murli A (1988b) Algorithm 662: A Fortran software package for the numerical inversion of the Laplace transform based on Weeks' method ACM Trans. Math. Software 14 171–176
5
Arguments
- 1: – Complex (Kind=nag_wp) Function, supplied by the user.External Procedure
-
f must return the value of the Laplace transform function
for a given complex value of
.
The specification of
f is:
Fortran Interface
Complex (Kind=nag_wp) | :: | f | Complex (Kind=nag_wp), Intent (In) | :: |
s |
|
C Header Interface
#include nagmk26.h
Complex |
f (
const Complex *s) |
|
- 1: – Complex (Kind=nag_wp)Input
-
On entry: the value of
for which
must be evaluated. The real part of
s is greater than
.
f must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
c06lbf is called. Arguments denoted as
Input must
not be changed by this procedure.
Note: f should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
c06lbf. If your code inadvertently
does return any NaNs or infinities,
c06lbf is likely to produce unexpected results.
- 2: – Real (Kind=nag_wp)Input
-
On entry: the abscissa of convergence of the Laplace transform, .
- 3: – Real (Kind=nag_wp)Input/Output
-
On entry: the parameter
of the Laguerre expansion. If on entry
,
sigma is reset to
.
On exit: the value actually used for , as just described.
- 4: – Real (Kind=nag_wp)Input/Output
-
On entry: the parameter
of the Laguerre expansion. If on entry
,
b is reset to
.
On exit: the value actually used for , as just described.
- 5: – Real (Kind=nag_wp)Input
-
On entry: the required relative pseudo-accuracy, that is, an upper bound on .
- 6: – IntegerInput
-
On entry: an upper bound on the number of Laguerre expansion coefficients to be computed. The number of coefficients actually computed is always a power of
, so
mmax should be a power of
; if
mmax is not a power of
then the maximum number of coefficients calculated will be the largest power of
less than
mmax.
Suggested value:
is sufficient for all but a few exceptional cases.
Constraint:
.
- 7: – IntegerOutput
-
On exit: the number of Laguerre expansion coefficients actually computed. The number of calls to
f is
.
- 8: – Real (Kind=nag_wp) arrayOutput
-
On exit: the first
m elements contain the computed Laguerre expansion coefficients,
.
- 9: – Real (Kind=nag_wp) arrayOutput
-
On exit: an
-component vector of diagnostic information.
- Overall estimate of the pseudo-error .
- Estimate of the discretization pseudo-error.
- Estimate of the truncation pseudo-error.
- Estimate of the condition pseudo-error on the basis of minimal noise levels in function values.
- , coefficient of a heuristic decay function for the expansion coefficients.
- , base of the decay function for the expansion coefficients.
- Logarithm of the largest expansion coefficient.
- Logarithm of the smallest nonzero expansion coefficient.
The values
and
returned in
and
define a decay function
constructed by the routine for the purposes of error estimation. It satisfies
- 10: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, because for this routine the values of the output arguments may be useful even if
on exit, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Note: c06lbf may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
-
-
The estimated pseudo-error bounds are slightly larger than
epstol. Note, however, that the actual errors in the final results may be smaller than
epstol as bounds independent of the value of
are pessimistic.
-
Computation was terminated early because the estimate of rounding error was greater than
epstol. Increasing
epstol may help.
-
The decay rate of the coefficients is too small. Increasing
mmax may help.
-
The decay rate of the coefficients is too small. In addition the rounding error is such that the required accuracy cannot be obtained. Increasing
mmax or
epstol may help.
-
The behaviour of the coefficients does not enable reasonable prediction of error bounds. Check the value of
sigma0. In this case,
is set to
, for
.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
When
, changing
sigma or
b may help. If not, the method should be abandoned.
7
Accuracy
The error estimate returned in has been found in practice to be a highly reliable bound on the pseudo-error .
8
Parallelism and Performance
c06lbf is not threaded in any implementation.
Nearly all techniques for inversion of the Laplace transform require you to supply the value of , the convergence abscissa, or else an upper bound on . For this routine, one of the reasons for having to supply is that the argument must be greater than ; otherwise the series for will not converge.
If you do not know the value of , you must be prepared for significant preliminary effort, either in experimenting with the method and obtaining chaotic results, or in attempting to locate the rightmost singularity of .
The value of
is also relevant in defining a natural accuracy criterion. For large
,
is of uniform numerical order
, so a
natural measure of relative accuracy of the approximation
is:
c06lbf uses the supplied value of
only in determining the values of
and
(see
Sections 9.2 and
9.3); thereafter it bases its computation entirely on
and
.
Even when the value of
is known, choosing a value for
is not easy. Briefly, the series for
converges slowly when
is small, and faster when
is larger. However the natural accuracy measure satisfies
and this degrades exponentially with
, the exponential constant being
.
Hence, if you require meaningful results over a large range of values of , you should choose small, in which case the series for converges slowly; while for a smaller range of values of , you can allow to be larger and obtain faster convergence.
The default value for used by c06lbf is . There is no theoretical justification for this.
The simplest advice for choosing
is to set
. The default value used by the routine is
. A more refined choice is to set
where
are the singularities of
.
10
Example
This example computes values of the inverse Laplace transform of the function
The exact answer is
The program first calls
c06lbf to compute the coefficients of the Laguerre expansion, and then calls
c06lcf to evaluate the expansion at
,
,
,
,
,
.
10.1
Program Text
Program Text (c06lbfe.f90)
10.2
Program Data
Program Data (c06lbfe.d)
10.3
Program Results
Program Results (c06lbfe.r)