New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 1774 for trunk/NEMO/LIM_SRC_2 – NEMO

Changeset 1774 for trunk/NEMO/LIM_SRC_2


Ignore:
Timestamp:
2009-11-26T12:00:28+01:00 (14 years ago)
Author:
rblod
Message:

Correct arrays out of bounds in limrhg_2, see ticket #618

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/LIM_SRC_2/limrhg_2.F90

    r1711 r1774  
    158158          
    159159      DO jj = k_j1+1, k_jpj-1 
    160          DO ji = fs_2, jpi 
     160         DO ji = 2, jpi    ! NO vector opt. 
    161161            zstms = zztms(ji,jj  ) * wght(ji,jj,2,2) + zztms(ji-1,jj  ) * wght(ji,jj,1,2)   & 
    162162               &  + zztms(ji,jj-1) * wght(ji,jj,2,1) + zztms(ji-1,jj-1) * wght(ji,jj,1,1) 
Note: See TracChangeset for help on using the changeset viewer.