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

    r9565 r9570  
    1 MODULE p5zlim 
     1MODULE p5zice 
    22   !!====================================================================== 
    3    !!                         ***  MODULE p5zlim  *** 
     3   !!                         ***  MODULE p5zice  *** 
    44   !! TOP :   PISCES with variable stoichiometry  
    55   !!====================================================================== 
     
    123123   !!---------------------------------------------------------------------- 
    124124   !! NEMO/TOP 3.3 , NEMO Consortium (2010) 
    125    !! $Id: p4zlim.F90 3160 2011-11-20 14:27:18Z cetlod $  
     125   !! $Id: p4zice.F90 3160 2011-11-20 14:27:18Z cetlod $  
    126126   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt) 
    127127   !!---------------------------------------------------------------------- 
     
    467467      INTEGER :: ios                 ! Local integer output status for namelist read 
    468468      !! 
    469       NAMELIST/namp5zlim/ concnno3, concpno3, concdno3, concnnh4, concpnh4, concdnh4,  & 
     469      NAMELIST/namp5zice/ concnno3, concpno3, concdno3, concnnh4, concpnh4, concdnh4,  & 
    470470         &                concnfer, concpfer, concdfer, concbfe, concnpo4, concppo4,   & 
    471471         &                concdpo4, concbno3, concbnh4, concbpo4, xsizedia, xsizepic,  & 
     
    479479      ! 
    480480      REWIND( numnatp_ref )              ! Namelist nampislim in reference namelist : Pisces nutrient limitation parameters 
    481       READ  ( numnatp_ref, namp5zlim, IOSTAT = ios, ERR = 901) 
     481      READ  ( numnatp_ref, namp5zice, IOSTAT = ios, ERR = 901) 
    482482901   IF( ios /= 0 ) CALL ctl_nam ( ios , 'nampislim in reference namelist', lwp ) 
    483483      ! 
    484484      REWIND( numnatp_cfg )              ! Namelist nampislim in configuration namelist : Pisces nutrient limitation parameters  
    485       READ  ( numnatp_cfg, namp5zlim, IOSTAT = ios, ERR = 902 ) 
     485      READ  ( numnatp_cfg, namp5zice, IOSTAT = ios, ERR = 902 ) 
    486486902   IF( ios >  0 ) CALL ctl_nam ( ios , 'nampislim in configuration namelist', lwp ) 
    487       IF(lwm) WRITE ( numonp, namp5zlim ) 
     487      IF(lwm) WRITE ( numonp, namp5zice ) 
    488488      ! 
    489489      IF(lwp) THEN                         ! control print 
    490490         WRITE(numout,*) ' ' 
    491          WRITE(numout,*) ' Namelist parameters for nutrient limitations, namp5zlim' 
     491         WRITE(numout,*) ' Namelist parameters for nutrient limitations, namp5zice' 
    492492         WRITE(numout,*) ' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~' 
    493493         WRITE(numout,*) '    mean rainratio                           caco3r    = ', caco3r 
     
    600600   END FUNCTION p5z_lim_alloc 
    601601   !!====================================================================== 
    602 END MODULE  p5zlim 
     602END MODULE  p5zice 
Note: See TracChangeset for help on using the changeset viewer.