Skip to content
Snippets Groups Projects
Commit cacf2649 authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

[compositionalLocalResidual] Adapt handling of diffusive fluxes

* consider vector of molecular fluxes in a more generic way
* when using moles, make sure that the total molar flux given by the
  respective diffusion law actually cancels out
* otherwise, consider all individual fluxes for total balance
parent 8ee131d5
No related branches found
No related tags found
Loading
...@@ -78,6 +78,10 @@ class FicksLawImplementation<TypeTag, DiscretizationMethods::Box> ...@@ -78,6 +78,10 @@ class FicksLawImplementation<TypeTag, DiscretizationMethods::Box>
using ComponentFluxVector = Dune::FieldVector<Scalar, numComponents>; using ComponentFluxVector = Dune::FieldVector<Scalar, numComponents>;
public: public:
static constexpr bool totalMolarFluxesCancelOut()
{ return true; }
static ComponentFluxVector flux(const Problem& problem, static ComponentFluxVector flux(const Problem& problem,
const Element& element, const Element& element,
const FVElementGeometry& fvGeometry, const FVElementGeometry& fvGeometry,
......
...@@ -159,6 +159,9 @@ public: ...@@ -159,6 +159,9 @@ public:
// state the discretization method this implementation belongs to // state the discretization method this implementation belongs to
static const DiscretizationMethods myDiscretizationMethod = DiscretizationMethods::CCMpfa; static const DiscretizationMethods myDiscretizationMethod = DiscretizationMethods::CCMpfa;
static constexpr bool totalMolarFluxesCancelOut()
{ return true; }
// state the type for the corresponding cache and its filler // state the type for the corresponding cache and its filler
using Cache = MpfaFicksLawCache; using Cache = MpfaFicksLawCache;
using CacheFiller = MpfaFicksLawCacheFiller; using CacheFiller = MpfaFicksLawCacheFiller;
......
...@@ -78,6 +78,9 @@ public: ...@@ -78,6 +78,9 @@ public:
// state the discretization method this implementation belongs to // state the discretization method this implementation belongs to
static const DiscretizationMethods myDiscretizationMethod = DiscretizationMethods::CCTpfa; static const DiscretizationMethods myDiscretizationMethod = DiscretizationMethods::CCTpfa;
static constexpr bool totalMolarFluxesCancelOut()
{ return true; }
//! state the type for the corresponding cache and its filler //! state the type for the corresponding cache and its filler
//! We don't cache anything for this law //! We don't cache anything for this law
using Cache = FluxVariablesCaching::EmptyDiffusionCache; using Cache = FluxVariablesCaching::EmptyDiffusionCache;
......
...@@ -60,15 +60,17 @@ class CompositionalLocalResidual: public GET_PROP_TYPE(TypeTag, BaseLocalResidua ...@@ -60,15 +60,17 @@ class CompositionalLocalResidual: public GET_PROP_TYPE(TypeTag, BaseLocalResidua
using VolumeVariables = typename GET_PROP_TYPE(TypeTag, VolumeVariables); using VolumeVariables = typename GET_PROP_TYPE(TypeTag, VolumeVariables);
using EnergyLocalResidual = typename GET_PROP_TYPE(TypeTag, EnergyLocalResidual); using EnergyLocalResidual = typename GET_PROP_TYPE(TypeTag, EnergyLocalResidual);
using FluidSystem = typename GET_PROP_TYPE(TypeTag, FluidSystem); using FluidSystem = typename GET_PROP_TYPE(TypeTag, FluidSystem);
using MolecularDiffusionType = typename GET_PROP_TYPE(TypeTag, MolecularDiffusionType);
static const int numPhases = GET_PROP_VALUE(TypeTag, NumPhases); static constexpr int numPhases = GET_PROP_VALUE(TypeTag, NumPhases);
static const int numComponents = GET_PROP_VALUE(TypeTag, NumComponents); static constexpr int numComponents = GET_PROP_VALUE(TypeTag, NumComponents);
static const bool useMoles = GET_PROP_VALUE(TypeTag, UseMoles); static constexpr bool useMoles = GET_PROP_VALUE(TypeTag, UseMoles);
enum { conti0EqIdx = Indices::conti0EqIdx }; enum { conti0EqIdx = Indices::conti0EqIdx };
//! The index of the component balance equation that gets replaced with the total mass balance //! The index of the component balance equation that gets replaced with the total mass balance
static const int replaceCompEqIdx = GET_PROP_VALUE(TypeTag, ReplaceCompEqIdx); static constexpr int replaceCompEqIdx = GET_PROP_VALUE(TypeTag, ReplaceCompEqIdx);
static constexpr bool useTotalMoleOrMassBalance = replaceCompEqIdx < numComponents;
public: public:
...@@ -105,7 +107,7 @@ public: ...@@ -105,7 +107,7 @@ public:
} }
// in case one balance is substituted by the total mole balance // in case one balance is substituted by the total mole balance
if (replaceCompEqIdx < numComponents) if (useTotalMoleOrMassBalance)
storage[replaceCompEqIdx] = volVars.molarDensity(phaseIdx) storage[replaceCompEqIdx] = volVars.molarDensity(phaseIdx)
* volVars.porosity() * volVars.porosity()
* volVars.saturation(phaseIdx); * volVars.saturation(phaseIdx);
...@@ -133,7 +135,7 @@ public: ...@@ -133,7 +135,7 @@ public:
} }
// in case one balance is substituted by the total mass balance // in case one balance is substituted by the total mass balance
if (replaceCompEqIdx < numComponents) if (useTotalMoleOrMassBalance)
storage[replaceCompEqIdx] = volVars.density(phaseIdx) storage[replaceCompEqIdx] = volVars.density(phaseIdx)
* volVars.porosity() * volVars.porosity()
* volVars.saturation(phaseIdx); * volVars.saturation(phaseIdx);
...@@ -189,23 +191,28 @@ public: ...@@ -189,23 +191,28 @@ public:
flux[eqIdx] += fluxVars.advectiveFlux(phaseIdx, upwindTerm); flux[eqIdx] += fluxVars.advectiveFlux(phaseIdx, upwindTerm);
// diffusive fluxes (only for the component balances) // diffusive fluxes (only for the component balances)
if (phaseIdx != compIdx) if(eqIdx != replaceCompEqIdx)
{ flux[eqIdx] += diffusiveFluxes[compIdx];
//one of these if is always true
if (eqIdx != replaceCompEqIdx)
flux[eqIdx] += diffusiveFluxes[compIdx];
if (conti0EqIdx + phaseIdx != replaceCompEqIdx)
flux[conti0EqIdx + phaseIdx] -= diffusiveFluxes[compIdx];
}
} }
// in case one balance is substituted by the total mole balance // in case one balance is substituted by the total mole balance
if (replaceCompEqIdx < numComponents) if (useTotalMoleOrMassBalance)
{ {
// if the diffusion model assumes that each mole of substance B (minor component)
// replaces exactly one mole of substance A (bulk phase major component),
// just consider the advective bulk phase movement
if(MolecularDiffusionType::totalMolarFluxesCancelOut())
{
auto upwindTermTotalBalance = [phaseIdx](const auto& volVars) auto upwindTermTotalBalance = [phaseIdx](const auto& volVars)
{ return volVars.molarDensity(phaseIdx)*volVars.mobility(phaseIdx); }; { return volVars.molarDensity(phaseIdx)*volVars.mobility(phaseIdx); };
flux[replaceCompEqIdx] = fluxVars.advectiveFlux(phaseIdx, upwindTermTotalBalance); flux[replaceCompEqIdx] = fluxVars.advectiveFlux(phaseIdx, upwindTermTotalBalance);
}
else
{
for(int compIdx = 0; compIdx < numComponents; ++compIdx)
flux[replaceCompEqIdx] += diffusiveFluxes[compIdx];
}
} }
//! Add advective phase energy fluxes. For isothermal model the contribution is zero. //! Add advective phase energy fluxes. For isothermal model the contribution is zero.
...@@ -237,23 +244,15 @@ public: ...@@ -237,23 +244,15 @@ public:
flux[eqIdx] += advFlux; flux[eqIdx] += advFlux;
// diffusive fluxes (only for the component balances) // diffusive fluxes (only for the component balances)
if (phaseIdx != compIdx) if(eqIdx != replaceCompEqIdx)
{ flux[eqIdx] += diffusiveFluxes[compIdx]*FluidSystem::molarMass(compIdx);
if (eqIdx != replaceCompEqIdx)
flux[eqIdx] += diffusiveFluxes[compIdx]*FluidSystem::molarMass(compIdx);
if (conti0EqIdx + phaseIdx != replaceCompEqIdx)
flux[conti0EqIdx + phaseIdx] -= diffusiveFluxes[compIdx]*FluidSystem::molarMass(compIdx);
}
} }
// in case one balance is substituted by the total mass balance // in case one balance is substituted by the total mass balance
if (replaceCompEqIdx < numComponents) if (useTotalMoleOrMassBalance)
{ {
auto upwindTermTotalBalance = [phaseIdx](const auto& volVars) for(int compIdx = 0; compIdx < numComponents; ++compIdx)
{ return volVars.density(phaseIdx)*volVars.mobility(phaseIdx); }; flux[replaceCompEqIdx] += diffusiveFluxes[compIdx]*FluidSystem::molarMass(compIdx);
flux[replaceCompEqIdx] = fluxVars.advectiveFlux(phaseIdx, upwindTermTotalBalance);
} }
//! Add advective phase energy fluxes. For isothermal model the contribution is zero. //! Add advective phase energy fluxes. For isothermal model the contribution is zero.
......
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