dune-istl 2.9.0
Loading...
Searching...
No Matches
Public Types | Public Member Functions | List of all members
Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA > Class Template Reference

Sequential overlapping Schwarz preconditioner. More...

#include <dune/istl/overlappingschwarz.hh>

Inheritance diagram for Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >:
Inheritance graph

Public Types

typedefmatrix_type
 The type of the matrix to precondition.
 
typedefdomain_type
 The domain type of the preconditioner.
 
typedefrange_type
 The range type of the preconditioner.
 
typedef TM Mode
 The mode (additive or multiplicative) of the Schwarz method.
 
typedef X::field_type field_type
 The field type of the preconditioner.
 
typedef matrix_type::size_type size_type
 The return type of the size method.
 
typedef TA allocator
 The allocator to use.
 
typedef std::set< size_type, std::less< size_type >, typename std::allocator_traits< TA >::template rebind_alloc< size_type > > subdomain_type
 The type for the subdomain to row index mapping.
 
typedef std::vector< subdomain_type, typename std::allocator_traits< TA >::template rebind_alloc< subdomain_type > > subdomain_vector
 The vector type containing the subdomain to row index mapping.
 
typedef SLList< size_type, typename std::allocator_traits< TA >::template rebind_alloc< size_type > > subdomain_list
 The type for the row to subdomain mapping.
 
typedef std::vector< subdomain_list, typename std::allocator_traits< TA >::template rebind_alloc< subdomain_list > > rowtodomain_vector
 The vector type containing the row index to subdomain mapping.
 
typedef TD slu
 The type for the subdomain solver in use.
 
typedef std::vector< slu, typename std::allocator_traits< TA >::template rebind_alloc< slu > > slu_vector
 The vector type containing subdomain solvers.
 

Public Member Functions

 SeqOverlappingSchwarz (const matrix_type &mat, const subdomain_vector &subDomains, field_type relaxationFactor=1, bool onTheFly_=true)
 Construct the overlapping Schwarz method.
 
 SeqOverlappingSchwarz (const matrix_type &mat, const rowtodomain_vector &rowToDomain, field_type relaxationFactor=1, bool onTheFly_=true)
 
virtual void pre (X &x, X &b)
 Prepare the preconditioner.
 
virtual void apply (X &v, const X &d)
 Apply the precondtioner.
 
virtual void post (X &x)
 Postprocess the preconditioner.
 
template<bool forward>
void apply (X &v, const X &d)
 Apply one step of the preconditioner to the system A(v)=d.
 
virtual SolverCategory::Category category () const
 Category of the preconditioner (see SolverCategory::Category)
 

Detailed Description

template<class M, class X, class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
class Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >

Sequential overlapping Schwarz preconditioner.

Template Parameters
MThe matrix type.
XThe range and domain type.
TMThe Schwarz mode. Currently supported modes are AdditiveSchwarzMode, MultiplicativeSchwarzMode, and SymmetricMultiplicativeSchwarzMode. (Default values is AdditiveSchwarzMode)
TDThe type of the local subdomain solver to be used.
TAThe type of the allocator to use.

Member Typedef Documentation

◆ allocator

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef TA Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::allocator

The allocator to use.

◆ domain_type

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef X Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::domain_type

The domain type of the preconditioner.

◆ field_type

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef X::field_type Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::field_type

The field type of the preconditioner.

◆ matrix_type

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef M Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::matrix_type

The type of the matrix to precondition.

◆ Mode

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef TM Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::Mode

The mode (additive or multiplicative) of the Schwarz method.

Either AdditiveSchwarzMode or MultiplicativeSchwarzMode

◆ range_type

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef X Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::range_type

The range type of the preconditioner.

◆ rowtodomain_vector

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef std::vector<subdomain_list, typename std::allocator_traits<TA>::template rebind_alloc<subdomain_list> > Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::rowtodomain_vector

The vector type containing the row index to subdomain mapping.

◆ size_type

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef matrix_type::size_type Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::size_type

The return type of the size method.

◆ slu

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef TD Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::slu

The type for the subdomain solver in use.

◆ slu_vector

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef std::vector<slu, typename std::allocator_traits<TA>::template rebind_alloc<slu> > Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::slu_vector

The vector type containing subdomain solvers.

◆ subdomain_list

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef SLList<size_type, typename std::allocator_traits<TA>::template rebind_alloc<size_type> > Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::subdomain_list

The type for the row to subdomain mapping.

◆ subdomain_type

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef std::set<size_type, std::less<size_type>, typename std::allocator_traits<TA>::template rebind_alloc<size_type> > Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::subdomain_type

The type for the subdomain to row index mapping.

◆ subdomain_vector

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
typedef std::vector<subdomain_type, typename std::allocator_traits<TA>::template rebind_alloc<subdomain_type> > Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::subdomain_vector

The vector type containing the subdomain to row index mapping.

Member Function Documentation

◆ category()

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
virtual SolverCategory::Category Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::category ( ) const
inlinevirtual

Category of the preconditioner (see SolverCategory::Category)

Implements Dune::Preconditioner< X, X >.

◆ post()

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
virtual void Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::post ( X &  x)
inlinevirtual

Postprocess the preconditioner.

Clean up.

This method is called after the last apply call for the linear system to be solved. Memory may be deallocated safely here. x is the solution of the linear equation.

Parameters
xThe right hand side of the equation.

Implements Dune::Preconditioner< X, X >.

◆ pre()

template<class M , class X , class TM = AdditiveSchwarzMode, class TD = ILU0SubdomainSolver<M,X,X>, class TA = std::allocator<X>>
virtual void Dune::SeqOverlappingSchwarz< M, X, TM, TD, TA >::pre ( X &  x,
X &  b 
)
inlinevirtual

Prepare the preconditioner.

Prepare the preconditioner.

A solver solves a linear operator equation A(x)=b by applying one or several steps of the preconditioner. The method pre() is called before the first apply operation. b and x are right hand side and solution vector of the linear system respectively. It may. e.g., scale the system, allocate memory or compute a (I)LU decomposition. Note: The ILU decomposition could also be computed in the constructor or with a separate method of the derived method if several linear systems with the same matrix are to be solved.

Note
if a preconditioner is copied (e.g. for a second thread) again the pre() method has to be called to ensure proper memory mangement.
X x(0.0);
Y b = ...; // rhs
prec.pre(x,b); // prepare the preconditioner
prec.apply(x,b); // can be called multiple times now...
prec.post(x); // cleanup internal state
TA allocator
The allocator to use.
Definition overlappingschwarz.hh:789
Parameters
xThe left hand side of the equation.
bThe right hand side of the equation.

Implements Dune::Preconditioner< X, X >.


The documentation for this class was generated from the following files: