1d_fd_simple_shear

Continuum model for granular flows with pore-pressure dynamics
git clone git://src.adamsgaard.dk/1d_fd_simple_shear
Log | Files | Refs | README | LICENSE

commit eff39df93aa04c4858b33363827bd7b27fa607aa
parent 7e351616630a50147610865b9d1132d772a33a1d
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon,  1 Jul 2019 21:52:10 +0200

Remove unused variable in fluid solver

Diffstat:
Mfluid.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fluid.c b/fluid.c @@ -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;