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 12336 for NEMO/branches/2019/dev_r11943_MERGE_2019/src/OCE/DIA/diaar5.F90 – NEMO

Ignore:
Timestamp:
2020-01-24T17:25:42+01:00 (4 years ago)
Author:
acc
Message:

Branch 2019/dev_r11943_MERGE_2019. A few neutral changes to loop statements so that the perl scripts to perform the upcoming DO LOOP macros substitutions will recognise a few loops that diverge from the common coding convention. These include loops where ji and jj are unnecessarily swapped in order; loops that use jpi-1 (for example) instead of jpim1 and loops with comments between the END DO statements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/dev_r11943_MERGE_2019/src/OCE/DIA/diaar5.F90

    r12193 r12336  
    299299          ELSE 
    300300            DO jk = 1, jpk 
    301                DO ji = 1, jpi 
    302                   DO jj = 1, jpj 
     301               DO jj = 1, jpj 
     302                  DO ji = 1, jpi 
    303303                     zpe(ji,jj) = zpe(ji,jj) + avt(ji,jj,jk) * MIN(0._wp,rn2(ji,jj,jk)) * rau0 * e3w(ji,jj,jk,Kmm) 
    304304                  END DO 
Note: See TracChangeset for help on using the changeset viewer.