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

chemFoam tutorials: set ODE solver to seulex which performs best overall

parent b2f8d205
No related merge requests found
Stiff chemistry solver validation test cases Stiff chemistry solver validation test cases
gri : GRI-Mech 3.0. CH4 combustion, 53 species, 325 reactions gri : GRI-Mech 3.0. CH4 combustion, 53 species, 325 reactions
h2 : H2 combustion, 10 species, 27 reactions h2 : H2 combustion, 10 species, 27 reactions
nc7h16 : n-Heptane combustion, 544 species, 2446 reactions nc7h16 : n-Heptane combustion, 544 species, 2446 reactions
ic8h18 : iso-Octane combustion, 874 species, 3796 reactions ic8h18 : iso-Octane combustion, 874 species, 3796 reactions
Results interpreted in 'validation' sub-folder, where OpenFOAM results Results interpreted in 'validation' sub-folder, where OpenFOAM results
are compared against those predicted by Senkin (CHEMKIN II) are compared against those predicted by CHEMKIN II.
Overall the best performing ODE solver is seulex followed closely by rodas32.
...@@ -33,7 +33,7 @@ EulerImplicitCoeffs ...@@ -33,7 +33,7 @@ EulerImplicitCoeffs
odeCoeffs odeCoeffs
{ {
solver rodas32; solver seulex;
absTol 1e-12; absTol 1e-12;
relTol 1e-1; relTol 1e-1;
} }
......
...@@ -33,7 +33,7 @@ EulerImplicitCoeffs ...@@ -33,7 +33,7 @@ EulerImplicitCoeffs
odeCoeffs odeCoeffs
{ {
solver rodas32; solver seulex; //rodas32;
absTol 1e-12; absTol 1e-12;
relTol 1e-1; relTol 1e-1;
} }
......
...@@ -33,7 +33,7 @@ EulerImplicitCoeffs ...@@ -33,7 +33,7 @@ EulerImplicitCoeffs
odeCoeffs odeCoeffs
{ {
solver rodas32; solver seulex;
absTol 1e-12; absTol 1e-12;
relTol 1e-1; relTol 1e-1;
} }
......
...@@ -33,7 +33,7 @@ EulerImplicitCoeffs ...@@ -33,7 +33,7 @@ EulerImplicitCoeffs
odeCoeffs odeCoeffs
{ {
solver rodas32; solver seulex;
absTol 1e-14; absTol 1e-14;
relTol 1e-1; 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