Merge pull request #2791 from GitPaean/increasing_maxIter

increasing maxIter to 1000 for function satFromPc
This commit is contained in:
Kai Bao
2020-09-21 21:18:20 +02:00
committed by GitHub

View File

@@ -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