66#ifndef DUMUX_LOWREKEPSILON_MODEL_HH 
   67#define DUMUX_LOWREKEPSILON_MODEL_HH 
   90template<
int dimension>
 
   94    static constexpr int dim() { 
return dimension; }
 
   98    static constexpr int numEq() { 
return dim()+1+2; }
 
 
  122template<
class TypeTag>
 
  123struct ModelTraits<TypeTag, 
TTag::LowReKEpsilon>
 
  127    static constexpr int dim = GridView::dimension;
 
 
  133template<
class TypeTag>
 
  134struct FluxVariables<TypeTag, 
TTag::LowReKEpsilon>
 
 
  143template<
class TypeTag>
 
  144struct LocalResidual<TypeTag, 
TTag::LowReKEpsilon>
 
 
  153template<
class TypeTag>
 
  154struct VolumeVariables<TypeTag, 
TTag::LowReKEpsilon>
 
  162    static_assert(FSY::numPhases == MT::numFluidPhases(), 
"Number of phases mismatch between model and fluid system");
 
  163    static_assert(FST::numPhases == MT::numFluidPhases(), 
"Number of phases mismatch between model and fluid state");
 
  164    static_assert(!FSY::isMiscible(), 
"The Navier-Stokes model only works with immiscible fluid systems.");
 
 
  173template<
class TypeTag>
 
  187template<
class TypeTag>
 
  188struct ModelTraits<TypeTag, 
TTag::LowReKEpsilonNI>
 
  192    static constexpr int dim = GridView::dimension;
 
 
  199template<
class TypeTag>
 
  200struct VolumeVariables<TypeTag, 
TTag::LowReKEpsilonNI>
 
  208    static_assert(FSY::numPhases == MT::numFluidPhases(), 
"Number of phases mismatch between model and fluid system");
 
  209    static_assert(FST::numPhases == MT::numFluidPhases(), 
"Number of phases mismatch between model and fluid state");
 
  210    static_assert(!FSY::isMiscible(), 
"The Navier-Stokes model only works with immiscible fluid systems.");
 
 
  219template<
class TypeTag>
 
Volume variables for the isothermal single-phase low-Re k-epsilons model.
Definition freeflow/rans/twoeq/lowrekepsilon/volumevariables.hh:28
Volume variables for the single-phase Navier-Stokes model.
Definition freeflow/navierstokes/volumevariables.hh:26
Defines all properties used in Dumux.
Defines a type tag and some properties for free flow models.
A single-phase, isothermal Reynolds-Averaged Navier-Stokes model.
The common indices for isothermal two-equation RANS models.
The flux variables class for the low-Reynolds k-epsilon model. This is a convenience alias for that a...
Adds I/O fields for the low-Re k-epsilon turbulence model.
The local residual class for the low-Reynolds k-epsilon model. This is a convenience alias for the ac...
Low-Re k-epsilon turbulence problem base class.
Volume variables for the isothermal single-phase low-Re k-epsilons model.
@ lowrekepsilon
Definition turbulencemodel.hh:27
LowReKEpsilonFluxVariablesImpl< TypeTag, BaseFluxVariables, typename GetPropType< TypeTag, Properties::GridGeometry >::DiscretizationMethod > LowReKEpsilonFluxVariables
The flux variables class for the low-Reynolds k-epsilon model. This is a convenience alias for that a...
Definition freeflow/rans/twoeq/lowrekepsilon/fluxvariables.hh:32
LowReKEpsilonResidualImpl< TypeTag, BaseLocalResidual, typename GetPropType< TypeTag, Properties::GridGeometry >::DiscretizationMethod > LowReKEpsilonResidual
The local residual class for the low-Reynolds k-epsilon model. This is a convenience alias for the ac...
Definition freeflow/rans/twoeq/lowrekepsilon/localresidual.hh:34
NavierStokesResidualImpl< TypeTag, typename GetPropType< TypeTag, Properties::GridGeometry >::DiscretizationMethod > NavierStokesResidual
The local residual class for the Navier-Stokes model (balance equations). This is a convenience alias...
Definition freeflow/navierstokes/localresidual.hh:33
NavierStokesFluxVariablesImpl< TypeTag, typename GetPropType< TypeTag, Properties::GridGeometry >::DiscretizationMethod > NavierStokesFluxVariables
The flux variables class for the Navier-Stokes model. This is a convenience alias for that actual,...
Definition freeflow/navierstokes/fluxvariables.hh:33
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition propertysystem.hh:296
Type tag for numeric models.
Definition grid.hh:24
The energy balance equation for a porous solid.
Definition common/properties.hh:26
Specifies a number properties of non-isothermal free-flow flow models based on the specifics of a giv...
Definition freeflow/nonisothermal/model.hh:47
Adds I/O fields specific to non-isothermal free-flow models.
Definition freeflow/nonisothermal/iofields.hh:26
Adds I/O fields for the low-Re k-epsilon turbulence model.
Definition freeflow/rans/twoeq/lowrekepsilon/iofields.hh:24
Traits class for the volume variables of the Navier-Stokes model.
Definition freeflow/navierstokes/model.hh:111
LowReKEpsilonFluxVariables< TypeTag, BaseFluxVariables > type
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:139
LowReKEpsilonIOFields type
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:174
FreeflowNonIsothermalIOFields< LowReKEpsilonIOFields, true > type
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:220
LowReKEpsilonResidual< TypeTag, BaseLocalResidual > type
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:149
Traits for the low-Reynolds k-epsilon model.
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:92
static constexpr int dim()
The dimension of the model.
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:94
static constexpr int numEq()
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:98
RANSTwoEqIndices< dim(), numFluidComponents()> Indices
the indices
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:104
static constexpr int numFluidComponents()
The number of components.
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:101
static constexpr auto turbulenceModel()
return the type of turbulence model used
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:107
LowReKEpsilonModelTraits< dim > type
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:129
FreeflowNIModelTraits< IsothermalTraits > type
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:195
Traits for the Reynolds-averaged Navier-Stokes model.
Definition freeflow/rans/model.hh:61
The type tag for the single-phase, isothermal low-Reynolds k-epsilon model.
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:118
std::tuple< RANS > InheritsFrom
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:118
The type tag for the single-phase, non-isothermal low-Reynolds k-epsilon model.
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:183
std::tuple< LowReKEpsilon, RANSNI > InheritsFrom
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:183
LowReKEpsilonVolumeVariables< Traits, NSVolVars > type
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:169
LowReKEpsilonVolumeVariables< Traits, NSVolVars > type
Definition freeflow/rans/twoeq/lowrekepsilon/model.hh:215
The common indices for isothermal two-equation RANS models.
Definition freeflow/rans/twoeq/indices.hh:29
The available free flow turbulence models in Dumux.