Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NJOY2016.74 #327

Merged
merged 7 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Release Notes—NJOY2016
Given here are some release notes for NJOY2016. Each release is made through a formal [Pull Request](https://github.com/njoy/NJOY2016/pulls) made on GitHub. There are links in this document that point to each of those Pull Requests, where you can see in great details the changes that were made. Often the Pull Requests are made in response to an [issue](https://github.com/njoy/NJOY2016/issues). In such cases, links to those issues are also given.

## [NJOY2016.74](https://github.com/njoy/NJOY2016/pull/327)
This update fixes the following issues:
- Correct the Euler-Mascheroni constant (this has an influence on the Coulomb wave functions and therefore influences LRF=7 evaluations that have charged particle channels)

## [NJOY2016.73](https://github.com/njoy/NJOY2016/pull/321)
This update fixes the following issues:
- Fix an issue in ACER for thermal scattering leading to energy values being out of order when plotting the coherent elastic scattering cross section (this issue only affects plots, the thermal scattering ACE files do not change).
Expand Down
2 changes: 1 addition & 1 deletion src/phys.f90
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module physics
! the fine structure constant.
! - other values are given in terms of the above.
real(kr),parameter,public::pi=3.141592653589793238e0_kr !
real(kr),parameter,public::euler=0.55721566490153286e0_kr !
real(kr),parameter,public::euler=0.57721566490153286e0_kr !
real(kr),parameter,public::bk=8.617333262e-5_kr !eV/degK
real(kr),parameter,public::ev=1.602176634e-12_kr !erg/eV
real(kr),parameter,public::clight=2.99792458e10_kr !cm/s
Expand Down
4 changes: 2 additions & 2 deletions src/vers.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ module version
! These values are updated during the NJOY revision-control process.
implicit none
private
character(8),public::vers='2016.73'
character(8),public::vday='03Nov23'
character(8),public::vers='2016.74'
character(8),public::vday='12Jan24'
end module version
Loading