C06LAF (PDF version)
C06 Chapter Contents
C06 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

C06LAF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

C06LAF estimates values of the inverse Laplace transform of a given function using a Fourier series approximation. Real and imaginary parts of the function, and a bound on the exponential order of the inverse, are required.

2  Specification

SUBROUTINE C06LAF ( FUN, N, T, VALINV, ERREST, RELERR, ALPHAB, TFAC, MXTERM, NTERMS, NA, ALOW, AHIGH, NFEVAL, WORK, IFAIL)
INTEGER  N, MXTERM, NTERMS, NA, NFEVAL, IFAIL
REAL (KIND=nag_wp)  T(N), VALINV(N), ERREST(N), RELERR, ALPHAB, TFAC, ALOW, AHIGH, WORK(4*MXTERM+2)
EXTERNAL  FUN

3  Description

Given a function Fp  defined for complex values of p, C06LAF estimates values of its inverse Laplace transform by Crump's method (see Crump (1976)). (For a definition of the Laplace transform and its inverse, see the C06 Chapter Introduction.)
Crump's method applies the epsilon algorithm (see Wynn (1956)) to the summation in Durbin's Fourier series approximation (see Durbin (1974))
f tj e atj τ 12 F a - k=1 Re F a + kπi τ cos kπtj τ - Im F a + kπi τ sin kπtj τ ,
for j=1,2,,n , by choosing a such that a prescribed relative error should be achieved. The method is modified slightly if t=0.0  so that an estimate of f0.0  can be obtained when it has a finite value. τ is calculated as tfac × max0.01,tj , where tfac > 0.5 . You specify tfac  and αb , an upper bound on the exponential order α of the inverse function ft . α has two alternative interpretations:
(i) α is the smallest number such that
ft m × expαt
for large t,
(ii) α is the real part of the singularity of Fp  with largest real part.
The method depends critically on the value of α. See Section 8 for further details. The routine calculates at least two different values of the parameter a, such that a>αb , in an attempt to achieve the requested relative error and provide error estimates. The values of tj , for j=1,2,,n, must be supplied in monotonically increasing order. The routine calculates the values of the inverse function ftj  in decreasing order of j.

4  References

Crump K S (1976) Numerical inversion of Laplace transforms using a Fourier series approximation J. Assoc. Comput. Mach. 23 89–96
Durbin F (1974) Numerical inversion of Laplace transforms: An efficient improvement to Dubner and Abate's method Comput. J. 17 371–376
Wynn P (1956) On a device for computing the emSn transformation Math. Tables Aids Comput. 10 91–96

5  Parameters

