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 10425 for NEMO/trunk/src/TOP/trcsub.F90 – NEMO

Ignore:
Timestamp:
2018-12-19T22:54:16+01:00 (5 years ago)
Author:
smasson
Message:

trunk: merge back dev_r10164_HPC09_ESIWACE_PREP_MERGE@10424 into the trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/src/TOP/trcsub.F90

    r10068 r10425  
    308308 
    309309      ierr =  trc_sub_alloc    () 
    310       IF( lk_mpp    )   CALL mpp_sum( ierr ) 
     310      CALL mpp_sum( 'trcsub', ierr ) 
    311311      IF( ierr /= 0 )   CALL ctl_stop( 'STOP', 'top_sub_alloc : unable to allocate standard ocean arrays' ) 
    312312 
     
    510510         IF( ln_bdy ) THEN 
    511511            ssha(:,:) = ssha(:,:) * bdytmask(:,:) 
    512             CALL lbc_lnk( ssha, 'T', 1. )  
     512            CALL lbc_lnk( 'trcsub', ssha, 'T', 1. )  
    513513         ENDIF 
    514514      ENDIF 
     
    535535      !!                    *** ROUTINE trc_sub_alloc *** 
    536536      !!------------------------------------------------------------------- 
    537       USE lib_mpp, ONLY: ctl_warn 
     537      USE lib_mpp, ONLY: ctl_stop 
    538538      INTEGER ::  ierr(3) 
    539539      !!------------------------------------------------------------------- 
     
    577577      trc_sub_alloc = MAXVAL( ierr ) 
    578578      ! 
    579       IF( trc_sub_alloc /= 0 )   CALL ctl_warn('trc_sub_alloc: failed to allocate arrays') 
     579      IF( trc_sub_alloc /= 0 )   CALL ctl_stop( 'STOP', 'trc_sub_alloc: failed to allocate arrays' ) 
    580580      ! 
    581581   END FUNCTION trc_sub_alloc 
Note: See TracChangeset for help on using the changeset viewer.