Reference documentation for deal.II version 9.0.0
|
#include <deal.II/lac/precondition.h>
Public Types | |
typedef void(MatrixType::* | function_ptr) (VectorType &, const VectorType &) const |
Public Member Functions | |
PreconditionUseMatrix (const MatrixType &M, const function_ptr method) | |
void | vmult (VectorType &dst, const VectorType &src) const |
Public Member Functions inherited from Subscriptor | |
Subscriptor () | |
Subscriptor (const Subscriptor &) | |
Subscriptor (Subscriptor &&) noexcept | |
virtual | ~Subscriptor () |
Subscriptor & | operator= (const Subscriptor &) |
Subscriptor & | operator= (Subscriptor &&) noexcept |
void | subscribe (const char *identifier=nullptr) const |
void | unsubscribe (const char *identifier=nullptr) const |
unsigned int | n_subscriptions () const |
void | list_subscribers () const |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Private Attributes | |
const MatrixType & | matrix |
const function_ptr | precondition |
Additional Inherited Members | |
Static Public Member Functions inherited from Subscriptor | |
static ::ExceptionBase & | ExcInUse (int arg1, std::string arg2, std::string arg3) |
static ::ExceptionBase & | ExcNoSubscriber (std::string arg1, std::string arg2) |
Preconditioner using a matrix-builtin function. This class forms a preconditioner suitable for the LAC solver classes. Since many preconditioning methods are based on matrix entries, these have to be implemented as member functions of the underlying matrix implementation. This class now is intended to allow easy access to these member functions from LAC solver classes.
It seems that all builtin preconditioners have a relaxation parameter, so please use PreconditionRelaxation for these.
You will usually not want to create a named object of this type, although possible. The most common use is like this:
This creates an unnamed object to be passed as the fourth parameter to the solver function of the SolverGMRES class. It assumes that the SparseMatrix class has a function precondition_Jacobi
taking two vectors (source and destination) as parameters (Actually, there is no function like that, the existing function takes a third parameter, denoting the relaxation parameter; this example is therefore only meant to illustrate the general idea).
Note that due to the default template parameters, the above example could be written shorter as follows:
Definition at line 338 of file precondition.h.
typedef void( MatrixType::* PreconditionUseMatrix< MatrixType, VectorType >::function_ptr) (VectorType &, const VectorType &) const |
Type of the preconditioning function of the matrix.
Definition at line 344 of file precondition.h.
PreconditionUseMatrix< MatrixType, VectorType >::PreconditionUseMatrix | ( | const MatrixType & | M, |
const function_ptr | method | ||
) |
Constructor. This constructor stores a reference to the matrix object for later use and selects a preconditioning method, which must be a member function of that matrix.
void PreconditionUseMatrix< MatrixType, VectorType >::vmult | ( | VectorType & | dst, |
const VectorType & | src | ||
) | const |
Execute preconditioning. Calls the function passed to the constructor of this object with the two arguments given here.
|
private |
Pointer to the matrix in use.
Definition at line 365 of file precondition.h.
|
private |
Pointer to the preconditioning function.
Definition at line 370 of file precondition.h.