3.2-git
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
Files | Classes | Typedefs | Functions

Linear solvers and helpers. More...

Description

Linear solvers and helpers.

Files

file  amgbackend.hh
 Provides a parallel linear solver based on the ISTL AMG preconditioner and the ISTL BiCGSTAB solver.
 
file  amgparallelhelpers.hh
 Provides a helper class for nonoverlapping decomposition using the ISTL AMG.
 
file  amgtraits.hh
 Define traits for the AMG backend.
 
file  istlsolverfactorybackend.hh
 Provides a generic linear solver based on the ISTL that chooses the solver and preconditioner at runtime.
 
file  istlsolverregistry.hh
 The specialized Dumux macro and tag for the ISTL registry to choose the solver and preconditioner at runtime.
 
file  linearsolveracceptsmultitypematrix.hh
 Trait checking if linear solvers accept Dune::MultiTypeBlockMatrix or we need to convert the matrix.
 
file  linearsolverparameters.hh
 Generates a parameter tree required for the linear solvers and precondioners of the Dune ISTL.
 
file  linearsolvertraits.hh
 Define traits for linear solvers.
 
file  matrixconverter.hh
 A helper classe that converts a Dune::MultiTypeBlockMatrix into a plain Dune::BCRSMatrix.
 
file  parallelhelpers.hh
 Provides a helper class for nonoverlapping decomposition.
 
file  linear/pdesolver.hh
 A high-level solver interface for a linear PDE solver.
 
file  preconditioners.hh
 Dumux preconditioners for iterative solvers.
 
file  scotchbackend.hh
 An interface to the scotch library for matrix reordering.
 
file  scotchbackend.hh
 An interface to the scotch library for matrix reordering.
 
file  seqsolverbackend.hh
 Dumux sequential linear solver backends.
 
file  solver.hh
 Base class for linear solvers.
 
file  vectorexchange.hh
 Contains a class to exchange entries of a vector.
 

Classes

class  Dumux::AMGBiCGSTABBackend< LinearSolverTraits >
 A linear solver based on the ISTL AMG preconditioner and the ISTL BiCGSTAB solver. More...
 
class  Dumux::MatrixConverter< MultiTypeBlockMatrix, Scalar >
 A helper classe that converts a Dune::MultiTypeBlockMatrix into a plain Dune::BCRSMatrix TODO: allow block sizes for BCRSMatrix other than 1x1 ? More...
 
class  Dumux::VectorConverter< MultiTypeBlockVector, Scalar >
 A helper classe that converts a Dune::MultiTypeBlockVector into a plain Dune::BlockVector and transfers back values. More...
 
class  Dumux::ParallelISTLHelper< LinearSolverTraits >
 A parallel helper class providing a nonoverlapping decomposition of all degrees of freedom. More...
 
class  Dumux::ParallelMatrixHelper< Matrix, GridView, DofMapper, dofCodim >
 Helper class for adding up matrix entries on border. More...
 
class  Dumux::LinearPDESolver< Assembler, LinearSolver >
 An implementation of a linear PDE solver. More...
 
class  Dumux::IterativePreconditionedSolverImpl
 A general solver backend allowing arbitrary preconditioners and solvers. More...
 
class  Dumux::ILUnBiCGSTABBackend
 Sequential ILU(n)-preconditioned BiCSTAB solver. More...
 
class  Dumux::SORBiCGSTABBackend
 Sequential SOR-preconditioned BiCSTAB solver. More...
 
class  Dumux::SSORBiCGSTABBackend
 Sequential SSOR-preconditioned BiCGSTAB solver. More...
 
class  Dumux::GSBiCGSTABBackend
 Sequential GS-preconditioned BiCGSTAB solver. More...
 
class  Dumux::JacBiCGSTABBackend
 Sequential Jacobi-preconditioned BiCSTAB solver. More...
 
class  Dumux::ILUnCGBackend
 Sequential ILU(n)-preconditioned CG solver. More...
 
class  Dumux::SORCGBackend
 Sequential SOR-preconditioned CG solver. More...
 
class  Dumux::SSORCGBackend
 Sequential SSOR-preconditioned CG solver. More...
 
class  Dumux::GSCGBackend
 Sequential GS-preconditioned CG solver. More...
 
class  Dumux::JacCGBackend
 Sequential Jacobi-preconditioned CG solver. More...
 
class  Dumux::SSORRestartedGMResBackend
 Sequential SSOR-preconditioned GMRes solver. More...
 
class  Dumux::ILU0BiCGSTABBackend
 Sequential ILU(0)-preconditioned BiCGSTAB solver. More...
 
class  Dumux::ILU0CGBackend
 Sequential ILU(0)-preconditioned CG solver. More...
 
class  Dumux::ILU0RestartedGMResBackend
 Sequential ILU0-preconditioned GMRes solver. More...
 
class  Dumux::ILUnRestartedGMResBackend
 Sequential ILU(n)-preconditioned GMRes solver. More...
 
class  Dumux::ExplicitDiagonalSolver
 Solver for simple block-diagonal matrices (e.g. from explicit time stepping schemes) More...
 
class  Dumux::BlockDiagILU0Preconditioner< M, X, Y, blockLevel >
 A simple ilu0 block diagonal preconditioner. More...
 
class  Dumux::BlockDiagILU0BiCGSTABSolver
 A simple ilu0 block diagonal preconditioned BiCGSTABSolver. More...
 
class  Dumux::BlockDiagAMGPreconditioner< M, X, Y, blockLevel >
 A simple ilu0 block diagonal preconditioner. More...
 
class  Dumux::BlockDiagAMGBiCGSTABSolver
 A simple ilu0 block diagonal preconditioned BiCGSTABSolver. More...
 
class  Dumux::LinearSolver
 Base class for linear solvers. More...
 

Typedefs

template<class TypeTag >
using Dumux::AMGBackend = ParallelAMGBackend< typename GetPropType< TypeTag, Properties::GridGeometry >::GridView, LinearSolverTraits< GetPropType< TypeTag, Properties::GridGeometry > > >
 A linear solver based on the ISTL AMG preconditioner and the ISTL BiCGSTAB solver. More...
 

Functions

template<class M >
constexpr std::size_t Dumux::preconditionerBlockLevel () noexcept
 Returns the block level for the preconditioner for a given matrix. More...
 

Typedef Documentation

◆ AMGBackend

template<class TypeTag >
using Dumux::AMGBackend = typedef ParallelAMGBackend<typename GetPropType<TypeTag, Properties::GridGeometry>::GridView, LinearSolverTraits<GetPropType<TypeTag, Properties::GridGeometry> >>

A linear solver based on the ISTL AMG preconditioner and the ISTL BiCGSTAB solver.

Note
This is an adaptor using a TypeTag

Function Documentation

◆ preconditionerBlockLevel()

template<class M >
constexpr std::size_t Dumux::preconditionerBlockLevel ( )
constexprnoexcept

Returns the block level for the preconditioner for a given matrix.

Template Parameters
MThe matrix.