
6.6 Monitoring and managing jobs U-177
BICCG: Solving for Ux, Initial residual = 0.0448679, Final residual = 2.42301e-06, No Iterations 6
BICCG: Solving for Uy, Initial residual = 0.0782042, Final residual = 1.47009e-06, No Iterations 7
ICCG: Solving for p, Initial residual = 0.107474, Final residual = 4.8362e-07, No Iterations 32
time step continuity errors : sum local = 3.99028e-09, global = -5.69762e-19, cumulative = -1.06607e-18
ICCG: Solving for p, Initial residual = 0.0806771, Final residual = 9.47171e-07, No Iterations 31
time step continuity errors : sum local = 7.92176e-09, global = 1.07533e-19, cumulative = -9.58537e-19
ExecutionTime = 0.19 s
6.6.1 The foamJob script for running jobs
The user may be happy to monitor the residuals, iterations, Courant number etc. as
report data passes across the screen. Alternatively, the user can redirect the report to a
log file which will improve the speed of the computation. The foamJob script provides
useful options for this purpose with the following executing the specified <solver> as a
background process and redirecting the output to a file named log:
foamJob <solver>
For further options the user should execute foamJob -help. The user may monitor the
log file whenever they wish, using the UNIXtail command, typically with the -f ‘follow’
option which appends the new data as the log file grows:
tail -f log
6.6.2 The foamLog script for monitoring jobs
There are limitations to monitoring a job by reading the log file, in particular it is difficult
to extract trends over a long period of time. The foamLog script is therefore provided to
extract data of residuals, iterations, Courant number etc. from a log file and present it in
a set of files that can be plotted graphically. The script is executed by:
foamLog <logFile>
The files are stored in a subdirectory of the case directory named logs. Each file has
the name <var>
<subIter> where <var> is the name of the variable specified in the log
file and <subIter> is the iteration number within the time step. Those variables that
are solved for, the initial residual takes the variable name <var> and final residual takes
<var>FinalRes. By default, the files are presented in two-column format of time and the
extracted values.
For example, in the cavity tutorial we may wish to observe the initial residual of the
Ux equation to see whether the solution is converging to a steady-state. In that case, we
would plot the data from the logs/Ux
0 file as shown in Figure 6.5. It can be seen here
that the residual falls monotonically until it reaches the convergence tolerance of 10
−5
.
foamLog generates files for everything it feasibly can from the log file. In the cavity
tutorial example, this includes:
• the Courant number, Courant 0;
• Ux equation initial and final residuals, Ux
0 and UxFinalRes 0, and iterations,
UxIters
0 (and equivalent Uy data);
• cumulative, global and local continuity errors after each of the 2 p equations,
contCumulative 0, contGlobal 0, contLocal 0 and contCumulative 1, contGlobal 1,
contLocal 1;
Open∇FOAM-2.0.0