| Date: Tue, 19 Apr 2022 17:10:21 +0200
calculate shear flux in stress experiment
Diffstat:
M fig-effective_stress/Makefile | 7 +++++++
1 file changed, 7 insertions(+), 0 deletions(-)
--- |
| t@@ -25,6 +25,13 @@ mohr_coulomb.txt: strain_distribution_N50kPa.txt
tail -n 1 strain_distribution_N$${P}kPa.txt >> $@; \
done'
+sediment_flux.txt: strain_distribution_N50kPa.txt
+ sh -c '\
+ rm -f $@; \
+ for P in 8 22 50; do \
+ (printf "%ge3\t" $$P; shear_flux < strain_distribution_N$${P}kPa.txt) >> $@; \
+ done'
+
../$(FIG)-strain_distribution.pdf: fig-strain_distribution.gp strain_distribution_N50kPa.txt
gnuplot fig-strain_distribution.gp > $@
|