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 13077 for NEMO/branches/2020/r4.0-HEAD_ticket2425/src/OFF/nemogcm.F90 – NEMO

Ignore:
Timestamp:
2020-06-09T17:00:38+02:00 (4 years ago)
Author:
davestorkey
Message:

branches/2020/r4.0-HEAD_ticket2425: update to r13076 of r4.0-HEAD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2020/r4.0-HEAD_ticket2425/src/OFF/nemogcm.F90

    r12640 r13077  
    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) 
     
    134136      IF( nstop /= 0 .AND. lwp ) THEN                 ! error print 
    135137         WRITE(ctmp1,*) '   ==>>>   nemo_gcm: a total of ', nstop, ' errors have been found' 
    136          CALL ctl_stop( ctmp1 ) 
     138         WRITE(ctmp2,*) '           Look for "E R R O R" messages in all existing ocean_output* files' 
     139         CALL ctl_stop( ' ', ctmp1, ' ', ctmp2 ) 
    137140      ENDIF 
    138141      ! 
     
    312315 
    313316                           CALL     sbc_init    ! Forcings : surface module 
     317                           CALL     bdy_init    ! Open boundaries initialisation                           
    314318 
    315319      !                                      ! Tracer physics 
     
    476480      USE zdf_oce,   ONLY : zdf_oce_alloc 
    477481      USE trc_oce,   ONLY : trc_oce_alloc 
     482      USE bdy_oce,   ONLY : bdy_oce_alloc 
    478483      ! 
    479484      INTEGER :: ierr 
     
    485490      ierr = ierr + zdf_oce_alloc()          ! ocean vertical physics 
    486491      ierr = ierr + trc_oce_alloc()          ! shared TRC / TRA arrays 
     492      ierr = ierr + bdy_oce_alloc()    ! bdy masks (incl. initialization) 
     493       
    487494      ! 
    488495      CALL mpp_sum( 'nemogcm', ierr ) 
Note: See TracChangeset for help on using the changeset viewer.