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:
parent
d9db912bdd
commit
633fee4f84
1 changed files with 3 additions and 6 deletions
|
|
@ -43,6 +43,7 @@ solvers
|
|||
SIMPLE
|
||||
{
|
||||
nNonOrthogonalCorrectors 0;
|
||||
consistent yes;
|
||||
|
||||
residualControl
|
||||
{
|
||||
|
|
@ -54,14 +55,10 @@ SIMPLE
|
|||
|
||||
relaxationFactors
|
||||
{
|
||||
fields
|
||||
{
|
||||
p 0.3;
|
||||
}
|
||||
equations
|
||||
{
|
||||
U 0.7;
|
||||
".*" 0.5;
|
||||
U 0.95;
|
||||
".*" 0.95;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue