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 9090 for branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/BDY – NEMO

Ignore:
Timestamp:
2017-12-15T18:12:43+01:00 (7 years ago)
Author:
flavoni
Message:

change lbc_lnk in lbc_lnk_multi

Location:
branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/BDY
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/BDY/bdydyn3d.F90

    r7646 r9090  
    337337      END DO 
    338338      ! 
    339       CALL lbc_lnk( ua, 'U', -1. )   ;   CALL lbc_lnk( va, 'V', -1. )   ! Boundary points should be updated 
     339      CALL lbc_lnk_multi( ua, 'U', -1., va, 'V', -1. )   ! Boundary points should be updated 
    340340      ! 
    341341      IF( nn_timing == 1 )   CALL timing_stop('bdy_dyn3d_dmp') 
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/BDY/bdyini.F90

    r9019 r9090  
    11471147            END DO 
    11481148         END DO 
    1149          CALL lbc_lnk( bdyumask(:,:), 'U', 1. )   ;   CALL lbc_lnk( bdyvmask(:,:), 'V', 1. )      ! Lateral boundary cond. 
    1150  
     1149         CALL lbc_lnk_multi( bdyumask, 'U', 1., bdyvmask, 'V', 1. )      ! Lateral boundary cond. 
    11511150      ENDIF ! ln_mask_file=.TRUE. 
    11521151       
     
    11611160            END DO 
    11621161         END DO 
    1163          CALL lbc_lnk( bdyumask(:,:), 'U', 1. )   ;   CALL lbc_lnk( bdyvmask(:,:), 'V', 1. )      ! Lateral boundary cond. 
     1162         CALL lbc_lnk_multi( bdyumask, 'U', 1. , bdyvmask, 'V', 1. )   ! Lateral boundary cond.  
    11641163      ENDIF 
    11651164 
     
    11971196 
    11981197      ! Lateral boundary conditions 
    1199       CALL lbc_lnk( zfmask       , 'F', 1. ) 
    1200       CALL lbc_lnk( fmask        , 'F', 1. )   ;   CALL lbc_lnk( bdytmask(:,:), 'T', 1. ) 
    1201       CALL lbc_lnk( bdyumask(:,:), 'U', 1. )   ;   CALL lbc_lnk( bdyvmask(:,:), 'V', 1. ) 
    1202  
     1198      CALL lbc_lnk_multi( zfmask, 'F', 1. , fmask, 'F', 1., bdyumask, 'U', 1. , bdyvmask, 'V', 1., bdytmask, 'T', 1. ) 
    12031199      DO ib_bdy = 1, nb_bdy       ! Indices and directions of rim velocity components 
    12041200 
Note: See TracChangeset for help on using the changeset viewer.