fig-strain_distribution.gp (1523B)
1 #!/usr/bin/env gnuplot 2 3 reset 4 5 set terminal pdfcairo enhanced color size 7.5 cm, 10 cm 6 set multiplot layout 2,1 7 8 #set lmargin 7.0 9 #set bmargin 3.5 10 #set rmargin 2.0 11 #set tmargin 2.0 12 13 #set xlabel "Normalized horizontal velocity, v_x [-]" 14 set xlabel "Horizontal velocity, v_x [m/a]" 15 set ylabel "Vertical position, z [m]" 16 set key bottom right font ",10" #samplen 0.9 17 plot "strain_distribution_vx3.17e-6ms.txt" u ($2*365*24*3600):1 w l lw 2 title "v_x = 100 m/a", \ 18 "strain_distribution_vx9.51e-6ms.txt" u ($2*365*24*3600):1 w l lw 2 title "v_x = 300 m/a", \ 19 "strain_distribution_vx1.90e-5ms.txt" u ($2*365*24*3600):1 w l lw 2 title "v_x = 600 m/a", \ 20 "strain_distribution_vx2.85e-5ms.txt" u ($2*365*24*3600):1 w l lw 2 title "v_x = 900 m/a", \ 21 "strain_distribution_vx3.81e-5ms.txt" u ($2*365*24*3600):1 w l lw 2 title "v_x = 1200 m/a" 22 23 #set xlabel "Normalized horizontal velocity, v_x [-]" 24 set xlabel "Shear-strain rate, dv_x/dz [1/a]" 25 set ylabel "Vertical position, z [m]" 26 set key bottom right font ",10" #samplen 0.9 27 plot "strain_distribution_vx3.17e-6ms.txt" u ($5*365*24*3600):1 w l lw 2 title "v_x = 100 m/a", \ 28 "strain_distribution_vx9.51e-6ms.txt" u ($5*365*24*3600):1 w l lw 2 title "v_x = 300 m/a", \ 29 "strain_distribution_vx1.90e-5ms.txt" u ($5*365*24*3600):1 w l lw 2 title "v_x = 600 m/a", \ 30 "strain_distribution_vx2.85e-5ms.txt" u ($5*365*24*3600):1 w l lw 2 title "v_x = 900 m/a", \ 31 "strain_distribution_vx3.81e-5ms.txt" u ($5*365*24*3600):1 w l lw 2 title "v_x = 1200 m/a"