ENH: GAMG: update some fvSolution for updateInterval settings. See !707

This commit is contained in:
mattijs 2024-11-27 11:07:11 +00:00
parent 3e00e05e33
commit 0fa5062c7d
7 changed files with 13 additions and 2 deletions

View File

@ -24,6 +24,7 @@ solvers
smoother GaussSeidel;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
updateInterval -1; // Never redo agglomeration
mergeLevels 1;
maxIter 50;
}

View File

@ -23,6 +23,8 @@ solvers
relTol 0;
smoother DICGaussSeidel;
maxIter 50;
cacheAgglomeration yes; // Store agglomeration
updateInterval -1; // Never redo agglomeration
}
p

View File

@ -22,6 +22,8 @@ solvers
tolerance 1e-8;
relTol 0;
smoother GaussSeidel;
cacheAgglomeration yes; // Store agglomeration
updateInterval 10; // Redo agglomeration occasionally
}
pFinal

View File

@ -22,8 +22,8 @@ solvers
solver GAMG;
smoother GaussSeidel;
tolerance 0.02;
relTol 0;
tolerance 0.02;
relTol 0;
}
p

View File

@ -22,6 +22,8 @@ solvers
smoother GaussSeidel;
tolerance 0.02;
relTol 0;
cacheAgglomeration yes; // Store agglomeration
updateInterval -1; // Never redo agglomeration
}
p

View File

@ -22,6 +22,8 @@ solvers
tolerance 0;
relTol 0.01;
smoother GaussSeidel;
cacheAgglomeration yes; // Store agglomeration
updateInterval 2; // Redo agglomeration occasionally
}
pFinal

View File

@ -24,6 +24,8 @@ solvers
smoother DICGaussSeidel;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
cacheAgglomeration yes; // Store agglomeration
updateInterval -1; // Never redo agglomeration
mergeLevels 1;
maxIter 50;
}