The local element solution class for control-volume finite element methods.
More...
#include <type_traits>
#include <dune/common/reservedvector.hh>
#include <dumux/common/typetraits/localdofs_.hh>
#include <dumux/discretization/method.hh>
#include <dumux/discretization/cvfe/localdof.hh>
Go to the source code of this file.
|
| template<class Element , class SolutionVector , class GridGeometry > |
| auto | Dumux::elementSolution (const Element &element, const SolutionVector &sol, const GridGeometry &gg) -> std::enable_if_t< GridGeometry::discMethod==DiscretizationMethods::cctpfa||GridGeometry::discMethod==DiscretizationMethods::ccmpfa, CCElementSolution< typename GridGeometry::LocalView, std::decay_t< decltype(std::declval< SolutionVector >()[0])> > > |
| | Make an element solution for cell-centered schemes. More...
|
| |
| template<class Element , class ElementVolumeVariables , class FVElementGeometry > |
| auto | Dumux::elementSolution (const Element &element, const ElementVolumeVariables &elemVolVars, const FVElementGeometry &gg) -> std::enable_if_t< FVElementGeometry::GridGeometry::discMethod==DiscretizationMethods::cctpfa||FVElementGeometry::GridGeometry::discMethod==DiscretizationMethods::ccmpfa, CCElementSolution< FVElementGeometry, typename ElementVolumeVariables::VolumeVariables::PrimaryVariables > > |
| | Make an element solution for cell-centered schemes. More...
|
| |