Files
OpenFOAM-12/tutorials/incompressible/simpleFoam/roomResidenceTime/validation/plotPos2Data.gplt
Henry Weller a2a74cbb79 functionObjects::age: add optinoal diffusion term and convergence control
to enable the calculation of the residence time for a fluid; mainly used in HVAC
analysis. E.g. residence time of air inside a ventilated room, see the new
tutorial roomResidenceTime.

Contributed by Tobias Holzmann
2019-10-08 16:14:38 +01:00

16 lines
611 B
Gnuplot
Executable File

#!/bin/gnuplot
#------------------------------------------------------------------------------
set grid
set title "Comparison at x = 3.2 m, y = 1.8 m"
set xlabel "Dimensionless Age Quantity [-]"
set ylabel "z-coordinate [m]"
set xrange [0:2]
set yrange [0:3]
#------------------------------------------------------------------------------
set terminal postscript eps color enhanced "Helveicta,20"
set output 'Pos2_Comparison.eps'
plot \
'measurement_Pos2' using 1:2 w p pt 7 t 'Measurement', \
'Pos2_OF' using 2:1 w l t 'OpenFOAM'
#------------------------------------------------------------------------------