summaryrefslogtreecommitdiff
path: root/pin.py
diff options
context:
space:
mode:
authorConnor Moore <connor.moore@psi.ch>2026-07-27 10:59:47 +0200
committerConnor Moore <connor.moore@psi.ch>2026-07-27 10:59:47 +0200
commit82fdc14ee8257afadcaf72bc7961101aea88916a (patch)
tree29c2bf2f3b8ccc1bc08dea78dfb2c5ceb8df1729 /pin.py
parent934e74fc60a6b8a728f1adb098b9c6d3477cddbb (diff)
Updated argparse fuels list to include UCO 15 w/o
Diffstat (limited to 'pin.py')
-rwxr-xr-xpin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pin.py b/pin.py
index 766b906..0455ee7 100755
--- a/pin.py
+++ b/pin.py
@@ -15,7 +15,7 @@ cli_parser = argparse.ArgumentParser(
cli_parser.add_argument("-t","--technique",default="none",choices=["none","vwh","rpt","rrpt"],help="What homogenization technique to use (if any) [none/vwh/rpt/rrpt], default none")
cli_parser.add_argument("-r","--radius",default="0.5",type=float,help="Radius for RPT or RRPT homogenization [cm], default 0.5 cm. In the case of RRPT, this is the inner radius.")
cli_parser.add_argument("-p","--packing-factor",default=0.29,type=float,help="Packing factor for TRISO packing (0.0, 1.0), default 0.29")
-cli_parser.add_argument("-f","--fuel",default="uo2",choices=["uo2","uco5","uco10","uco20","un"],help="What type of fuel to use [uo2/uco10/uco20/un], default uo2.")
+cli_parser.add_argument("-f","--fuel",default="uo2",choices=["uo2","uco5","uco10","uco15","uco20","un"],help="What type of fuel to use [uo2/uco10/uco15/uco20/un], default uo2.")
cli_parser.add_argument("-e","--execute",default=False,action="store_true",help="Whether or not to automatically run OpenMC, default false.")
cli_args = cli_parser.parse_args()