After refactoring the constants into the phys.f90 file, hbar (in erg) is defined as:
real(kr),parameter,public::hbar=6.58219514e-16_kr*ev !Planck/2pi, erg
The numerical value has a missing digit in it, it should be:
real(kr),parameter,public::hbar=6.582119514e-16_kr*ev !Planck/2pi, erg
E.g. see ENDF manual appendix H.
Be aware that this minor difference has an impact on the 4th or 5th significant digit of all cross section values coming out of NJOY and has been present in the code since 27 days. This will be fixed as soon as possible.
After refactoring the constants into the phys.f90 file, hbar (in erg) is defined as: real(kr),parameter,public::hbar=6.58219514e-16_kr*ev !Planck/2pi, erg
The numerical value has a missing digit in it, it should be: real(kr),parameter,public::hbar=6.582119514e-16_kr*ev !Planck/2pi, erg
E.g. see ENDF manual appendix H.
Be aware that this minor difference has an impact on the 4th or 5th significant digit of all cross section values coming out of NJOY and has been present in the code since 27 days. This will be fixed as soon as possible.