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 6c74a63b8a9ba3cb36fd780ebd779c69ef4d455a
parent b7275cb2f7cbc3e5ceea8fa47edc5ef2430f2fac
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Wed,  4 Nov 2020 08:34:15 +0100

simulation.c: fix indentation issues

Diffstat:
Msimulation.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/simulation.c b/simulation.c @@ -785,8 +785,8 @@ coupled_shear_solver(struct simulation *sim, /* step 8, Eq. 11 */ if (implicit_1d_jacobian_poisson_solver(sim, - MAX_ITER_GRANULAR, - RTOL_GRANULAR)) + MAX_ITER_GRANULAR, + RTOL_GRANULAR)) exit(12); /* step 9 */ @@ -844,7 +844,7 @@ coupled_shear_solver(struct simulation *sim, fprintf(stderr, "error: stress solution did not converge:\n"); fprintf(stderr, "v_x=%g, v_x_fix=%g, v_x_limit=%g, " "vel_res_norm=%g, mu_wall=%g\n", - sim->v_x[sim->nz - 1], sim->v_x_fix, sim->v_x_limit, + sim->v_x[sim->nz - 1], sim->v_x_fix, sim->v_x_limit, vel_res_norm, sim->mu_wall); return 10; }