tfix indentation error - cngf-pf - continuum model for granular flows with pore-pressure dynamics (renamed from 1d_fd_simple_shear)
HTML git clone git://src.adamsgaard.dk/cngf-pf
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit c0ecbde7b32404ef869fa3ca9959cbee18777309
DIR parent f2c20fe3219f18a14b35639b96e400189edf0c4e
HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Thu, 5 Aug 2021 12:34:55 +0200
fix indentation error
Diffstat:
M simulation.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/simulation.c b/simulation.c
t@@ -754,7 +754,7 @@ print_output(struct simulation *sim, FILE *fp, const int norm)
"%.17g\t%.17g\t%.17g\t"
"%.17g\t%.17g\t%.17g\t"
"%.17g\t%.17g\t%.17g\t%.17g"
- "\n",
+ "\n",
sim->z[i],
v_x_out[i],
sim->sigma_n_eff[i],
t@@ -764,7 +764,7 @@ print_output(struct simulation *sim, FILE *fp, const int norm)
sim->phi[i],
sim->I[i],
sim->mu[i] * sim->sigma_n_eff[i],
- sim->d_x[i]);
+ sim->d_x[i]);
free(v_x_out);
}