3.5-git
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
scalarfluxvariablescachefiller.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 * See the file COPYING for full copying permissions. *
5 * *
6 * This program is free software: you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation, either version 3 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
18 *****************************************************************************/
24#ifndef DUMUX_FREEFLOW_SCALAR_FLUXVARIABLESCACHE_FILLER_HH
25#define DUMUX_FREEFLOW_SCALAR_FLUXVARIABLESCACHE_FILLER_HH
26
29
34
35namespace Dumux {
36
37// forward declaration
38template<class Problem, class ModelTraits, bool diffusionIsSolDependent, bool heatConductionIsSolDependent, class DiscretizationMethod>
40
47template<class Problem, class ModelTraits, bool diffusionIsSolDependent, bool heatConductionIsSolDependent>
49
51template<class Problem, class ModelTraits, bool diffusionIsSolDependent, bool heatConductionIsSolDependent>
52class FreeFlowScalarFluxVariablesCacheFillerImplementation<Problem, ModelTraits, diffusionIsSolDependent, heatConductionIsSolDependent, DiscretizationMethods::CCTpfa>
53{
54 using GridGeometry = typename ProblemTraits<Problem>::GridGeometry;
55 using GridView = typename GridGeometry::GridView;
56 using FVElementGeometry = typename GridGeometry::LocalView;
57 using SubControlVolume = typename GridGeometry::SubControlVolume;
58 using SubControlVolumeFace = typename GridGeometry::SubControlVolumeFace;
59
60 using Element = typename GridView::template Codim<0>::Entity;
61
62 static constexpr bool diffusionEnabled = ModelTraits::enableMolecularDiffusion();
63 static constexpr bool heatConductionEnabled = ModelTraits::enableEnergyBalance();
64
65public:
66 static constexpr bool isSolDependent = (diffusionEnabled && diffusionIsSolDependent) ||
67 (heatConductionEnabled && heatConductionIsSolDependent);
68
71 : problemPtr_(&problem) {}
72
84 template<class FluxVariablesCacheContainer, class FluxVariablesCache, class ElementVolumeVariables>
85 void fill(FluxVariablesCacheContainer& fluxVarsCacheContainer,
86 FluxVariablesCache& scvfFluxVarsCache,
87 const Element& element,
88 const FVElementGeometry& fvGeometry,
89 const ElementVolumeVariables& elemVolVars,
90 const SubControlVolumeFace& scvf,
91 const bool forceUpdateAll = false)
92 {
93 // fill the physics-related quantities of the caches
94 if (forceUpdateAll)
95 {
96 if constexpr (diffusionEnabled)
97 fillDiffusion_(scvfFluxVarsCache, element, fvGeometry, elemVolVars, scvf);
98 if constexpr (heatConductionEnabled)
99 fillHeatConduction_(scvfFluxVarsCache, element, fvGeometry, elemVolVars, scvf);
100 }
101 else
102 {
103 if constexpr (diffusionEnabled && diffusionIsSolDependent)
104 fillDiffusion_(scvfFluxVarsCache, element, fvGeometry, elemVolVars, scvf);
105 if constexpr (heatConductionEnabled && heatConductionIsSolDependent)
106 fillHeatConduction_(scvfFluxVarsCache, element, fvGeometry, elemVolVars, scvf);
107 }
108 }
109
110private:
111
112 const Problem& problem() const
113 { return *problemPtr_; }
114
115
117 template<class FluxVariablesCache, class ElementVolumeVariables>
118 void fillDiffusion_(FluxVariablesCache& scvfFluxVarsCache,
119 const Element& element,
120 const FVElementGeometry& fvGeometry,
121 const ElementVolumeVariables& elemVolVars,
122 const SubControlVolumeFace& scvf)
123 {
124 using DiffusionType = typename ElementVolumeVariables::VolumeVariables::MolecularDiffusionType;
125 using DiffusionFiller = typename DiffusionType::Cache::Filler;
126 using FluidSystem = typename ElementVolumeVariables::VolumeVariables::FluidSystem;
127
128 static constexpr int numPhases = ModelTraits::numFluidPhases();
129 static constexpr int numComponents = ModelTraits::numFluidComponents();
130
131 // forward to the filler of the diffusive quantities
132 if constexpr (FluidSystem::isTracerFluidSystem())
133 for (unsigned int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx)
134 for (unsigned int compIdx = 0; compIdx < numComponents; ++compIdx)
135 DiffusionFiller::fill(scvfFluxVarsCache, phaseIdx, compIdx, problem(), element, fvGeometry, elemVolVars, scvf, *this);
136 else
137 for (unsigned int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx)
138 for (unsigned int compIdx = 0; compIdx < numComponents; ++compIdx)
139 if (compIdx != FluidSystem::getMainComponent(phaseIdx))
140 DiffusionFiller::fill(scvfFluxVarsCache, phaseIdx, compIdx, problem(), element, fvGeometry, elemVolVars, scvf, *this);
141 }
142
144 template<class FluxVariablesCache, class ElementVolumeVariables>
145 void fillHeatConduction_(FluxVariablesCache& scvfFluxVarsCache,
146 const Element& element,
147 const FVElementGeometry& fvGeometry,
148 const ElementVolumeVariables& elemVolVars,
149 const SubControlVolumeFace& scvf)
150 {
151 using HeatConductionType = typename ElementVolumeVariables::VolumeVariables::HeatConductionType;
152 using HeatConductionFiller = typename HeatConductionType::Cache::Filler;
153
154 // forward to the filler of the diffusive quantities
155 HeatConductionFiller::fill(scvfFluxVarsCache, problem(), element, fvGeometry, elemVolVars, scvf, *this);
156 }
157
158 const Problem* problemPtr_;
159};
160
161} // end namespace Dumux
162
163#endif
The infrastructure to retrieve run-time parameters from Dune::ParameterTrees.
Helper classes to compute the integration elements.
The available discretization methods in Dumux.
The reference frameworks and formulations available for splitting total fluxes into a advective and d...
Definition: adapt.hh:29
std::decay_t< decltype(std::declval< Problem >().gridGeometry())> GridGeometry
Definition: common/typetraits/problem.hh:45
Definition: scalarfluxvariablescachefiller.hh:39
FreeFlowScalarFluxVariablesCacheFillerImplementation(const Problem &problem)
The constructor. Sets the problem pointer.
Definition: scalarfluxvariablescachefiller.hh:70
void fill(FluxVariablesCacheContainer &fluxVarsCacheContainer, FluxVariablesCache &scvfFluxVarsCache, const Element &element, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars, const SubControlVolumeFace &scvf, const bool forceUpdateAll=false)
function to fill the flux variables caches
Definition: scalarfluxvariablescachefiller.hh:85
Declares all properties used in Dumux.
Type traits for problem classes.