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/simpleFoam/ERCOFTAC_ConicalDiffuser/Case1.1/postProcessing/plotResiduals.gplt
2012-04-15 13:43:52 -04:00

41 lines
831 B
Text

#
# Automatic residual plot by
# Håkan Nilsson, Omar Bounous, Maryse Page and Martin Beaudoin
#
set output 'residuals.png'
set terminal png medium
#set output 'residuals.eps'
#set term postscript color # color
#set term postscript # black and white
set autoscale
set noarrow
set nolabel
set nogrid
set grid
set logscale y
set xlabel 'Iteration'
set ylabel 'Residual'
set title 'Case1.1'
#
plot \
"logs/Ux_0" \
title "Ux_0" with lines linewidth 2 \
, \
"logs/Uy_0" \
title "Uy_0" with lines linewidth 2 \
, \
"logs/Uz_0" \
title "Uz_0" with lines linewidth 2 \
, \
"logs/p_0" \
title "p_0" with lines linewidth 2 \
, \
"logs/k_0" \
title "k_0" with lines linewidth 2 \
, \
"logs/epsilon_0" \
title "epsilon_0" with lines linewidth 2 \