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

[ccmpfa][fickslaw] Clean-up

parent b42a5109
No related branches found
No related tags found
1 merge request!1696Feature/diffusion laws mass refvelocity
...@@ -250,25 +250,24 @@ private: ...@@ -250,25 +250,24 @@ private:
// use arithmetic mean of the densities around the scvf // use arithmetic mean of the densities around the scvf
if (!scvf.boundary()) if (!scvf.boundary())
{ {
const auto rhoInside = Dumux::massOrMolarDensity(elemVolVars[scvf.insideScvIdx()], referenceSystem, phaseIdx); const Scalar rhoInside = massOrMolarDensity(elemVolVars[scvf.insideScvIdx()], referenceSystem, phaseIdx);
Scalar rho = rhoInside; Scalar rho = rhoInside;
for (const auto outsideIdx : scvf.outsideScvIndices()) for (const auto outsideIdx : scvf.outsideScvIndices())
{ {
const auto rhoOutside = Dumux::massOrMolarDensity(elemVolVars[outsideIdx], referenceSystem, phaseIdx); const Scalar rhoOutside = massOrMolarDensity(elemVolVars[outsideIdx], referenceSystem, phaseIdx);
rho += rhoOutside; rho += rhoOutside;
} }
return rho/(scvf.outsideScvIndices().size()+1); return rho/(scvf.outsideScvIndices().size()+1);
} }
else else
return Dumux::massOrMolarDensity(elemVolVars[scvf.outsideScvIdx()], referenceSystem, phaseIdx); return massOrMolarDensity(elemVolVars[scvf.outsideScvIdx()], referenceSystem, phaseIdx);
} }
//! Here we want to calculate the factors with which the diffusion coefficient has to be //! Here we want to calculate the factors with which the diffusion coefficient has to be
//! scaled to get the effective diffusivity. For this we use the effective diffusivity with //! scaled to get the effective diffusivity. For this we use the effective diffusivity with
//! a diffusion coefficient of 1.0 as input. Then we scale the transmissibilites during flux //! a diffusion coefficient of 1.0 as input. Then we scale the transmissibilites during flux
// //! calculation (above) with the harmonic average of the two factors //! calculation (above) with the harmonic average of the two factors
static Scalar computeEffectivityFactor(const ElementVolumeVariables& elemVolVars, static Scalar computeEffectivityFactor(const ElementVolumeVariables& elemVolVars,
const SubControlVolumeFace& scvf, const SubControlVolumeFace& scvf,
const unsigned int phaseIdx) const unsigned int phaseIdx)
......
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