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 768 for branches/dev_001_GM/NEMO/TOP_SRC/PISCES/trclsm_pisces.F90 – NEMO

Ignore:
Timestamp:
2007-12-16T15:46:18+01:00 (16 years ago)
Author:
gm
Message:

dev_001_GM - create 1 trclsm_ module by trc model (CFC, LOBSTER, PISCES..) + some bug corrections

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/dev_001_GM/NEMO/TOP_SRC/PISCES/trclsm_pisces.F90

    r764 r768  
    33   !! TOP :   Definition some run parameter for PISCES biological model 
    44   !!---------------------------------------------------------------------- 
    5    !! History :    -  !  1999-10 (M.A. Foujols, M. Levy) original code 
    6    !!              -  !  2000-01 (L. Bopp) hamocc3, p3zd 
    7    !!             1.0 !  2003-08 (C. Ethe)  module F90 
    8    !!---------------------------------------------------------------------- 
    9  
    10    !!---------------------------------------------------------------------- 
    11    !! NEMO/TOP 1.0 , LOCEAN-IPSL (2005)  
    12    !! $Id $  
     5   !! History :    -   !  1999-10 (M.A. Foujols, M. Levy) original code 
     6   !!              -   !  2000-01 (L. Bopp) hamocc3, p3zd 
     7   !!             1.0  !  2003-08 (C. Ethe)  module F90 
     8   !!             2.0  !  2007-12  (C. Ethe, G. Madec) from trclsm.pisces.h90 
     9   !!---------------------------------------------------------------------- 
     10#if defined key_trc_pisces 
     11   !!---------------------------------------------------------------------- 
     12   !!   'key_trc_pisces'   :                               PISCES bio-model 
     13   !!---------------------------------------------------------------------- 
     14   !! trc_lsm_pisces       : PISCES model namelist read 
     15   !!---------------------------------------------------------------------- 
     16   USE oce_trc         ! Ocean variables 
     17   USE par_trc         ! TOP parameters 
     18   USE trc             ! TOP variables 
     19   USE sms             ! sms trends 
     20 
     21   IMPLICIT NONE 
     22   PRIVATE 
     23 
     24   PUBLIC   trc_lsm_pisces   ! called by trclsm.F90 module 
     25 
     26   !!---------------------------------------------------------------------- 
     27   !! NEMO/TOP 2.0 , LOCEAN-IPSL (2007)  
     28   !! $Id$  
    1329   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    1430   !!---------------------------------------------------------------------- 
     
    1632CONTAINS 
    1733 
    18    SUBROUTINE trc_lsm 
     34   SUBROUTINE trc_lsm_pisces 
    1935      !!---------------------------------------------------------------------- 
    20       !!                     ***  trc_lsm  ***   
     36      !!                     ***  trc_lsm_pisces  ***   
    2137      !! 
    2238      !! ** Purpose :   read PISCES namelist 
     
    4763      !!---------------------------------------------------------------------- 
    4864 
    49  
    5065      IF(lwp) WRITE(numout,*) 
    51       IF(lwp) WRITE(numout,*) ' trc_lsm : read PISCES namelists' 
    52       IF(lwp) WRITE(numout,*) ' ~~~~~~~' 
     66      IF(lwp) WRITE(numout,*) ' trc_lsm_pisces : read PISCES namelists' 
     67      IF(lwp) WRITE(numout,*) ' ~~~~~~~~~~~~~~' 
    5368 
    5469 
     
    202217#endif 
    203218      ! 
    204    END SUBROUTINE trc_lsm 
     219   END SUBROUTINE trc_lsm_pisces 
     220 
     221#else 
     222   !!---------------------------------------------------------------------- 
     223   !!  Dummy module :                                   No PISCES bio-model 
     224   !!---------------------------------------------------------------------- 
     225CONTAINS 
     226   SUBROUTINE trc_lsm_pisces                      ! Empty routine 
     227   END  SUBROUTINE  trc_lsm_pisces 
     228#endif   
     229 
     230   !!====================================================================== 
     231END MODULE trclsm_pisces 
Note: See TracChangeset for help on using the changeset viewer.