add script for plotting with previous mcnp binary

This commit is contained in:
2022-11-29 09:57:48 +01:00
parent e05b3ab509
commit ecb99ea062

25
plot_old Executable file
View File

@@ -0,0 +1,25 @@
#!/bin/sh
PLOT_NAME=`git describe --tags --long`
# if the first argument is an runtpe file, use different plot command
if [[ $1 == runs/* ]]; then
/home/l_glavic/shielding/mcnp56_exe/MCNP_CODE/bin/mcnp6 p runtpe=$1 \
outp=tmp/plota.out comout=tmp/plota.com \
wwout=tmp/plota.wwg wwone=tmp/plota.wwo \
wwinp=weight_windows/current.wwg \
plotm=results/e2-estia_$PLOT_NAME ${@:2}
else
/home/l_glavic/shielding/mcnp56_exe/MCNP_CODE/bin/mcnp6 ip inp=e2-estia.i \
outp=tmp/plota.out comout=tmp/plota.com \
wwout=tmp/plota.wwg wwone=tmp/plota.wwo \
mctal=tmp/plota.mct mdata=tmp/plota.mdt \
wwinp=weight_windows/current.wwg \
plotm=results/e2-estia_$PLOT_NAME $@
fi
if [ -f results/e2-estia_$PLOT_NAME.ps ]; then
gs -q -dSAFER -dNOPAUSE -dBATCH -sOutputFile=results/e2-estia_$PLOT_NAME.pdf \
-sDEVICE=pdfwrite -c .setpdfwrite -c "<</Orientation 3>> setpagedevice" \
-f results/e2-estia_$PLOT_NAME.ps
rm results/e2-estia_$PLOT_NAME.ps
fi