URI: 
       tRemove unused normal stress parameter for max deformation depth - cngf-pf - continuum model for granular flows with pore-pressure dynamics (renamed from 1d_fd_simple_shear)
  HTML git clone git://src.adamsgaard.dk/cngf-pf
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 5f8ea100a1423e8c69f5d8b1a9d2040d1c54d9e0
   DIR parent 3b3ee1b4fc4fbdc6df92c656a1076a2ca04fef96
  HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Tue, 14 Jan 2020 16:18:18 +0100
       
       Remove unused normal stress parameter for max deformation depth
       
       Diffstat:
         M max_depth_simple_shear.c            |       6 ------
       
       1 file changed, 0 insertions(+), 6 deletions(-)
       ---
   DIR diff --git a/max_depth_simple_shear.c b/max_depth_simple_shear.c
       t@@ -35,7 +35,6 @@ usage(void)
                        " -v, --version                   show version information\n"
                        " -h, --help                      show this message\n"
                        " -G, --gravity VAL               gravity magnitude [m/s^2] (default %g)\n"
       -                " -P, --normal-stress VAL         normal stress on top [Pa] (default %g)\n"
                        " -p, --porosity VAL              porosity fraction [-] (default %g)\n"
                        " -r, --density VAL               grain material density [kg/m^3] (default %g)\n"
                        " -c, --fluid-compressibility VAL fluid compressibility [Pa^-1] (default %g)\n"
       t@@ -52,7 +51,6 @@ usage(void)
                        ,
                        __func__, PROGNAME,
                        sim.G,
       -                sim.P_wall,
                        sim.phi[0],
                        sim.rho_s,
                        sim.beta_f,
       t@@ -208,7 +206,6 @@ main(int argc, char* argv[])
                        {"help",                      no_argument,       NULL, 'h'},
                        {"version",                   no_argument,       NULL, 'v'},
                        {"gravity",                   required_argument, NULL, 'G'},
       -                {"normal-stress",             required_argument, NULL, 'P'},
                        {"porosity",                  required_argument, NULL, 'p'},
                        {"density",                   required_argument, NULL, 'r'},
                        {"fluid-compressibility",     required_argument, NULL, 'c'},
       t@@ -242,9 +239,6 @@ main(int argc, char* argv[])
                                case 'G':
                                        sim.G = atof(optarg);
                                        break;
       -                        case 'P':
       -                                sim.P_wall = atof(optarg);
       -                                break;
                                case 'p':
                                        new_phi = atof(optarg);
                                        break;