Skip to content
Snippets Groups Projects
Commit 6802c6b5 authored by Andreas Lauser's avatar Andreas Lauser
Browse files

the other changes besides CoordScalar -> Scalar of r7333 also seem to be spurious

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7336 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 18d45746
No related merge requests found
...@@ -75,12 +75,7 @@ protected: ...@@ -75,12 +75,7 @@ protected:
phase0NcpIdx = Indices::phase0NcpIdx phase0NcpIdx = Indices::phase0NcpIdx
}; };
#if SUMMED_UP
enum { energyEq0Idx = Indices::energyEq0Idx };
enum { wPhaseIdx = FluidSystem::lPhaseIdx};
enum { nPhaseIdx = FluidSystem::gPhaseIdx};
enum { sPhaseIdx = FluidSystem::sPhaseIdx};
#endif
typedef typename GridView::template Codim<0>::Entity Element; typedef typename GridView::template Codim<0>::Entity Element;
typedef typename GridView::template Codim<0>::Iterator ElementIterator; typedef typename GridView::template Codim<0>::Iterator ElementIterator;
...@@ -267,16 +262,6 @@ public: ...@@ -267,16 +262,6 @@ public:
this->curVolVars_(i).phaseNcp(phaseIdx); this->curVolVars_(i).phaseNcp(phaseIdx);
} }
} }
#if SUMMED_UP
this->residual_[i][energyEq0Idx + wPhaseIdx] += this->residual_[i][energyEq0Idx + nPhaseIdx]
+ this->residual_[i][energyEq0Idx + sPhaseIdx];
this->residual_[i][energyEq0Idx + nPhaseIdx] = this->curVolVars_(i).temperature(wPhaseIdx)
- this->curVolVars_(i).temperature(nPhaseIdx);
this->residual_[i][energyEq0Idx + sPhaseIdx] = this->curVolVars_(i).temperature(wPhaseIdx)
- this->curVolVars_(i).temperature(sPhaseIdx);
#endif
} }
} }
......
...@@ -180,13 +180,10 @@ public: ...@@ -180,13 +180,10 @@ public:
phaseIdx, phaseIdx,
molarPhaseComponentValuesMassTransport[phaseIdx]); molarPhaseComponentValuesMassTransport[phaseIdx]);
#warning HEAT CONDUCTION OFF
#if 0
//conduction is treated lumped in this model //conduction is treated lumped in this model
computeHeatConduction(flux, computeHeatConduction(flux,
fluxVars, fluxVars,
volVars); volVars);
#endif
} }
static void computePhaseEnthalpyFlux(PrimaryVariables & result, static void computePhaseEnthalpyFlux(PrimaryVariables & result,
......
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