tutorials/incompressible/simpleFoam/pitzDaily: Change to use SIMPLEC

With the SIMPLE "consistent" option and optimized relaxation factors
this tutorial now converges in 210 iterations, previously with SIMPLE it
took 950.  Despite the increase in cost per time-step due to the
increase in relaxation factors and number of solver iterations the
speed-up is 3.5x.
This commit is contained in:
Henry Weller
2015-06-23 20:33:48 +01:00
parent d9db912bdd
commit 633fee4f84

View File

@ -43,6 +43,7 @@ solvers
SIMPLE SIMPLE
{ {
nNonOrthogonalCorrectors 0; nNonOrthogonalCorrectors 0;
consistent yes;
residualControl residualControl
{ {
@ -54,14 +55,10 @@ SIMPLE
relaxationFactors relaxationFactors
{ {
fields
{
p 0.3;
}
equations equations
{ {
U 0.7; U 0.95;
".*" 0.5; ".*" 0.95;
} }
} }