diff options
Diffstat (limited to 'driver-52.sh')
| -rwxr-xr-x | driver-52.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/driver-52.sh b/driver-52.sh index f68780f..d7f0e55 100755 --- a/driver-52.sh +++ b/driver-52.sh @@ -10,17 +10,18 @@ reset="\033[0m" mkdir -p 52-results/ touch 52-results/52_keff_table -for fmr in $(seq 0.1 0.05 0.9); do - echo -e ${green}Running fmr = $fmr... ${reset} +for fmr in $(seq 0.1 0.05 0.95); do + echo -e ${green}Running 52-element Apollonian bundle with fmr = $fmr... ${reset} filename=52-results/$fmr.log python3 apollonian-52.py -fmr $fmr > $filename keff=$(cat $filename | grep "Combined k-effective" | cut -d "=" -f 2 | cut -d "+" -f 1) pm=$(cat $filename | grep "Combined k-effective" | cut -d "=" -f 2 | cut -d "-" -f 2) flow_area=$(cat $filename | grep "Flow area" | cut -d "=" -f 2) + clad_circ=$(cat $filename | grep "Cladding circumference" | cut -d = -f 2) fuel_mass=$(cat $filename | grep "Fuel mass" | cut -d "=" -f 2) clad_mass=$(cat $filename | grep "Cladding mass" | cut -d "=" -f 2) dtu=$(cat $filename | grep "DTU ratio" | cut -d "=" -f 2) echo $keff +/- $pm, $flow_area cm² flow, $fuel_mass g/cm fuel, $clad_mass g/cm clad, $dtu DTU ratio | cowsay - echo $keff $pm $flow_area $fuel_mass $clad_mass $dtu >> 52-results/keff_table + echo $keff $pm $flow_area $clad_circ $fuel_mass $clad_mass $dtu >> 52-results/keff_table done |
