![]() |
Reference documentation for deal.II version 8.4.2
|
#include <deal.II/lac/precondition.h>
Classes | |
| class | AdditionalData |
Public Types | |
| typedef types::global_dof_index | size_type |
Public Member Functions | |
| PreconditionRichardson () | |
| void | initialize (const AdditionalData ¶meters) |
| template<typename MatrixType > | |
| void | initialize (const MatrixType &matrix, const AdditionalData ¶meters) |
| template<class VectorType > | |
| void | vmult (VectorType &, const VectorType &) const |
| template<class VectorType > | |
| void | Tvmult (VectorType &, const VectorType &) const |
| template<class VectorType > | |
| void | vmult_add (VectorType &, const VectorType &) const |
| template<class VectorType > | |
| void | Tvmult_add (VectorType &, const VectorType &) const |
| void | clear () |
| size_type | m () const |
| size_type | n () const |
Public Member Functions inherited from Subscriptor | |
| Subscriptor () | |
| Subscriptor (const Subscriptor &) | |
| virtual | ~Subscriptor () |
| Subscriptor & | operator= (const Subscriptor &) |
| void | subscribe (const char *identifier=0) const |
| void | unsubscribe (const char *identifier=0) const |
| unsigned int | n_subscriptions () const |
| void | list_subscribers () const |
| DeclException3 (ExcInUse, int, char *, std::string &,<< "Object of class "<< arg2<< " is still used by "<< arg1<< " other objects."<< "\"<< "(Additional information: "<< arg3<< ")\"<< "See the entry in the Frequently Asked Questions of "<< "deal.II (linked to from http://www.dealii.org/) for "<< "a lot more information on what this error means and "<< "how to fix programs in which it happens.") | |
| DeclException2 (ExcNoSubscriber, char *, char *,<< "No subscriber with identifier <"<< arg2<< "> subscribes to this object of class "<< arg1<< ". Consequently, it cannot be unsubscribed.") | |
| template<class Archive > | |
| void | serialize (Archive &ar, const unsigned int version) |
Private Attributes | |
| double | relaxation |
| size_type | n_rows |
| size_type | n_columns |
Preconditioning with Richardson's method. This preconditioner just scales the vector with a constant relaxation factor provided by the AdditionalData object.
In Krylov-space methods, this preconditioner should not have any effect. Using SolverRichardson, the two relaxation parameters will be just multiplied. Still, this class is useful in multigrid smoother objects (MGSmootherRelaxation).
Definition at line 182 of file precondition.h.
Declare type for container size.
Definition at line 188 of file precondition.h.
| PreconditionRichardson::PreconditionRichardson | ( | ) |
Constructor, sets the relaxation parameter, domain and range sizes to their default.
| void PreconditionRichardson::initialize | ( | const AdditionalData & | parameters | ) |
Change the relaxation parameter.
| void PreconditionRichardson::initialize | ( | const MatrixType & | matrix, |
| const AdditionalData & | parameters | ||
| ) |
Change the relaxation parameter in a way consistent with other preconditioners. The matrix argument is ignored and here just for compatibility with more complex preconditioners.
| void PreconditionRichardson::vmult | ( | VectorType & | , |
| const VectorType & | |||
| ) | const |
Apply preconditioner.
| void PreconditionRichardson::Tvmult | ( | VectorType & | , |
| const VectorType & | |||
| ) | const |
Apply transpose preconditioner. Since this is the identity, this function is the same as vmult().
| void PreconditionRichardson::vmult_add | ( | VectorType & | , |
| const VectorType & | |||
| ) | const |
Apply preconditioner, adding to the previous value.
| void PreconditionRichardson::Tvmult_add | ( | VectorType & | , |
| const VectorType & | |||
| ) | const |
Apply transpose preconditioner, adding. Since this is the identity, this function is the same as vmult_add().
|
inline |
This function is only present to provide the interface of a preconditioner to be handed to a smoother. This does nothing.
Definition at line 257 of file precondition.h.
| size_type PreconditionRichardson::m | ( | ) | const |
Return the dimension of the codomain (or range) space. To remember: the matrix is of dimension
.
| size_type PreconditionRichardson::n | ( | ) | const |
Return the dimension of the domain space. To remember: the matrix is of dimension
.
|
private |
The relaxation parameter multiplied with the vectors.
Definition at line 281 of file precondition.h.
|
private |
The dimension of the range space.
Definition at line 286 of file precondition.h.
|
private |
The dimension of the domain space.
Definition at line 291 of file precondition.h.
1.8.12