AMG solver tests for overset
This commit is contained in:
parent
db6f0c944e
commit
2175c3392f
2 changed files with 37 additions and 21 deletions
|
@ -16,24 +16,33 @@ FoamFile
|
||||||
|
|
||||||
solvers
|
solvers
|
||||||
{
|
{
|
||||||
|
// "p|pFinal"
|
||||||
|
// {
|
||||||
|
// solver BiCGStab;
|
||||||
|
// preconditioner DILU;
|
||||||
|
// minIter 1;
|
||||||
|
// maxIter 1000;
|
||||||
|
// tolerance 1e-10;
|
||||||
|
// relTol 0;
|
||||||
|
// }
|
||||||
"p|pFinal"
|
"p|pFinal"
|
||||||
{
|
{
|
||||||
// solver smoothSolver;
|
solver amgSolver;
|
||||||
// smoother GaussSeidel;
|
cycle V-cycle;
|
||||||
// nSweeps 1;
|
policy cluster;
|
||||||
|
nPreSweeps 1;
|
||||||
|
nPostSweeps 2;
|
||||||
|
groupSize 4;
|
||||||
|
minCoarseEqns 5;
|
||||||
|
nMaxLevels 100;
|
||||||
|
scale on;
|
||||||
|
smoother ILUC0;
|
||||||
|
|
||||||
solver BiCGStab;
|
minIter 0;
|
||||||
preconditioner DILU;
|
maxIter 100;
|
||||||
|
tolerance 1e-7;
|
||||||
// solver CG;
|
relTol 0.0;
|
||||||
// preconditioner DIC;
|
|
||||||
|
|
||||||
minIter 1;
|
|
||||||
maxIter 1000;
|
|
||||||
tolerance 1e-10;
|
|
||||||
relTol 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
U
|
U
|
||||||
{
|
{
|
||||||
solver smoothSolver;
|
solver smoothSolver;
|
||||||
|
|
|
@ -18,15 +18,22 @@ solvers
|
||||||
{
|
{
|
||||||
"p|pFinal"
|
"p|pFinal"
|
||||||
{
|
{
|
||||||
solver smoothSolver;
|
solver amgSolver;
|
||||||
smoother GaussSeidel;
|
cycle W-cycle;
|
||||||
|
policy cluster;
|
||||||
|
nPreSweeps 2;
|
||||||
|
nPostSweeps 3;
|
||||||
|
groupSize 4;
|
||||||
|
minCoarseEqns 5;
|
||||||
|
nMaxLevels 100;
|
||||||
|
scale off;
|
||||||
|
smoother ILUC0;
|
||||||
|
|
||||||
minIter 0;
|
minIter 0;
|
||||||
maxIter 1000;
|
maxIter 100;
|
||||||
tolerance 1e-10;
|
tolerance 1e-7;
|
||||||
relTol 0;
|
relTol 0.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
U
|
U
|
||||||
{
|
{
|
||||||
solver smoothSolver;
|
solver smoothSolver;
|
||||||
|
|
Reference in a new issue