mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Test-GAMG: not normalise agglomeration unless specified
This commit is contained in:
@ -92,7 +92,10 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
fld[celli] = cellToCoarse[celli];
|
fld[celli] = cellToCoarse[celli];
|
||||||
}
|
}
|
||||||
fld /= max(fld);
|
if (normalise)
|
||||||
|
{
|
||||||
|
fld /= max(fld);
|
||||||
|
}
|
||||||
scalarAgglomeration.correctBoundaryConditions();
|
scalarAgglomeration.correctBoundaryConditions();
|
||||||
scalarAgglomeration.write();
|
scalarAgglomeration.write();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user