File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ struct TolerancePressureMsWells { static constexpr Scalar value = 0.01*1e5; };
100
100
template <class Scalar >
101
101
struct MaxPressureChangeMsWells { static constexpr Scalar value = 10 *1e5 ; };
102
102
103
- struct MaxNewtonIterationsWithInnerWellIterations { static constexpr int value = 8 ; };
103
+ struct MaxNewtonIterationsWithInnerWellIterations { static constexpr int value = 99 ; };
104
104
struct MaxInnerIterMsWells { static constexpr int value = 100 ; };
105
105
struct MaxInnerIterWells { static constexpr int value = 50 ; };
106
106
struct ShutUnsolvableWells { static constexpr bool value = true ; };
Original file line number Diff line number Diff line change @@ -851,7 +851,7 @@ namespace Opm
851
851
852
852
// only use inner well iterations for the first newton iterations.
853
853
const int iteration_idx = simulator.model ().newtonMethod ().numIterations ();
854
- if (iteration_idx < this ->param_ .max_niter_inner_well_iter_ || this -> well_ecl_ . isMultiSegment () ) {
854
+ if (iteration_idx < this ->param_ .max_niter_inner_well_iter_ ) {
855
855
const auto & ws = well_state.well (this ->indexOfWell ());
856
856
const auto pmode_orig = ws.production_cmode ;
857
857
const auto imode_orig = ws.injection_cmode ;
You can’t perform that action at this time.
0 commit comments