1:     FUN – SUBROUTINE, supplied by the user.External Procedure
FUN must evaluate the real and imaginary parts of the function Fp for a given value of p.
The specification of FUN is:
SUBROUTINE FUN ( PR, PI, FR, FI)
REAL (KIND=nag_wp)  PR, PI, FR, FI
1:     PR – REAL (KIND=nag_wp)Input
2:     PI – REAL (KIND=nag_wp)Input
On entry: the real and imaginary parts of the argument p.
3:     FR – REAL (KIND=nag_wp)Output
4:     FI – REAL (KIND=nag_wp)Output
On exit: the real and imaginary parts of the value Fp.
FUN must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which C06LAF is called. Parameters denoted as Input must not be changed by this procedure.
2:     N – INTEGERInput
On entry: n, the number of points at which the value of the inverse Laplace transform is required.
Constraint: N1.
3:     T(N) – REAL (KIND=nag_wp) arrayInput
On entry: each Tj must specify a point at which the inverse Laplace transform is required , for j=1,2,,n.
Constraint: 0.0 T1 < T2 << Tn.
4:     VALINV(N) – REAL (KIND=nag_wp) arrayOutput
On exit: an estimate of the value of the inverse Laplace transform at t=Tj, for j=1,2,,n.
5:     ERREST(N) – REAL (KIND=nag_wp) arrayOutput
On exit: an estimate of the error in VALINVj. This is usually an estimate of relative error but, if VALINVj<RELERR, ERRESTj estimates the absolute error. ERRESTj is unreliable when VALINVj is small but slightly greater than RELERR.
6:     RELERR – REAL (KIND=nag_wp)Input
On entry: the required relative error in the values of the inverse Laplace transform. If the absolute value of the inverse is less than RELERR, then absolute accuracy is used instead. RELERR must be in the range 0.0RELERR<1.0. If RELERR is set too small or to 0.0, then the routine uses a value sufficiently larger than machine precision.
7:     ALPHAB – REAL (KIND=nag_wp)Input
On entry: αb, an upper bound for α (see Section 3). Usually, αb should be specified equal to, or slightly larger than, the value of α. If αb < α then the prescribed accuracy may not be achieved or completely incorrect results may be obtained. If αb is too large C06LAF will be inefficient and convergence may not be achieved.
Note:  it is as important to specify αb correctly as it is to specify the correct function for inversion.
8:     TFAC – REAL (KIND=nag_wp)Input
On entry: tfac, a factor to be used in calculating the parameter τ. Larger values (e.g., 5.0) may be specified for difficult problems, but these may require very large values of MXTERM.
Suggested value: TFAC=0.8.
Constraint: TFAC>0.5.
9:     MXTERM – INTEGERInput
On entry: the maximum number of (complex) terms to be used in the evaluation of the Fourier series.
Suggested value: MXTERM100, except for very simple problems.
Constraint: MXTERM1.
10:   NTERMS – INTEGEROutput
On exit: the number of (complex) terms actually used.
11:   NA – INTEGEROutput
On exit: the number of values of a used by the routine. See Section 8.
12:   ALOW – REAL (KIND=nag_wp)Output
On exit: the smallest value of a used in the algorithm. This may be used for checking the value of ALPHAB- see Section 8.
13:   AHIGH – REAL (KIND=nag_wp)Output
On exit: the largest value of a used in the algorithm. This may be used for checking the value of ALPHAB- see Section 8.
14:   NFEVAL – INTEGEROutput
On exit: the number of calls to FUN made by the routine.
15:   WORK( 4×MXTERM+2 ) – REAL (KIND=nag_wp) arrayWorkspace
16:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, because for this routine the values of the output parameters may be useful even if IFAIL0 on exit, the recommended value is -1. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Note: C06LAF may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
IFAIL=1
On entry,N<1,
orMXTERM<1,
or RELERR<0.0 ,
or RELERR1.0 ,
or TFAC0.5 .
IFAIL=2
On entry, T1<0.0 ,
or T1 , T2 ,, TN  are not in strictly increasing order.
IFAIL=3
TN  is too large for this value of ALPHAB. If necessary, scale the problem as described in Section 8.
IFAIL=4
The required accuracy cannot be obtained. It is possible that ALPHAB is less than α. Alternatively, the problem may be especially difficult. Try increasing TFAC, ALPHAB or both.
IFAIL=5
Convergence failure in the epsilon algorithm. Some values of VALINVj  may be calculated to the desired accuracy; this may be determined by examining the values of ERRESTj . Try reducing the range of T or increasing MXTERM. If IFAIL=5 still results, try reducing TFAC.
IFAIL=6
All values of VALINVj  have been calculated but not all are to the requested accuracy; the values of ERRESTj  should be examined carefully. Try reducing the range of t, or increasing TFAC, ALPHAB or both.

7  Accuracy

The error estimates are often very close to the true error but, because the error control depends on an asymptotic formula, the required error may not always be met. There are two principal causes of this: Gibbs' phenomena, and zero or small values of the inverse Laplace transform.
Gibbs' phenomena (see the C06 Chapter Introduction) are exhibited near t=0.0  (due to the method) and around discontinuities in the inverse Laplace transform ft . If there is a discontinuity at t=c  then the method converges such that f c fc- + fc+ / 2 .
Apparent loss of accuracy, when ft  is small, may not be serious. Crump's method keeps control of relative error so that good approximations to small function values may appear to be very inaccurate. If ft  is estimated to be less than RELERR then this routine switches to absolute error estimation. However, when ft  is slightly larger than RELERR the relative error estimates are likely to cause IFAIL=6. If this is found inconvenient it can sometimes be avoided by adding k/p  to the function Fp , which shifts the inverse to k+ft .
Loss of accuracy may also occur for highly oscillatory functions.
More serious loss of accuracy can occur if α is unknown and is incorrectly estimated. See Section 8.

