Skip to content

Commit

Permalink
Increasing array size
Browse files Browse the repository at this point in the history
  • Loading branch information
whaeck committed Aug 1, 2024
1 parent 9c587e3 commit 376c76d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Given here are some release notes for NJOY2016. Each release is made through a f
## [NJOY2016.77](https://github.com/njoy/NJOY2016/pull/xxx)
This update fixes the following issues:
- Background cross section values for reactions other than total, elastic, fission and capture were not handled properly in the unresolved resonance region. The background for total, elastic, fission and capture is integrated into the unresolved resonance cross section values in the genunr subroutine. In the emerge subroutine, the background in the unresolved resonance region was therefore zeroed out for any resonance reaction. This has never been an issue but now we have LRF=7 evaluations that can define reactions other than total, elastic, fission and capture. Test 82 was added to detect this issue in the future.
- Increased the size of internal arrays in VIEWR.

## [NJOY2016.76](https://github.com/njoy/NJOY2016/pull/340)
This update fixes the following issues:
Expand Down
3 changes: 1 addition & 2 deletions src/viewr.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1272,7 +1272,7 @@ subroutine set3d(iplot,xyz,nxyz)
integer::i,j,nn,k,ncurv,major,minor,itop,ibot,l,n
real(kr)::wt,xlo,xhi,ylo,yhi,zlo,zhi,xn,yn,zn,yy
real(kr)::top,bot,xop,yop,zop
integer::lll(400)
integer::lll(2000)
real(kr)::x(2000),y(2000),z(2000)
real(kr),parameter::big=1.e10_kr
real(kr),parameter::d0=.001e0_kr
Expand Down Expand Up @@ -1663,4 +1663,3 @@ subroutine ascalv(m,z1,z2,major,minor)
end subroutine ascalv

end module viewm

0 comments on commit 376c76d

Please sign in to comment.