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:
Andreas Lauser 2016-10-14 18:26:55 +02:00
parent db073ed7e3
commit bbd545c358

View File

@ -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
/*!