ENH: masterCoarsest: demo case for processorAgglom. See !645

This commit is contained in:
mattijs
2023-12-11 12:28:08 +00:00
parent cf4af229b6
commit 05f2d54979
14 changed files with 13 additions and 1797 deletions

View File

@ -9,6 +9,6 @@ runApplication blockMesh
runApplication decomposePar
runParallel $(getApplication)
runParallel $(getApplication) -debug-switch GAMGAgglomeration
#------------------------------------------------------------------------------

View File

@ -0,0 +1,3 @@
Variant of implicitAMI that does
- no implicit AMI
- but processor agglomeration

View File

@ -19,8 +19,15 @@ solvers
{
T
{
solver PCG;
preconditioner DIC;
//solver PCG;
//preconditioner DIC;
//- Processor agglomeration with cyclicAMI
solver GAMG;
nCellsInCoarsestLevel 1;
smoother GaussSeidel;
processorAgglomerator masterCoarsest;
tolerance 1e-06;
relTol 0;
}