63#ifndef DUMUX_SST_MODEL_HH
64#define DUMUX_SST_MODEL_HH
88template<
int dimension>
92 static constexpr int dim() {
return dimension; }
96 static constexpr int numEq() {
return dim()+1+2; }
120template<
class TypeTag>
125 static constexpr int dim = GridView::dimension;
131template<
class TypeTag>
141template<
class TypeTag>
151template<
class TypeTag>
160 static_assert(FSY::numPhases == MT::numFluidPhases(),
"Number of phases mismatch between model and fluid system");
161 static_assert(FST::numPhases == MT::numFluidPhases(),
"Number of phases mismatch between model and fluid state");
162 static_assert(!FSY::isMiscible(),
"The Navier-Stokes model only works with immiscible fluid systems.");
171template<
class TypeTag>
186template<
class TypeTag>
191 static constexpr int dim = GridView::dimension;
198template<
class TypeTag>
207 static_assert(FSY::numPhases == MT::numFluidPhases(),
"Number of phases mismatch between model and fluid system");
208 static_assert(FST::numPhases == MT::numFluidPhases(),
"Number of phases mismatch between model and fluid state");
209 static_assert(!FSY::isMiscible(),
"The Navier-Stokes model only works with immiscible fluid systems.");
218template<
class TypeTag>
The available free flow turbulence models in Dumux.
@ sst
Definition turbulencemodel.hh:39
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:45
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:45
SSTResidualImpl< TypeTag, BaseLocalResidual, typename GetPropType< TypeTag, Properties::GridGeometry >::DiscretizationMethod > SSTResidual
The local residual class for the SST model. This is a convenience alias for the actual,...
Definition freeflow/rans/twoeq/sst/localresidual.hh:46
SSTFluxVariablesImpl< TypeTag, BaseFluxVariables, typename GetPropType< TypeTag, Properties::GridGeometry >::DiscretizationMethod > SSTFluxVariables
The flux variables class for the SST model. This is a convenience alias for that actual,...
Definition freeflow/rans/twoeq/sst/fluxvariables.hh:44
@ SST
Definition turbulencemodel.hh:75
typename Properties::Detail::GetPropImpl< TypeTag, Property >::type::type GetPropType
get the type alias defined in the property
Definition propertysystem.hh:150
Definition common/properties.hh:37
Type tag for numeric models.
Definition grid.hh:36
Traits class encapsulating model specifications.
Definition common/properties.hh:53
A class helping models to define input and output fields.
Definition common/properties.hh:63
Definition common/properties.hh:74
The secondary variables within a sub-control volume.
Definition common/properties.hh:107
Container storing the different types of flux variables.
Definition common/properties.hh:113
Traits class for the volume variables of the Navier-Stokes model.
Definition freeflow/navierstokes/model.hh:123
Volume variables for the single-phase Navier-Stokes model.
Definition freeflow/navierstokes/volumevariables.hh:38
Adds I/O fields specific to non-isothermal free-flow models.
Definition 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
Traits for the Reynolds-averaged Navier-Stokes model.
Definition freeflow/rans/model.hh:73
The common indices for isothermal two-equation RANS models.
Definition freeflow/rans/twoeq/indices.hh:41
Adds I/O fields for the Reynolds-Averaged Navier-Stokes model.
Definition freeflow/rans/twoeq/sst/iofields.hh:36
Traits for the sst model.
Definition freeflow/rans/twoeq/sst/model.hh:90
static constexpr int numEq()
Definition freeflow/rans/twoeq/sst/model.hh:96
static constexpr int dim()
The dimension of the model.
Definition freeflow/rans/twoeq/sst/model.hh:92
RANSTwoEqIndices< dim(), numFluidComponents()> Indices
The indices.
Definition freeflow/rans/twoeq/sst/model.hh:102
static constexpr int numFluidComponents()
The number of components.
Definition freeflow/rans/twoeq/sst/model.hh:99
static constexpr auto turbulenceModel()
return the type of turbulence model used
Definition freeflow/rans/twoeq/sst/model.hh:105
The type tag for the single-phase, isothermal SST model.
Definition freeflow/rans/twoeq/sst/model.hh:116
std::tuple< RANS > InheritsFrom
Definition freeflow/rans/twoeq/sst/model.hh:116
SSTModelTraits< dim > type
Definition freeflow/rans/twoeq/sst/model.hh:127
SSTFluxVariables< TypeTag, BaseFluxVariables > type
Definition freeflow/rans/twoeq/sst/model.hh:137
SSTResidual< TypeTag, BaseLocalResidual > type
Definition freeflow/rans/twoeq/sst/model.hh:147
SSTVolumeVariables< Traits, NSVolVars > type
Definition freeflow/rans/twoeq/sst/model.hh:167
SSTIOFields type
Definition freeflow/rans/twoeq/sst/model.hh:172
The type tag for the single-phase, non-isothermal SST 2-Eq. model.
Definition freeflow/rans/twoeq/sst/model.hh:182
std::tuple< SST, RANSNI > InheritsFrom
Definition freeflow/rans/twoeq/sst/model.hh:182
FreeflowNIModelTraits< IsothermalTraits > type
Definition freeflow/rans/twoeq/sst/model.hh:194
SSTVolumeVariables< Traits, NSVolVars > type
Definition freeflow/rans/twoeq/sst/model.hh:214
FreeflowNonIsothermalIOFields< SSTIOFields, true > type
Definition freeflow/rans/twoeq/sst/model.hh:219
Volume variables for the isothermal single-phase SST 2-Eq model.
Definition freeflow/rans/twoeq/sst/volumevariables.hh:42
A single-phase, isothermal Reynolds-Averaged Navier-Stokes model.
the turbulence-model-specfic RANS problem
The local residual class for the SST model. This is a convenience alias for the actual,...
Declares all properties used in Dumux.
Defines a type tag and some properties for free flow models.
The common indices for isothermal two-equation RANS models.
Adds I/O fields for the Reynolds-Averaged Navier-Stokes model.
The flux variables class for the SST model. This is a convenience alias for that actual,...
Volume variables for the isothermal single-phase SST 2-Eq model.