Skip to content

Commit faa2150

Browse files
author
Nicolas Linden
committed
documentation
1 parent 56ee189 commit faa2150

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/openmc_data/depletion/generate_jendl_chain.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
import openmc.deplete
99

1010
from openmc_data.utils import download, extract
11-
from openmc_data import all_decay_release_details, state_download_size
11+
from openmc_data import all_decay_release_details
1212

1313

1414
# Parse command line arguments
1515
parser = argparse.ArgumentParser(prog="generate_jeff_chain",
16-
description="Generates a OpenMC chain file from JEFF nuclear data files",
16+
description="Generates a OpenMC chain file from JENDL nuclear data files",
1717
)
1818
parser.add_argument('-r', '--release', choices=['5.0'],
1919
default='5.0', help="The nuclear data library release "
20-
"version. The currently supported options are 5.0")
20+
"version. The only currently supported option is 5.0.")
2121
parser.add_argument(
2222
"-d",
2323
"--destination",
@@ -31,21 +31,21 @@
3131
type=Path,
3232
default=[],
3333
nargs="+",
34-
help="Path to neutron endf files",
34+
help="Path to neutron endf files, if not provided, neutron files will be downloaded.",
3535
)
3636
parser.add_argument(
3737
"--decay",
3838
type=Path,
3939
default=[],
4040
nargs="+",
41-
help="Path to decay data files",
41+
help="Path to decay data files, if not provided, decay files will be downloaded.",
4242
)
4343
parser.add_argument(
4444
"--fpy",
4545
type=Path,
4646
default=[],
4747
nargs="+",
48-
help="Path to neutron fission product yield files",
48+
help="Path to neutron fission product yield files, if not provided, fission yield files will be downloaded.",
4949
)
5050
args = parser.parse_args()
5151

0 commit comments

Comments
 (0)