Skip to content
Snippets Groups Projects
Commit 71f46afb authored by Klaus Mosthaf's avatar Klaus Mosthaf
Browse files

Added eddyViscosity, eddyDiffusivity and eddyConductivity functions and

adapted the evaluation of the respective fluxes in the local residua. The methods return 0 and
have to be implemented, if required.

Reviewed by Christoph.


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@8723 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent b052f72c
No related branches found
No related tags found
No related merge requests found
......@@ -297,6 +297,12 @@ public:
const DimMatrix &velocityGradAtIP() const
{ return velocityGrad(); }
/*!
* \brief Return the eddy viscosity (if implemented).
*/
const Scalar eddyViscosity() const
{ return 0; }
// /*!
// * \brief Return the divergence of the normal velocity at the
// * integration point.
......
......@@ -228,7 +228,7 @@ protected:
// TODO: dilatation term has to be accounted for in outflow, coupling, neumann
// velGradComp[velIdx] += 2./3*fluxVars.velocityDiv;
velGradComp *= fluxVars.viscosity();
velGradComp *= fluxVars.viscosity() + fluxVars.eddyViscosity();
flux[momentumXIdx + velIdx] -=
velGradComp*fluxVars.face().normal;
......@@ -249,9 +249,8 @@ protected:
if (calculateNavierStokes)
{
for (int dimIndex = 0; dimIndex < dim; ++dimIndex)
{
flux[momentumXIdx + dimIndex] += up.density() * up.velocity()[dimIndex] * fluxVars.normalVelocity();
}
flux[momentumXIdx + dimIndex] +=
up.density() * up.velocity()[dimIndex] * fluxVars.normalVelocity();
}
}
......
......@@ -87,7 +87,7 @@ public:
/*!
* \brief Return the mass fraction of the transported component at the integration point.
*/
Scalar massFraction() const
const Scalar massFraction() const
{ return massFraction_; }
/*!
......@@ -100,9 +100,15 @@ public:
/*!
* \brief Return the molar diffusion coefficient at the integration point.
*/
Scalar diffusionCoeff() const
const Scalar diffusionCoeff() const
{ return diffusionCoeff_; }
/*!
* \brief Return the eddy diffusivity (if implemented).
*/
const Scalar eddyDiffusivity() const
{ return 0; }
/*!
* \brief Return the molar diffusion coefficient at the integration point.
*/
......
......@@ -152,7 +152,7 @@ public:
flux[transportEqIdx] -=
fluxVars.moleFractionGrad()[dimIdx] *
fluxVars.face().normal[dimIdx] *
fluxVars.diffusionCoeff() *
(fluxVars.diffusionCoeff() + fluxVars.eddyDiffusivity()) *
fluxVars.molarDensity() *
FluidSystem::molarMass(transportCompIdx);
......
......@@ -80,7 +80,7 @@ public:
/*!
* \brief Returns the heat conductivity at the integration point.
*/
Scalar heatConductivity() const
const Scalar heatConductivity() const
{ return heatConductivity_; }
/*!
......@@ -96,6 +96,12 @@ public:
const DimVector &temperatureGrad() const
{ return temperatureGrad_; }
/*!
* \brief Return the eddy conductivity (if implemented).
*/
const Scalar eddyConductivity() const
{ return 0; }
/*!
* \brief Returns the temperature gradient at the integration point.
*/
......
......@@ -137,7 +137,7 @@ public:
flux[energyEqIdx] -=
fluxVars.temperatureGrad()[dimIdx] *
fluxVars.face().normal[dimIdx] *
fluxVars.heatConductivity();
(fluxVars.heatConductivity() + fluxVars.eddyConductivity());
}
};
......
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