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 3432 for branches/2011/DEV_r2739_STFC_dCSE/NEMOGCM/NEMO/OPA_SRC/LBC/mppini.F90 – NEMO

Ignore:
Timestamp:
2012-07-11T13:22:58+02:00 (12 years ago)
Author:
trackstand2
Message:

Merge branch 'ksection_partition'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2011/DEV_r2739_STFC_dCSE/NEMOGCM/NEMO/OPA_SRC/LBC/mppini.F90

    r3211 r3432  
    129129      !!   8.5  !  02-08  (G. Madec)  F90 : free form 
    130130      !!---------------------------------------------------------------------- 
     131      USE exchtestmod, ONLY: mpp_test_comms 
    131132      INTEGER  ::   ji, jj, jn   ! dummy loop indices 
    132133      INTEGER  ::   ii, ij, ifreq, il1, il2            ! local integers 
     
    134135      REAL(wp) ::   zidom, zjdom                       ! local scalars 
    135136      INTEGER, DIMENSION(jpni,jpnj) ::   iimppt, ijmppt, ilcit, ilcjt   ! local workspace 
     137      INTEGER, ALLOCATABLE, DIMENSION(:,:) :: imask ! Local fake global land mask 
    136138      !!---------------------------------------------------------------------- 
    137139 
     
    424426      CALL mpp_init_ioipsl 
    425427 
     428      ! ARPDBG - test comms setup 
     429      ALLOCATE(imask(jpiglo,jpjglo)) 
     430      imask(:,:) = 1 
     431      CALL mpp_test_comms(imask) 
     432      DEALLOCATE(imask) 
     433 
    426434   END SUBROUTINE mpp_init 
    427435 
Note: See TracChangeset for help on using the changeset viewer.