Perform changes resulting from our refined naming rules, see FS#180.

Only public member names have been treated so far. Local variables
will be done shortly, classes maybe not before the next release
cycle. Everything old could be marked deprecated.

Reviewed by Benjamin and Christoph.

Dumux-Svn-Revison: 10761
Ported-By: Andreas Lauser <andreas.lauser@iws.uni-stuttgart.de>
This commit is contained in:
Bernd Flemisch 2013-05-28 12:01:15 +00:00 committed by Andreas Lauser
parent 99cc53ca66
commit 20f514984c

View File

@ -226,7 +226,7 @@ public:
*/
void boundaryTypesAtPos(BoundaryTypes &bcTypes, const GlobalPosition& globalPos) const /*@\label{tutorial-decoupled:bctype}@*/
{
if (globalPos[0] < this->bboxMin()[0] + eps_)
if (globalPos[0] < this->bBoxMin()[0] + eps_)
{
bcTypes.setDirichlet(pressEqIdx);
bcTypes.setDirichlet(satEqIdx);
@ -268,7 +268,7 @@ public:
void neumannAtPos(PrimaryVariables &values, const GlobalPosition& globalPos) const /*@\label{tutorial-decoupled:neumann}@*/
{
values = 0;
if (globalPos[0] > this->bboxMax()[0] - eps_)
if (globalPos[0] > this->bBoxMax()[0] - eps_)
{
values[nPhaseIdx] = 3e-2;
}