set title 'z = 0.318 m'
set ylabel 'Normalized concentration'
set xlabel 'r/R'
set xrange [-1:1]
set grid
set key outside
set terminal pdf
set output "concentration_z0318.pdf"
plot "../EXP_DATA/z0318_exp_data.csv" using 1:3 title 'Exp.',\
"Z318.csv" using 2:6 title 'Num.' with lines;
set terminal pdf
set output "concentration_z0502.pdf"
set title 'z = 0.502 m'
plot "../EXP_DATA/z0502exp_data.csv" using 1:3 title 'Exp.',\
"Z502.csv" using 2:6 title 'Num.' with lines;
set terminal pdf
set output "concentration_z0679.pdf"
set title 'z = 0.679 m'
plot "../EXP_DATA/z0679exp_data.csv" using 1:3 title 'Exp.',\
"Z679.csv" using 2:6 title 'Num.' with lines;
set terminal pdf
set output "concentration_z132.pdf"
set title 'z = 1.32 m'
plot "../EXP_DATA/z132exp_data.csv" using 1:3 title 'Exp.',\
"Z132.csv" using 2:6 title 'Num.' with lines;
