tFix xrange in pulse figures - cngf-pf-exp1 - experiments for first paper with continuum granular model
 (HTM) git clone git://src.adamsgaard.dk/manus_continuum_granular1_exp
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 2a514ca7c62db51c8ecebdc35f51df434b6b378c
 (DIR) parent b8ab52f752e61b33d1416efd618eb3a99daa16db
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Fri, 17 Jan 2020 17:09:10 +0100
       
       Fix xrange in pulse figures
       
       Diffstat:
         M fig-pulse_square/fig.gp             |      22 +++++++++++-----------
         M fig-pulse_triangle/fig.gp           |      22 +++++++++++-----------
       
       2 files changed, 22 insertions(+), 22 deletions(-)
       ---
 (DIR) diff --git a/fig-pulse_square/fig.gp b/fig-pulse_square/fig.gp
       t@@ -4,8 +4,14 @@ reset
        set terminal pdfcairo color size 7.5 cm, 8.5 cm
        
        set multiplot layout 3,1 \
       -        margins 0.19,0.80,0.23,0.95 \
       -        spacing 0.03,0.03
       +        margins 0.19,0.75,0.23,0.95 \
       +        spacing 0.00,0.03
       +
       +
       +file_interval_seconds=600.0
       +conv=1.0/(24.0*3600.0/file_interval_seconds) * 140.0/138.5
       +
       +set xrange [0:81]
        
        set key top right samplen 1.0
        unset xlabel
       t@@ -14,23 +20,17 @@ set yrange [0:380]
        set ylabel "[kPa]"
        set ytics 100
        plot \
       -"timeseries.txt" u ($0/1008*7):($2/1000) w l lw 2 lc "black" t "effective normal stress", \
       +"timeseries.txt" u ($0*conv):($2/1000) w l lw 2 lc "black" t "effective normal stress", \
        "" u ($0/1008*7):($3/1000) w l lw 2 lt 3 dt "-" t "water pressure"
        
        unset xtics
        unset ylabel
        unset ytics
       -#set ytics 0.1
       -#set yrange [0:1]
       -#set y2range [0:1]
       -#set y2tics 0.2
       -#set y2label "Effective friction [-]"
       -#plot "" u ($0/1008*7):($4) w l lw 2 lt 7 t ""
        set yrange [0:100]
        set y2range [0:100]
        set y2tics 20
        set y2label "Shear stress [kPa]"
       -plot "" u ($0/1008*7):($4*$2/1000) w l lw 2 lt 1 t ""
       +plot "" u ($0*conv):($4*$2/1000) w l lw 2 lt 1 t ""
        
        set xtics
        unset y2label
       t@@ -39,6 +39,6 @@ set ytics 0.5
        set yrange [3.0:0.0]
        set xlabel "Time [d]"
        set ylabel "Depth of max. strain rate [m]"
       -plot "max_strainrate_depth.txt" u ($0/1008*7):(8.0 - $1) w l lw 2 lt 4 t ""
       +plot "max_strainrate_depth.txt" u ($0*conv):(8.0 - $1) w l lw 2 lt 4 t ""
        
        unset multiplot
 (DIR) diff --git a/fig-pulse_triangle/fig.gp b/fig-pulse_triangle/fig.gp
       t@@ -4,8 +4,14 @@ reset
        set terminal pdfcairo color size 7.5 cm, 8.5 cm
        
        set multiplot layout 3,1 \
       -        margins 0.19,0.80,0.23,0.95 \
       -        spacing 0.03,0.03
       +        margins 0.19,0.75,0.23,0.95 \
       +        spacing 0.00,0.03
       +
       +
       +file_interval_seconds=600.0
       +conv=1.0/(24.0*3600.0/file_interval_seconds) * 140.0/138.5
       +
       +set xrange [0:81]
        
        set key top right samplen 1.0
        unset xlabel
       t@@ -14,23 +20,17 @@ set yrange [0:380]
        set ylabel "[kPa]"
        set ytics 100
        plot \
       -"timeseries.txt" u ($0/1008*7):($2/1000) w l lw 2 lc "black" t "effective normal stress", \
       +"timeseries.txt" u ($0*conv):($2/1000) w l lw 2 lc "black" t "effective normal stress", \
        "" u ($0/1008*7):($3/1000) w l lw 2 lt 3 dt "-" t "water pressure"
        
        unset xtics
        unset ylabel
        unset ytics
       -#set ytics 0.1
       -#set yrange [0:1]
       -#set y2range [0:1]
       -#set y2tics 0.2
       -#set y2label "Effective friction [-]"
       -#plot "" u ($0/1008*7):($4) w l lw 2 lt 7 t ""
        set yrange [0:100]
        set y2range [0:100]
        set y2tics 20
        set y2label "Shear stress [kPa]"
       -plot "" u ($0/1008*7):($4*$2/1000) w l lw 2 lt 1 t ""
       +plot "" u ($0*conv):($4*$2/1000) w l lw 2 lt 1 t ""
        
        set xtics
        unset y2label
       t@@ -39,6 +39,6 @@ set ytics 0.5
        set yrange [3.0:0.0]
        set xlabel "Time [d]"
        set ylabel "Depth of max. strain rate [m]"
       -plot "max_strainrate_depth.txt" u ($0/1008*7):(8.0 - $1) w l lw 2 lt 4 t ""
       +plot "max_strainrate_depth.txt" u ($0*conv):(8.0 - $1) w l lw 2 lt 4 t ""
        
        unset multiplot