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
16 lines
611 B
Gnuplot
Executable File
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'
|
|
#------------------------------------------------------------------------------
|