decoupled: renaming according to refined naming rules, this time for local variables.

Reviewed by Benjamin.

Dumux-Svn-Revison: 10776
Ported-By: Andreas Lauser <andreas.lauser@iws.uni-stuttgart.de>
This commit is contained in:
Bernd Flemisch 2013-05-29 11:09:01 +00:00 committed by Andreas Lauser
parent 20f514984c
commit ccdf1c742b

View File

@ -130,7 +130,7 @@ class TutorialProblemDecoupled: public IMPESProblem2P<TypeTag> /*@\label{tutoria
enum enum
{ {
nPhaseIdx = Indices::nPhaseIdx, nPhaseIdx = Indices::nPhaseIdx,
pWIdx = Indices::pwIdx, pwIdx = Indices::pwIdx,
swIdx = Indices::swIdx, swIdx = Indices::swIdx,
pressEqIdx = Indices::pressEqIdx, pressEqIdx = Indices::pressEqIdx,
satEqIdx = Indices::satEqIdx satEqIdx = Indices::satEqIdx
@ -252,7 +252,7 @@ public:
*/ */
void dirichlet(PrimaryVariables &values, const Intersection& intersection) const /*@\label{tutorial-decoupled:dirichlet}@*/ void dirichlet(PrimaryVariables &values, const Intersection& intersection) const /*@\label{tutorial-decoupled:dirichlet}@*/
{ {
values[pWIdx] = 2e5; values[pwIdx] = 2e5;
values[swIdx] = 1.0; values[swIdx] = 1.0;
} }
//! Value for neumann boundary condition \f$ [\frac{kg}{m^3 \cdot s}] \f$ at position globalPos. //! Value for neumann boundary condition \f$ [\frac{kg}{m^3 \cdot s}] \f$ at position globalPos.