mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: GAMG: processor agglomeration extended for all interfaces
This commit is contained in:
committed by
Andrew Heather
parent
04e4156403
commit
8ae0056edd
@ -0,0 +1,82 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2206 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "system";
|
||||
object controlDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
libs (utilityFunctionObjects);
|
||||
|
||||
DebugSwitches
|
||||
{
|
||||
// mappedPatchBase 2;
|
||||
// syncObjects 2;
|
||||
|
||||
disallowGenericFvPatchField 1;
|
||||
disallowGenericFvsPatchField 1;
|
||||
disallowGenericPointPatchField 1;
|
||||
disallowGenericPolyPatch 1;
|
||||
lduPrimitiveMesh 1;
|
||||
GAMGAgglomeration 2;
|
||||
GAMG 2;
|
||||
}
|
||||
|
||||
|
||||
application laplacianFoam;
|
||||
|
||||
startFrom startTime; //latestTime;
|
||||
|
||||
startTime 0;
|
||||
|
||||
stopAt endTime;
|
||||
|
||||
endTime 1;
|
||||
|
||||
deltaT 1;
|
||||
|
||||
//writeControl runTime;
|
||||
//writeInterval 0.1;
|
||||
writeControl timeStep;
|
||||
writeInterval 1;
|
||||
|
||||
purgeWrite 0;
|
||||
|
||||
writeFormat ascii;
|
||||
|
||||
writePrecision 6;
|
||||
|
||||
writeCompression off;
|
||||
|
||||
timeFormat general;
|
||||
|
||||
timePrecision 6;
|
||||
|
||||
runTimeModifiable true;
|
||||
|
||||
//functions
|
||||
//{
|
||||
// syncObjects
|
||||
// {
|
||||
// type syncObjects;
|
||||
// libs (utilityFunctionObjects);
|
||||
//
|
||||
// // Where is data located relative to runTime. Given as a filename
|
||||
// // with every '/' indicating a sub-objectRegistry w.r.t. runTime.
|
||||
// // Local data is under <root>/send/processorXXX. After execution
|
||||
// // data will be under the corresponding <root>/receive/processorYYY
|
||||
// // objectRegistry
|
||||
// //root "level0/level1/level2";
|
||||
// }
|
||||
//}
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user