This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/incompressible/icoDyMFoam/mixerGgi/system/controlDict

68 lines
1.5 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2014-06-01 11:15:18 +00:00
| \\ / O peration | Version: 3.1 |
2013-12-11 16:09:41 +00:00
| \\ / A nd | Web: http://www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
2010-11-24 20:48:09 +00:00
version 2.0;
format ascii;
class dictionary;
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
2013-10-10 09:39:30 +00:00
application icoDyMFoam;
startFrom startTime;
startTime 0;
stopAt endTime;
2014-01-31 21:32:21 +00:00
endTime 1;
deltaT 0.005;
writeControl timeStep;
writeInterval 1;
cycleWrite 0;
writeFormat ascii;
2013-10-10 09:39:30 +00:00
writePrecision 10;
writeCompression uncompressed;
timeFormat general;
timePrecision 6;
runTimeModifiable yes;
2014-01-31 21:32:21 +00:00
adjustTimeStep no;
maxCo 0.5;
maxDeltaT 1.0;
functions
(
ggiCheck
{
// Type of functionObject
type ggiCheck;
phi phi;
// Where to load it from (if not already in solver)
2010-10-13 11:38:34 +00:00
functionObjectLibs ("libcheckFunctionObjects.so");
}
);
// ************************************************************************* //