NAG FL Interface
f11jdf (real_symm_precon_ssor_solve)
1
Purpose
f11jdf solves a system of linear equations involving the preconditioning matrix corresponding to SSOR applied to a real sparse symmetric matrix, represented in symmetric coordinate storage format.
2
Specification
Fortran Interface
Subroutine f11jdf ( |
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(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) |
:: |
check |
|
C Header Interface
#include <nag.h>
void |
f11jdf_ (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_check) |
|
C++ Header Interface
#include <nag.h> extern "C" {
void |
f11jdf_ (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_check) |
}
|
The routine may be called by the names f11jdf or nagf_sparse_real_symm_precon_ssor_solve.
3
Description
f11jdf solves a system of equations
involving the preconditioning matrix
corresponding to symmetric successive-over-relaxation (SSOR) (see
Young (1971)) on a linear system
, where
is a sparse symmetric matrix stored in symmetric coordinate storage (SCS) format (see
Section 2.1.2 in the
F11 Chapter Introduction).
In the definition of given above is the diagonal part of , is the strictly lower triangular part of , and is a user-defined relaxation parameter.
It is envisaged that a common use of
f11jdf will be to carry out the preconditioning step required in the application of
f11gef to sparse linear systems. For an illustration of this use of
f11jdf see the example program given in
Section 10.1.
f11jdf is also used for this purpose by the Black Box routine
f11jef.
4
References
Young D (1971) Iterative Solution of Large Linear Systems Academic Press, New York
5
Arguments
-
1:
– Integer
Input
-
On entry: , the order of the matrix .
Constraint:
.
-
2:
– Integer
Input
-
On entry: the number of nonzero elements in the lower triangular part of .
Constraint:
.
-
3:
– Real (Kind=nag_wp) array
Input
-
On entry: the nonzero elements in the lower triangular part of 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
f11zbf may be used to order the elements in this way.
-
4:
– Integer array
Input
-
5:
– Integer array
Input
-
On entry: the row and column indices of the nonzero elements supplied in array
a.
Constraints:
irow and
icol must satisfy these constraints (which may be imposed by a call to
f11zbf):
- and , for ;
- or and , for .
-
6:
– Real (Kind=nag_wp) array
Input
-
On entry: the elements of the diagonal matrix , where is the diagonal part of .
-
7:
– Real (Kind=nag_wp)
Input
-
On entry: the relaxation parameter .
Constraint:
.
-
8:
– Character(1)
Input
-
On entry: specifies whether or not the input data should be checked.
- Checks are carried out on the values of n, nnz, irow, icol and omega.
- None of these checks are carried out.
Constraint:
or .
-
9:
– Real (Kind=nag_wp) array
Input
-
On entry: the right-hand side vector .
-
10:
– Real (Kind=nag_wp) array
Output
-
On exit: the solution vector .
-
11:
– Integer array
Workspace
-
-
12:
– Integer
Input/Output
-
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).
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 : .
-
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: .
Consider calling
f11zbf to reorder and sum or remove duplicates.
-
The matrix has no diagonal entry in row .
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.
7
Accuracy
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.
8
Parallelism and Performance
f11jdf is not threaded in any implementation.
The time taken for a call to
f11jdf is proportional to
nnz.
It is expected that a common use of
f11jdf will be to carry out the preconditioning step required in the application of
f11gef to sparse symmetric linear systems. In this situation
f11jdf 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 to set
for all subsequent calls.
10
Example
This example solves a sparse symmetric linear system of equations
using the conjugate-gradient (CG) method with SSOR preconditioning.
The CG algorithm itself is implemented by the reverse communication routine
f11gef, 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 f11xef.
- If , a solution of the preconditioning equation is required. This is achieved by a call to f11jdf.
- If , f11gef has completed its tasks. Either the iteration has terminated, or an error condition has arisen.
For further details see the routine document for
f11gef.
10.1
Program Text
10.2
Program Data
10.3
Program Results