Skip to content
Snippets Groups Projects
Commit d6ce2b51 authored by Dennis Gläser's avatar Dennis Gläser Committed by Timo Koch
Browse files

[mpfa][fluxvarcache] update neumannfluxes during derivative calculation

when UseTpfaBoundaries is deactivated, the scaling of the neumann flux
has to reoccur using the deflected vol vars. otherwise the flux calculation
in the fluxVariables goes wrong. We have to keep in mind, that using the global
flux var cache for the mpfa also means that the neuman boundaries are assumed to be
constant over time!
parent be93dd73
No related branches found
No related tags found
Loading
......@@ -58,6 +58,7 @@ class CCMpfaFluxVariablesCacheFillerImplementation<TypeTag, true, false, false>
using Element = typename GridView::template Codim<0>::Entity;
static const int numEq = GET_PROP_VALUE(TypeTag, NumEq);
static const bool useTpfaBoundary = GET_PROP_VALUE(TypeTag, UseTpfaBoundary);
static const bool solDependentParams = GET_PROP_VALUE(TypeTag, SolutionDependentParameters);
public:
......@@ -68,36 +69,46 @@ public:
const FVElementGeometry& fvGeometry,
const ElementVolumeVariables& elemVolVars,
const SubControlVolumeFace& scvf,
FluxVarsCacheVector& fluxVarsCache)
FluxVarsCacheVector& fluxVarsCache,
const bool updateNeumannOnly = false)
{
// if we only want to update the neumann fluxes, skip the rest if we don't touch the boundary
const bool boundary = problem.model().globalFvGeometry().scvfTouchesBoundary(scvf);
if (updateNeumannOnly && !boundary)
return;
// lambda function to get the permeability tensor
const auto* prob = &problem;
auto permFunction = [prob](const Element& element, const VolumeVariables& volVars, const SubControlVolume& scv)
auto permFunction = [prob](const Element& element,
const VolumeVariables& volVars,
const SubControlVolume& scv)
{ return prob->spatialParams().intrinsicPermeability(scv, volVars); };
// update the flux var caches for this scvf
if (problem.model().globalFvGeometry().scvfTouchesBoundary(scvf))
// get the interaction volume seed and update flux var caches
const auto& seed = boundary ? problem.model().globalFvGeometry().boundaryInteractionVolumeSeed(scvf) : problem.model().globalFvGeometry().interactionVolumeSeed(scvf);
if (boundary)
{
const auto& boundarySeed = problem.model().globalFvGeometry().boundaryInteractionVolumeSeed(scvf);
BoundaryInteractionVolume iv(boundarySeed, problem, fvGeometry, elemVolVars);
BoundaryInteractionVolume iv(seed, problem, fvGeometry, elemVolVars);
iv.solveLocalSystem(permFunction);
// we assume phaseIdx = eqIdx here for purely advective problems
for (unsigned int eqIdx = 0; eqIdx < numEq; ++eqIdx)
{
// lambda function defining the upwind factor of the advective flux
auto advectionUpwindFunction = [eqIdx](const VolumeVariables& volVars) { return volVars.density(eqIdx)/volVars.viscosity(eqIdx); };
auto advectionUpwindFunction = [eqIdx](const VolumeVariables& volVars)
{ return volVars.density(eqIdx)/volVars.viscosity(eqIdx); };
iv.assembleNeumannFluxes(advectionUpwindFunction, eqIdx);
// update flux variables cache, only the neumann fluxes have to be set for each phase
// update flux variables cache for the scvf
const auto scvfIdx = scvf.index();
auto& cache = fluxVarsCache[scvfIdx];
if (eqIdx == 0)
cache.updatePhaseNeumannFlux(problem, element, fvGeometry, elemVolVars, scvf, iv, eqIdx);
if (eqIdx == numEq-1)
{
cache.updateAdvection(problem, element, fvGeometry, elemVolVars, scvf, iv);
if (!updateNeumannOnly)
cache.updateAdvection(problem, element, fvGeometry, elemVolVars, scvf, iv);
cache.setUpdated();
}
cache.updatePhaseNeumannFlux(problem, element, fvGeometry, elemVolVars, scvf, iv, eqIdx);
// update flux variable caches of the other scvfs of the interaction volume
for (const auto scvfIdxJ : iv.globalScvfs())
......@@ -107,19 +118,19 @@ public:
const auto& scvfJ = fvGeometry.scvf(scvfIdxJ);
const auto elementJ = problem.model().globalFvGeometry().element(scvfJ.insideScvIdx());
auto& cacheJ = fluxVarsCache[scvfIdxJ];
if (eqIdx == 0)
cacheJ.updatePhaseNeumannFlux(problem, elementJ, fvGeometry, elemVolVars, scvfJ, iv, eqIdx);
if (eqIdx == numEq-1)
{
cacheJ.updateAdvection(problem, elementJ, fvGeometry, elemVolVars, scvfJ, iv);
if (!updateNeumannOnly)
cacheJ.updateAdvection(problem, elementJ, fvGeometry, elemVolVars, scvfJ, iv);
cacheJ.setUpdated();
}
cacheJ.updatePhaseNeumannFlux(problem, elementJ, fvGeometry, elemVolVars, scvfJ, iv, eqIdx);
}
}
}
}
else
{
const auto& seed = problem.model().globalFvGeometry().interactionVolumeSeed(scvf);
InteractionVolume iv(seed, problem, fvGeometry, elemVolVars);
iv.solveLocalSystem(permFunction);
......@@ -154,7 +165,13 @@ public:
FluxVarsCacheVector& fluxVarsCache)
{
if (!solDependentParams)
{
fluxVarsCache[scvf.index()].setUpdated();
// if we do not use tpfa on the boundary, we have to update the neumann fluxes
if (!useTpfaBoundary)
fillFluxVarCache(problem, element, fvGeometry, elemVolVars, scvf, fluxVarsCache, true);
}
else
fillFluxVarCache(problem, element, fvGeometry, elemVolVars, scvf, fluxVarsCache);
}
......
......@@ -175,7 +175,6 @@ class PorousMediumMpfaFluxVariablesCache<TypeTag, true, false, false>
using FVElementGeometry = typename GET_PROP_TYPE(TypeTag, FVElementGeometry);
using ElementVolumeVariables = typename GET_PROP_TYPE(TypeTag, ElementVolumeVariables);
using BoundaryInteractionVolume = typename GET_PROP_TYPE(TypeTag, BoundaryInteractionVolume);
using InteractionVolume = typename GET_PROP_TYPE(TypeTag, InteractionVolume);
using SubControlVolumeFace = typename GET_PROP_TYPE(TypeTag, SubControlVolumeFace);
using AdvectionType = typename GET_PROP_TYPE(TypeTag, AdvectionType);
using Element = typename GridView::template Codim<0>::Entity;
......@@ -195,11 +194,13 @@ public:
// the constructor
PorousMediumMpfaFluxVariablesCache() : isUpdated_(false)
{
// We have to initialize to zero (for inner interaction volumes)
for (auto& nFlux : phaseNeumannFluxes_)
nFlux = 0.0;
}
// update cached objects
template<typename InteractionVolume>
void updateAdvection(const Problem& problem,
const Element& element,
const FVElementGeometry& fvGeometry,
......@@ -222,6 +223,7 @@ public:
tij_ = interactionVolume.getTransmissibilities(localIndexPair);
}
template<typename InteractionVolume>
void updatePhaseNeumannFlux(const Problem& problem,
const Element& element,
const FVElementGeometry& fvGeometry,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment