NAG Library Routine Document
F11DDF
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
SUBROUTINE F11DDF ( |
TRANS, N, NNZ, A, IROW, ICOL, RDIAG, OMEGA, CHECK, Y, X, IWORK, IFAIL) |
INTEGER |
N, NNZ, IROW(NNZ), ICOL(NNZ), IWORK(2*N+1), IFAIL |
REAL (KIND=nag_wp) |
A(NNZ), RDIAG(N), OMEGA, Y(N), X(N) |
CHARACTER(1) |
TRANS, CHECK |
|
3 Description
F11DDF solves a system of linear equations
according to the value of the parameter
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 9. 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 Parameters
- 1: TRANS – CHARACTER(1)Input
On entry: specifies whether or not the matrix
is transposed.
- is solved.
- is solved.
Constraint:
or .
- 2: N – INTEGERInput
On entry: , the order of the matrix .
Constraint:
.
- 3: NNZ – INTEGERInput
On entry: the number of nonzero elements in the matrix .
Constraint:
.
- 4: A(NNZ) – 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: IROW(NNZ) – INTEGER arrayInput
- 6: ICOL(NNZ) – 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: RDIAG(N) – REAL (KIND=nag_wp) arrayInput
On entry: the elements of the diagonal matrix , where is the diagonal part of .
- 8: OMEGA – REAL (KIND=nag_wp)Input
On entry: the relaxation parameter .
Constraint:
.
- 9: CHECK – 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: Y(N) – REAL (KIND=nag_wp) arrayInput
On entry: the right-hand side vector .
- 11: X(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the solution vector .
- 12: IWORK() – INTEGER arrayWorkspace
- 13: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. 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
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, 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.
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
.
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
.
9 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 parameter
IREVCM. This parameter 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.
9.1 Program Text
Program Text (f11ddfe.f90)
9.2 Program Data
Program Data (f11ddfe.d)
9.3 Program Results
Program Results (f11ddfe.r)