mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-14 06:33:28 -06:00
increasing maxIter to 1000 for function satFromPc
it is a temporary fix to make some parallel running easier. We need to change it manually to make some parallel running pass.
This commit is contained in:
parent
6a592a8c55
commit
775793676c
@ -833,7 +833,7 @@ double satFromPc(const MaterialLawManager& materialLawManager,
|
||||
|
||||
assert(f0 > 0 && f1 < 0);
|
||||
|
||||
const int maxIter = 100;
|
||||
const int maxIter = 1000;
|
||||
const double tol = 1e-10;
|
||||
|
||||
// regula falsi with the "Pegasus" method to avoid stagnation
|
||||
|
Loading…
Reference in New Issue
Block a user