mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-26 03:00:17 -06:00
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:
parent
99cc53ca66
commit
20f514984c
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user