URI:
       tRemove unused variable in fluid solver - 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 eff39df93aa04c4858b33363827bd7b27fa607aa
   DIR parent 7e351616630a50147610865b9d1132d772a33a1d
  HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Mon,  1 Jul 2019 21:52:10 +0200
       
       Remove unused variable in fluid solver
       
       Diffstat:
         M fluid.c                             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/fluid.c b/fluid.c
       t@@ -116,7 +116,7 @@ darcy_solver_1d(struct simulation* sim,
                        const double rel_tol)
        {
                int i, iter, solved;
       -        double epsilon, theta, p_f, p_f_top, r_norm_max;
       +        double epsilon, theta, p_f_top, r_norm_max;
                double *dp_f_dt_expl;
                double *p_f_ghost_old, *dp_f_dt_impl, *p_f_ghost_new, *r_norm;