summaryrefslogtreecommitdiff
path: root/make_plots.sh
diff options
context:
space:
mode:
authorConnor Moore <connor.moore@psi.ch>2026-07-27 08:45:32 +0200
committerConnor Moore <connor.moore@psi.ch>2026-07-27 08:45:32 +0200
commita9bdc71d867e077e193cd226cd2ae77c4c0d4b15 (patch)
tree2468d40478a018132f0385be92daa0f0b263630f /make_plots.sh
parent79dc08f7bca44d71717f61e95cb9f612ae778304 (diff)
Added driver script for plotting different results by material
Diffstat (limited to 'make_plots.sh')
-rwxr-xr-xmake_plots.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/make_plots.sh b/make_plots.sh
new file mode 100755
index 0000000..40cb328
--- /dev/null
+++ b/make_plots.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+fuels="uo2 uco5 uco10 uco20 un"
+
+# Loop over fuels
+for mat in $fuels; do
+ echo $mat
+ rm -r results/
+ mkdir results/
+ cp full-results/results_$mat/* results/ -rv
+ gnuplot -c plot.gnu $mat
+done