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/icestp.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/icestp.F90

    r9485 r9570  
    33   !!                       ***  MODULE  icestp  *** 
    44   !! Surface module :  update the ocean surface boundary condition over ice 
    5    !!                   covered area using ESIM sea-ice model 
     5   !!                   covered area using SI3 sea-ice model 
    66   !!===================================================================== 
    77   !! History :  2.0  ! 2006-12  (M. Vancoppenolle) Original code 
     
    1414   !!            4.0  ! 2016-06  (L. Brodeau) new unified bulk routine (based on AeroBulk) 
    1515   !!---------------------------------------------------------------------- 
    16 #if defined key_lim3 
    17    !!---------------------------------------------------------------------- 
    18    !!   'key_lim3'                                       ESIM sea-ice model 
     16#if defined key_si3 
     17   !!---------------------------------------------------------------------- 
     18   !!   'key_si3'                                       SI3 sea-ice model 
    1919   !!---------------------------------------------------------------------- 
    2020   !!   ice_stp       : sea-ice model time-stepping and update ocean SBC over ice-covered area 
     
    5050# if defined key_agrif 
    5151   USE agrif_ice 
    52    USE agrif_lim3_interp 
     52   USE agrif_si3_interp 
    5353# endif 
    5454   ! 
     
    120120         IF( .NOT. Agrif_Root() )       lim_nbstep = MOD( lim_nbstep, Agrif_irhot() * Agrif_Parent(nn_fsbc) / nn_fsbc ) + 1 
    121121         !                              ! these calls must remain here for restartability purposes 
    122                                         CALL agrif_interp_lim3( 'T' )  
    123                                         CALL agrif_interp_lim3( 'U' ) 
    124                                         CALL agrif_interp_lim3( 'V' ) 
     122                                        CALL agrif_interp_si3( 'T' )  
     123                                        CALL agrif_interp_si3( 'U' ) 
     124                                        CALL agrif_interp_si3( 'V' ) 
    125125#endif 
    126126                                        CALL store_fields             ! Store now ice values 
     
    176176         ! 
    177177!! clem: one should switch the calculation of the fluxes onto the parent grid but the following calls do not work 
    178 !!       moreover it should only be called at the update frequency (as in agrif_lim3_update.F90) 
     178!!       moreover it should only be called at the update frequency (as in agrif_si3_update.F90) 
    179179!# if defined key_agrif 
    180180!         IF( .NOT. Agrif_Root() )     CALL Agrif_ChildGrid_To_ParentGrid() 
     
    422422#else 
    423423   !!---------------------------------------------------------------------- 
    424    !!   Default option           Dummy module         NO ESIM sea-ice model 
     424   !!   Default option           Dummy module         NO SI3 sea-ice model 
    425425   !!---------------------------------------------------------------------- 
    426426CONTAINS 
Note: See TracChangeset for help on using the changeset viewer.