NAG Library Routine Document
F11DXF
1 Purpose
F11DXF computes the approximate solution of a complex, Hermitian or non-Hermitian, sparse system of linear equations applying a number of Jacobi iterations. It is expected that F11DXF will be used as a preconditioner for the iterative solution of complex sparse systems of equations.
2 Specification
SUBROUTINE F11DXF ( |
STORE, TRANS, INIT, NITER, N, NNZ, A, IROW, ICOL, CHECK, B, X, DIAG, WORK, IFAIL) |
INTEGER |
NITER, N, NNZ, IROW(NNZ), ICOL(NNZ), IFAIL |
COMPLEX (KIND=nag_wp) |
A(NNZ), B(N), X(N), DIAG(N), WORK(N) |
CHARACTER(1) |
STORE, TRANS, INIT, CHECK |
|
3 Description
F11DXF computes the
approximate solution of the complex sparse system of linear equations
using
NITER iterations of the Jacobi algorithm (see also
Golub and Van Loan (1996) and
Young (1971)):
where
and
.
F11DXF can be used both for non-Hermitian and Hermitian systems of equations. For Hermitian matrices, either all nonzero elements of the matrix
can be supplied using coordinate storage (CS), or only the nonzero elements of the lower triangle of
, using symmetric coordinate storage (SCS) (see the
F11 Chapter Introduction).
It is expected that F11DXF will be used as a preconditioner for the iterative solution of complex sparse systems of equations, using either the suite comprising the routines
F11GRF,
F11GSF and
F11GTF, for Hermitian systems, or the suite comprising the routines
F11BRF,
F11BSF and
F11BTF, for non-Hermitian systems of equations.
4 References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Young D (1971) Iterative Solution of Large Linear Systems Academic Press, New York
5 Parameters
- 1: STORE – CHARACTER(1)Input
On entry: specifies whether the matrix
is stored using symmetric coordinate storage (SCS) (applicable only to a Hermitian matrix
) or coordinate storage (CS) (applicable to both Hermitian and non-Hermitian matrices).
- The complete matrix is stored in CS format.
- The lower triangle of the Hermitian matrix is stored in SCS format.
Constraint:
or .
- 2: TRANS – CHARACTER(1)Input
On entry: if
, specifies whether the approximate solution of
or of
is required.
- The approximate solution of is calculated.
- The approximate solution of is calculated.
Suggested value:
if the matrix is Hermitian and stored in CS format, it is recommended that for reasons of efficiency.
Constraint:
or .
- 3: INIT – CHARACTER(1)Input
On entry: on first entry,
INIT should be set to 'I', unless the diagonal elements of
are already stored in the array
DIAG. If
DIAG already contains the diagonal of
, it must be set to 'N'.
- DIAG must contain the diagonal of .
- DIAG will store the diagonal of on exit.
Suggested value:
on first entry;
, subsequently, unless
DIAG has been overwritten.
Constraint:
or .
- 4: NITER – INTEGERInput
On entry: the number of Jacobi iterations requested.
Constraint:
.
- 5: N – INTEGERInput
On entry: , the order of the matrix .
Constraint:
.
- 6: NNZ – INTEGERInput
On entry: if
, the number of nonzero elements in the matrix
.
If , the number of nonzero elements in the lower triangle of the matrix .
Constraints:
- if , ;
- if , .
- 7: A(NNZ) – COMPLEX (KIND=nag_wp) arrayInput
On entry: if
, the nonzero elements in the matrix
(CS format).
If , the nonzero elements in the lower triangle of the matrix (SCS format).
In both cases, the elements of either
or of its lower triangle must be ordered by increasing row index and by increasing column index within each row. Multiple entries for the same row and columns indices are not permitted. The routine
F11ZNF or
F11ZPF may be used to reorder the elements in this way for CS and SCS storage, respectively.
- 8: IROW(NNZ) – INTEGER arrayInput
- 9: ICOL(NNZ) – INTEGER arrayInput
On entry: if
, the row and column indices of the nonzero elements supplied in
A.
If
, the row and column indices of the nonzero elements of the lower triangle of the matrix
supplied in
A.
Constraints:
- , for ;
- if , , for ;
- if , , for ;
- either or both and , for .
- 10: CHECK – CHARACTER(1)Input
On entry: specifies whether or not the CS or SCS representation of the matrix
should be checked.
- Checks are carried out on the values of N, NNZ, IROW, ICOL; if , DIAG is also checked.
- None of these checks are carried out.
Constraint:
or .
- 11: B(N) – COMPLEX (KIND=nag_wp) arrayInput
On entry: the right-hand side vector .
- 12: X(N) – COMPLEX (KIND=nag_wp) arrayOutput
On exit: the approximate solution vector .
- 13: DIAG(N) – COMPLEX (KIND=nag_wp) arrayInput/Output
On entry: if , the diagonal elements of .
On exit: if
, unchanged on exit.
If , the diagonal elements of .
- 14: WORK(N) – COMPLEX (KIND=nag_wp) arrayWorkspace
- 15: 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 , |
or | or , |
or | or , |
or | . |
On entry, | , |
or | , |
or | , if , |
or | , if . |
On entry, the arrays
IROW and
ICOL fail to satisfy the following constraints:
- and
- if then , or
- if then , for .
- or and , for .
Therefore a nonzero element has been supplied which does not lie within the matrix
, is out of order, or has duplicate row and column indices. Call either
F11ZAF or
F11ZBF to reorder and sum or remove duplicates when
or
, respectively.
On entry,
and some diagonal elements of
stored in
DIAG are zero.
On entry, and some diagonal elements of are zero.
7 Accuracy
In general, the Jacobi method cannot be used on its own to solve systems of linear equations. The rate of convergence is bound by its spectral properties (see, for example,
Golub and Van Loan (1996)) and as a solver, the Jacobi method can only be applied to a limited set of matrices. One condition that guarantees convergence is strict diagonal dominance.
However, the Jacobi method can be used successfully as a preconditioner to a wider class of systems of equations. The Jacobi method has good vector/parallel properties, hence it can be applied very efficiently. Unfortunately, it is not possible to provide criteria which define the applicability of the Jacobi method as a preconditioner, and its usefulness must be judged for each case.
The time taken for a call to F11DXF is proportional to .
It is expected that a common use of F11DXF will be as preconditioner for the iterative solution of complex, Hermitian or non-Hermitian, linear systems. In this situation, F11DXF is likely to be called many times. In the interests of both reliability and efficiency, you are recommended to set for the first of such calls, and to set for all subsequent calls.
9 Example
This example solves the complex sparse non-Hermitian system of equations iteratively using F11DXF as a preconditioner.
9.1 Program Text
Program Text (f11dxfe.f90)
9.2 Program Data
Program Data (f11dxfe.d)
9.3 Program Results
Program Results (f11dxfe.r)