|
8 | 8 | import openmc.deplete |
9 | 9 |
|
10 | 10 | 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 |
12 | 12 |
|
13 | 13 |
|
14 | 14 | # Parse command line arguments |
15 | 15 | 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", |
17 | 17 | ) |
18 | 18 | parser.add_argument('-r', '--release', choices=['5.0'], |
19 | 19 | 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.") |
21 | 21 | parser.add_argument( |
22 | 22 | "-d", |
23 | 23 | "--destination", |
|
31 | 31 | type=Path, |
32 | 32 | default=[], |
33 | 33 | nargs="+", |
34 | | - help="Path to neutron endf files", |
| 34 | + help="Path to neutron endf files, if not provided, neutron files will be downloaded.", |
35 | 35 | ) |
36 | 36 | parser.add_argument( |
37 | 37 | "--decay", |
38 | 38 | type=Path, |
39 | 39 | default=[], |
40 | 40 | nargs="+", |
41 | | - help="Path to decay data files", |
| 41 | + help="Path to decay data files, if not provided, decay files will be downloaded.", |
42 | 42 | ) |
43 | 43 | parser.add_argument( |
44 | 44 | "--fpy", |
45 | 45 | type=Path, |
46 | 46 | default=[], |
47 | 47 | 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.", |
49 | 49 | ) |
50 | 50 | args = parser.parse_args() |
51 | 51 |
|
|
0 commit comments