From 4df20f2d6c796cb76af8d8b9eaef73ff272ea60b Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Wed, 20 Jul 2022 22:32:03 -0500 Subject: [PATCH] Account for neutron wave number in SLBW competitve rho. Closes #907 --- openmc/data/reconstruct.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openmc/data/reconstruct.pyx b/openmc/data/reconstruct.pyx index f63a155b1..cd0bbc38b 100644 --- a/openmc/data/reconstruct.pyx +++ b/openmc/data/reconstruct.pyx @@ -299,8 +299,8 @@ def reconstruct_slbw(slbw, double E): # Determine shift and penetration at modified energy if slbw._competitive[i]: Ex = E + slbw.q_value[l]*(A + 1)/A - rhoc = slbw.channel_radius[l](Ex) - rhochat = slbw.scattering_radius[l](Ex) + rhoc = k*slbw.channel_radius[l](Ex) + rhochat = k*slbw.scattering_radius[l](Ex) P_c, S_c = penetration_shift(l, rhoc) if Ex < 0: P_c = 0