mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Fixed bug in use of free gas scattering for H-1.
This commit is contained in:
parent
920a7d4f19
commit
a3c5931a08
1 changed files with 1 additions and 1 deletions
|
|
@ -790,7 +790,7 @@ contains
|
|||
kT = nuc % kT
|
||||
|
||||
! Check if energy is above threshold
|
||||
if (p % E >= FREE_GAS_THRESHOLD * kT) then
|
||||
if (p % E >= FREE_GAS_THRESHOLD * kT .and. nuc % awr > ONE) then
|
||||
v_target = ZERO
|
||||
return
|
||||
end if
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue