1 /*--------------------------------*- C++ -*----------------------------------*\
3 | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
4 | \\ / O peration | Version: 2.0.0 |
5 | \\ / A nd | Web: www.OpenFOAM.org |
6 | \\/ M anipulation | |
7 \*---------------------------------------------------------------------------*/
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // So we get a decent warning if we have multiple functionObject entries
18 // with the same name.
33 writeControl timeStep;
43 writeCompression uncompressed;
49 runTimeModifiable yes;
55 // Write some registered objects more often than others.
56 // Above writeControl determines most frequent dump.
60 // Where to load it from
61 functionObjectLibs ("libIOFunctionObjects.so");
63 // Optional mesh region to operate on. Only one partialWrite per
65 region wallFilmRegion;
67 // Execute upon outputTime
68 outputControl outputTime;
70 // Objects (fields or lagrangian fields in any of the clouds)
71 // to write every outputTime
72 objectNames (p positions nParticle);
73 // Write as normal every writeInterval'th outputTime.
79 // Forcibly write registered objects. E.g. fields that have been
80 // created with NO_WRITE.
82 type writeRegisteredObject;
84 // Where to load it from
85 functionObjectLibs ("libIOFunctionObjects.so");
87 // Execute upon outputTime
88 outputControl outputTime;
95 // ************************************************************************* //