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/OCE/SBC/sbcisf.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/OCE/SBC/sbcisf.F90

    r10068 r10425  
    157157 
    158158         ! lbclnk 
    159          CALL lbc_lnk_multi( risf_tsc(:,:,jp_tem), 'T', 1., risf_tsc(:,:,jp_sal), 'T', 1., fwfisf,'T', 1., qisf, 'T', 1.) 
     159         CALL lbc_lnk_multi( 'sbcisf', risf_tsc(:,:,jp_tem), 'T', 1., risf_tsc(:,:,jp_sal), 'T', 1., fwfisf,'T', 1., qisf, 'T', 1.) 
    160160         ! output 
    161161         IF( iom_use('iceshelf_cea') )   CALL iom_put( 'iceshelf_cea', -fwfisf(:,:)                      )   ! isf mass flux 
     
    244244               &    STAT= sbc_isf_alloc ) 
    245245         ! 
    246          IF( lk_mpp             )   CALL mpp_sum ( sbc_isf_alloc ) 
    247          IF( sbc_isf_alloc /= 0 )   CALL ctl_warn('sbc_isf_alloc: failed to allocate arrays.') 
     246         CALL mpp_sum ( 'sbcisf', sbc_isf_alloc ) 
     247         IF( sbc_isf_alloc /= 0 )   CALL ctl_stop( 'STOP', 'sbc_isf_alloc: failed to allocate arrays.' ) 
    248248         ! 
    249249      ENDIF 
     
    721721            END DO 
    722722         END DO 
    723          CALL lbc_lnk_multi( pgt, 'T', 1., pgs, 'T', 1.) 
     723         CALL lbc_lnk_multi( 'sbcisf', pgt, 'T', 1., pgs, 'T', 1.) 
    724724      END SELECT 
    725725      ! 
     
    778778            END DO 
    779779         END DO 
    780          CALL lbc_lnk(pvarout,'T',-1.) 
     780         CALL lbc_lnk('sbcisf', pvarout,'T',-1.) 
    781781       
    782782      CASE ( 'V' ) ! compute V in the top boundary layer at T- point  
     
    810810            END DO 
    811811         END DO 
    812          CALL lbc_lnk(pvarout,'T',-1.) 
     812         CALL lbc_lnk('sbcisf', pvarout,'T',-1.) 
    813813 
    814814      CASE ( 'T' ) ! compute T in the top boundary layer at T- point  
Note: See TracChangeset for help on using the changeset viewer.