Skip to content

Commit a0a3340

Browse files
authored
Merge pull request #327 from njoy/develop
NJOY2016.74
2 parents 9adfc08 + 45eab2e commit a0a3340

File tree

5 files changed

+4112
-4108
lines changed

5 files changed

+4112
-4108
lines changed

ReleaseNotes.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Release Notes—NJOY2016
22
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.
33

4+
## [NJOY2016.74](https://github.com/njoy/NJOY2016/pull/327)
5+
This update fixes the following issues:
6+
- 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)
7+
48
## [NJOY2016.73](https://github.com/njoy/NJOY2016/pull/321)
59
This update fixes the following issues:
610
- 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).

src/phys.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module physics
1818
! the fine structure constant.
1919
! - other values are given in terms of the above.
2020
real(kr),parameter,public::pi=3.141592653589793238e0_kr !
21-
real(kr),parameter,public::euler=0.55721566490153286e0_kr !
21+
real(kr),parameter,public::euler=0.57721566490153286e0_kr !
2222
real(kr),parameter,public::bk=8.617333262e-5_kr !eV/degK
2323
real(kr),parameter,public::ev=1.602176634e-12_kr !erg/eV
2424
real(kr),parameter,public::clight=2.99792458e10_kr !cm/s

src/vers.f90

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ module version
33
! These values are updated during the NJOY revision-control process.
44
implicit none
55
private
6-
character(8),public::vers='2016.73'
7-
character(8),public::vday='03Nov23'
6+
character(8),public::vers='2016.74'
7+
character(8),public::vday='12Jan24'
88
end module version

0 commit comments

Comments
 (0)