fig-mohr_coulomb.gp (898B)
1 #!/usr/bin/env gnuplot 2 3 reset 4 5 set terminal pdfcairo enhanced color size 7.5 cm, 8 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 yrange [0.0:0.73] 14 #set xrange [-0.13:1.13] 15 #set key bottom right #samplen 0.9 16 17 #set xlabel "Effective normal stress, {/Symbol s}_n' [kPa]" 18 set ylabel "Shear stress, {/Symbol t} [kPa]" 19 set key bottom right font ",10" 20 plot "<sort -nk 3 mohr_coulomb_v3.169e-6ms.txt" u ($3/1e3):($3*$5/1e3) w lp title "v = 100 m/a", \ 21 "<sort -nk 3 mohr_coulomb_v9.506e-6ms.txt" u ($3/1e3):($3*$5/1e3) w lp title "v = 300 m/a" 22 23 set xlabel "Effective normal stress, {/Symbol s}_n' [kPa]" 24 set ylabel "Shear friction, {/Symbol m} [-]" 25 set key top right font ",10" 26 plot "<sort -nk 3 mohr_coulomb_v3.169e-6ms.txt" u ($3/1e3):5 w lp title "v = 100 m/a", \ 27 "<sort -nk 3 mohr_coulomb_v9.506e-6ms.txt" u ($3/1e3):5 w lp title "v = 300 m/a"