diff options
| author | Connor Moore <connor.moore@psi.ch> | 2026-07-27 08:45:32 +0200 |
|---|---|---|
| committer | Connor Moore <connor.moore@psi.ch> | 2026-07-27 08:45:32 +0200 |
| commit | a9bdc71d867e077e193cd226cd2ae77c4c0d4b15 (patch) | |
| tree | 2468d40478a018132f0385be92daa0f0b263630f /make_plots.sh | |
| parent | 79dc08f7bca44d71717f61e95cb9f612ae778304 (diff) | |
Added driver script for plotting different results by material
Diffstat (limited to 'make_plots.sh')
| -rwxr-xr-x | make_plots.sh | 12 |
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 |
