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 1119 for trunk/NEMO/TOP_SRC/PISCES/p4zprod.F90 – NEMO

Ignore:
Timestamp:
2008-06-20T17:17:41+02:00 (16 years ago)
Author:
cetlod
Message:

style of all top namelist has been modified ; update modules to take it into account, see ticket:196

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/TOP_SRC/PISCES/p4zprod.F90

    r1073 r1119  
    1515   USE trc 
    1616   USE oce_trc         ! 
    17    USE trp_trc         !  
    1817   USE sms_pisces      !  
    1918   USE prtctl_trc 
     
    376375!   Supplementary diagnostics 
    377376!   ------------------------- 
    378       trc3d(:,:,:,4)  = etot(:,:,:) 
    379       trc3d(:,:,:,5)  = zprorca(:,:,:)  * zrfact2 
    380       trc3d(:,:,:,6)  = zprorcad(:,:,:) * zrfact2 
    381       trc3d(:,:,:,7)  = zpronew(:,:,:)  * zrfact2 
    382       trc3d(:,:,:,8)  = zpronewd(:,:,:) * zrfact2 
    383       trc3d(:,:,:,9)  = zprorcad(:,:,:) * zysopt(:,:,:) * zrfact2 
    384       trc3d(:,:,:,10) = zprofed(:,:,:) * zrfact2 
     377      trc3d(:,:,:,jp_pcs0_3d + 3)  = etot(:,:,:) 
     378      trc3d(:,:,:,jp_pcs0_3d + 4)  = zprorca(:,:,:)  * zrfact2 
     379      trc3d(:,:,:,jp_pcs0_3d + 5)  = zprorcad(:,:,:) * zrfact2 
     380      trc3d(:,:,:,jp_pcs0_3d + 6)  = zpronew(:,:,:)  * zrfact2 
     381      trc3d(:,:,:,jp_pcs0_3d + 7)  = zpronewd(:,:,:) * zrfact2 
     382      trc3d(:,:,:,jp_pcs0_3d + 8)  = zprorcad(:,:,:) * zysopt(:,:,:) * zrfact2 
     383      trc3d(:,:,:,jp_pcs0_3d + 9) = zprofed(:,:,:) * zrfact2 
    385384#if ! defined key_kriest 
    386       trc3d(:,:,:,11) = zprofen(:,:,:) * zrfact2 
     385      trc3d(:,:,:,jp_pcs0_3d + 10) = zprofen(:,:,:) * zrfact2 
    387386#endif 
    388387#endif 
     
    403402      !! ** Purpose :   Initialization of phytoplankton production parameters 
    404403      !! 
    405       !! ** Method  :   Read the natprod namelist and check the parameters 
     404      !! ** Method  :   Read the nampisprod namelist and check the parameters 
    406405      !!      called at the first timestep (nittrc000) 
    407406      !! 
    408       !! ** input   :   Namelist natprod 
     407      !! ** input   :   Namelist nampisprod 
    409408      !! 
    410409      !!---------------------------------------------------------------------- 
    411410 
    412       NAMELIST/natprod/ pislope, pislope2, excret, excret2, chlcnm, chlcdm,   & 
     411      NAMELIST/nampisprod/ pislope, pislope2, excret, excret2, chlcnm, chlcdm,   & 
    413412         &              fecnm, fecdm, grosip 
    414413 
    415414      REWIND( numnat )                     ! read numnat 
    416       READ  ( numnat, natprod ) 
     415      READ  ( numnat, nampisprod ) 
    417416 
    418417      IF(lwp) THEN                         ! control print 
    419418         WRITE(numout,*) ' ' 
    420          WRITE(numout,*) ' Namelist parameters for phytoplankton growth, natprod' 
     419         WRITE(numout,*) ' Namelist parameters for phytoplankton growth, nampisprod' 
    421420         WRITE(numout,*) ' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~' 
    422421         WRITE(numout,*) '    mean Si/C ratio                           grosip    =', grosip 
Note: See TracChangeset for help on using the changeset viewer.