Reference documentation for deal.II version 8.5.1
|
#include <deal.II/lac/iterative_inverse.h>
Public Member Functions | |
template<typename MatrixType , typename PreconditionerType > | |
void | initialize (const MatrixType &, const PreconditionerType &) |
void | clear () |
void | vmult (VectorType &dst, const VectorType &src) const |
template<class OtherVectorType > | |
void | vmult (OtherVectorType &dst, const OtherVectorType &src) const |
Public Member Functions inherited from Subscriptor | |
Subscriptor () | |
Subscriptor (const Subscriptor &) | |
Subscriptor (Subscriptor &&) | |
virtual | ~Subscriptor () |
Subscriptor & | operator= (const Subscriptor &) |
Subscriptor & | operator= (Subscriptor &&) |
void | subscribe (const char *identifier=0) const |
void | unsubscribe (const char *identifier=0) const |
unsigned int | n_subscriptions () const |
void | list_subscribers () const |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Public Attributes | |
SolverSelector< VectorType > | solver |
Private Attributes | |
std_cxx11::shared_ptr< PointerMatrixBase< VectorType > > | matrix |
std_cxx11::shared_ptr< PointerMatrixBase< VectorType > > | preconditioner |
Additional Inherited Members | |
Static Public Member Functions inherited from Subscriptor | |
static ::ExceptionBase & | ExcInUse (int arg1, char *arg2, std::string &arg3) |
static ::ExceptionBase & | ExcNoSubscriber (char *arg1, char *arg2) |
Implementation of the inverse of a matrix, using an iterative method.
The function vmult() of this class starts an iterative solver in order to approximate the action of the inverse matrix.
Krylov space methods like SolverCG or SolverBicgstab become inefficient if solution down to machine accuracy is needed. This is due to the fact, that round-off errors spoil the orthogonality of the vector sequences. Therefore, a nested iteration of two methods is proposed: The outer method is SolverRichardson, since it is robust with respect to round-of errors. The inner loop is an appropriate Krylov space method, since it is fast.
Each time we call the inner loop, reduction of the residual by a factor 1.e-2
is attempted. Since the right hand side vector of the inner iteration is the residual of the outer loop, the relative errors are far from machine accuracy, even if the errors of the outer loop are in the range of machine accuracy.
Definition at line 79 of file iterative_inverse.h.
|
inline |
Initialization function. Provide a matrix and preconditioner for the solve in vmult().
Definition at line 130 of file iterative_inverse.h.
|
inline |
Delete the pointers to matrix and preconditioner.
Definition at line 141 of file iterative_inverse.h.
|
inline |
Solve for right hand side src
.
Definition at line 150 of file iterative_inverse.h.
|
inline |
Solve for right hand side src
, but allow for the fact that the vectors given to this function have different type from the vectors used by the inner solver.
Definition at line 162 of file iterative_inverse.h.
SolverSelector<VectorType> IterativeInverse< VectorType >::solver |
The solver, which allows selection of the actual solver as well as adjustment of parameters.
Definition at line 111 of file iterative_inverse.h.
|
private |
The matrix in use.
Definition at line 117 of file iterative_inverse.h.
|
private |
The preconditioner to use.
Definition at line 122 of file iterative_inverse.h.