mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: decomposeParDict : added some more comment about multiLevel
This commit is contained in:
@ -17,7 +17,7 @@ FoamFile
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
numberOfSubdomains 4;
|
numberOfSubdomains 8;
|
||||||
|
|
||||||
|
|
||||||
//- Keep owner and neighbour on same processor for faces in zones:
|
//- Keep owner and neighbour on same processor for faces in zones:
|
||||||
@ -29,28 +29,32 @@ numberOfSubdomains 4;
|
|||||||
//preservePatches (cyclic_half0 cyclic_half1);
|
//preservePatches (cyclic_half0 cyclic_half1);
|
||||||
|
|
||||||
|
|
||||||
// method scotch;
|
method scotch;
|
||||||
// method hierarchical;
|
// method hierarchical;
|
||||||
// method simple;
|
// method simple;
|
||||||
// method metis;
|
// method metis;
|
||||||
// method manual;
|
// method manual;
|
||||||
method multiLevel;
|
// method multiLevel;
|
||||||
|
|
||||||
multiLevelCoeffs
|
multiLevelCoeffs
|
||||||
{
|
{
|
||||||
|
// Decomposition methods to apply in turn. This is like hierarchical but
|
||||||
|
// fully general - every method can be used at every level.
|
||||||
|
|
||||||
level0
|
level0
|
||||||
{
|
{
|
||||||
numberOfSubdomains 2;
|
numberOfSubdomains 2;
|
||||||
method simple;
|
//method simple;
|
||||||
simpleCoeffs
|
//simpleCoeffs
|
||||||
{
|
//{
|
||||||
n (2 1 1);
|
// n (2 1 1);
|
||||||
delta 0.001;
|
// delta 0.001;
|
||||||
}
|
//}
|
||||||
|
method scotch;
|
||||||
}
|
}
|
||||||
level1
|
level1
|
||||||
{
|
{
|
||||||
numberOfSubdomains 2;
|
numberOfSubdomains 4;
|
||||||
method scotch;
|
method scotch;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user