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

[3pwateroil][localresidual] Clean-up

parent a1c2c41d
No related branches found
No related tags found
1 merge request!1696Feature/diffusion laws mass refvelocity
...@@ -33,8 +33,6 @@ namespace Dumux { ...@@ -33,8 +33,6 @@ namespace Dumux {
* \ingroup ThreePWaterOilModel * \ingroup ThreePWaterOilModel
* \brief Element-wise calculation of the local residual for problems * \brief Element-wise calculation of the local residual for problems
* using the ThreePWaterOil fully implicit model. * using the ThreePWaterOil fully implicit model.
*
* This class is used to fill the gaps in the CompositionalLocalResidual for the 3PWaterOil flow.
*/ */
template<class TypeTag> template<class TypeTag>
class ThreePWaterOilLocalResidual : public GetPropType<TypeTag, Properties::BaseLocalResidual> class ThreePWaterOilLocalResidual : public GetPropType<TypeTag, Properties::BaseLocalResidual>
...@@ -172,46 +170,28 @@ public: ...@@ -172,46 +170,28 @@ public:
//! Add diffusive energy fluxes. For isothermal model the contribution is zero. //! Add diffusive energy fluxes. For isothermal model the contribution is zero.
EnergyLocalResidual::heatConductionFlux(flux, fluxVars); EnergyLocalResidual::heatConductionFlux(flux, fluxVars);
const auto diffusionFluxesWPhase = fluxVars.molecularDiffusionFlux(wPhaseIdx);
auto referenceSystemFormulation = FluxVariables::MolecularDiffusionType::referenceSystemFormulation();
Scalar jNW = 0.0;
Scalar jWW = 0.0;
// diffusive fluxes // diffusive fluxes
//check for the reference system and adapt units of the diffusive flux accordingly. auto referenceSystemFormulation = FluxVariables::MolecularDiffusionType::referenceSystemFormulation();
const auto diffusionFluxesWPhase = fluxVars.molecularDiffusionFlux(wPhaseIdx);
Scalar jNW = diffusionFluxesWPhase[nCompIdx];
// check for the reference system and adapt units of the diffusive flux accordingly.
if (referenceSystemFormulation == ReferenceSystemFormulation::massAveraged) if (referenceSystemFormulation == ReferenceSystemFormulation::massAveraged)
jNW += diffusionFluxesWPhase[nCompIdx]/FluidSystem::molarMass(nCompIdx); jNW /= FluidSystem::molarMass(nCompIdx);
else if (referenceSystemFormulation == ReferenceSystemFormulation::molarAveraged) const Scalar jWW = -jNW;
jNW += diffusionFluxesWPhase[nCompIdx];
else
DUNE_THROW(Dune::NotImplemented, "other reference systems than mass and molar averaged are not implemented");
jWW += -(jNW);
const auto diffusionFluxesGPhase = fluxVars.molecularDiffusionFlux(gPhaseIdx); const auto diffusionFluxesGPhase = fluxVars.molecularDiffusionFlux(gPhaseIdx);
Scalar jWG = diffusionFluxesGPhase[wCompIdx];
Scalar jWG = 0.0; // check for the reference system and adapt units of the diffusive flux accordingly.
Scalar jNG = 0.0;
if (referenceSystemFormulation == ReferenceSystemFormulation::massAveraged) if (referenceSystemFormulation == ReferenceSystemFormulation::massAveraged)
jWG += diffusionFluxesGPhase[wCompIdx]/FluidSystem::molarMass(wCompIdx); jWG /= FluidSystem::molarMass(wCompIdx);
else const Scalar jNG = -jWG;
jWG += diffusionFluxesGPhase[wCompIdx];
jNG += -(jWG);
const auto diffusionFluxesNPhase = fluxVars.molecularDiffusionFlux(nPhaseIdx); const auto diffusionFluxesNPhase = fluxVars.molecularDiffusionFlux(nPhaseIdx);
Scalar jWN = diffusionFluxesNPhase[wCompIdx];
Scalar jWN = 0.0; // check for the reference system and adapt units of the diffusive flux accordingly.
Scalar jNN = 0.0;
if (referenceSystemFormulation == ReferenceSystemFormulation::massAveraged) if (referenceSystemFormulation == ReferenceSystemFormulation::massAveraged)
jWN += diffusionFluxesNPhase[wCompIdx]/FluidSystem::molarMass(wCompIdx); jWN /= FluidSystem::molarMass(wCompIdx);
else const Scalar jNN = -jWN;
jWN += diffusionFluxesNPhase[wCompIdx];
jNN += -jWN;
flux[conti0EqIdx] += jWW+jWG+jWN; flux[conti0EqIdx] += jWW+jWG+jWN;
flux[conti1EqIdx] += jNW+jNG+jNN; flux[conti1EqIdx] += jNW+jNG+jNN;
......
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