Merge pull request #5638 from GitPaean/compositional_tolerance

set newton tolerance to be 1.e-7 for compositional running
This commit is contained in:
Arne Morten Kvarving 2024-10-02 08:37:48 +02:00 committed by GitHub
commit 15d6f13d92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -93,6 +93,9 @@ public:
static void registerParameters()
{
FlowProblemType::registerParameters();
// tighter tolerance is needed for compositional modeling here
Parameters::SetDefault<Parameters::NewtonTolerance<Scalar>>(1e-7);
}