12#ifndef DUMUX_DISCRETIZATION_METHOD_HH
13#define DUMUX_DISCRETIZATION_METHOD_HH
26 static std::string
name() {
return "cctpfa"; }
34 static std::string
name() {
return "ccmpfa"; }
47 static std::string
name() {
return DM::name(); }
55struct IsCVFE :
public std::false_type {};
58struct IsCVFE<CVFE<DM>> :
public std::true_type {};
67inline constexpr bool isCVFE = Detail::IsCVFE<DM>::value;
76 static std::string
name() {
return "box"; }
80 static std::string
name() {
return "pq2"; }
84 static std::string
name() {
return "pq3"; }
88 static std::string
name() {
return "fcdiamond"; }
92 static std::string
name() {
return "pq1bubble"; }
134 static std::string
name() {
return "staggered"; }
142 static std::string
name() {
return "fem"; }
150 static std::string
name() {
return "fcstaggered"; }
160 static std::string
name() {
return "none"; }
Definition cvfelocalresidual.hh:25
constexpr CCMpfa ccmpfa
Definition method.hh:165
constexpr FCDiamond fcdiamond
Definition method.hh:173
constexpr PQ2 pq2
Definition method.hh:167
constexpr CCTpfa cctpfa
Definition method.hh:164
constexpr Box box
Definition method.hh:166
constexpr Staggered staggered
Definition method.hh:170
constexpr None none
Definition method.hh:174
constexpr PQ3 pq3
Definition method.hh:168
CVFE< CVFEMethods::PQ1Bubble > PQ1Bubble
Definition method.hh:116
CVFE< CVFEMethods::PQ3 > PQ3
Definition method.hh:128
constexpr FEM fem
Definition method.hh:171
CVFE< CVFEMethods::CR_RT > FCDiamond
Definition method.hh:109
CVFE< CVFEMethods::PQ1 > Box
Definition method.hh:102
constexpr bool isCVFE
Definition method.hh:67
constexpr PQ1Bubble pq1bubble
Definition method.hh:169
CVFE< CVFEMethods::PQ2 > PQ2
Definition method.hh:122
constexpr FCStaggered fcstaggered
Definition method.hh:172
static std::string name()
Definition method.hh:34
static std::string name()
Definition method.hh:26
static std::string name()
Definition method.hh:47
static std::string name()
Definition method.hh:88
static std::string name()
Definition method.hh:92
static std::string name()
Definition method.hh:76
static std::string name()
Definition method.hh:80
static std::string name()
Definition method.hh:84
static std::string name()
Definition method.hh:150
static std::string name()
Definition method.hh:142
static std::string name()
Definition method.hh:160
static std::string name()
Definition method.hh:134
Helper class to create (named and comparable) tagged types Tags any given type. The tagged type is eq...
Definition tag.hh:30
Helper class to create (named and comparable) tagged types.