From 0d912a246b8ae68f76e2c929656ac43d96b478a9 Mon Sep 17 00:00:00 2001 From: Wim Haeck Date: Fri, 19 Apr 2024 12:05:30 -0600 Subject: [PATCH 1/2] Fix typo --- ReleaseNotes.md | 4 ++++ src/thermr.f90 | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 21f3ab49..7a424a2d 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -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.75](https://github.com/njoy/NJOY2016/pull/xxx) +This update fixes the following issues: + - Corrected a typo in the gateff subroutine in thermr (changed 1220 into 1200, see issue #76) + ## [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) diff --git a/src/thermr.f90 b/src/thermr.f90 index 4ad8558d..782d7d3d 100644 --- a/src/thermr.f90 +++ b/src/thermr.f90 @@ -636,7 +636,7 @@ subroutine gateff(temp,eftemp,ntemp,mat) 1064.e0_kr,700.e0_kr,749.69e0_kr,& 1064.e0_kr,800.e0_kr,843.63e0_kr,& 1064.e0_kr,1000.e0_kr,1035.e0_kr,& - 1064.e0_kr,1220.e0_kr,1229.3e0_kr,& + 1064.e0_kr,1200.e0_kr,1229.3e0_kr,& 1065.e0_kr,296.0e0_kr,713.39e0_kr,& 1065.e0_kr,400.0e0_kr,754.68e0_kr,& 1065.e0_kr,500.0e0_kr,806.67e0_kr,& From c96ce9023cf7672789a308a08986707b875c6020 Mon Sep 17 00:00:00 2001 From: Wim Haeck Date: Fri, 19 Apr 2024 12:06:18 -0600 Subject: [PATCH 2/2] Updating version number --- src/vers.f90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vers.f90 b/src/vers.f90 index 50f86fa6..cbc34234 100644 --- a/src/vers.f90 +++ b/src/vers.f90 @@ -3,6 +3,6 @@ module version ! These values are updated during the NJOY revision-control process. implicit none private - character(8),public::vers='2016.74' - character(8),public::vday='12Jan24' + character(8),public::vers='2016.75' + character(8),public::vday='xxAprxx' end module version