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.76 #340

Merged
merged 6 commits into from
Jul 3, 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: 2 additions & 2 deletions .github/workflows/ContinuousIntegration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ ubuntu-20.04, macos-11 ]
os: [ ubuntu-22.04, macos-12 ]
build_type: [ Debug, Release ]
vFortran: [ gfortran-10 ]
vFortran: [ gfortran-11 ]

steps:
- name: which gfortran
Expand Down
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.76](https://github.com/njoy/NJOY2016/pull/340)
This update fixes the following issues:
- Increase an array size to properly process Pt covariances in ENDF/B-VIII.1.

## [NJOY2016.75](https://github.com/njoy/NJOY2016/pull/335)
This update fixes the following issues:
- Corrected a typo in the gateff subroutine in thermr (changed 1220 into 1200, see issue #76)
Expand Down
2 changes: 1 addition & 1 deletion src/errorr.f90
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ subroutine errorr
!--read covariance reaction types from end/b dictionary
!--and set file 32 flag
nscr2=0
nwi=4000
nwi=40000
allocate(dict(nwi))
call repoz(nendf)
call tpidio(nendf,0,0,dict,nb,nw)
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.75'
character(8),public::vday='29Apr24'
character(8),public::vers='2016.76'
character(8),public::vday='03Jul24'
end module version