f11drf solves a system of linear equations involving the preconditioning matrix corresponding to SSOR applied to a complex sparse non-Hermitian matrix, represented in coordinate storage format.
The routine may be called by the names f11drf or nagf_sparse_complex_gen_precon_ssor_solve.
3Description
f11drf solves a system of linear equations
according to the value of the argument trans, where the matrix
corresponds to symmetric successive-over-relaxation (SSOR) Young (1971) applied to a linear system , where is a complex sparse non-Hermitian 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 f11drf will be to carry out the preconditioning step required in the application of f11bsf to sparse linear systems. f11drf is also used for this purpose by the Black Box routine f11dsf.
4References
Young D (1971) Iterative Solution of Large Linear Systems Academic Press, New York
5Arguments
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: – Complex (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 f11znf 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 a.
Constraints:
irow and icol must satisfy the following constraints (which may be imposed by a call to f11znf):
and , for ;
either or both and , for .
7: – Complex (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.
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. When the value or 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).
6Error 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 : .
On entry, or : .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, and .
Constraint: .
On entry, .
Constraint:
On entry, is out of order: .
On entry, , and .
Constraint: and .
On entry, , and .
Constraint: and .
On entry, the location () is a duplicate: .
A nonzero element has been supplied which does not lie in the matrix , is out of order, or has duplicate row and column indices. Consider calling f11znf to reorder and sum or remove duplicates.
The matrix has no diagonal entry in row .
The SSOR preconditioner is not appropriate for this problem.
An unexpected error has been triggered by this routine. Please
contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
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 .
8Parallelism and Performance
f11drf is not threaded in any implementation.
9Further Comments
9.1Timing
The time taken for a call to f11drf is proportional to nnz.
It is expected that a common use of f11drf will be to carry out the preconditioning step required in the application of f11bsf to sparse linear systems. In this situation f11drf 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.
10Example
This example solves a complex sparse linear system of equations
using RGMRES with SSOR preconditioning.
The RGMRES algorithm itself is implemented by the reverse communication routine f11bsf, 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 f11xnf.
If , a conjugate transposed matrix-vector product is required in the estimation of the norm of . This is implemented by a call to f11xnf.
If , a solution of the preconditioning equation is required. This is achieved by a call to f11drf.
If , f11bsf has completed its tasks. Either the iteration has terminated, or an error condition has arisen.
For further details see the routine document for f11bsf.