set title 'z = 0.318 m'
set ylabel 'Normalized axial velocity'
set xlabel 'r/R'
set yrange [0:1.4]
set xrange [-1:1]
set grid
set key outside
set terminal pdf
set output "axial_z0318.pdf"
plot "../EXP_DATA/z0318_exp_data.csv" using 1:4 title 'Exp.',\
"Z318.csv" using 2:5 title 'Num.' with lines;
set terminal pdf
set output "axial_z0502.pdf"
set title 'z = 0.502 m'
plot "../EXP_DATA/z0502exp_data.csv" using 1:4 title 'Exp.',\
"Z502.csv" using 2:5 title 'Num.' with lines;
set terminal pdf
set output "axial_z0679.pdf"
set title 'z = 0.679 m'
plot "../EXP_DATA/z0679exp_data.csv" using 1:4 title 'Exp.',\
"Z679.csv" using 2:5 title 'Num.' with lines;
set terminal pdf
set output "axial_z132.pdf"
set title 'z = 1.32 m'
plot "../EXP_DATA/z132exp_data.csv" using 1:4 title 'Exp.',\
"Z132.csv" using 2:5 title 'Num.' with lines;
