tAdd Truffer comparison target and update 1d_fd_simple_shear - cngf-pf-exp1 - experiments for first paper with continuum granular model
(HTM) git clone git://src.adamsgaard.dk/manus_continuum_granular1_exp
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
(DIR) commit 5f10bef154084c7ad302fe9e7a144dc64a3235f2
(DIR) parent 8b0561a1827eea8562c6a333550a576568ca3bd2
(HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Thu, 9 Jul 2020 20:31:22 +0200
Add Truffer comparison target and update 1d_fd_simple_shear
Diffstat:
M flux_estimate/Makefile | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
---
(DIR) diff --git a/flux_estimate/Makefile b/flux_estimate/Makefile
t@@ -10,7 +10,10 @@ VEL != echo 1000.0/365.0/24.0/3600.0 | bc -l
POROSITY = 0.35
PERMEABILITY = 4.9e-17
-FREQ != echo 1.0/3600.0/24.0 | bc -l
+FREQ_DAILY != echo 1.0/3600.0/24.0 | bc -l
+FREQ_MONTHLY != echo 1.0/3600.0/24.0/30.0 | bc -l
+FREQ_YEARLY != echo 1.0/3600.0/24.0/30.0 | bc -l
+FREQ=$(FREQ_DAILY)
FLAGS = -m 0.45 -c 3e3 -n 100e3 -d 1e-3 -s $(VEL) -L 4.0 -p $(POROSITY)
TARGET_VOL = 5.34e11
t@@ -73,13 +76,19 @@ variable_flux_hi: variable_hi.output00095.txt
printf 'Duration: %.5g a\n' "$$duration"
amplitude_dependence:
- for A in 10e3 20e3 30e3 40e3 50e3 100e3; do \
+ for A in 10e3 20e3 40e3 80e3 160e3 320e3 640e3 1200e3; do \
printf '%s\t' "$$A"; \
$(MAXDEPTH) -p $(POROSITY) -k $(PERMEABILITY) -a $$A -q $(FREQ); \
done
+truffer_comparison:
+ for A in 10e3 20e3 40e3 80e3 160e3 320e3 640e3 1200e3; do \
+ printf '%s\t' "$$A"; \
+ $(MAXDEPTH) -D 3e-7 -a $$A -q $(FREQ_YEARLY); \
+ done
+
clean:
rm -f steady.txt
find . -type f -name 'variable*.output*.txt' -delete
-.PHONY: default clean steady_flux variable_flux variable_flux_hi
+.PHONY: default clean steady_flux variable_flux variable_flux_hi amplitude_dependence truffer_comparison