s19aa returns a value for the Kelvin function berx.

Syntax

C#
public static double s19aa(
	double x,
	out int ifail
)
Visual Basic
Public Shared Function s19aa ( _
	x As Double, _
	<OutAttribute> ByRef ifail As Integer _
) As Double
Visual C++
public:
static double s19aa(
	double x, 
	[OutAttribute] int% ifail
)
F#
static member s19aa : 
        x : float * 
        ifail : int byref -> float 

Parameters

x
Type: System..::..Double
On entry: the argument x of the function.
ifail
Type: System..::..Int32%
On exit: ifail=0 unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).

Return Value

s19aa returns a value for the Kelvin function berx.

Description

s19aa evaluates an approximation to the Kelvin function berx.
Note:  ber-x=berx, so the approximation need only consider x0.0.
The method is based on several Chebyshev expansions:
For 0x5,
berx=r=0arTrt,   with ​t=2x54-1.
For x>5,
berx=ex/22πx1+1xatcosα+1xbtsinα+e-x/22πx1+1xctsinβ+1xdtcosβ,
where α=x2-π8, β=x2+π8,
and at, bt, ct, and dt are expansions in the variable t=10x-1.
When x is sufficiently close to zero, the result is set directly to ber0=1.0.
For large x, there is a danger of the result being totally inaccurate, as the error amplification factor grows in an essentially exponential manner; therefore the method must fail.

References

Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications

Error Indicators and Warnings

Errors or warnings detected by the method:
ifail=1
On entry, absx is too large for an accurate result to be returned. On failure, the method returns zero. See also the Users' Note for your implementation.
ifail=-9000
An error occured, see message report.

Accuracy

Since the function is oscillatory, the absolute error rather than the relative error is important. Let E be the absolute error in the result and δ be the relative error in the argument. If δ is somewhat larger than the machine precision, then we have:
Ex2ber1x+bei1xδ
(provided E is within machine bounds).
For small x the error amplification is insignificant and thus the absolute error is effectively bounded by the machine precision.
For medium and large x, the error behaviour is oscillatory and its amplitude grows like x2πex/2. Therefore it is not possible to calculate the function with any accuracy when xex/2>2πδ. Note that this value of x is much smaller than the minimum value of x for which the function overflows.

Parallelism and Performance

None.

Further Comments

None.

Example

This example reads values of the argument x from a file, evaluates the function at each value of x and prints the results.

Example program (C#): s19aae.cs

Example program data: s19aae.d

Example program results: s19aae.r

See Also