8  Further Comments

8.1  Timing

The value of n is less important in general than the value of NTERMS. Unless FUN is very inexpensive to compute, the timing is proportional to NA×NTERMS . For simple problems NA=2  but in difficult problems NA may be somewhat larger.

8.2  Precautions

You are referred to the C06 Chapter Introduction for advice on simplifying problems with particular difficulties, e.g., where the inverse is known to be a step function.
The method does not work well for large values of t when α is positive. It is advisable, especially if IFAIL=3 is obtained, to scale the problem if α  is much greater than 1.0. See the C06 Chapter Introduction.
The range of values of t specified for a particular call should not be greater than about 10 units. This is because the method uses parameters based on the value Tn  and these tend to be less appropriate as t becomes smaller. However, as the timing of the routine is not especially dependent on n, it is usually far more efficient to evaluate the inverse for ranges of t than to make separate calls to the routine for each value of t.
The most important parameter to specify correctly is ALPHAB, an upper bound for α. If, on entry, ALPHAB is sufficiently smaller than α then completely incorrect results will be obtained with IFAIL=0. Unless α is known theoretically it is strongly advised that you should test any estimated value used. This may be done by specifying a single value of t (i.e Tn , n=1 ) with two sets of suitable values of TFAC, RELERR and MXTERM, and examining the resulting values of ALOW and AHIGH. The value of T1  should be chosen very carefully and the following points should be borne in mind:
(i) T1  should be small but not too close to 0.0 because of Gibbs' phenomenon (see Section 7),
(ii) the larger the value of T1 , the smaller the range of values of a that will be used in the algorithm,
(iii) T1  should ideally not be chosen such that fT1=0.0  or a very small value. For suitable problems T1  might be chosen as, say, 0.1 or 1.0 depending on these factors. The routine calculates ALOW from the formula
ALOW = ALPHAB - ln0.1×RELERR 2×τ .
Additional values of a are computed by adding 1/τ  to the previous value. As τ = TFAC × Tn , it will be seen that large values of TFAC and RELERR will test for a close to ALPHAB. Small values of TFAC and RELERR will test for a large. If the result of both tests is IFAIL=0, with comparable values for the inverse, then this gives some credibility to the chosen value of ALPHAB. You should note that this test could be more computationally expensive than the calculation of the inverse itself. The example program (see Section 9) illustrates how such a test may be performed.

9  Example

This example estimates the inverse Laplace transform of the function Fp=1/p+1/2 . The true inverse of Fp  is exp-t/2 . Two preliminary calls to the routine are made to verify that the chosen value of ALPHAB is suitable. For these tests the single value T1=1.0  is used. To test values of a close to ALPHAB, the values TFAC=5.0  and RELERR=0.01  are chosen. To test larger a, the values TFAC=0.8  and RELERR=1.0E−3  are used. Because the values of the computed inverse are similar and IFAIL=0 in each case, these tests show that there is unlikely to be a singularity of Fp  in the region -0.04 Rep 6.51 .

9.1  Program Text

Program Text (c06lafe.f90)

9.2  Program Data

Program Data (c06lafe.d)

9.3  Program Results

Program Results (c06lafe.r)

Produced by GNUPLOT 4.4 patchlevel 0 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 1 1.5 2 2.5 3 3.5 4 4.5 5 1e-06 1e-05 0.0001 0.001 f(t) Error t Example Program Inverse Laplace Transform of 1/(p+0.5) result exp(-t/2) relative error estimated error

C06LAF (PDF version)
C06 Chapter Contents
C06 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012