Skip to content

Commit 376c76d

Browse files
committed
Increasing array size
1 parent 9c587e3 commit 376c76d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ReleaseNotes.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Given here are some release notes for NJOY2016. Each release is made through a f
44
## [NJOY2016.77](https://github.com/njoy/NJOY2016/pull/xxx)
55
This update fixes the following issues:
66
- 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.
7+
- Increased the size of internal arrays in VIEWR.
78

89
## [NJOY2016.76](https://github.com/njoy/NJOY2016/pull/340)
910
This update fixes the following issues:

src/viewr.f90

+1-2
Original file line numberDiff line numberDiff line change
@@ -1272,7 +1272,7 @@ subroutine set3d(iplot,xyz,nxyz)
12721272
integer::i,j,nn,k,ncurv,major,minor,itop,ibot,l,n
12731273
real(kr)::wt,xlo,xhi,ylo,yhi,zlo,zhi,xn,yn,zn,yy
12741274
real(kr)::top,bot,xop,yop,zop
1275-
integer::lll(400)
1275+
integer::lll(2000)
12761276
real(kr)::x(2000),y(2000),z(2000)
12771277
real(kr),parameter::big=1.e10_kr
12781278
real(kr),parameter::d0=.001e0_kr
@@ -1663,4 +1663,3 @@ subroutine ascalv(m,z1,z2,major,minor)
16631663
end subroutine ascalv
16641664

16651665
end module viewm
1666-

0 commit comments

Comments
 (0)