summaryrefslogtreecommitdiff
path: root/make_plots.sh
blob: 400cc526e39ace12e45e2d9ea50dab7d9fb96394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

fuels="uo2 uco5 uco10 uco15 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