mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
reservoir problem: reduce the raw tolerance of the newton method to 10^-6
10^-4 lead to sporadic results if the final tolerance of the solution really was 10^-4. (it currently is usually better because each time step experiences an additional update after the Newton method deems it to be converged.)
This commit is contained in:
parent
db073ed7e3
commit
bbd545c358
@ -134,7 +134,7 @@ public:
|
||||
SET_STRING_PROP(ReservoirBaseProblem, GridFile, "data/reservoir.dgf");
|
||||
|
||||
// increase the tolerance for this problem to get larger time steps
|
||||
SET_SCALAR_PROP(ReservoirBaseProblem, NewtonRawTolerance, 1e-4);
|
||||
SET_SCALAR_PROP(ReservoirBaseProblem, NewtonRawTolerance, 1e-6);
|
||||
} // namespace Properties
|
||||
|
||||
/*!
|
||||
|
Loading…
Reference in New Issue
Block a user