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/OCE_SRC/DOM/phycst.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/OCE_SRC
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OCE_SRC/DOM/phycst.F90

    r9169 r9570  
    4141   REAL(wp), PUBLIC ::   rt0      = 273.15_wp        !: freezing point of fresh water [Kelvin] 
    4242   REAL(wp), PUBLIC ::   rt0_snow = 273.15_wp        !: melting point of snow         [Kelvin] 
    43 #if defined key_lim3 
     43#if defined key_si3 
    4444   REAL(wp), PUBLIC ::   rt0_ice  = 273.15_wp        !: melting point of ice          [Kelvin] 
    4545#else 
     
    6363   REAL(wp), PUBLIC ::   stefan   =    5.67e-8_wp    !: Stefan-Boltzmann constant  
    6464 
    65 #if defined key_lim3 || defined key_cice 
     65#if defined key_si3 || defined key_cice 
    6666   REAL(wp), PUBLIC ::   rhoic    =  917._wp         !: volumic mass of sea ice                               [kg/m3] 
    6767   REAL(wp), PUBLIC ::   rcdic    =    2.034396_wp   !: thermal conductivity of fresh ice                     [W/m/K] 
     
    8686   REAL(wp), PUBLIC ::   rcdsn    =    0.31_wp       !: thermal conductivity of snow                          [W/m/K], now namelist parameter for LIM3 
    8787#endif 
    88 #if defined key_lim3 
     88#if defined key_si3 
    8989   REAL(wp), PUBLIC ::   r1_rhoic                    !: 1 / rhoic 
    9090   REAL(wp), PUBLIC ::   r1_rhosn                    !: 1 / rhosn 
     
    9292#endif 
    9393   !!---------------------------------------------------------------------- 
    94    !! NEMO/OPA 3.3 , NEMO Consortium (2010) 
     94   !! NEMO/OCE 3.3 , NEMO Consortium (2010) 
    9595   !! $Id$  
    9696   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt) 
     
    146146      IF(lwp) WRITE(numout,*) '   reference density and heat capacity now defined in eosbn2.f90' 
    147147               
    148 #if defined key_lim3 || defined key_cice 
     148#if defined key_si3 || defined key_cice 
    149149      xlsn = lfus * rhosn        ! volumetric latent heat fusion of snow [J/m3] 
    150150#else 
     
    152152      lfus = xlsn / rhosn        ! latent heat of fusion of fresh ice 
    153153#endif 
    154 #if defined key_lim3 
     154#if defined key_si3 
    155155      r1_rhoic = 1._wp / rhoic 
    156156      r1_rhosn = 1._wp / rhosn 
     
    165165         WRITE(numout,*) '      fresh ice specific heat                   = ', cpic    , ' J/kg/K' 
    166166         WRITE(numout,*) '      latent heat of fusion of fresh ice / snow = ', lfus    , ' J/kg' 
    167 #if defined key_lim3 || defined key_cice 
     167#if defined key_si3 || defined key_cice 
    168168         WRITE(numout,*) '      latent heat of subl.  of fresh ice / snow = ', lsub    , ' J/kg' 
    169169#else 
Note: See TracChangeset for help on using the changeset viewer.