NAG Library Routine Document
f11ddf
(real_gen_precon_ssor_solve)
1
Purpose
f11ddf solves a system of linear equations involving the preconditioning matrix corresponding to SSOR applied to a real sparse nonsymmetric matrix, represented in coordinate storage format.
2
Specification
Fortran Interface
Subroutine f11ddf ( |
trans,
n,
nnz,
a,
irow,
icol,
rdiag,
omega,
check,
y,
x,
iwork,
ifail) |
Integer, Intent (In) | :: |
n,
nnz,
irow(nnz),
icol(nnz) | Integer, Intent (Inout) | :: |
ifail | Integer, Intent (Out) | :: |
iwork(2*n+1) | Real (Kind=nag_wp), Intent (In) | :: |
a(nnz),
rdiag(n),
omega,
y(n) | Real (Kind=nag_wp), Intent (Out) | :: |
x(n) | Character (1), Intent (In) | :: |
trans,
check |
|
C Header Interface
#include nagmk26.h
void |
f11ddf_ (
const char *trans,
const Integer *n,
const Integer *nnz,
const double a[],
const Integer irow[],
const Integer icol[],
const double rdiag[],
const double *omega,
const char *check,
const double y[],
double x[],
Integer iwork[],
Integer *ifail,
const Charlen length_trans,
const Charlen length_check) |
|
3
Description
f11ddf solves a system of linear equations
according to the value of the argument
trans, where the matrix
corresponds to symmetric successive-over-relaxation (SSOR) (see
Young (1971)) applied to a linear system
, where
is a real sparse nonsymmetric matrix stored in coordinate storage (CS) format (see
Section 2.1.1 in the F11 Chapter Introduction).
In the definition of given above is the diagonal part of , is the strictly lower triangular part of , is the strictly upper triangular part of , and is a user-defined relaxation parameter.
It is envisaged that a common use of
f11ddf will be to carry out the preconditioning step required in the application of
f11bef to sparse linear systems. For an illustration of this use of
f11ddf see the example program given in
Section 10.
f11ddf is also used for this purpose by the Black Box routine
f11def.
4
References
Young D (1971) Iterative Solution of Large Linear Systems Academic Press, New York
5
Arguments
- 1: – Character(1)Input
-
On entry: specifies whether or not the matrix
is transposed.
- is solved.
- is solved.
Constraint:
or .
- 2: – IntegerInput
-
On entry: , the order of the matrix .
Constraint:
.
- 3: – IntegerInput
-
On entry: the number of nonzero elements in the matrix .
Constraint:
.
- 4: – Real (Kind=nag_wp) arrayInput
-
On entry: the nonzero elements in the matrix
, ordered by increasing row index, and by increasing column index within each row. Multiple entries for the same row and column indices are not permitted. The routine
f11zaf may be used to order the elements in this way.
- 5: – Integer arrayInput
- 6: – Integer arrayInput
-
On entry: the row and column indices of the nonzero elements supplied in array
a.
Constraints:
irow and
icol must satisfy the following constraints (which may be imposed by a call to
f11zaf):
- and , for ;
- either or both and , for .
- 7: – Real (Kind=nag_wp) arrayInput
-
On entry: the elements of the diagonal matrix , where is the diagonal part of .
- 8: – Real (Kind=nag_wp)Input
-
On entry: the relaxation parameter .
Constraint:
.
- 9: – Character(1)Input
-
On entry: specifies whether or not the CS representation of the matrix
should be checked.
- Checks are carried on the values of n, nnz, irow, icol and omega.
- None of these checks are carried out.
Constraint:
or .
- 10: – Real (Kind=nag_wp) arrayInput
-
On entry: the right-hand side vector .
- 11: – Real (Kind=nag_wp) arrayOutput
-
On exit: the solution vector .
- 12: – Integer arrayWorkspace
-
- 13: – 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, if you are not familiar with this argument, 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).
Errors or warnings detected by the routine:
-
On entry, | or , |
or | or . |
-
On entry, | , |
or | , |
or | , |
or | omega lies outside the interval , |
-
On entry, the arrays
irow and
icol fail to satisfy the following constraints:
- and , for ;
- or and , for .
Therefore a nonzero element has been supplied which does not lie in the matrix
, is out of order, or has duplicate row and column indices. Call
f11zaf to reorder and sum or remove duplicates.
-
On entry, the matrix has a zero diagonal element. The SSOR preconditioner is not appropriate for this problem.
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.
7
Accuracy
If
the computed solution
is the exact solution of a perturbed system of equations
, where
is a modest linear function of
, and
is the
machine precision. An equivalent result holds when
.
8
Parallelism and Performance
f11ddf is not threaded in any implementation.
The time taken for a call to
f11ddf is proportional to
nnz.
It is expected that a common use of
f11ddf will be to carry out the preconditioning step required in the application of
f11bef to sparse linear systems. In this situation
f11ddf is likely to be called many times with the same matrix
. In the interests of both reliability and efficiency, you are recommended to set
for the first of such calls, and for all subsequent calls set
.
10
Example
This example solves a sparse linear system of equations:
using RGMRES with SSOR preconditioning.
The RGMRES algorithm itself is implemented by the reverse communication routine
f11bef, which returns repeatedly to the calling program with various values of the argument
irevcm. This argument indicates the action to be taken by the calling program.
- If , a matrix-vector product is required. This is implemented by a call to f11xaf.
- If , a transposed matrix-vector product is required in the estimation of the norm of . This is implemented by a call to f11xaf.
- If , a solution of the preconditioning equation is required. This is achieved by a call to f11ddf.
- If , f11bef has completed its tasks. Either the iteration has terminated, or an error condition has arisen.
For further details see the routine document for
f11bef.
10.1
Program Text
Program Text (f11ddfe.f90)
10.2
Program Data
Program Data (f11ddfe.d)
10.3
Program Results
Program Results (f11ddfe.r)