diff --git a/examples/tutorialproblem_decoupled.hh b/examples/tutorialproblem_decoupled.hh index 35bfaadf3..aabb6280c 100644 --- a/examples/tutorialproblem_decoupled.hh +++ b/examples/tutorialproblem_decoupled.hh @@ -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; }