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 3211 for branches/2011/DEV_r2739_STFC_dCSE/NEMOGCM/NEMO/OPA_SRC/C1D/dyncor_c1d.F90 – NEMO

Ignore:
Timestamp:
2011-12-11T16:00:26+01:00 (13 years ago)
Author:
spickles2
Message:

Stephen Pickles, 11 Dec 2011

Commit to bring the rest of the DCSE NEMO development branch
in line with the latest development version. This includes
array index re-ordering of all OPA_SRC/.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2011/DEV_r2739_STFC_dCSE/NEMOGCM/NEMO/OPA_SRC/C1D/dyncor_c1d.F90

    r2409 r3211  
    2525   PUBLIC   cor_c1d      ! routine called by OPA.F90 
    2626   PUBLIC   dyn_cor_c1d  ! routine called by step1d.F90 
     27 
     28   !! * Array index permutations 
     29#  include "oce_ftrans.h90" 
     30#  include "dom_oce_ftrans.h90" 
    2731 
    2832   !! * Substitutions 
     
    96100      ENDIF 
    97101      ! 
     102#if defined key_z_first 
     103      DO jj = 2, jpjm1 
     104         DO ji = 2, jpim1 
     105            DO jk = 1, jpkm1 
     106#else 
    98107      DO jk = 1, jpkm1 
    99108         DO jj = 2, jpjm1 
    100109            DO ji = fs_2, fs_jpim1   ! vector opt. 
     110#endif 
    101111               ua(ji,jj,jk) = ua(ji,jj,jk) + ff(ji,jj) * vn(ji,jj,jk) 
    102112               va(ji,jj,jk) = va(ji,jj,jk) - ff(ji,jj) * un(ji,jj,jk) 
Note: See TracChangeset for help on using the changeset viewer.