version 3.11-dev
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
porousmediumflow/nonisothermal/localresidual.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//
14#ifndef DUMUX_ENERGY_LOCAL_RESIDUAL_HH
15#define DUMUX_ENERGY_LOCAL_RESIDUAL_HH
16
20
21namespace Dumux {
22
23// forward declaration
24template<class TypeTag, bool enableEneryBalance>
26
27template<class TypeTag>
29
34template<class TypeTag>
36{
41 using FVElementGeometry = typename GetPropType<TypeTag, Properties::GridGeometry>::LocalView;
42 using SubControlVolume = typename FVElementGeometry::SubControlVolume;
44
45public:
46 template <typename T = void>
47 static void fluidPhaseStorage(NumEqVector& storage,
48 const SubControlVolume& scv,
49 const VolumeVariables& volVars,
50 int phaseIdx)
51 {
52 static_assert(AlwaysFalse<T>::value, "Deprecated interface that has been removed! Use new interface with additional argument problem instead. Will be entirely removed after release 3.10.");
53 }
54
58 static void fluidPhaseStorage(NumEqVector& storage,
59 const Problem& problem,
60 const SubControlVolume& scv,
61 const VolumeVariables& volVars,
62 int phaseIdx)
63 {}
64
72 static void solidPhaseStorage(NumEqVector& storage,
73 const SubControlVolume& scv,
74 const VolumeVariables& volVars)
75 {}
76
84 static void heatConvectionFlux(NumEqVector& flux,
85 FluxVariables& fluxVars,
86 int phaseIdx)
87 {}
88
95 static void heatConductionFlux(NumEqVector& flux,
96 FluxVariables& fluxVars)
97 {}
98
105 static void heatDispersionFlux(NumEqVector& flux,
106 FluxVariables& fluxVars)
107 {}
108};
109
114template<class TypeTag>
116{
121 using FVElementGeometry = typename GetPropType<TypeTag, Properties::GridGeometry>::LocalView;
122 using SubControlVolume = typename FVElementGeometry::SubControlVolume;
125 using Element = typename GridView::template Codim<0>::Entity;
126 using ElementVolumeVariables = typename GetPropType<TypeTag, Properties::GridVolumeVariables>::LocalView;
128 using Indices = typename ModelTraits::Indices;
129
130 static constexpr int numPhases = ModelTraits::numFluidPhases();
131 enum { energyEqIdx = Indices::energyEqIdx };
132
133public:
134
138 static void fluidPhaseStorage(NumEqVector& storage,
139 const Problem& problem,
140 const SubControlVolume& scv,
141 const VolumeVariables& volVars,
142 int phaseIdx)
143 {
144 // this implementation of the potential energy contribution is only correct
145 // if gravity vector is constant in space and time
146 const auto& x = scv.dofPosition();
147 const auto gravityPotential = x*problem.spatialParams().gravity(x);
148
149 storage[energyEqIdx] += volVars.porosity()
150 * volVars.density(phaseIdx)
151 * volVars.saturation(phaseIdx)
152 * (volVars.internalEnergy(phaseIdx) - gravityPotential);
153 }
154
155 template <typename T = void>
156 static void fluidPhaseStorage(NumEqVector& storage,
157 const SubControlVolume& scv,
158 const VolumeVariables& volVars,
159 int phaseIdx)
160 {
161 static_assert(AlwaysFalse<T>::value, "Deprecated interface that has been removed! Use new interface with additional argument problem instead. Will be entirely removed after release 3.10.");
162 }
163
171 static void solidPhaseStorage(NumEqVector& storage,
172 const SubControlVolume& scv,
173 const VolumeVariables& volVars)
174 {
175 storage[energyEqIdx] += volVars.temperature()
176 * volVars.solidHeatCapacity()
177 * volVars.solidDensity()
178 * (1.0 - volVars.porosity());
179 }
180
188 static void heatConvectionFlux(NumEqVector& flux,
189 FluxVariables& fluxVars,
190 int phaseIdx)
191 {
192 // this implementation of the potential energy contribution is only correct
193 // if gravity vector is constant in space and time
194 const auto& x = fluxVars.scvFace().ipGlobal();
195 const auto gravityPotential = x*fluxVars.problem().spatialParams().gravity(x);
196
197 auto upwindTerm = [=](const auto& volVars){
198 return volVars.density(phaseIdx)*volVars.mobility(phaseIdx)
199 * (volVars.enthalpy(phaseIdx) - gravityPotential);
200 };
201
202 flux[energyEqIdx] += fluxVars.advectiveFlux(phaseIdx, upwindTerm);
203 }
204
211 static void heatConductionFlux(NumEqVector& flux,
212 FluxVariables& fluxVars)
213 {
214 flux[energyEqIdx] += fluxVars.heatConductionFlux();
215 }
216
223 static void heatDispersionFlux(NumEqVector& flux,
224 FluxVariables& fluxVars)
225 {
226
227 if constexpr (ModelTraits::enableThermalDispersion())
228 {
229 flux[energyEqIdx] += fluxVars.thermalDispersionFlux();
230 }
231 }
232
233
243 static void computeSourceEnergy(NumEqVector& source,
244 const Element& element,
245 const FVElementGeometry& fvGeometry,
246 const ElementVolumeVariables& elemVolVars,
247 const SubControlVolume &scv)
248 {}
249};
250
251} // end namespace Dumux
252
253#endif
static void fluidPhaseStorage(NumEqVector &storage, const SubControlVolume &scv, const VolumeVariables &volVars, int phaseIdx)
Definition: porousmediumflow/nonisothermal/localresidual.hh:47
static void heatDispersionFlux(NumEqVector &flux, FluxVariables &fluxVars)
The dispersive energy fluxes.
Definition: porousmediumflow/nonisothermal/localresidual.hh:105
static void heatConductionFlux(NumEqVector &flux, FluxVariables &fluxVars)
The diffusive energy fluxes.
Definition: porousmediumflow/nonisothermal/localresidual.hh:95
static void fluidPhaseStorage(NumEqVector &storage, const Problem &problem, const SubControlVolume &scv, const VolumeVariables &volVars, int phaseIdx)
The energy storage in the fluid phase with index phaseIdx.
Definition: porousmediumflow/nonisothermal/localresidual.hh:58
static void heatConvectionFlux(NumEqVector &flux, FluxVariables &fluxVars, int phaseIdx)
The advective phase energy fluxes.
Definition: porousmediumflow/nonisothermal/localresidual.hh:84
static void solidPhaseStorage(NumEqVector &storage, const SubControlVolume &scv, const VolumeVariables &volVars)
The energy storage in the solid matrix.
Definition: porousmediumflow/nonisothermal/localresidual.hh:72
static void solidPhaseStorage(NumEqVector &storage, const SubControlVolume &scv, const VolumeVariables &volVars)
The energy storage in the solid matrix.
Definition: porousmediumflow/nonisothermal/localresidual.hh:171
static void heatConductionFlux(NumEqVector &flux, FluxVariables &fluxVars)
The diffusive energy fluxes.
Definition: porousmediumflow/nonisothermal/localresidual.hh:211
static void heatDispersionFlux(NumEqVector &flux, FluxVariables &fluxVars)
The dispersive energy fluxes.
Definition: porousmediumflow/nonisothermal/localresidual.hh:223
static void fluidPhaseStorage(NumEqVector &storage, const Problem &problem, const SubControlVolume &scv, const VolumeVariables &volVars, int phaseIdx)
The energy storage in the fluid phase with index phaseIdx.
Definition: porousmediumflow/nonisothermal/localresidual.hh:138
static void computeSourceEnergy(NumEqVector &source, const Element &element, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars, const SubControlVolume &scv)
heat transfer between the phases for nonequilibrium models
Definition: porousmediumflow/nonisothermal/localresidual.hh:243
static void heatConvectionFlux(NumEqVector &flux, FluxVariables &fluxVars, int phaseIdx)
The advective phase energy fluxes.
Definition: porousmediumflow/nonisothermal/localresidual.hh:188
static void fluidPhaseStorage(NumEqVector &storage, const SubControlVolume &scv, const VolumeVariables &volVars, int phaseIdx)
Definition: porousmediumflow/nonisothermal/localresidual.hh:156
Definition: porousmediumflow/nonisothermal/localresidual.hh:25
Defines all properties used in Dumux.
Type traits.
typename NumEqVectorTraits< PrimaryVariables >::type NumEqVector
A vector with the same size as numbers of equations This is the default implementation and has to be ...
Definition: numeqvector.hh:34
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition: propertysystem.hh:296
Definition: adapt.hh:17
A helper to deduce a vector with the same size as numbers of equations.
Template which always yields a false value.
Definition: common/typetraits/typetraits.hh:24