From a2134ffa10ceed87687cd6b6d3506e6d0319c1a9 Mon Sep 17 00:00:00 2001 From: Miriam Date: Tue, 25 Aug 2020 03:18:34 +0000 Subject: [PATCH] Clearly a typo: beta pointed to 'nu-fission' instead of 'beta' Fixed so it now points to 'beta' I also noticed there seems to be no test to cover delayed mgxs library --- openmc/mgxs/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/mgxs/library.py b/openmc/mgxs/library.py index 99da0af55e..2c4423c257 100644 --- a/openmc/mgxs/library.py +++ b/openmc/mgxs/library.py @@ -1090,7 +1090,7 @@ class Library: subdomain=subdomain) if 'beta' in self.mgxs_types: - mymgxs = self.get_mgxs(domain, 'nu-fission') + mymgxs = self.get_mgxs(domain, 'beta') xsdata.set_beta_mgxs(mymgxs, xs_type=xs_type, nuclide=[nuclide], subdomain=subdomain)