mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: add 'coeffs' to annotated decomposeParDict
This commit is contained in:
@ -53,11 +53,10 @@ regions
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Coefficients for the decomposition method are either as a
|
// Coefficients for the decomposition method are either as a general
|
||||||
// general "coeffs" dictionary or method-specific "<method>Coeffs".
|
// "coeffs" dictionary or method-specific "<method>Coeffs".
|
||||||
// For multiLevel, using multiLevelCoeffs only.
|
// For multiLevel, using multiLevelCoeffs only.
|
||||||
|
|
||||||
|
|
||||||
multiLevelCoeffs
|
multiLevelCoeffs
|
||||||
{
|
{
|
||||||
// multiLevel decomposition methods to apply in turn.
|
// multiLevel decomposition methods to apply in turn.
|
||||||
@ -70,12 +69,12 @@ multiLevelCoeffs
|
|||||||
level0
|
level0
|
||||||
{
|
{
|
||||||
numberOfSubdomains 16;
|
numberOfSubdomains 16;
|
||||||
method scotch;
|
method scotch;
|
||||||
}
|
}
|
||||||
level1
|
level1
|
||||||
{
|
{
|
||||||
numberOfSubdomains 2;
|
numberOfSubdomains 2;
|
||||||
method scotch;
|
method scotch;
|
||||||
coeffs
|
coeffs
|
||||||
{
|
{
|
||||||
n (2 1 1);
|
n (2 1 1);
|
||||||
@ -85,8 +84,8 @@ multiLevelCoeffs
|
|||||||
level2
|
level2
|
||||||
{
|
{
|
||||||
numberOfSubdomains 8;
|
numberOfSubdomains 8;
|
||||||
// method simple;
|
// method simple;
|
||||||
method scotch;
|
method scotch;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,17 +106,22 @@ multiLevelCoeffs
|
|||||||
|
|
||||||
// Other example coefficients
|
// Other example coefficients
|
||||||
|
|
||||||
|
coeffs
|
||||||
|
{
|
||||||
|
n (2 1 1);
|
||||||
|
}
|
||||||
|
|
||||||
simpleCoeffs
|
simpleCoeffs
|
||||||
{
|
{
|
||||||
n (2 1 1);
|
n (2 1 1);
|
||||||
// delta 0.001; //< default value = 0.001
|
// delta 0.001; //< default value = 0.001
|
||||||
}
|
}
|
||||||
|
|
||||||
hierarchicalCoeffs
|
hierarchicalCoeffs
|
||||||
{
|
{
|
||||||
n (1 2 1);
|
n (1 2 1);
|
||||||
// delta 0.001; //< default value = 0.001
|
// delta 0.001; //< default value = 0.001
|
||||||
// order xyz; //< default order = xyz
|
// order xyz; //< default order = xyz
|
||||||
}
|
}
|
||||||
|
|
||||||
metisCoeffs
|
metisCoeffs
|
||||||
|
|||||||
Reference in New Issue
Block a user