62 lines
1.0 KiB
Plaintext
62 lines
1.0 KiB
Plaintext
// Mesh decomposition control dictionary
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
FoamFile
|
|
{
|
|
version 0.5;
|
|
format ascii;
|
|
|
|
root "ROOT";
|
|
case "CASE";
|
|
instance "system";
|
|
local "";
|
|
|
|
class dictionary;
|
|
|
|
object decompositionDict;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
numberOfSubdomains 4;
|
|
|
|
//preservePatches (inlet);
|
|
//preserveFaceZones (heater solid1 solid3);
|
|
|
|
method simple;
|
|
//method hierarchical;
|
|
//method metis;
|
|
//method manual;
|
|
|
|
simpleCoeffs
|
|
{
|
|
n (2 2 1);
|
|
delta 0.001;
|
|
}
|
|
|
|
hierarchicalCoeffs
|
|
{
|
|
n (2 2 1);
|
|
delta 0.001;
|
|
order xyz;
|
|
}
|
|
|
|
metisCoeffs
|
|
{
|
|
//processorWeights
|
|
//(
|
|
// 1
|
|
// 1
|
|
// 1
|
|
// 1
|
|
//);
|
|
}
|
|
|
|
manualCoeffs
|
|
{
|
|
dataFile "decompositionData";
|
|
}
|
|
|
|
// ************************************************************************* //
|