dune-pdelab
2.5-dev
|
Nonoverlapping parallel BiCGStab solver preconditioned with AMG smoothed by SSOR. More...
#include <dune/pdelab/backend/istl/novlpistlsolverbackend.hh>
Public Member Functions | |
ISTLBackend_NOVLP_BCGS_AMG_SSOR (const GO &grid_operator, unsigned maxiter_=5000, int verbose_=1, bool reuse_=false, bool usesuperlu_=true) | |
void | setParameters (const Parameters ¶ms_) |
set AMG parameters More... | |
const Parameters & | parameters () const |
Get the parameters describing the behaviuour of AMG. More... | |
V::ElementType | norm (const V &v) const |
compute global norm of a vector More... | |
void | apply (M &A, V &z, V &r, typename Dune::template FieldTraits< typename V::ElementType >::real_type reduction) |
const ISTLAMGStatistics & | statistics () const |
Get statistics of the AMG solver (no of levels, timings). More... | |
const Dune::PDELab::LinearSolverResult< double > & | result () const |
Return access to result data. More... | |
Protected Attributes | |
Dune::PDELab::LinearSolverResult< double > | res |
Nonoverlapping parallel BiCGStab solver preconditioned with AMG smoothed by SSOR.
GO | The type of the grid operator (or the fakeGOTraits class for the old grid operator space). |
s | The bits to use for the global index. |
The solver uses AMG with underlying sequential SSOR preconditioner. The crucial step is to add up the matrix entries corresponding to the border vertices on each process. This is achieved by performing a VertexExchanger::sumEntries(Matrix&).
|
inline |
|
inlineinherited |
|
inlineinherited |
compute global norm of a vector
[in] | v | the given vector |
|
inlineinherited |
Get the parameters describing the behaviuour of AMG.
The returned object can be adjusted to ones needs and then can be reset using setParameters.
|
inlineinherited |
Return access to result data.
|
inlineinherited |
set AMG parameters
[in] | params_ | a parameter object of Type Dune::Amg::Parameters |
|
inlineinherited |
Get statistics of the AMG solver (no of levels, timings).
|
protectedinherited |