From 775793676c0bee103ae876312ba3ae4fffa3b6e6 Mon Sep 17 00:00:00 2001 From: Kai Bao Date: Thu, 17 Sep 2020 13:50:47 +0200 Subject: [PATCH] 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. --- ebos/equil/equilibrationhelpers.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebos/equil/equilibrationhelpers.hh b/ebos/equil/equilibrationhelpers.hh index f5027ecbc..52a5c0109 100644 --- a/ebos/equil/equilibrationhelpers.hh +++ b/ebos/equil/equilibrationhelpers.hh @@ -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