25#ifndef DUMUX_DISCRETIZTAION_PQ1BUBBLE_HH
26#define DUMUX_DISCRETIZTAION_PQ1BUBBLE_HH
30#include <dune/common/fvector.hh>
31#include <dune/geometry/multilineargeometry.hh>
60template<
class TypeTag>
64 static constexpr bool enableCache = getPropValue<TypeTag, Properties::EnableGridGeometryCache>();
72template<
class TypeTag>
76 static constexpr bool enableCache = getPropValue<TypeTag, Properties::EnableGridVolumeVariablesCache>();
85template<
class TypeTag>
96template<
class TypeTag>
100 static constexpr bool enableCache = getPropValue<TypeTag, Properties::EnableGridFluxVariablesCache>();
112template<
class TypeTag>
123template<
class TypeTag>
131template<
class Problem>
135 using GG = std::decay_t<decltype(std::declval<Problem>().gridGeometry())>;
136 using Element =
typename GG::GridView::template Codim<0>::Entity;
137 using SubControlVolume =
typename GG::SubControlVolume;
141 using BoundaryTypes = std::decay_t<decltype(std::declval<Problem>().boundaryTypes(std::declval<Element>(), std::declval<SubControlVolume>()))>;
Calculates the element-wise residual for control-volume finite element schemes.
Boundary flag to store e.g. in sub control volume faces.
Declares properties required for finite-volume models models.
The available discretization methods in Dumux.
Classes related to flux variables caching.
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition: propertysystem.hh:180
typename GetPropOr< TypeTag, Property, T >::type GetPropTypeOr
get the type alias defined in the property or the type T if the property is undefined
Definition: propertysystem.hh:184
Distance implementation details.
Definition: cvfelocalresidual.hh:37
Definition: common/properties.hh:37
CVFE< CVFEMethods::PQ1Bubble > PQ1Bubble
Definition: method.hh:97
The element-wise residual for control-volume finite element schemes.
Definition: cvfelocalresidual.hh:72
The type of the base class of the local residual (specific to a discretization scheme)
Definition: common/properties.hh:63
Stores the boundary types on an element.
Definition: common/properties.hh:97
Definition: common/properties.hh:100
The type for a global container for the volume variables.
Definition: common/properties.hh:107
Stores data associated with flux vars.
Definition: common/properties.hh:113
The global vector of flux variable containers.
Definition: common/properties.hh:117
Definition: common/typetraits/problem.hh:35
typename Detail::template ProblemTraits< Problem, typename GridGeometry::DiscretizationMethod >::BoundaryTypes BoundaryTypes
Definition: common/typetraits/problem.hh:46
This class stores an array of BoundaryTypes objects.
Definition: cvfe/elementboundarytypes.hh:40
Flux variables cache class for control-volume finite element schemes. For control-volume finite eleme...
Definition: discretization/cvfe/fluxvariablescache.hh:39
Flux variable caches on a gridview.
Definition: discretization/cvfe/gridfluxvariablescache.hh:58
Definition: cvfe/gridvolumevariables.hh:41
Base class for the grid volume variables.
Definition: cvfe/gridvolumevariables.hh:54
Definition: pq1bubble.hh:56
std::tuple< FiniteVolumeModel > InheritsFrom
Definition: pq1bubble.hh:56
std::decay_t< decltype(std::declval< Problem >().boundaryTypes(std::declval< Element >(), std::declval< SubControlVolume >()))> BoundaryTypes
Definition: pq1bubble.hh:141
GG GridGeometry
Definition: pq1bubble.hh:139
Base class for the finite volume geometry vector for pq1bubble schemes This builds up the sub control...
Definition: discretization/pq1bubble/fvgridgeometry.hh:98
An empty flux variables cache.
Definition: fluxvariablescaching.hh:47
Declares all properties used in Dumux.
Type traits for problem classes.
Boundary types gathered on an element.
The local element solution class for the pq1bubble method.
Flux variables cache class for control-volume finite element schemes.
Base class for the finite volume geometry vector for the pq1bubble method This builds up the sub cont...
Global flux variable cache.
The grid volume variables class for box models.