tMove tests and figures into separate folders - cngf-pf - continuum model for granular flows with pore-pressure dynamics (renamed from 1d_fd_simple_shear)
 (HTM) git clone git://src.adamsgaard.dk/cngf-pf
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 5167eec77e75b4aa3b2104b5d007d38b9953afc8
 (DIR) parent bad8daf5ce300d6b13cb93fed036cc79de183afd
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Fri, 28 Jun 2019 11:16:41 +0200
       
       Move tests and figures into separate folders
       
       Diffstat:
         D 1d_fd_simple_shear_henann_kamrin20… |      36 -------------------------------
         A doc/damsgaard2013-fig8.png          |       0 
         A doc/iverson2010-fig2a.png           |       0 
         A doc/iverson2010-fig2b.png           |       0 
         A doc/kamb1991-fig1.png               |       0 
         A doc/tulaczyk2006-fig1.png           |       0 
         R 1d_fd_simple_shear.gp -> test/1d_f… |       0 
         R 1d_fd_simple_shear_fluid.gp -> tes… |       0 
         R 1d_fd_simple_shear_rheology.gp -> … |       0 
         R 1d_fd_simple_shear_rheology_iverso… |       0 
         R 1d_fd_simple_shear_rheology_kamb.g… |       0 
         R 1d_fd_simple_shear_rheology_tulacz… |       0 
         A test/BlueSeq.plt                    |      26 ++++++++++++++++++++++++++
         R diurnal.timeseries.gp -> test/diur… |       0 
       
       14 files changed, 26 insertions(+), 36 deletions(-)
       ---
 (DIR) diff --git a/1d_fd_simple_shear_henann_kamrin2016.h b/1d_fd_simple_shear_henann_kamrin2016.h
       t@@ -1,36 +0,0 @@
       -#ifndef ONED_FD_SIMPLE_SHEAR_
       -#define ONED_FD_SIMPLE_SHEAR_
       -
       -#include <math.h>
       -#include "arrays.h"
       -#include "simulation.h"
       -
       -#define DEG2RAD(x) (x*M_PI/180.0)
       -
       -/* Simulation settings */
       -struct simulation init_sim(void)
       -{
       -    struct simulation sim;
       -
       -    sim.G = 9.81;
       -
       -    sim.P_wall = 10e3; /* larger normal stress deepens the deformational depth */
       -    sim.mu_wall = 0.40;
       -    sim.v_x_bot = 0.0;
       -
       -    sim.nz = 100;
       -
       -    sim.A = 0.48;
       -    sim.b = 0.9377;
       -    sim.mu_s = 0.3819;
       -    sim.phi = initval(0.38, sim.nz);
       -    sim.d = 1e-3;
       -    sim.rho_s = 2.485e3;
       -
       -    sim.origo_z = 0.0;
       -    sim.L_z = 20.0*sim.d;
       -
       -    return sim;
       -}
       -
       -#endif
 (DIR) diff --git a/doc/damsgaard2013-fig8.png b/doc/damsgaard2013-fig8.png
       Binary files differ.
 (DIR) diff --git a/doc/iverson2010-fig2a.png b/doc/iverson2010-fig2a.png
       Binary files differ.
 (DIR) diff --git a/doc/iverson2010-fig2b.png b/doc/iverson2010-fig2b.png
       Binary files differ.
 (DIR) diff --git a/doc/kamb1991-fig1.png b/doc/kamb1991-fig1.png
       Binary files differ.
 (DIR) diff --git a/doc/tulaczyk2006-fig1.png b/doc/tulaczyk2006-fig1.png
       Binary files differ.
 (DIR) diff --git a/1d_fd_simple_shear.gp b/test/1d_fd_simple_shear.gp
 (DIR) diff --git a/1d_fd_simple_shear_fluid.gp b/test/1d_fd_simple_shear_fluid.gp
 (DIR) diff --git a/1d_fd_simple_shear_rheology.gp b/test/1d_fd_simple_shear_rheology.gp
 (DIR) diff --git a/1d_fd_simple_shear_rheology_iverson.gp b/test/1d_fd_simple_shear_rheology_iverson.gp
 (DIR) diff --git a/1d_fd_simple_shear_rheology_kamb.gp b/test/1d_fd_simple_shear_rheology_kamb.gp
 (DIR) diff --git a/1d_fd_simple_shear_rheology_tulaczyk.gp b/test/1d_fd_simple_shear_rheology_tulaczyk.gp
 (DIR) diff --git a/test/BlueSeq.plt b/test/BlueSeq.plt
       t@@ -0,0 +1,26 @@
       +# line styles for ColorBrewer Blues
       +# for use with sequential data
       +# provides 8 blue colors of increasing saturation
       +# compatible with gnuplot >=4.2
       +# derived from Anna Schneider
       +
       +# line styles
       +
       +set style line 1 lc rgb '#084594' # dark blue
       +set style line 2 lc rgb '#2171B5' #
       +set style line 3 lc rgb '#4292C6' # medium blue
       +set style line 4 lc rgb '#6BAED6' # 
       +set style line 5 lc rgb '#9ECAE1' # light blue
       +set style line 6 lc rgb '#C6DBEF' # 
       +set style line 7 lc rgb '#DEEBF7' # 
       +set style line 8 lc rgb '#F7FBFF' # very light blue
       +
       +# palette
       +set palette defined ( 0 '#084594',\
       +    1 '#2171B5',\
       +    2 '#4292C6',\
       +    3 '#6BAED6',\
       +    4 '#9ECAE1',\
       +    5 '#C6DBEF',\
       +    6 '#DEEBF7',\
       +    7 '#F7FBFF')
 (DIR) diff --git a/diurnal.timeseries.gp b/test/diurnal.timeseries.gp