D05BDF (PDF version)
D05 Chapter Contents
D05 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

D05BDF

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

D05BDF computes the solution of a weakly singular nonlinear convolution Volterra–Abel integral equation of the second kind using a fractional Backward Differentiation Formulae (BDF) method.

2  Specification

SUBROUTINE D05BDF ( CK, CF, CG, INITWT, IORDER, TLIM, TOLNL, NMESH, YN, WORK, LWK, NCT, IFAIL)
INTEGER  IORDER, NMESH, LWK, NCT(NMESH/32+1), IFAIL
REAL (KIND=nag_wp)  CK, CF, CG, TLIM, TOLNL, YN(NMESH), WORK(LWK)
CHARACTER(1)  INITWT
EXTERNAL  CK, CF, CG

3  Description

D05BDF computes the numerical solution of the weakly singular convolution Volterra–Abel integral equation of the second kind
yt = ft + 1π 0t kt-s t-s g s,ys ds ,   0tT . (1)
Note the constant 1π in (1). It is assumed that the functions involved in (1) are sufficiently smooth.
The routine uses a fractional BDF linear multi-step method to generate a family of quadrature rules (see D05BYF). The BDF methods available in D05BDF are of orders 4, 5 and 6 (=p say). For a description of the theoretical and practical background to these methods we refer to Lubich (1985) and to Baker and Derakhshan (1987) and Hairer et al. (1988) respectively.
The algorithm is based on computing the solution yt in a step-by-step fashion on a mesh of equispaced points. The size of the mesh is given by T/N-1, N being the number of points at which the solution is sought. These methods require 2p-1 (including y0) starting values which are evaluated internally. The computation of the lag term arising from the discretization of (1) is performed by fast Fourier transform (FFT) techniques when N>32+2p-1, and directly otherwise. The routine does not provide an error estimate and you are advised to check the behaviour of the solution with a different value of N. An option is provided which avoids the re-evaluation of the fractional weights when D05BDF is to be called several times (with the same value of N) within the same program unit with different functions.

4  References

Baker C T H and Derakhshan M S (1987) FFT techniques in the numerical solution of convolution equations J. Comput. Appl. Math. 20 5–24
Hairer E, Lubich Ch and Schlichte M (1988) Fast numerical solution of weakly singular Volterra integral equations J. Comput. Appl. Math. 23 87–98
Lubich Ch (1985) Fractional linear multistep methods for Abel–Volterra integral equations of the second kind Math. Comput. 45 463–469

5  Parameters

