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.
trclsm.F90 in branches/dev_001_GM/NEMO/TOP_SRC – NEMO

source: branches/dev_001_GM/NEMO/TOP_SRC/trclsm.F90 @ 766

Last change on this file since 766 was 763, checked in by gm, 16 years ago

dev_001_GM - Style only addition in TOP F90 h90 routines

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1MODULE trclsm
2   !!======================================================================
3   !!                         ***  MODULE trclsm  ***
4   !! TOP :   reads specific namelist for passive tracer sms terms
5   !!======================================================================
6   !! History :   1.0  !  2004-03 (C. Ethe) Original code
7   !!----------------------------------------------------------------------
8   !! NEMO/TOP 1.0 , LOCEAN-IPSL (2005)
9   !! $Header:$
10   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt)
11   !!----------------------------------------------------------------------
12#if defined key_passivetrc
13   !!----------------------------------------------------------------------
14   !!   'key_passivetrc'                                    Passive tracers
15   !!----------------------------------------------------------------------
16   !!   trc_lsm   : eads specific namelist for sms terms
17   !!----------------------------------------------------------------------
18   USE oce_trc
19   USE trc
20   USE sms
21
22   IMPLICIT NONE                             
23   PRIVATE
24
25   PUBLIC   trc_lsm      ! calles in ???
26
27#if defined key_trc_lobster1
28   !!----------------------------------------------------------------------
29   !!   'key_trc_lobster1'                        LOBSTER1 biological model 
30   !!----------------------------------------------------------------------
31#  include "trclsm.lobster1.h90"
32
33#elif defined key_trc_pisces
34   !!----------------------------------------------------------------------
35   !!   'key_trc_pisces'                            PISCES biological model                 
36   !!----------------------------------------------------------------------
37#  include "trclsm.pisces.h90"
38
39#elif defined key_cfc
40   !!----------------------------------------------------------------------
41   !!   'key_cfc'                                                 CFC model                 
42   !!----------------------------------------------------------------------
43#  include "trclsm.cfc.h90"
44
45# endif
46
47#else
48   !!----------------------------------------------------------------------
49   !!  Dummy module :                                     No passive tracer
50   !!----------------------------------------------------------------------
51CONTAINS
52   SUBROUTINE trc_lsm                      ! Empty routine
53   END  SUBROUTINE  trc_lsm
54#endif 
55
56   !!======================================================================
57END MODULE trclsm 
Note: See TracBrowser for help on using the repository browser.