aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2023-07-15 16:40:10 +0200
committerThomas White <taw@physics.org>2023-07-28 13:22:05 +0200
commite816ec81dea07b56294f15fff9396c227e5d30a1 (patch)
tree378c066653db22d90c3af9d5b209d3c69669fe33 /tests
parent525bfd9b6e4e4b9aea128ff6b88b573ec37e6f92 (diff)
Remove tests/plot_gradients
Diffstat (limited to 'tests')
-rwxr-xr-xtests/plot_gradients28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/plot_gradients b/tests/plot_gradients
deleted file mode 100755
index b5800d07..00000000
--- a/tests/plot_gradients
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-gnuplot -persist << EOF
-
-set key bottom right
-
-set xlabel "Calculated gradient"
-set ylabel "Observed gradient"
-
- plot "gradient-test-x.dat" using 1:2 w p lc 1 pt 1 title "x"
-replot "gradient-test-y.dat" using 1:2 w p lc 2 pt 1 title "y"
-replot "gradient-test-z.dat" using 1:2 w p lc 3 pt 1 title "z"
-
-EOF
-
-gnuplot -persist << EOF
-set key bottom right
-set xlabel "Calculated gradient"
-set ylabel "Observed gradient"
-plot "gradient-test-R.dat" using 1:2 w p lc 1 pt 1 title "profile radius"
-EOF
-
-gnuplot -persist << EOF
-set key bottom right
-set xlabel "Calculated gradient"
-set ylabel "Observed gradient"
-plot "gradient-test-div.dat" using 1:2 w p lc 1 pt 1 title "divergence"
-EOF