version 3.11-dev
Loading...
Searching...
No Matches
freeflow/navierstokes/momentum/cvfe/model.hh
Go to the documentation of this file.
1// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2// vi: set et ts=4 sw=4 sts=4:
3//
4// SPDX-FileCopyrightText: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
32
33#ifndef DUMUX_NAVIERSTOKES_MOMENTUM_CVFE_MODEL_HH
34#define DUMUX_NAVIERSTOKES_MOMENTUM_CVFE_MODEL_HH
35
39
44
49
50namespace Dumux {
51
58template<int dimension>
60{
62 static constexpr int dim() { return dimension; }
63
66 static constexpr int numEq() { return dim(); }
67
69 static constexpr int numFluidPhases() { return 1; }
70
72 static constexpr int numFluidComponents() { return 1; }
73
75 static constexpr bool enableAdvection() { return true; }
76
78 static constexpr bool enableMolecularDiffusion() { return false; }
79
81 static constexpr bool enableEnergyBalance() { return false; }
82
85};
86
96template<class PV, class FSY, class FST, class MT>
104
105} // end namespace Dumux
106
107// \{
109// properties for the single-phase Navier-Stokes model
111namespace Dumux::Properties {
112
114// Type tags
116
117// Create new type tags
118namespace TTag {
120struct NavierStokesMomentumCVFEBase { using InheritsFrom = std::tuple<FreeFlow>; };
121struct NavierStokesMomentumCVFE { using InheritsFrom = std::tuple<NavierStokesMomentumCVFEBase>; };
122struct NavierStokesMomentumFE { using InheritsFrom = std::tuple<NavierStokesMomentumCVFEBase>; };
123} // end namespace TTag
124
126// default property values for the isothermal single phase model
129template<class TypeTag>
130struct ModelTraits<TypeTag, TTag::NavierStokesMomentumCVFEBase>
131{
132private:
134 static constexpr auto dim = GridView::dimension;
135public:
137};
138
145template<class TypeTag>
146struct FluidState<TypeTag, TTag::NavierStokesMomentumCVFEBase>{
147private:
150public:
152};
153
155template<class TypeTag>
156struct LocalResidual<TypeTag, TTag::NavierStokesMomentumCVFE>
158
160template<class TypeTag>
161struct LocalResidual<TypeTag, TTag::NavierStokesMomentumFE>
163
164// Set the default spatial parameters for the fe scheme
165template<class TypeTag>
166struct SpatialParams<TypeTag, TTag::NavierStokesMomentumFE>
167{
168 template<class GG, class S>
170 : public Dumux::Experimental::SpatialParams<GG, S, DefaultSpatialParams<GG, S>>
171 {
172 private:
174 public:
175 using ParentType::ParentType;
176 };
177
181};
182
184template<class TypeTag>
185struct VolumeVariables<TypeTag, TTag::NavierStokesMomentumCVFEBase>
186{
187private:
192
193 static_assert(FSY::numPhases == MT::numFluidPhases(), "Number of phases mismatch between model and fluid system");
194 static_assert(FST::numPhases == MT::numFluidPhases(), "Number of phases mismatch between model and fluid state");
195 static_assert(!FSY::isMiscible(), "The Navier-Stokes model only works with immiscible fluid systems.");
196
198public:
200};
201
202// This is the default (model not coupled with a mass (pressure) discretization)
203// i.e. the pressure is supplied via the problem as an analytical solution
204// or from a separate computation
205template<class TypeTag>
206struct CouplingManager<TypeTag, TTag::NavierStokesMomentumCVFEBase>
207{
210};
211
212} // end namespace Dumux::Properties
213
214#endif
The interface of the coupling manager for multi domain problems.
Definition multidomain/couplingmanager.hh:37
The base class for spatial parameters used with finite-volume or finite-element schemes.
Definition common/spatialparams.hh:34
Represents all relevant thermodynamic quantities of a multi-phase fluid system assuming immiscibility...
Definition immiscible.hh:30
Element-wise calculation of the Navier-Stokes residual for models using CVFE discretizations.
Definition freeflow/navierstokes/momentum/cvfe/localresidual.hh:57
Volume variables for the single-phase Navier-Stokes model.
Definition freeflow/navierstokes/momentum/cvfe/volumevariables.hh:25
Element-wise calculation of the Navier-Stokes residual for models using FE discretizations.
Definition felocalresidual.hh:184
Defines all properties used in Dumux.
Basic spatial parameters to be used with finite-volume or finite-element schemes.
Helper functions for assembling FE-based local residuals.
Diffusive heat flux according to Fourier's law.
Classes related to flux variables caching.
The common indices for the isothermal Navier-Stokes model.
Element-wise calculation of the Navier-Stokes residual for models using CVFE discretizations.
Volume variables for the single-phase Navier-Stokes model.
Defines a type tag and some properties for free flow models.
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition propertysystem.hh:296
Represents all relevant thermodynamic quantities of a multi-phase fluid system assuming immiscibility...
The available discretization methods in Dumux.
Type tag for numeric models.
Definition grid.hh:24
The energy balance equation for a porous solid.
Definition common/properties.hh:26
Definition adapt.hh:17
The common indices for the isothermal Navier-Stokes model.
Definition freeflow/navierstokes/momentum/cvfe/indices.hh:25
Traits for the Navier-Stokes model.
Definition freeflow/navierstokes/momentum/cvfe/model.hh:60
static constexpr bool enableEnergyBalance()
The model is isothermal.
Definition freeflow/navierstokes/momentum/cvfe/model.hh:81
static constexpr int numEq()
Definition freeflow/navierstokes/momentum/cvfe/model.hh:66
static constexpr bool enableMolecularDiffusion()
The one-phase model has no molecular diffusion.
Definition freeflow/navierstokes/momentum/cvfe/model.hh:78
static constexpr int numFluidComponents()
The number of components is 1.
Definition freeflow/navierstokes/momentum/cvfe/model.hh:72
static constexpr int numFluidPhases()
The number of phases is 1.
Definition freeflow/navierstokes/momentum/cvfe/model.hh:69
static constexpr bool enableAdvection()
Enable advection.
Definition freeflow/navierstokes/momentum/cvfe/model.hh:75
static constexpr int dim()
The dimension of the model.
Definition freeflow/navierstokes/momentum/cvfe/model.hh:62
NavierStokesMomentumCVFEIndices< dim()> Indices
the indices
Definition freeflow/navierstokes/momentum/cvfe/model.hh:84
Traits class for the volume variables of the Navier-Stokes model.
Definition freeflow/navierstokes/momentum/cvfe/model.hh:98
FST FluidState
Definition freeflow/navierstokes/momentum/cvfe/model.hh:101
MT ModelTraits
Definition freeflow/navierstokes/momentum/cvfe/model.hh:102
PV PrimaryVariables
Definition freeflow/navierstokes/momentum/cvfe/model.hh:99
FSY FluidSystem
Definition freeflow/navierstokes/momentum/cvfe/model.hh:100
EmptyCouplingManager type
Definition freeflow/navierstokes/momentum/cvfe/model.hh:209
ImmiscibleFluidState< Scalar, FluidSystem > type
Definition freeflow/navierstokes/momentum/cvfe/model.hh:151
NavierStokesMomentumCVFELocalResidual< TypeTag > type
Definition freeflow/navierstokes/momentum/cvfe/model.hh:157
NavierStokesMomentumFELocalResidual< TypeTag > type
Definition freeflow/navierstokes/momentum/cvfe/model.hh:162
NavierStokesMomentumCVFEModelTraits< dim > type
Definition freeflow/navierstokes/momentum/cvfe/model.hh:136
Dumux::Experimental::SpatialParams< GridGeometry, Scalar, DefaultSpatialParams< GridGeometry, Scalar > > type
Definition freeflow/navierstokes/momentum/cvfe/model.hh:180
GetPropType< TypeTag, Properties::GridGeometry > GridGeometry
Definition freeflow/navierstokes/momentum/cvfe/model.hh:178
GetPropType< TypeTag, Properties::Scalar > Scalar
Definition freeflow/navierstokes/momentum/cvfe/model.hh:179
The type tag for the single-phase, isothermal Navier-Stokes model.
Definition freeflow/navierstokes/momentum/cvfe/model.hh:120
std::tuple< FreeFlow > InheritsFrom
Definition freeflow/navierstokes/momentum/cvfe/model.hh:120
Definition freeflow/navierstokes/momentum/cvfe/model.hh:121
std::tuple< NavierStokesMomentumCVFEBase > InheritsFrom
Definition freeflow/navierstokes/momentum/cvfe/model.hh:121
Definition freeflow/navierstokes/momentum/cvfe/model.hh:122
std::tuple< NavierStokesMomentumCVFEBase > InheritsFrom
Definition freeflow/navierstokes/momentum/cvfe/model.hh:122
NavierStokesMomentumCVFEVolumeVariables< Traits > type
Definition freeflow/navierstokes/momentum/cvfe/model.hh:199