Helper function to generate Jacobian pattern for different discretization methods. More...
#include <type_traits>
#include <dune/istl/matrixindexset.hh>
#include <dumux/discretization/method.hh>
Go to the source code of this file.
Helper function to generate Jacobian pattern for different discretization methods.
Namespaces | |
namespace | Dumux |
Functions | |
template<bool isImplicit, class GridGeometry , typename std::enable_if_t<(GridGeometry::discMethod==DiscretizationMethod::box), int > = 0> | |
Dune::MatrixIndexSet | Dumux::getJacobianPattern (const GridGeometry &gridGeometry) |
Helper function to generate Jacobian pattern for the box method. More... | |
template<bool isImplicit, class GridGeometry , typename std::enable_if_t<((GridGeometry::discMethod==DiscretizationMethod::staggered)), int > = 0> | |
auto | Dumux::getJacobianPattern (const GridGeometry &gridGeometry) |
Helper function to generate Jacobian pattern for the staggered method. More... | |
template<class FEBasis > | |
Dune::MatrixIndexSet | Dumux::getFEJacobianPattern (const FEBasis &feBasis) |
Helper function to generate Jacobian pattern for finite element scheme. More... | |