tfluid.c: disable darcy solver underrelaxation by default - 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 25e6b578888310014f5ea0b1b4d9ac6a2b46e4a6
 (DIR) parent 98e82ec48621114493aa95f533f2a82c56581739
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Tue,  9 Mar 2021 15:28:14 +0100
       
       fluid.c: disable darcy solver underrelaxation by default
       
       Diffstat:
         M fluid.c                             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/fluid.c b/fluid.c
       t@@ -182,7 +182,7 @@ darcy_solver_1d(struct simulation *sim,
        
                /* underrelaxation parameter in ]0.0; 1.0],
                 * where omega = 1.0: no underrelaxation */
       -        omega = 1e-4;
       +        omega = 1.0;
        
                for (i = 0; i < sim->nz; ++i)
                        sim->p_f_dot_impl[i] = sim->p_f_dot_expl[i] = 0.0;