Skip to content

Commit 30f370d

Browse files
committed
added fns depletion chain
1 parent ed6cc13 commit 30f370d

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

src/openmc_data/download/download_endf_chain.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,19 @@ class CustomFormatter(
3838
"-r",
3939
"--release",
4040
choices=["b7.1", "b8.0"],
41-
default="b7.1",
41+
default="b8.0",
4242
help="The nuclear data library release version. The currently supported "
43-
"options are b7.1 and b8.0",
43+
"options are b7.1 and b8.0.",
4444
)
4545
parser.add_argument(
4646
"-b",
4747
"--branching_ratios",
48-
choices=["None", "SFR", "PWR"],
49-
default="SFR",
48+
choices=["None", "SFR", "PWR", "FNS"],
49+
default="FNS",
5050
help="The nuclear data library release version. The currently supported "
5151
"options are b7.1 and b8.0 with branching ratio options of None, SFR "
52-
"or PWR",
52+
"(sodium fast reactor), PWR (pressurized water reactor) or FNS "
53+
"(fusion neutron source)",
5354
)
5455

5556
parser.set_defaults()

src/openmc_data/urls_xml.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@
3232
"chain": {
3333
"url": "https://github.com/openmc-data-storage/openmc_data/raw/main/src/openmc_data/depletion/chain_endf_b8.0_pwr.xml"
3434
}
35+
},
36+
"FNS": {
37+
"chain": {
38+
"url": "https://github.com/jbae11/openmc_activator/raw/refs/heads/main/fns_spectrum.chain.xml"
39+
}
3540
}
3641
}
3742
}

0 commit comments

Comments
 (0)