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 9570 for branches/2017/dev_merge_2017/NEMOGCM/NEMO/ICE_SRC/icedyn_rhg_evp.F90 – NEMO

Ignore:
Timestamp:
2018-05-11T12:53:25+02:00 (6 years ago)
Author:
nicolasmartin
Message:

Global renaming for core routines (./NEMO)

  • Folders
    • LIM_SRC_3 -> ICE_SRC
    • OPA_SRC -> OCE_SRC
  • CPP key: key_lim3 -> key_si3
  • Modules, (sub)routines and variables names
    • MPI: mpi_comm_opa -> mpi_comm_oce, MPI_COMM_OPA -> MPI_COMM_OCE, mpi_init_opa -> mpi_init_oce
    • AGRIF: agrif_opa_* -> agrif_oce_*, agrif_lim3_* -> agrif_si3_* and few more
    • TOP-PISCES: p.zlim -> p.zice, namp.zlim -> namp.zice
  • Comments
    • NEMO/OPA -> NEMO/OCE
    • ESIM|LIM3 -> SI3
Location:
branches/2017/dev_merge_2017/NEMOGCM/NEMO/ICE_SRC
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/ICE_SRC/icedyn_rhg_evp.F90

    r9482 r9570  
    1212   !!            3.6  !  2016-06  (C. Rousset) Rewriting + landfast ice + possibility to use mEVP (Bouillon 2013) 
    1313   !!---------------------------------------------------------------------- 
    14 #if defined key_lim3 
     14#if defined key_si3 
    1515   !!---------------------------------------------------------------------- 
    16    !!   'key_lim3'                                       ESIM sea-ice model 
     16   !!   'key_si3'                                       SI3 sea-ice model 
    1717   !!---------------------------------------------------------------------- 
    1818   !!   ice_dyn_rhg_evp : computes ice velocities from EVP rheology 
     
    2828   USE bdyice  
    2929#if defined key_agrif 
    30    USE agrif_lim3_interp 
     30   USE agrif_si3_interp 
    3131#endif 
    3232   ! 
     
    493493            ! 
    494494#if defined key_agrif 
    495 !!            CALL agrif_interp_lim3( 'V', jter, nn_nevp ) 
    496             CALL agrif_interp_lim3( 'V' ) 
     495!!            CALL agrif_interp_si3( 'V', jter, nn_nevp ) 
     496            CALL agrif_interp_si3( 'V' ) 
    497497#endif 
    498498            IF( ln_bdy ) CALL bdy_ice_dyn( 'V' ) 
     
    541541            ! 
    542542#if defined key_agrif 
    543 !!            CALL agrif_interp_lim3( 'U', jter, nn_nevp ) 
    544             CALL agrif_interp_lim3( 'U' ) 
     543!!            CALL agrif_interp_si3( 'U', jter, nn_nevp ) 
     544            CALL agrif_interp_si3( 'U' ) 
    545545#endif 
    546546            IF( ln_bdy ) CALL bdy_ice_dyn( 'U' ) 
     
    591591            ! 
    592592#if defined key_agrif 
    593 !!            CALL agrif_interp_lim3( 'U', jter, nn_nevp ) 
    594             CALL agrif_interp_lim3( 'U' ) 
     593!!            CALL agrif_interp_si3( 'U', jter, nn_nevp ) 
     594            CALL agrif_interp_si3( 'U' ) 
    595595#endif 
    596596            IF( ln_bdy ) CALL bdy_ice_dyn( 'U' ) 
     
    639639            ! 
    640640#if defined key_agrif 
    641 !!            CALL agrif_interp_lim3( 'V', jter, nn_nevp ) 
    642             CALL agrif_interp_lim3( 'V' ) 
     641!!            CALL agrif_interp_si3( 'V', jter, nn_nevp ) 
     642            CALL agrif_interp_si3( 'V' ) 
    643643#endif 
    644644            IF( ln_bdy ) CALL bdy_ice_dyn( 'V' ) 
     
    899899#else 
    900900   !!---------------------------------------------------------------------- 
    901    !!   Default option         Empty module           NO ESIM sea-ice model 
     901   !!   Default option         Empty module           NO SI3 sea-ice model 
    902902   !!---------------------------------------------------------------------- 
    903903#endif 
Note: See TracChangeset for help on using the changeset viewer.