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; smoother GaussSeidel;
nCellsInCoarsestLevel 10; nCellsInCoarsestLevel 10;
agglomerator faceAreaPair; agglomerator faceAreaPair;
updateInterval -1; // Never redo agglomeration
mergeLevels 1; mergeLevels 1;
maxIter 50; maxIter 50;
} }

View File

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

View File

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

View File

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

View File

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

View File

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