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 13056 for utils/tools_dev_r12970_AGRIF_CMEMS/DOMAINcfg/src/agrif_recompute_scales.F90 – NEMO

Ignore:
Timestamp:
2020-06-07T18:26:09+02:00 (4 years ago)
Author:
rblod
Message:

ticket #2129 : cleaning domcfg

File:
1 moved

Legend:

Unmodified
Added
Removed
  • utils/tools_dev_r12970_AGRIF_CMEMS/DOMAINcfg/src/agrif_recompute_scales.F90

    r13055 r13056  
    1 #if defined key_agrif 
    2 subroutine agrif_recompute_scalefactors 
     1MODULE agrif_recompute_scales 
     2 
    33   USE dom_oce 
    44   USE lbclnk            ! ocean lateral boundary conditions (or mpp link) 
    55   USE lib_mpp 
    6 implicit none 
    7 INTEGER :: ji,jj,jk,ikb,ikt 
     6 
     7   IMPLICiT NONE 
     8 
     9   PRIVATE 
     10 
     11   PUBLIC agrif_recompute_scalefactors 
     12 
     13CONTAINS 
     14 
     15#if defined key_agrif 
     16   SUBROUTINE agrif_recompute_scalefactors 
     17      !!---------------------------------------------------------------------- 
     18      !!                     ***  ROUTINE nemo_gcm  *** 
     19      !!---------------------------------------------------------------------- 
     20      ! 
     21      INTEGER :: ji, jj, jk, ikb, ikt 
    822 
    923      ! Scale factors and depth at U-, V-, UW and VW-points 
     
    8599      IF( MINVAL( gdept_0(:,:,:) ) <  0._wp )   CALL ctl_stop( '    zgr_zps :   e r r o r   gdept_0 <  0' ) 
    86100      IF( MINVAL( gdepw_0(:,:,:) ) <  0._wp )   CALL ctl_stop( '    zgr_zps :   e r r o r   gdepw_0 <  0' ) 
    87        
    88 end subroutine agrif_recompute_scalefactors 
     101      !  
     102   END SUBROUTINE agrif_recompute_scalefactors 
    89103#else 
    90 subroutine agrif_recompute_scalefactors_empty 
    91 end subroutine agrif_recompute_scalefactors_empty 
     104   SUBROUTINE agrif_recompute_scalefactors 
     105   END SUBROUTINE agrif_recompute_scalefactors 
    92106#endif 
     107END MODULE agrif_recompute_scales     
Note: See TracChangeset for help on using the changeset viewer.