summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()