1d_fd_simple_shear

continuum model for granular flows with pore-pressure dynamics
git clone git://src.adamsgaard.dk/1d_fd_simple_shear
Log | Files | Refs | README | LICENSE Back to index

1d_fd_simple_shear.gp (855B)


      1 #!/usr/bin/env gnuplot
      2 
      3 set terminal pngcairo color size 18.6 cm, 17.6 cm
      4 set output "1d_fd_simple_shear.png"
      5 set xlabel "Normalized horizontal velocity, v_x [-]"
      6 set ylabel "Vertical position, z [m]" offset 2
      7 
      8 set yrange [0.0:0.73]
      9 set xrange [-0.1:1.05]
     10 
     11 set key bottom right #samplen 0.9
     12 
     13 plot "1d_fd_simple_shear_P10kPa.txt" u 2:1 w l lw 2 lc "#ee2430" title "P_{wall} = 10 kPa", \
     14      "1d_fd_simple_shear_P20kPa.txt" u 2:1 w l lw 2 lc "#53bf3a" title "P_{wall} = 20 kPa", \
     15      "1d_fd_simple_shear_P40kPa.txt" u 2:1 w l lw 2 lc "#2f54ad" title "P_{wall} = 40 kPa", \
     16      "1d_fd_simple_shear_P60kPa.txt" u 2:1 w l lw 2 lc "#b047aa" title "P_{wall} = 60 kPa", \
     17      "1d_fd_simple_shear_P80kPa.txt" u 2:1 w l lw 2 lc "#6ccfd9" title "P_{wall} = 80 kPa", \
     18      "1d_fd_simple_shear_P120kPa.txt" u 2:1 w l lw 2 lc "#231f20" title "P_{wall} = 120 kPa"