![]() |
Reference documentation for deal.II version 9.4.0
|
#include <deal.II/lac/precondition.h>
Public Types | |
using | AdditionalData = typename BaseClass::AdditionalData |
using | size_type = types::global_dof_index |
Public Member Functions | |
void | initialize (const MatrixType &A, const AdditionalData ¶meters=AdditionalData()) |
void | initialize (const SparseMatrix< double > &A, const AdditionalData ¶meters=AdditionalData()) |
void | clear () |
size_type | m () const |
size_type | n () const |
void | vmult (VectorType &, const VectorType &) const |
void | Tvmult (VectorType &, const VectorType &) const |
void | step (VectorType &x, const VectorType &rhs) const |
void | Tstep (VectorType &x, const VectorType &rhs) const |
Protected Attributes | |
SmartPointer< const SparseMatrix< double >, PreconditionRelaxation< SparseMatrix< double > > > | A |
double | relaxation |
unsigned int | n_iterations |
std::shared_ptr< internal::PreconditionRelaxation::PreconditionJacobiImpl< SparseMatrix< double > > > | preconditioner |
Private Types | |
using | PreconditionerType = internal::PreconditionRelaxation::PreconditionJacobiImpl< MatrixType > |
using | BaseClass = PreconditionRelaxation< MatrixType, PreconditionerType > |
Subscriptor functionality | |
Classes derived from Subscriptor provide a facility to subscribe to this object. This is mostly used by the SmartPointer class. | |
using | map_value_type = decltype(counter_map)::value_type |
using | map_iterator = decltype(counter_map)::iterator |
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) |
std::atomic< unsigned int > | counter |
std::map< std::string, unsigned int > | counter_map |
std::vector< std::atomic< bool > * > | validity_pointers |
const std::type_info * | object_info |
static std::mutex | mutex |
static ::ExceptionBase & | ExcInUse (int arg1, std::string arg2, std::string arg3) |
static ::ExceptionBase & | ExcNoSubscriber (std::string arg1, std::string arg2) |
void | check_no_subscribers () const noexcept |
Jacobi preconditioner using matrix built-in function. The MatrixType
class used is required to have a function precondition_Jacobi(VectorType&, const VectorType&, double
). This class satisfies the relaxation concept.
Definition at line 1132 of file precondition.h.
|
inherited |
Declare type for container size.
Definition at line 410 of file precondition.h.
|
inherited |
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.
|
inherited |
Release the matrix and reset its pointer.
|
inherited |
Return the dimension of the codomain (or range) space. Note that the matrix is of dimension \(m \times n\).
|
inherited |
Return the dimension of the domain space. Note that the matrix is of dimension \(m \times n\).
|
inherited |
Apply preconditioner.
|
inherited |
Apply transpose preconditioner. Since this is a symmetric preconditioner, this function is the same as vmult().
|
inherited |
Perform one step of the preconditioned Richardson iteration
|
inherited |
Perform one transposed step of the preconditioned Richardson iteration.
|
protectedinherited |
Pointer to the matrix object.
Definition at line 503 of file precondition.h.
|
protectedinherited |
Relaxation parameter.
Definition at line 508 of file precondition.h.
|
protectedinherited |
Number of smoothing steps to be performed.
Definition at line 513 of file precondition.h.
|
protectedinherited |
Definition at line 518 of file precondition.h.