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

Fix/typo thermr #334

Merged
merged 3 commits into from
Apr 22, 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
1 change: 1 addition & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Given here are some release notes for NJOY2016. Each release is made through a f

## [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)

In addition, this update made added the following features and changes:
- A small change to the NXS array for continuous energy and photonuclear ACE files (iopt = 1 and 5): in both cases, the isomeric state S, atom number Z and mass number A are now stored in NXS(9), NXS(10) and NXS(11) respectively.
Expand Down
2 changes: 1 addition & 1 deletion src/thermr.f90
Original file line number Diff line number Diff line change
Expand Up @@ -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,&
Expand Down