cngf-pf

continuum model for granular flows with pore-pressure dynamics (renamed from 1d_fd_simple_shear)
git clone git://src.adamsgaard.dk/cngf-pf # fast
git clone https://src.adamsgaard.dk/cngf-pf.git # slow
Log | Files | Refs | README | LICENSE Back to index

commit 25e6b578888310014f5ea0b1b4d9ac6a2b46e4a6
parent 98e82ec48621114493aa95f533f2a82c56581739
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Tue,  9 Mar 2021 15:28:14 +0100

fluid.c: disable darcy solver underrelaxation by default

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

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