diff options
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 |
