mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
89 lines
2.1 KiB
C++
89 lines
2.1 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 1.7.1 |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "system";
|
|
object controlDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
application icoFoam;
|
|
|
|
startFrom startTime;
|
|
|
|
startTime 0;
|
|
|
|
stopAt endTime;
|
|
|
|
endTime 0.5;
|
|
|
|
deltaT 0.005;
|
|
|
|
writeControl timeStep;
|
|
|
|
writeInterval 20;
|
|
|
|
purgeWrite 0;
|
|
|
|
writeFormat ascii;
|
|
|
|
writePrecision 6;
|
|
|
|
writeCompression uncompressed;
|
|
|
|
timeFormat general;
|
|
|
|
timePrecision 6;
|
|
|
|
runTimeModifiable yes;
|
|
|
|
functions
|
|
{
|
|
partialWrite
|
|
{
|
|
// Write some registered objects more often than others.
|
|
// Above writeControl determines most frequent dump.
|
|
|
|
type partialWrite;
|
|
|
|
// Where to load it from
|
|
functionObjectLibs ("libIOFunctionObjects.so");
|
|
|
|
// Execute upon outputTime
|
|
outputControl outputTime;
|
|
|
|
// Objects to write every outputTime
|
|
objectNames (p);
|
|
// Write as normal every writeInterval'th outputTime.
|
|
writeInterval 3;
|
|
}
|
|
|
|
dumpObjects
|
|
{
|
|
// Forcibly write registered objects. E.g. fields that have been
|
|
// created with NO_READ.
|
|
|
|
type writeRegisteredObject;
|
|
|
|
// Where to load it from
|
|
functionObjectLibs ("libIOFunctionObjects.so");
|
|
|
|
// Execute upon outputTime
|
|
outputControl outputTime;
|
|
|
|
// Objects to write
|
|
objectNames ();
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|