NAG Library Routine Document
F11DQF
1 Purpose
F11DQF solves a complex sparse non-Hermitian system of linear equations, represented in coordinate storage format, using a restarted generalized minimal residual (RGMRES), conjugate gradient squared (CGS), stabilized bi-conjugate gradient (Bi-CGSTAB), or transpose-free quasi-minimal residual (TFQMR) method, with incomplete preconditioning.
2 Specification
SUBROUTINE F11DQF ( |
METHOD, N, NNZ, A, LA, IROW, ICOL, IPIVP, IPIVQ, ISTR, IDIAG, B, M, TOL, MAXITN, X, RNORM, ITN, WORK, LWORK, IFAIL) |
INTEGER |
N, NNZ, LA, IROW(LA), ICOL(LA), IPIVP(N), IPIVQ(N), ISTR(N+1), IDIAG(N), M, MAXITN, ITN, LWORK, IFAIL |
REAL (KIND=nag_wp) |
TOL, RNORM |
COMPLEX (KIND=nag_wp) |
A(LA), B(N), X(N), WORK(LWORK) |
CHARACTER(*) |
METHOD |
|
3 Description
F11DQF solves a complex sparse non-Hermitian linear system of equations
using a preconditioned RGMRES (see
Saad and Schultz (1986)), CGS (see
Sonneveld (1989)), Bi-CGSTAB(
) (see
Van der Vorst (1989) and
Sleijpen and Fokkema (1993)), or TFQMR (see
Freund and Nachtigal (1991) and
Freund (1993)) method.
F11DQF uses the incomplete
factorization determined by
F11DNF as the preconditioning matrix. A call to F11DQF must always be preceded by a call to
F11DNF. Alternative preconditioners for the same storage scheme are available by calling
F11DSF.
The matrix
, and the preconditioning matrix
, are represented in coordinate storage (CS) format (see
Section 2.1.1 in the F11 Chapter Introduction) in the arrays
A,
IROW and
ICOL, as returned from
F11DNF. The array
A holds the nonzero entries in these matrices, while
IROW and
ICOL hold the corresponding row and column indices.
F11DQF is a Black Box routine which calls
F11BRF,
F11BSF and
F11BTF. If you wish to use an alternative storage scheme, preconditioner, or termination criterion, or require additional diagnostic information, you should call these underlying routines directly.
4 References
Freund R W (1993) A transpose-free quasi-minimal residual algorithm for non-Hermitian linear systems SIAM J. Sci. Comput. 14 470–482
Freund R W and Nachtigal N (1991) QMR: a Quasi-Minimal Residual Method for Non-Hermitian Linear Systems Numer. Math. 60 315–339
Saad Y and Schultz M (1986) GMRES: a generalized minimal residual algorithm for solving nonsymmetric linear systems SIAM J. Sci. Statist. Comput. 7 856–869
Sleijpen G L G and Fokkema D R (1993) BiCGSTAB for linear equations involving matrices with complex spectrum ETNA 1 11–32
Sonneveld P (1989) CGS, a fast Lanczos-type solver for nonsymmetric linear systems SIAM J. Sci. Statist. Comput. 10 36–52
Van der Vorst H (1989) Bi-CGSTAB, a fast and smoothly converging variant of Bi-CG for the solution of nonsymmetric linear systems SIAM J. Sci. Statist. Comput. 13 631–644
5 Parameters
- 1: METHOD – CHARACTER(*)Input
On entry: specifies the iterative method to be used.
- Restarted generalized minimum residual method.
- Conjugate gradient squared method.
- Bi-conjugate gradient stabilized () method.
- Transpose-free quasi-minimal residual method.
Constraint:
, , or .
- 2: N – INTEGERInput
On entry:
, the order of the matrix
. This
must be the same value as was supplied in the preceding call to
F11DNF.
Constraint:
.
- 3: NNZ – INTEGERInput
On entry: the number of nonzero elements in the matrix
. This
must be the same value as was supplied in the preceding call to
F11DNF.
Constraint:
.
- 4: A(LA) – COMPLEX (KIND=nag_wp) arrayInput
On entry: the values returned in the array
A by a previous call to
F11DNF.
- 5: LA – INTEGERInput
On entry: the dimension of the arrays
A,
IROW and
ICOL as declared in the (sub)program from which F11DQF is called. This
must be the same value as was supplied in the preceding call to
F11DNF.
Constraint:
.
- 6: IROW(LA) – INTEGER arrayInput
- 7: ICOL(LA) – INTEGER arrayInput
- 8: IPIVP(N) – INTEGER arrayInput
- 9: IPIVQ(N) – INTEGER arrayInput
- 10: ISTR() – INTEGER arrayInput
- 11: IDIAG(N) – INTEGER arrayInput
On entry: the values returned in arrays
IROW,
ICOL,
IPIVP,
IPIVQ,
ISTR and
IDIAG by a previous call to
F11DNF.
IPIVP and
IPIVQ are restored on exit.
- 12: B(N) – COMPLEX (KIND=nag_wp) arrayInput
On entry: the right-hand side vector .
- 13: M – INTEGERInput
On entry: if
,
M is the dimension of the restart subspace.
If
,
M is the order
of the polynomial Bi-CGSTAB method.
Otherwise,
M is not referenced.
Constraints:
- if , ;
- if , .
- 14: TOL – REAL (KIND=nag_wp)Input
On entry: the required tolerance. Let
denote the approximate solution at iteration
, and
the corresponding residual. The algorithm is considered to have converged at iteration
if
If
,
is used, where
is the
machine precision. Otherwise
is used.
Constraint:
.
- 15: MAXITN – INTEGERInput
On entry: the maximum number of iterations allowed.
Constraint:
.
- 16: X(N) – COMPLEX (KIND=nag_wp) arrayInput/Output
On entry: an initial approximation to the solution vector .
On exit: an improved approximation to the solution vector .
- 17: RNORM – REAL (KIND=nag_wp)Output
On exit: the final value of the residual norm
, where
is the output value of
ITN.
- 18: ITN – INTEGEROutput
On exit: the number of iterations carried out.
- 19: WORK(LWORK) – COMPLEX (KIND=nag_wp) arrayWorkspace
- 20: LWORK – INTEGERInput
On entry: the dimension of the array
WORK as declared in the (sub)program from which F11DQF is called.
Constraints:
- if , ;
- if , ;
- if , ;
- if , .
- 21: 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 'TFQMR', |
or | , |
or | , |
or | , |
or | , |
or | and or , |
or | , with , |
or | , with , |
or | , |
or | , |
or | LWORK too small. |
On entry, the CS representation of
is invalid. Further details are given in the error message. Check that the call to F11DQF has been preceded by a valid call to
F11DNF, and that the arrays
A,
IROW, and
ICOL have not been corrupted between the two calls.
On entry, the CS representation of the preconditioning matrix
is invalid. Further details are given in the error message. Check that the call to F11DQF has been preceded by a valid call to
F11DNF and that the arrays
A,
IROW,
ICOL,
IPIVP,
IPIVQ,
ISTR and
IDIAG have not been corrupted between the two calls.
The required accuracy could not be obtained. However, a reasonable accuracy may have been obtained, and further iterations could not improve the result. You should check the output value of
RNORM for acceptability. This error code usually implies that your problem has been fully and satisfactorily solved to within or close to the accuracy available on your system. Further iterations are unlikely to improve on this situation.
Required accuracy not obtained in
MAXITN iterations.
Algorithmic breakdown. A solution is returned, although it is possible that it is completely inaccurate.
- (F11BRF, F11BSF or F11BTF)
A serious error has occurred in an internal call to one of the specified routines. Check all subroutine calls and array sizes. Seek expert help.
7 Accuracy
On successful termination, the final residual
, where
, satisfies the termination criterion
The value of the final residual norm is returned in
RNORM.
The time taken by F11DQF for each iteration is roughly proportional to the value of
NNZC returned from the preceding call to
F11DNF.
The number of iterations required to achieve a prescribed accuracy cannot be easily determined a priori, as it can depend dramatically on the conditioning and spectrum of the preconditioned coefficient matrix .
9 Example
This example solves a complex sparse non-Hermitian linear system of equations using the CGS method, with incomplete preconditioning.
9.1 Program Text
Program Text (f11dqfe.f90)
9.2 Program Data
Program Data (f11dqfe.d)
9.3 Program Results
Program Results (f11dqfe.r)