version 3.11-dev
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
porousmediumflow/immiscible/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//
13#ifndef DUMUX_IMMISCIBLE_LOCAL_RESIDUAL_HH
14#define DUMUX_IMMISCIBLE_LOCAL_RESIDUAL_HH
15
19
20namespace Dumux {
21
27template<class TypeTag>
30{
37 using ElementVolumeVariables = typename GetPropType<TypeTag, Properties::GridVolumeVariables>::LocalView;
39 using ElementFluxVariablesCache = typename GetPropType<TypeTag, Properties::GridFluxVariablesCache>::LocalView;
41 using FVElementGeometry = typename GridGeometry::LocalView;
42 using SubControlVolume = typename FVElementGeometry::SubControlVolume;
43 using SubControlVolumeFace = typename FVElementGeometry::SubControlVolumeFace;
44 using GridView = typename GridGeometry::GridView;
45 using Element = typename GridView::template Codim<0>::Entity;
47
49 static constexpr int numPhases = ModelTraits::numFluidPhases();
50 static constexpr int conti0EqIdx = ModelTraits::Indices::conti0EqIdx;
51
52public:
53 using ParentType::ParentType;
54
64 NumEqVector computeStorage(const Problem& problem,
65 const SubControlVolume& scv,
66 const VolumeVariables& volVars) const
67 {
68 // partial time derivative of the phase mass
69 NumEqVector storage;
70 for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx)
71 {
72 auto eqIdx = conti0EqIdx + phaseIdx;
73 storage[eqIdx] = volVars.porosity()
74 * volVars.density(phaseIdx)
75 * volVars.saturation(phaseIdx);
76
78 EnergyLocalResidual::fluidPhaseStorage(storage, problem, scv, volVars, phaseIdx);
79 }
80
82 EnergyLocalResidual::solidPhaseStorage(storage, scv, volVars);
83
84 return storage;
85 }
86
87
98 NumEqVector computeFlux(const Problem& problem,
99 const Element& element,
100 const FVElementGeometry& fvGeometry,
101 const ElementVolumeVariables& elemVolVars,
102 const SubControlVolumeFace& scvf,
103 const ElementFluxVariablesCache& elemFluxVarsCache) const
104 {
105 FluxVariables fluxVars;
106 fluxVars.init(problem, element, fvGeometry, elemVolVars, scvf, elemFluxVarsCache);
107
108 NumEqVector flux;
109 for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx)
110 {
111 // the physical quantities for which we perform upwinding
112 auto upwindTerm = [phaseIdx](const auto& volVars)
113 { return volVars.density(phaseIdx)*volVars.mobility(phaseIdx); };
114
115 auto eqIdx = conti0EqIdx + phaseIdx;
116 flux[eqIdx] = fluxVars.advectiveFlux(phaseIdx, upwindTerm);
117
119 EnergyLocalResidual::heatConvectionFlux(flux, fluxVars, phaseIdx);
120 }
121
123 EnergyLocalResidual::heatConductionFlux(flux, fluxVars);
124
125 return flux;
126 }
127};
128
129} // end namespace Dumux
130
131#endif
Element-wise calculation of the residual for problems using the n-phase immiscible fully implicit mod...
Definition: porousmediumflow/immiscible/localresidual.hh:30
NumEqVector computeFlux(const Problem &problem, const Element &element, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars, const SubControlVolumeFace &scvf, const ElementFluxVariablesCache &elemFluxVarsCache) const
Evaluate the mass flux over a face of a sub control volume.
Definition: porousmediumflow/immiscible/localresidual.hh:98
NumEqVector computeStorage(const Problem &problem, const SubControlVolume &scv, const VolumeVariables &volVars) const
Evaluate the rate of change of all conservation quantites (e.g. phase mass) within a sub-control volu...
Definition: porousmediumflow/immiscible/localresidual.hh:64
Defines all properties used in Dumux.
The default local operator than can be specialized for each discretization scheme.
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
typename Detail::DiscretizationDefaultLocalOperator< TypeTag >::type DiscretizationDefaultLocalOperator
Definition: defaultlocaloperator.hh:27
A helper to deduce a vector with the same size as numbers of equations.