S17DGF (PDF version)
S Chapter Contents
S Chapter Introduction
NAG Library Manual

NAG Library Routine Document

S17DGF

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

S17DGF returns the value of the Airy function Aiz or its derivative Aiz for complex z, with an option for exponential scaling.

2  Specification

SUBROUTINE S17DGF ( DERIV, Z, SCAL, AI, NZ, IFAIL)
INTEGER  NZ, IFAIL
COMPLEX (KIND=nag_wp)  Z, AI
CHARACTER(1)  DERIV, SCAL

3  Description

S17DGF returns a value for the Airy function Aiz or its derivative Aiz, where z is complex, -π<argzπ. Optionally, the value is scaled by the factor e2zz/3.
The routine is derived from the routine CAIRY in Amos (1986). It is based on the relations Aiz= zK1/3w π3 , and Aiz= -zK2/3w π3 , where Kν is the modified Bessel function and w=2zz/3.
For very large z, argument reduction will cause total loss of accuracy, and so no computation is performed. For slightly smaller z, the computation is performed but results are accurate to less than half of machine precision. If Rew is too large, and the unscaled function is required, there is a risk of overflow and so no computation is performed. In all the above cases, a warning is given by the routine.

4  References

Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
Amos D E (1986) Algorithm 644: A portable package for Bessel functions of a complex argument and non-negative order ACM Trans. Math. Software 12 265–273

5  Parameters

1:     DERIV – CHARACTER(1)Input
On entry: specifies whether the function or its derivative is required.
If DERIV='F', Aiz is returned.
If DERIV='D', Aiz is returned.
Constraint: DERIV='F' or 'D'.
2:     Z – COMPLEX (KIND=nag_wp)Input
On entry: the argument z of the function.
3:     SCAL – CHARACTER(1)Input
On entry: the scaling option.
SCAL='U'
The result is returned unscaled.
SCAL='S'
The result is returned scaled by the factor e2zz/3.
Constraint: SCAL='U' or 'S'.
4:     AI – COMPLEX (KIND=nag_wp)Output
On exit: the required function or derivative value.
5:     NZ – INTEGEROutput
On exit: indicates whether or not AI is set to zero due to underflow. This can only occur when SCAL='U'.
NZ=0
AI is not set to zero.
NZ=1
AI is set to zero.
6:     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,DERIV'F' or 'D'.
orSCAL'U' or 'S'.
IFAIL=2
No computation has been performed due to the likelihood of overflow, because Rew is too large, where w=2ZZ/3 – how large depends on Z and the overflow threshold of the machine. This error exit can only occur when SCAL='U'.
IFAIL=3
The computation has been performed, but the errors due to argument reduction in elementary functions make it likely that the result returned by S17DGF is accurate to less than half of machine precision. This error exit may occur if absZ is greater than a machine-dependent threshold value (given in the Users' Note for your implementation).
IFAIL=4
No computation has been performed because the errors due to argument reduction in elementary functions mean that all precision in the result returned by S17DGF would be lost. This error exit may occur if absZ is greater than a machine-dependent threshold value (given in the Users' Note for your implementation).
IFAIL=5
No result is returned because the algorithm termination condition has not been met. This may occur because the parameters supplied to S17DGF would have caused overflow or underflow.

7  Accuracy

All constants in S17DGF are given to approximately 18 digits of precision. Calling the number of digits of precision in the floating point arithmetic being used t, then clearly the maximum number of correct digits in the results obtained is limited by p=mint,18. Because of errors in argument reduction when computing elementary functions inside S17DGF, the actual number of correct digits is limited, in general, by p-s, where smax1,log10z represents the number of digits lost due to the argument reduction. Thus the larger the value of z, the less the precision in the result.
Empirical tests with modest values of z, checking relations between Airy functions Aiz, Aiz, Biz and Biz, have shown errors limited to the least significant 3 – 4 digits of precision.

8  Further Comments

Note that if the function is required to operate on a real argument only, then it may be much cheaper to call S17AGF or S17AJF.

9  Example

This example prints a caption and then proceeds to read sets of data from the input data stream. The first datum is a value for the parameter DERIV, the second is a complex value for the argument, Z, and the third is a character value to set the parameter SCAL. The program calls the routine and prints the results. The process is repeated until the end of the input data stream is encountered.

9.1  Program Text

Program Text (s17dgfe.f90)

9.2  Program Data

Program Data (s17dgfe.d)

9.3  Program Results

Program Results (s17dgfe.r)


S17DGF (PDF version)
S Chapter Contents
S Chapter Introduction
NAG Library Manual

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