Changed direct access to struct WellControls to rather use well_controls_get_xxx() api.

This commit is contained in:
Joakim Hove
2014-01-09 09:32:09 +01:00
parent 671122e2e6
commit 37274035bc
2 changed files with 6 additions and 4 deletions

View File

@@ -27,6 +27,7 @@
#include <opm/core/grid.h>
#include <opm/core/grid/GridManager.hpp>
#include <opm/core/wells.h>
#include <opm/core/well_controls.h>
#include <opm/core/wells/WellsManager.hpp>
#include <opm/core/utility/ErrorMacros.hpp>
#include <opm/core/simulator/initState.hpp>
@@ -165,8 +166,8 @@ try
if (!ok) {
OPM_THROW(std::runtime_error, "Simple well init failed.");
}
simple_wells->ctrls[0]->current = 0;
simple_wells->ctrls[1]->current = 0;
well_controls_set_current( simple_wells->ctrls[0] , 0);
well_controls_set_current( simple_wells->ctrls[1] , 0);
}
// Linear solver.