Skip to content
Snippets Groups Projects
Commit 69ffc905 authored by Henry's avatar Henry
Browse files

chemFoam tutorials: Changed ODE solver to rodas32 which is fastest and robust

parent e6108fa2
No related merge requests found
......@@ -23,7 +23,7 @@ chemistryType
chemistry on;
initialChemicalTimeStep 1e-6;
initialChemicalTimeStep 1e-7;
EulerImplicitCoeffs
{
......@@ -33,9 +33,9 @@ EulerImplicitCoeffs
odeCoeffs
{
solver Rosenbrock43;
solver rodas32;
absTol 1e-12;
relTol 1e-2;
relTol 1e-1;
}
......
......@@ -23,13 +23,19 @@ chemistryType
chemistry on;
initialChemicalTimeStep 1e-10;
initialChemicalTimeStep 1e-7;
EulerImplicitCoeffs
{
cTauChem 1;
equilibriumRateLimiter off;
}
odeCoeffs
{
solver SIBS;
solver rodas32;
absTol 1e-12;
relTol 1e-2;
relTol 1e-1;
}
......
......@@ -23,13 +23,19 @@ chemistryType
chemistry on;
initialChemicalTimeStep 1e-10;
initialChemicalTimeStep 1e-7;
EulerImplicitCoeffs
{
cTauChem 1;
equilibriumRateLimiter off;
}
odeCoeffs
{
solver SIBS;
solver rodas32;
absTol 1e-12;
relTol 1e-3;
relTol 1e-1;
}
......
......@@ -23,13 +23,19 @@ chemistryType
chemistry on;
initialChemicalTimeStep 1e-10;
initialChemicalTimeStep 1e-7;
EulerImplicitCoeffs
{
cTauChem 10;
equilibriumRateLimiter no;
}
odeCoeffs
{
solver SIBS;
solver rodas32;
absTol 1e-14;
relTol 1e-4;
relTol 1e-1;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment