commit 5049a141eb524ce2af63e704df7dbbfda7c8ff19
parent 27c94e5ef97c34db1dc139f7fd53810458ef680e
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Wed, 4 Sep 2019 14:20:59 +0200
Add run with A approximately equal to zero
Diffstat:
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/fig3/Makefile b/fig3/Makefile
@@ -70,7 +70,7 @@ C.txt: $(BIN)
A.txt: $(BIN)
/bin/sh -c '\
rm -rf $@; \
- for A in $$(seq 0.10 0.10 0.90); do \
+ for A in 1e-10 $$(seq 0.1 0.10 0.90); do \
printf "$$A\t" >> $@; \
./$< \
--length $(LENGTH) \
diff --git a/fig3/fig.gp b/fig3/fig.gp
@@ -45,6 +45,7 @@ set ylabel "Vertical position, z [m]"
set ytics
plot \
+ "A.1e-10.output00000.txt" u ($2*365.25*24*60*60):1 w l ls 5 lw 1 t "A {/Symbol \273} 0.00", \
"A.0.20.output00000.txt" u ($2*365.25*24*60*60):1 w l ls 5 lw 1 t "A = 0.20", \
"A.0.40.output00000.txt" u ($2*365.25*24*60*60):1 w l ls 3 lw 1 t "A* = 0.40", \
"A.0.60.output00000.txt" u ($2*365.25*24*60*60):1 w l ls 1 lw 1 t "A = 0.60", \