28#ifndef DUMUX_KEPSILON_NC_MODEL_HH
29#define DUMUX_KEPSILON_NC_MODEL_HH
63template<
int dimension,
int nComp,
bool useMoles,
int replaceCompEqIdx>
68 static constexpr int numEq() {
return dimension+nComp+2; }
82template<
class TypeTag>
87 static constexpr int dimension = GridView::dimension;
89 static constexpr int numComponents = FluidSystem::numComponents;
97template<
class TypeTag>
106 static_assert(FSY::numComponents == MT::numFluidComponents(),
"Number of components mismatch between model and fluid system");
107 static_assert(FST::numComponents == MT::numFluidComponents(),
"Number of components mismatch between model and fluid state");
108 static_assert(FSY::numPhases == MT::numFluidPhases(),
"Number of phases mismatch between model and fluid system");
109 static_assert(FST::numPhases == MT::numFluidPhases(),
"Number of phases mismatch between model and fluid state");
118template<
class TypeTag>
128template<
class TypeTag>
138template<
class TypeTag>
152template<
class TypeTag>
157 static constexpr int dim = GridView::dimension;
159 static constexpr int numComponents = FluidSystem::numComponents;
168template<
class TypeTag>
177 static_assert(FSY::numComponents == MT::numFluidComponents(),
"Number of components mismatch between model and fluid system");
178 static_assert(FST::numComponents == MT::numFluidComponents(),
"Number of components mismatch between model and fluid state");
179 static_assert(FSY::numPhases == MT::numFluidPhases(),
"Number of phases mismatch between model and fluid system");
180 static_assert(FST::numPhases == MT::numFluidPhases(),
"Number of phases mismatch between model and fluid state");
189template<
class TypeTag>
199template<
class TypeTag>
209template<
class TypeTag>
A single-phase, isothermal Navier-Stokes model.
@ kepsilon
Definition turbulencemodel.hh:38
KEpsilonFluxVariablesImpl< TypeTag, BaseFluxVariables, GetPropType< TypeTag, Properties::GridGeometry >::discMethod > KEpsilonFluxVariables
The flux variables class for the k-epsilon model. This is a convenience alias for that actual,...
Definition freeflow/rans/twoeq/kepsilon/fluxvariables.hh:44
KEpsilonResidualImpl< TypeTag, BaseLocalResidual, GetPropType< TypeTag, Properties::GridGeometry >::discMethod > KEpsilonResidual
The local residual class for the k-epsilon model. This is a convenience alias for the actual,...
Definition freeflow/rans/twoeq/kepsilon/localresidual.hh:46
FreeflowNCResidualImpl< TypeTag, GetPropType< TypeTag, Properties::GridGeometry >::discMethod > FreeflowNCResidual
The local residual class for the multi-component free-flow model (balance equations)....
Definition freeflow/compositional/localresidual.hh:46
FreeflowNCFluxVariablesImpl< TypeTag, GetPropType< TypeTag, Properties::GridGeometry >::discMethod > FreeflowNCFluxVariables
The flux variables class for the multi-component free-flow model. This is a convenience alias for tha...
Definition freeflow/compositional/fluxvariables.hh:44
make the local view function available whenever we use the grid geometry
Definition adapt.hh:29
constexpr auto getPropValue()
get the value data member of a property
Definition propertysystem.hh:153
typename Properties::Detail::GetPropImpl< TypeTag, Property >::type::type GetPropType
get the type alias defined in the property (equivalent to old macro GET_PROP_TYPE(....
Definition propertysystem.hh:149
Definition common/properties.hh:47
Type tag for numeric models.
Definition grid.hh:35
Traits class encapsulating model specifications.
Definition common/properties.hh:65
A class helping models to define input and output fields.
Definition common/properties.hh:78
Definition common/properties.hh:91
The secondary variables within a sub-control volume.
Definition common/properties.hh:174
Container storing the different types of flux variables.
Definition common/properties.hh:180
Adds I/O fields specific to the FreeflowNC model.
Definition dumux/freeflow/compositional/iofields.hh:38
The type tags for the single-phase, multi-component isothermal k-epsilon model.
Definition kepsilonncmodel.hh:52
std::tuple< NavierStokesNC > InheritsFrom
Definition kepsilonncmodel.hh:52
Traits for the low-Reynolds k-epsilon multi-component modelstates some specifics of the isothermal mu...
Definition kepsilonncmodel.hh:65
static constexpr int numEq()
Definition kepsilonncmodel.hh:68
static constexpr bool usesTurbulenceModel()
The model does include a turbulence model.
Definition kepsilonncmodel.hh:71
RANSTwoEqIndices< dimension, nComp > Indices
the indices
Definition kepsilonncmodel.hh:74
static constexpr auto turbulenceModel()
return the type of turbulence model used
Definition kepsilonncmodel.hh:77
KEpsilonNCModelTraits< dimension, numComponents, useMoles, replaceCompEqIdx > type
Definition kepsilonncmodel.hh:93
KEpsilonVolumeVariables< Traits, NCVolVars > type
Definition kepsilonncmodel.hh:114
KEpsilonResidual< TypeTag, BaseLocalResidual > type
Definition kepsilonncmodel.hh:124
KEpsilonFluxVariables< TypeTag, BaseFluxVariables > type
Definition kepsilonncmodel.hh:134
FreeflowNCIOFields< KEpsilonIOFields, true > type
Definition kepsilonncmodel.hh:139
The type tags for the single-phase, multi-component non-isothermal k-epsilon models.
Definition kepsilonncmodel.hh:148
std::tuple< KEpsilonNC, NavierStokesNCNI > InheritsFrom
Definition kepsilonncmodel.hh:148
FreeflowNIModelTraits< IsothermalModelTraits > type
Definition kepsilonncmodel.hh:164
KEpsilonVolumeVariables< Traits, NCVolVars > type
Definition kepsilonncmodel.hh:185
KEpsilonResidual< TypeTag, BaseLocalResidual > type
Definition kepsilonncmodel.hh:195
KEpsilonFluxVariables< TypeTag, BaseFluxVariables > type
Definition kepsilonncmodel.hh:205
FreeflowNonIsothermalIOFields< IsothermalIOFields, true > type
Definition kepsilonncmodel.hh:215
Traits for the multi-component free-flow model.
Definition navierstokesncmodel.hh:86
Volume variables for the single-phase, multi-component free-flow model.
Definition freeflow/compositional/volumevariables.hh:40
Traits class for the volume variables of the Navier-Stokes model.
Definition freeflow/navierstokes/model.hh:125
Adds I/O fields specific to non-isothermal free-flow models.
Definition dumux/freeflow/nonisothermal/iofields.hh:38
Specifies a number properties of non-isothermal free-flow flow models based on the specifics of a giv...
Definition freeflow/nonisothermal/model.hh:59
The common indices for isothermal two-equation RANS models.
Definition freeflow/rans/twoeq/indices.hh:41
Adds I/O fields for the k-epsilon turbulence model.
Definition dumux/freeflow/rans/twoeq/kepsilon/iofields.hh:36
Volume variables for the isothermal single-phase k-epsilon model.
Definition freeflow/rans/twoeq/kepsilon/volumevariables.hh:39
Declares all properties used in Dumux.
A single-phase, isothermal k-epsilon model.
Adds I/O fields specific to the FreeflowNC model.
Adds I/O fields specific to non-isothermal free-flow models.