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/TOP_SRC/PISCES/P4Z/p4zice.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/TOP_SRC/PISCES/P4Z/p4zice.F90

    r9565 r9570  
    1 MODULE p4zlim 
     1MODULE p4zice 
    22   !!====================================================================== 
    3    !!                         ***  MODULE p4zlim  *** 
     3   !!                         ***  MODULE p4zice  *** 
    44   !! TOP :   PISCES  
    55   !!====================================================================== 
     
    6969   !!---------------------------------------------------------------------- 
    7070   !! NEMO/TOP 3.3 , NEMO Consortium (2010) 
    71    !! $Id: p4zlim.F90 3160 2011-11-20 14:27:18Z cetlod $  
     71   !! $Id: p4zice.F90 3160 2011-11-20 14:27:18Z cetlod $  
    7272   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt) 
    7373   !!---------------------------------------------------------------------- 
     
    241241      INTEGER ::   ios   ! Local integer 
    242242      ! 
    243       NAMELIST/namp4zlim/ concnno3, concdno3, concnnh4, concdnh4, concnfer, concdfer, concbfe,   & 
     243      NAMELIST/namp4zice/ concnno3, concdno3, concnnh4, concdnh4, concnfer, concdfer, concbfe,   & 
    244244         &                concbno3, concbnh4, xsizedia, xsizephy, xsizern, xsizerd,          &  
    245245         &                xksi1, xksi2, xkdoc, qnfelim, qdfelim, caco3r, oxymin 
     
    253253      ! 
    254254      REWIND( numnatp_ref )              ! Namelist nampislim in reference namelist : Pisces nutrient limitation parameters 
    255       READ  ( numnatp_ref, namp4zlim, IOSTAT = ios, ERR = 901) 
    256 901   IF( ios /= 0 )   CALL ctl_nam ( ios , 'namp4zlim in reference namelist', lwp ) 
     255      READ  ( numnatp_ref, namp4zice, IOSTAT = ios, ERR = 901) 
     256901   IF( ios /= 0 )   CALL ctl_nam ( ios , 'namp4zice in reference namelist', lwp ) 
    257257      REWIND( numnatp_cfg )              ! Namelist nampislim in configuration namelist : Pisces nutrient limitation parameters  
    258       READ  ( numnatp_cfg, namp4zlim, IOSTAT = ios, ERR = 902 ) 
    259 902   IF( ios >  0 )   CALL ctl_nam ( ios , 'namp4zlim in configuration namelist', lwp ) 
    260       IF(lwm) WRITE( numonp, namp4zlim ) 
     258      READ  ( numnatp_cfg, namp4zice, IOSTAT = ios, ERR = 902 ) 
     259902   IF( ios >  0 )   CALL ctl_nam ( ios , 'namp4zice in configuration namelist', lwp ) 
     260      IF(lwm) WRITE( numonp, namp4zice ) 
    261261      ! 
    262262      IF(lwp) THEN                         ! control print 
    263          WRITE(numout,*) '   Namelist : namp4zlim' 
     263         WRITE(numout,*) '   Namelist : namp4zice' 
    264264         WRITE(numout,*) '      mean rainratio                           caco3r    = ', caco3r 
    265265         WRITE(numout,*) '      NO3 half saturation of nanophyto         concnno3  = ', concnno3 
     
    311311 
    312312   !!====================================================================== 
    313 END MODULE p4zlim 
     313END MODULE p4zice 
Note: See TracChangeset for help on using the changeset viewer.