1d_fd_simple_shear

continuum model for granular flows with pore-pressure dynamics
git clone git://src.adamsgaard.dk/1d_fd_simple_shear
Log | Files | Refs | README | LICENSE Back to index

commit 9bfaf834812f4c720008acdaba8c75db2f254915
parent 8bbc6c21842e6820f09d642d03ae1c0cb814a3f5
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon,  6 Apr 2020 14:48:23 +0200

Remove unused variable from main

Diffstat:
M1d_fd_simple_shear.c | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/1d_fd_simple_shear.c b/1d_fd_simple_shear.c @@ -1,5 +1,3 @@ -#include <unistd.h> -#include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> @@ -70,7 +68,7 @@ main(int argc, char* argv[]) { int i, normalize; unsigned long iter; - double new_phi, new_k, filetimeclock, mu_wall_orig; + double new_phi, new_k, filetimeclock; #ifdef BENCHMARK_PERFORMANCE clock_t t_begin, t_end; double t_elapsed; @@ -246,7 +244,6 @@ main(int argc, char* argv[]) filetimeclock = 0.0; iter = 0; - mu_wall_orig = sim.mu_wall; while (sim.t <= sim.t_end) { #ifdef BENCHMARK_PERFORMANCE