mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 05:05:30 -04:00
Account for neutron wave number in SLBW competitve rho. Closes #907
This commit is contained in:
parent
925a5f6bb6
commit
4df20f2d6c
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue