![]() |
Reference documentation for deal.II version 9.2.0
|
#include <deal.II/lac/precondition.h>
Public Types | |
| using | AdditionalData = typename PreconditionRelaxation< MatrixType >::AdditionalData |
| using | size_type = typename MatrixType::size_type |
| using | BaseClass = PreconditionRelaxation< MatrixType > |
Public Types inherited from PreconditionRelaxation< MatrixType > | |
| using | size_type = typename MatrixType::size_type |
Public Member Functions | |
| void | initialize (const MatrixType &A, const typename BaseClass::AdditionalData ¶meters=typename BaseClass::AdditionalData()) |
| template<class VectorType > | |
| void | vmult (VectorType &, const VectorType &) const |
| template<class VectorType > | |
| void | Tvmult (VectorType &, const VectorType &) const |
| template<class VectorType > | |
| void | step (VectorType &x, const VectorType &rhs) const |
| template<class VectorType > | |
| void | Tstep (VectorType &x, const VectorType &rhs) const |
Public Member Functions inherited from PreconditionRelaxation< MatrixType > | |
| void | initialize (const MatrixType &A, const AdditionalData ¶meters=AdditionalData()) |
| void | clear () |
| size_type | m () const |
| size_type | n () 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 (std::atomic< bool > *const validity, const std::string &identifier="") const |
| void | unsubscribe (std::atomic< bool > *const validity, const std::string &identifier="") const |
| unsigned int | n_subscriptions () const |
| template<typename StreamType > | |
| void | list_subscribers (StreamType &stream) const |
| void | list_subscribers () const |
| template<class Archive > | |
| void | serialize (Archive &ar, const unsigned int version) |
Private Attributes | |
| std::vector< std::size_t > | pos_right_of_diagonal |
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) |
Protected Attributes inherited from PreconditionRelaxation< MatrixType > | |
| SmartPointer< const MatrixType, PreconditionRelaxation< MatrixType > > | A |
| double | relaxation |
SSOR preconditioner using matrix built-in function. The MatrixType class used is required to have a function precondition_SSOR(VectorType&, const VectorType&, double). This class satisfies the relaxation concept.
Definition at line 665 of file precondition.h.
| using PreconditionSSOR< MatrixType >::AdditionalData = typename PreconditionRelaxation<MatrixType>::AdditionalData |
An alias to the base class AdditionalData.
Definition at line 672 of file precondition.h.
| using PreconditionSSOR< MatrixType >::size_type = typename MatrixType::size_type |
Declare type for container size.
Definition at line 677 of file precondition.h.
| using PreconditionSSOR< MatrixType >::BaseClass = PreconditionRelaxation<MatrixType> |
An alias to the base class.
Definition at line 682 of file precondition.h.
| void PreconditionSSOR< MatrixType >::initialize | ( | const MatrixType & | A, |
| const typename BaseClass::AdditionalData & | parameters = typename BaseClass::AdditionalData() |
||
| ) |
Initialize matrix and relaxation parameter. The matrix is just stored in the preconditioner object. The relaxation parameter should be larger than zero and smaller than 2 for numerical reasons. It defaults to 1.
| void PreconditionSSOR< MatrixType >::vmult | ( | VectorType & | , |
| const VectorType & | |||
| ) | const |
Apply preconditioner.
| void PreconditionSSOR< MatrixType >::Tvmult | ( | VectorType & | , |
| const VectorType & | |||
| ) | const |
Apply transpose preconditioner. Since this is a symmetric preconditioner, this function is the same as vmult().
| void PreconditionSSOR< MatrixType >::step | ( | VectorType & | x, |
| const VectorType & | rhs | ||
| ) | const |
Perform one step of the preconditioned Richardson iteration
| void PreconditionSSOR< MatrixType >::Tstep | ( | VectorType & | x, |
| const VectorType & | rhs | ||
| ) | const |
Perform one transposed step of the preconditioned Richardson iteration.
|
private |
An array that stores for each matrix row where the first position after the diagonal is located.
Definition at line 730 of file precondition.h.
1.8.13