4.3 Time and data input/output control

The OpenFOAM solvers begin all runs by setting up a database. The database controls I/O and, since output of data is usually requested at intervals of time during the run, time is an inextricable part of the database. The controlDict dictionary sets input parameters essential for the creation of the database. The keyword entries in controlDict are listed in the following sections. Only the time control and writeInterval entries are mandatory, with the database using default values for any of the optional entries that are omitted. Example entries from a controlDict dictionary are given below:

17  
18  application     icoFoam;
19  
20  startFrom       startTime;
21  
22  startTime       0;
23  
24  stopAt          endTime;
25  
26  endTime         0.5;
27  
28  deltaT          0.005;
29  
30  writeControl    timeStep;
31  
32  writeInterval   20;
33  
34  purgeWrite      0;
35  
36  writeFormat     ascii;
37  
38  writePrecision  6;
39  
40  writeCompression off;
41  
42  timeFormat      general;
43  
44  timePrecision   6;
45  
46  runTimeModifiable true;
47  
48  
49  // ************************************************************************* //

4.3.1 Time control

startFrom
Controls the start time of the simulation.
  • firstTime: Earliest time step from the set of time directories.
  • startTime: Time specified by the startTime keyword entry.
  • latestTime: Most recent time step from the set of time directories.
startTime
Start time for the simulation with startFrom startTime;
stopAt
Controls the end time of the simulation.
  • endTime: Time specified by the endTime keyword entry.
  • writeNow: Stops simulation on completion of current time step and writes data.
  • noWriteNow: Stops simulation on completion of current time step and does not write out data.
  • : Stops simulation on completion of next scheduled write time, specified by writeControl.
endTime
End time for the simulation when stopAt endTime; is specified.
deltaT
Time step of the simulation.

4.3.2 Data writing

writeControl
Controls the timing of write output to file.
  • timeStep: Writes data every writeInterval time steps.
  • runTime: Writes data every writeInterval seconds of simulated time.
  • adjustableRunTime: Writes data every writeInterval seconds of simulated time, adjusting the time steps to coincide with the writeInterval if necessary — used in cases with automatic time step adjustment.
  • cpuTime: Writes data every writeInterval seconds of CPU time.
  • clockTime: Writes data out every writeInterval seconds of real time.
writeInterval
Scalar used in conjunction with writeControl described above.
purgeWrite
Integer representing a limit on the number of time directories that are stored by overwriting time directories on a cyclic basis. For example, if the simulations starts at t  \relax \special {t4ht= = 5s and Δt  \relax \special {t4ht= = 1s, then with purgeWrite 2;, data is first written into 2 directories, 6 and 7, then when 8 is written, 6 is deleted, and so on so that only 2 new results directories exists at any time. To disable the purging, specify purgeWrite 0; (default).
writeFormat
Specifies the format of the data files.
  • ascii (default): ASCII format, written to writePrecision significant figures.
  • binary: binary format.
writePrecision
Integer used in conjunction with writeFormat described above, 6 by default.
writeCompression
Switch to specify whether files are compressed with gzip when written: on/off (yes/no, true/false)
timeFormat
Choice of format of the naming of the time directories.
  • fixed: ±  m.dddddd  \relax \special {t4ht= where the number of d  \relax \special {t4ht=s is set by timePrecision.
  • scientific: ±  m.dddddde  ± xx  \relax \special {t4ht= where the number of d  \relax \special {t4ht=s is set by timePrecision.
  • general (default): Specifies scientific format if the exponent is less than -4 or greater than or equal to that specified by timePrecision.
timePrecision
Integer used in conjunction with timeFormat described above, 6 by default.
graphFormat
Format for graph data written by an application.
  • raw (default): Raw ASCII format in columns.
  • gnuplot: Data in gnuplot format.
  • xmgr: Data in Grace/xmgr format.
  • jplot: Data in jPlot format.

4.3.3 Other settings

adjustTimeStep
Switch used by some solvers to adjust the time step during the simulation, usually according to maxCo.
maxCo
Maximum Courant number, e.g. 0.5
runTimeModifiable
Switch for whether dictionaries, e.g.controlDict, are re-read during a simulation at the beginning of each time step, allowing the user to modify parameters during a simulation.
libs
List of additional libraries (on $LD_LIBRARY_PATH) to be loaded at run-time, e.g.("libNew1.so" "libNew2.so")
functions
Dictionary of functions, e.g. probes to be loaded at run-time; see examples in $FOAM_TUTORIALS
OpenFOAM v6 User Guide - 4.3 Time and data input/output control
CFD Direct