set newton tolerance to be 1.e-7 for compositional running

This commit is contained in:
Kai Bao 2024-10-01 15:43:08 +02:00
parent 919f30029f
commit 69c6294978

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);
}