Changes between Initial Version and Version 1 of Ticket #695
- Timestamp:
- 05/10/16 00:09:33 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #695
- Property Resolution → Fixed
- Property Status new → closed
-
Ticket #695 – Description
initial v1 1 In read_phypar.F, lines 2736 through 2750 check the point source methodologies1 In '''read_phypar.F''', lines 2736 through 2750 check the point source methodologies 2 2 {{{ 3 3 ! … … 17 17 END IF 18 18 }}} 19 This needs to be enclosed in a loop over ng:19 This needs to be enclosed in a loop over '''ng''': 20 20 {{{ 21 21 DO ng=1,Ngrids … … 25 25 END DO 26 26 }}} 27 Otherwise, ng has the value it acquired on exit from the previous such loop, which leads to an out-of-bound access in LuvSrc(ng) and LwSrc(ng)27 Otherwise, '''ng''' has the value it acquired on exit from the previous such loop, which leads to an out-of-bound access in '''!LuvSrc(ng''') and '''!LwSrc(ng)'''.