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/NST_SRC/agrif_si3_update.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
File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/NST_SRC/agrif_si3_update.F90

    r9565 r9570  
    22!!#undef TWO_WAY 
    33 
    4 MODULE agrif_lim3_update 
     4MODULE agrif_si3_update 
    55   !!===================================================================================== 
    6    !!                       ***  MODULE agrif_lim3_update *** 
     6   !!                       ***  MODULE agrif_si3_update *** 
    77   !! Nesting module :  update surface ocean boundary condition over ice from a child grid 
    88   !! Sea-Ice model  :  LIM 3.6 Sea ice model time-stepping 
     
    1212   !!            3.6   !  05-2016  (C. Rousset)  Add LIM3 compatibility 
    1313   !!---------------------------------------------------------------------- 
    14 #if defined key_agrif && defined key_lim3 
    15    !!---------------------------------------------------------------------- 
    16    !!   'key_lim3'  :                                 LIM 3.6 sea-ice model 
     14#if defined key_agrif && defined key_si3 
     15   !!---------------------------------------------------------------------- 
     16   !!   'key_si3'  :                                 LIM 3.6 sea-ice model 
    1717   !!   'key_agrif' :                                 AGRIF library  
    1818   !!---------------------------------------------------------------------- 
    19    !!   agrif_update_lim3  : update sea-ice on boundaries or total 
     19   !!   agrif_update_si3  : update sea-ice on boundaries or total 
    2020   !!                        child domain for velocities and ice properties 
    2121   !!   update_tra_ice     : sea-ice properties 
     
    3333   PRIVATE 
    3434 
    35    PUBLIC   agrif_update_lim3   ! called by agrif_user.F90 and icestp.F90 
     35   PUBLIC   agrif_update_si3   ! called by agrif_user.F90 and icestp.F90 
    3636 
    3737   !!---------------------------------------------------------------------- 
    3838   !! NEMO/NST 4.0 , LOCEAN-IPSL (2017) 
    39    !! $Id: agrif_lim3_update.F90 6204 2016-01-04 13:47:06Z cetlod $ 
     39   !! $Id: agrif_si3_update.F90 6204 2016-01-04 13:47:06Z cetlod $ 
    4040   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    4141   !!---------------------------------------------------------------------- 
    4242CONTAINS 
    4343 
    44    SUBROUTINE agrif_update_lim3( kt ) 
     44   SUBROUTINE agrif_update_si3( kt ) 
    4545      !!---------------------------------------------------------------------- 
    46       !!                     *** ROUTINE agrif_update_lim3 *** 
     46      !!                     *** ROUTINE agrif_update_si3 *** 
    4747      !! ** Method  :   Call the hydrostaticupdate pressure at the boundary or the entire domain  
    4848      !! 
     
    7070      Agrif_UseSpecialValueInUpdate = .FALSE. 
    7171      ! 
    72    END SUBROUTINE agrif_update_lim3 
     72   END SUBROUTINE agrif_update_si3 
    7373 
    7474 
     
    210210   !!---------------------------------------------------------------------- 
    211211CONTAINS 
    212    SUBROUTINE agrif_lim3_update_empty 
    213       WRITE(*,*)  'agrif_lim3_update : You should not have seen this print! error?' 
    214    END SUBROUTINE agrif_lim3_update_empty 
     212   SUBROUTINE agrif_si3_update_empty 
     213      WRITE(*,*)  'agrif_si3_update : You should not have seen this print! error?' 
     214   END SUBROUTINE agrif_si3_update_empty 
    215215#endif 
    216216 
    217217   !!====================================================================== 
    218 END MODULE agrif_lim3_update 
     218END MODULE agrif_si3_update 
Note: See TracChangeset for help on using the changeset viewer.