multiphaseEulerFoam: transform to solve for p_rgh

to avoid excessive pressure/buoyancy balance errors on non-orthogonal meshes
This commit is contained in:
Henry
2015-03-19 21:40:41 +00:00
parent 729f1f7e4c
commit a7f0de9aa9
16 changed files with 92 additions and 61 deletions

View File

@ -55,7 +55,7 @@ snGradSchemes
fluxRequired
{
default no;
p ;
p_rgh ;
pcorr ;
}

View File

@ -22,7 +22,7 @@ solvers
nAlphaSubCycles 2;
}
p
p_rgh
{
solver GAMG;
smoother DIC;
@ -37,16 +37,16 @@ solvers
relTol 0.01;
}
pFinal
p_rghFinal
{
$p;
$p_rgh;
tolerance 1e-9;
relTol 0;
}
pcorr
{
$p;
$p_rgh;
tolerance 1e-5;
relTol 0;
}