1:     CK – REAL (KIND=nag_wp) FUNCTION, supplied by the user.External Procedure
CK must evaluate the kernel kt of the integral equation (1).
The specification of CK is:
FUNCTION CK ( T)
REAL (KIND=nag_wp) CK
REAL (KIND=nag_wp)  T
1:     T – REAL (KIND=nag_wp)Input
On entry: t, the value of the independent variable.
CK must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D05BDF is called. Parameters denoted as Input must not be changed by this procedure.
2:     CF – REAL (KIND=nag_wp) FUNCTION, supplied by the user.External Procedure
CF must evaluate the function ft in (1).
The specification of CF is:
FUNCTION CF ( T)
REAL (KIND=nag_wp) CF
REAL (KIND=nag_wp)  T
1:     T – REAL (KIND=nag_wp)Input
On entry: t, the value of the independent variable.
CF must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D05BDF is called. Parameters denoted as Input must not be changed by this procedure.
3:     CG – REAL (KIND=nag_wp) FUNCTION, supplied by the user.External Procedure
CG must evaluate the function gs,ys in (1).
The specification of CG is:
FUNCTION CG ( S, Y)
REAL (KIND=nag_wp) CG
REAL (KIND=nag_wp)  S, Y
1:     S – REAL (KIND=nag_wp)Input
On entry: s, the value of the independent variable.
2:     Y – REAL (KIND=nag_wp)Input
On entry: the value of the solution y at the point S.
CG must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D05BDF is called. Parameters denoted as Input must not be changed by this procedure.
4:     INITWT – CHARACTER(1)Input
On entry: if the fractional weights required by the method need to be calculated by the routine then set INITWT='I' (Initial call).
If INITWT='S' (Subsequent call), the routine assumes the fractional weights have been computed on a previous call and are stored in WORK.
Constraint: INITWT='I' or 'S'.
Note: when D05BDF is re-entered with the value of INITWT='S', the values of NMESH, IORDER and the contents of WORK must not be changed.
5:     IORDER – INTEGERInput
On entry: p, the order of the BDF method to be used.
Suggested value: IORDER=4.
Constraint: 4IORDER6.
6:     TLIM – REAL (KIND=nag_wp)Input
On entry: the final point of the integration interval, T.
Constraint: TLIM>10×machine precision.
7:     TOLNL – REAL (KIND=nag_wp)Input
On entry: the accuracy required for the computation of the starting value and the solution of the nonlinear equation at each step of the computation (see Section 8).
Suggested value: TOLNL=ε where ε is the machine precision.
Constraint: TOLNL>10×machine precision.
8:     NMESH – INTEGERInput
On entry: N, the number of equispaced points at which the solution is sought.
Constraint: NMESH=2m+2×IORDER-1, where m1.
9:     YN(NMESH) – REAL (KIND=nag_wp) arrayOutput
On exit: YNi contains the approximate value of the true solution yt at the point t=i-1×h, for i=1,2,,NMESH, where h=TLIM/NMESH-1.
10:   WORK(LWK) – REAL (KIND=nag_wp) arrayCommunication Array
On entry: if INITWT='S', WORK must contain fractional weights computed by a previous call of D05BDF (see description of INITWT).
On exit: contains fractional weights which may be used by a subsequent call of D05BDF.
11:   LWK – INTEGERInput
On entry: the dimension of the array WORK as declared in the (sub)program from which D05BDF is called.
Constraint: LWK2×IORDER+6×NMESH+8×IORDER2-16×IORDER+1.
12:   NCT(NMESH/32+1) – INTEGER arrayWorkspace
13:   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, if you are not familiar with this parameter, the recommended value is 0. 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).
Errors or warnings detected by the routine:
IFAIL=1
On entry,IORDER<4 or IORDER>6,
orTLIM10×machine precision,
orINITWT'I' or 'S',
orINITWT='S' on the first call to D05BDF,
orTOLNL10×machine precision,
orNMESH2m+2×IORDER-1,m1,
orLWK<2×IORDER+6×NMESH+8×IORDER2-16×IORDER+1.
IFAIL=2
The routine cannot compute the 2p-1 starting values due to an error solving the system of nonlinear equations. Relaxing the value of TOLNL and/or increasing the value of NMESH may overcome this problem (see Section 8 for further details).
IFAIL=3
The routine cannot compute the solution at a specific step due to an error in the solution of the nonlinear equation (2). Relaxing the value of TOLNL and/or increasing the value of NMESH may overcome this problem (see Section 8 for further details).

7  Accuracy

The accuracy depends on NMESH and TOLNL, the theoretical behaviour of the solution of the integral equation and the interval of integration. The value of TOLNL controls the accuracy required for computing the starting values and the solution of (2) at each step of computation. This value can affect the accuracy of the solution. However, for most problems, the value of ε, where ε is the machine precision, should be sufficient.

8  Further Comments

In solving (1), initially, D05BDF computes the solution of a system of nonlinear equations for obtaining the 2p-1 starting values. C05QDF is used for this purpose. When a failure with IFAIL=2 occurs (which corresponds to an error exit from C05QDF), you are advised to either relax the value of TOLNL or choose a smaller step size by increasing the value of NMESH. Once the starting values are computed successfully, the solution of a nonlinear equation of the form
Yn-αgtn,Yn-Ψn=0, (2)
is required at each step of computation, where Ψn and α are constants. D05BDF calls C05AXF to find the root of this equation.
If a failure with IFAIL=3 occurs (which corresponds to an error exit from C05AXF), you are advised to relax the value of the TOLNL or choose a smaller step size by increasing the value of NMESH.
If a failure with IFAIL=2 or 3 persists even after adjustments to TOLNL and/or NMESH then you should consider whether there is a more fundamental difficulty. For example, the problem is ill-posed or the functions in (1) are not sufficiently smooth.

9  Example

In this example we solve the following integral equations
yt = t + 38 π t2 - 0t 1 t-s y s 3 ds ,   0t7 ,
with the solution yt=t, and
y t = 3-t t - 0t 1t-s exp s 1-s 2 - ys 2 d s ,   0t5 ,
with the solution yt=1-tt. In the above examples, the fourth-order BDF is used, and NMESH is set to 26+7.

9.1  Program Text

Program Text (d05bdfe.f90)

9.2  Program Data

None.

9.3  Program Results

Program Results (d05bdfe.r)


D05BDF (PDF version)
D05 Chapter Contents
D05 Chapter Introduction
NAG Library Manual

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