diff --git a/openmc/mgxs_library.py b/openmc/mgxs_library.py index d441e1bbb..deef7e82d 100644 --- a/openmc/mgxs_library.py +++ b/openmc/mgxs_library.py @@ -1690,8 +1690,7 @@ class XSdata(object): azimuthal bins of an XSdata object that already uses an angular representation. Finally, this method simply uses an arithmetic mean to convert from an angular to isotropic representation; no flux-weighting - is applied and therefore the correctness of the solution is not - guaranteed. + is applied and therefore reaction rates will not be preserved. Parameters ---------- @@ -2453,8 +2452,7 @@ class MGXSLibrary(object): azimuthal bins of an XSdata object that already uses an angular representation. Finally, this method simply uses an arithmetic mean to convert from an angular to isotropic representation; no flux-weighting - is applied and therefore the correctness of the solution is not - guaranteed. + is applied and therefore the reaction rates will not be preserved. Parameters ---------- diff --git a/tests/test_mg_convert/inputs_true.dat b/tests/test_mg_convert/inputs_true.dat index 95ad61586..9bfb1dfba 100644 --- a/tests/test_mg_convert/inputs_true.dat +++ b/tests/test_mg_convert/inputs_true.dat @@ -17,9 +17,9 @@ - 1000 - 1000 - 100 + 100 + 10 + 5 diff --git a/tests/test_mg_convert/results_true.dat b/tests/test_mg_convert/results_true.dat index cf4777b8e..a52b929dc 100644 --- a/tests/test_mg_convert/results_true.dat +++ b/tests/test_mg_convert/results_true.dat @@ -1,24 +1,24 @@ k-combined: -9.957366E-01 7.836427E-05 +9.930873E-01 2.221904E-03 k-combined: -9.963227E-01 8.010344E-05 +9.948148E-01 1.216270E-03 k-combined: -9.957366E-01 7.836427E-05 +9.930873E-01 2.221904E-03 k-combined: -9.955152E-01 8.132242E-05 +9.755034E-01 6.178296E-03 k-combined: -9.953937E-01 8.452497E-05 +9.738059E-01 4.529068E-03 k-combined: -9.957744E-01 8.816057E-05 +9.866847E-01 9.485912E-03 k-combined: -9.955332E-01 8.894390E-05 +9.755024E-01 6.179047E-03 k-combined: -9.956463E-01 8.378533E-05 +9.738061E-01 4.529462E-03 k-combined: -9.955875E-01 8.818927E-05 +9.866835E-01 9.485832E-03 k-combined: -9.957017E-01 8.726677E-05 +9.719024E-01 4.213166E-03 k-combined: -9.957366E-01 7.836427E-05 +9.930873E-01 2.221904E-03 k-combined: -9.957366E-01 7.836427E-05 +9.930873E-01 2.221904E-03 diff --git a/tests/test_mg_convert/test_mg_convert.py b/tests/test_mg_convert/test_mg_convert.py index ad86e5a50..607195a82 100755 --- a/tests/test_mg_convert/test_mg_convert.py +++ b/tests/test_mg_convert/test_mg_convert.py @@ -11,9 +11,9 @@ from testing_harness import PyAPITestHarness import openmc # OpenMC simulation parameters -batches = 1000 -inactive = 100 -particles = 1000 +batches = 10 +inactive = 5 +particles = 100 def build_mgxs_library(convert):