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 12841 for NEMO/releases/r4.0/r4.0-HEAD/src/OFF – NEMO

Ignore:
Timestamp:
2020-05-01T12:52:40+02:00 (4 years ago)
Author:
cetlod
Message:

r4.0-HEAD : bugfix on BDY & TOP, see ticket #2389

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/releases/r4.0/r4.0-HEAD/src/OFF/nemogcm.F90

    r12640 r12841  
    2727   USE usrdef_nam     ! user defined configuration 
    2828   USE eosbn2         ! equation of state            (eos bn2 routine) 
    29    !              ! ocean physics 
     29   !                  ! ocean physics 
     30   USE bdy_oce,  ONLY : ln_bdy 
     31   USE bdyini         ! open boundary cond. setting       (bdy_init routine) 
    3032   USE ldftra         ! lateral diffusivity setting    (ldf_tra_init routine) 
    3133   USE ldfslp         ! slopes of neutral surfaces     (ldf_slp_init routine) 
     
    312314 
    313315                           CALL     sbc_init    ! Forcings : surface module 
     316                           CALL     bdy_init    ! Open boundaries initialisation                           
    314317 
    315318      !                                      ! Tracer physics 
     
    476479      USE zdf_oce,   ONLY : zdf_oce_alloc 
    477480      USE trc_oce,   ONLY : trc_oce_alloc 
     481      USE bdy_oce,   ONLY : bdy_oce_alloc 
    478482      ! 
    479483      INTEGER :: ierr 
     
    485489      ierr = ierr + zdf_oce_alloc()          ! ocean vertical physics 
    486490      ierr = ierr + trc_oce_alloc()          ! shared TRC / TRA arrays 
     491      ierr = ierr + bdy_oce_alloc()    ! bdy masks (incl. initialization) 
     492       
    487493      ! 
    488494      CALL mpp_sum( 'nemogcm', ierr ) 
Note: See TracChangeset for help on using the changeset viewer.