tsimulation.c: fix indentation issues - 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 6c74a63b8a9ba3cb36fd780ebd779c69ef4d455a
(DIR) parent b7275cb2f7cbc3e5ceea8fa47edc5ef2430f2fac
(HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Wed, 4 Nov 2020 08:34:15 +0100
simulation.c: fix indentation issues
Diffstat:
M simulation.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
(DIR) diff --git a/simulation.c b/simulation.c
t@@ -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 */
t@@ -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;
}