hansen-zoet-exp

comparison of lab and model results of sediment advection
git clone git://src.adamsgaard.dk/hansen-zoet-exp # fast
git clone https://src.adamsgaard.dk/hansen-zoet-exp.git # slow
Log | Files | Refs | Submodules Back to index

commit 536e7b5e01a2fba23390bf3e0707e0c5484fba45
parent e315727f8feafb068b63bfd0acf8aafc73f93035
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon, 13 Jun 2022 17:07:19 +0200

Makefile: add calculation of max depth and increase domain

Diffstat:
MMakefile | 13++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -52,6 +52,17 @@ strain_distribution_N50kPa_v3.169e-6ms.txt: ${BIN} done; done' # also close fit with lower A and higher b # higher values of L do not make a difference in flux +.PHONY: max_depth + +max_depth: ${BIN} + for freq in ${fluid_freq_vals}; do \ + for ampl in ${fluid_ampl_vals}; do \ + ./${REPO}/max_depth_simple_shear \ + -D 1.5e-5 \ + -q $${freq} \ + -a $${ampl}e3; \ + done; done + strain_distribution_ampl1kPa_freq1.157e-5s.txt: ${BIN} sh -c '\ for freq in ${fluid_freq_vals}; do \ @@ -62,7 +73,7 @@ strain_distribution_ampl1kPa_freq1.157e-5s.txt: ${BIN} -m ${grain_friction} \ -c ${grain_cohesion} \ -s 3.169e-6 \ - -L 0.5 \ + -L 2.0 \ -n 85e3 \ -A ${grain_nonlocal_ampl} \ -b ${grain_rate_dependence} \