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;
73namespace CVFEMethods {
76 static std::string
name() {
return "box"; }
80 static std::string
name() {
return "pq2"; }
84 static std::string
name() {
return "fcdiamond"; }
88 static std::string
name() {
return "pq1bubble"; }
124 static std::string
name() {
return "staggered"; }
132 static std::string
name() {
return "fem"; }
140 static std::string
name() {
return "fcstaggered"; }
150 static std::string
name() {
return "none"; }
constexpr CCMpfa ccmpfa
Definition: method.hh:155
constexpr FCDiamond fcdiamond
Definition: method.hh:162
constexpr PQ2 pq2
Definition: method.hh:157
constexpr CCTpfa cctpfa
Definition: method.hh:154
constexpr Box box
Definition: method.hh:156
constexpr Staggered staggered
Definition: method.hh:159
constexpr None none
Definition: method.hh:163
constexpr FEM fem
Definition: method.hh:160
constexpr bool isCVFE
Definition: method.hh:67
constexpr PQ1Bubble pq1bubble
Definition: method.hh:158
constexpr FCStaggered fcstaggered
Definition: method.hh:161
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:84
static std::string name()
Definition: method.hh:88
static std::string name()
Definition: method.hh:76
static std::string name()
Definition: method.hh:80
Definition: method.hh:139
static std::string name()
Definition: method.hh:140
Definition: method.hh:131
static std::string name()
Definition: method.hh:132
Definition: method.hh:149
static std::string name()
Definition: method.hh:150
Definition: method.hh:123
static std::string name()
Definition: method.hh:124
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.