Reference documentation for deal.II version 9.0.0
|
#include <deal.II/multigrid/mg_smoother.h>
Public Member Functions | |
MGSmoother (const unsigned int steps=1, const bool variable=false, const bool symmetric=false, const bool transpose=false) | |
void | set_steps (const unsigned int) |
void | set_variable (const bool) |
void | set_symmetric (const bool) |
void | set_transpose (const bool) |
void | set_debug (const unsigned int level) |
Public Member Functions inherited from MGSmootherBase< VectorType > | |
virtual | ~MGSmootherBase ()=default |
virtual void | clear ()=0 |
virtual void | smooth (const unsigned int level, VectorType &u, const VectorType &rhs) const =0 |
virtual void | apply (const unsigned int level, VectorType &u, const VectorType &rhs) 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) |
Protected Attributes | |
GrowingVectorMemory< VectorType > | vector_memory |
unsigned int | steps |
bool | variable |
bool | symmetric |
bool | transpose |
unsigned int | debug |
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) |
A base class for smoother handling information on smoothing. While not adding to the abstract interface in MGSmootherBase, this class stores information on the number and type of smoothing steps, which in turn can be used by a derived class.
Definition at line 46 of file mg_smoother.h.
MGSmoother< VectorType >::MGSmoother | ( | const unsigned int | steps = 1 , |
const bool | variable = false , |
||
const bool | symmetric = false , |
||
const bool | transpose = false |
||
) |
Constructor.
void MGSmoother< VectorType >::set_steps | ( | const unsigned | int | ) |
Modify the number of smoothing steps on finest level.
void MGSmoother< VectorType >::set_variable | ( | const bool | ) |
Switch on/off variable smoothing.
void MGSmoother< VectorType >::set_symmetric | ( | const bool | ) |
Switch on/off symmetric smoothing.
void MGSmoother< VectorType >::set_transpose | ( | const bool | ) |
Switch on/off transposed smoothing. The effect is overridden by set_symmetric().
void MGSmoother< VectorType >::set_debug | ( | const unsigned int | level | ) |
Set debug
to a nonzero value to get debug information logged to deallog
. Increase to get more information
|
mutableprotected |
A memory object to be used for temporary vectors.
The object is marked as mutable since we will need to use it to allocate temporary vectors also in functions that are const.
Definition at line 91 of file mg_smoother.h.
|
protected |
Number of smoothing steps on the finest level. If no variable smoothing is chosen, this is the number of steps on all levels.
Definition at line 97 of file mg_smoother.h.
|
protected |
Variable smoothing: double the number of smoothing steps whenever going to the next coarser level
Definition at line 103 of file mg_smoother.h.
|
protected |
Symmetric smoothing: in the smoothing iteration, alternate between the relaxation method and its transpose.
Definition at line 109 of file mg_smoother.h.
|
protected |
Use the transpose of the relaxation method instead of the method itself. This has no effect if symmetric smoothing is chosen.
Definition at line 115 of file mg_smoother.h.
|
protected |
Output debugging information to deallog
if this is nonzero.
Definition at line 120 of file mg_smoother.h.