Reference documentation for deal.II version 9.1.1
|
#include <deal.II/lac/solver_selector.h>
Public Types | |
using | vector_type = VectorType |
Public Member Functions | |
SolverSelector ()=default | |
SolverSelector (const std::string &name, SolverControl &control) | |
virtual | ~SolverSelector () override=default |
template<class Matrix , class Preconditioner > | |
void | solve (const Matrix &A, VectorType &x, const VectorType &b, const Preconditioner &precond) const |
void | select (const std::string &name) |
void | set_control (SolverControl &ctrl) |
void | set_data (const typename SolverRichardson< VectorType >::AdditionalData &data) |
void | set_data (const typename SolverCG< VectorType >::AdditionalData &data) |
void | set_data (const typename SolverMinRes< VectorType >::AdditionalData &data) |
void | set_data (const typename SolverBicgstab< VectorType >::AdditionalData &data) |
void | set_data (const typename SolverGMRES< VectorType >::AdditionalData &data) |
void | set_data (const typename SolverFGMRES< VectorType >::AdditionalData &data) |
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) |
Static Public Member Functions | |
static std::string | get_solver_names () |
static ::ExceptionBase & | ExcSolverDoesNotExist (std::string arg1) |
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 | |
SmartPointer< SolverControl, SolverSelector< VectorType > > | control |
std::string | solver_name |
Private Attributes | |
SolverRichardson< VectorType >::AdditionalData | richardson_data |
SolverCG< VectorType >::AdditionalData | cg_data |
SolverMinRes< VectorType >::AdditionalData | minres_data |
SolverBicgstab< VectorType >::AdditionalData | bicgstab_data |
SolverGMRES< VectorType >::AdditionalData | gmres_data |
SolverFGMRES< VectorType >::AdditionalData | fgmres_data |
Selects a solver by changing a parameter.
By calling the solve
function of this SolverSelector
, it selects the solve
function of that Solver
that was specified in the constructor of this class.
The simplest use of this class is the following:
But the full usefulness of the SolverSelector
class is not clear until the presentation of the following example that assumes the user using the ParameterHandler
class and having declared a "solver" entry, e.g. with
Assuming that in the users parameter file there exists the line
then the constructor call in the above example can be written as
If at some time there exists a new solver "xyz" then the user does not need to change his program. Only in the implementation of the SolverSelector
the calling of this solver has to be added and each user with program lines quoted above only needs to 'set solver = xyz' in his parameter file to get access to that new solver.
Definition at line 91 of file solver_selector.h.
using SolverSelector< VectorType >::vector_type = VectorType |
An alias for the underlying vector type
Definition at line 97 of file solver_selector.h.
|
default |
Constructor, filling in default values
SolverSelector< VectorType >::SolverSelector | ( | const std::string & | name, |
SolverControl & | control | ||
) |
Constructor, selecting the solver name
and the SolverControl object control
already.
Definition at line 251 of file solver_selector.h.
|
overridevirtualdefault |
Destructor
void SolverSelector< VectorType >::solve | ( | const Matrix & | A, |
VectorType & | x, | ||
const VectorType & | b, | ||
const Preconditioner & | precond | ||
) | const |
Solver procedure. Calls the solve
function of the solver
whose SolverName
was specified in the constructor.
Definition at line 271 of file solver_selector.h.
void SolverSelector< VectorType >::select | ( | const std::string & | name | ) |
Select a new solver. Note that all solver names used in this class are all lower case.
Definition at line 261 of file solver_selector.h.
void SolverSelector< VectorType >::set_control | ( | SolverControl & | ctrl | ) |
Set a new SolverControl. This needs to be set before solving.
Definition at line 314 of file solver_selector.h.
void SolverSelector< VectorType >::set_data | ( | const typename SolverRichardson< VectorType >::AdditionalData & | data | ) |
Set the additional data. For more information see the Solver
class.
Definition at line 352 of file solver_selector.h.
void SolverSelector< VectorType >::set_data | ( | const typename SolverCG< VectorType >::AdditionalData & | data | ) |
Set the additional data. For more information see the Solver
class.
Definition at line 362 of file solver_selector.h.
void SolverSelector< VectorType >::set_data | ( | const typename SolverMinRes< VectorType >::AdditionalData & | data | ) |
Set the additional data. For more information see the Solver
class.
Definition at line 372 of file solver_selector.h.
void SolverSelector< VectorType >::set_data | ( | const typename SolverBicgstab< VectorType >::AdditionalData & | data | ) |
Set the additional data. For more information see the Solver
class.
Definition at line 382 of file solver_selector.h.
void SolverSelector< VectorType >::set_data | ( | const typename SolverGMRES< VectorType >::AdditionalData & | data | ) |
Set the additional data. For more information see the Solver
class.
Definition at line 332 of file solver_selector.h.
void SolverSelector< VectorType >::set_data | ( | const typename SolverFGMRES< VectorType >::AdditionalData & | data | ) |
Set the additional data. For more information see the Solver
class.
Definition at line 342 of file solver_selector.h.
|
static |
Get the names of all implemented solvers. The list of possible options includes:
Definition at line 323 of file solver_selector.h.
|
protected |
Stores the SolverControl
that is needed in the constructor of each Solver
class. This can be changed with set_control()
.
Definition at line 207 of file solver_selector.h.
|
protected |
Stores the name of the solver.
Definition at line 212 of file solver_selector.h.
|
private |
Stores the additional data.
Definition at line 218 of file solver_selector.h.
|
private |
Stores the additional data.
Definition at line 223 of file solver_selector.h.
|
private |
Stores the additional data.
Definition at line 228 of file solver_selector.h.
|
private |
Stores the additional data.
Definition at line 233 of file solver_selector.h.
|
private |
Stores the additional data.
Definition at line 238 of file solver_selector.h.
|
private |
Stores the additional data.
Definition at line 243 of file solver_selector.h.