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 trunk/NEMO/TOP_SRC – NEMO

source: trunk/NEMO/TOP_SRC/trclsm.F90 @ 941

Last change on this file since 941 was 719, checked in by ctlod, 17 years ago

get back to the nemo_v2_3 version for trunk

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1MODULE trclsm
2   !!===============================================================
3   !!
4   !!                       *** MODULE trclsm ****
5   !!
6   !!  READS specific NAMELIST for sms terms
7   !!
8   !!=================================================================
9   !!  TOP 1.0,  LOCEAN-IPSL (2005)
10   !! $Header$
11   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
12   !!-----------------------------------------------------------------
13#if defined key_passivetrc
14   !!-------------------------------------------------------------
15   !! * Modules used
16   !! ==============
17   USE oce_trc
18   USE trc
19   USE sms
20
21
22   IMPLICIT NONE                             
23   PRIVATE
24
25   !! * Accessibility
26   PUBLIC trc_lsm
27
28
29#if defined key_trc_lobster1
30   !!----------------------------------------------------------------------
31   !!   'key_trc_lobster1'                        LOBSTER1 biological model 
32   !!----------------------------------------------------------------------
33#  include "trclsm.lobster1.h90"
34
35#elif defined key_trc_pisces
36   !!----------------------------------------------------------------------
37   !!   'key_trc_pisces'                            PISCES biological model                 
38   !!----------------------------------------------------------------------
39#  include "trclsm.pisces.h90"
40
41#elif defined key_cfc
42   !!----------------------------------------------------------------------
43   !!   'key_cfc  '                                          CFC model                 
44   !!----------------------------------------------------------------------
45#  include "trclsm.cfc.h90"
46
47   !!----------------------------------------------------------------------
48   !!   Default option                               
49   !!----------------------------------------------------------------------
50# endif
51
52#else
53
54CONTAINS
55
56   SUBROUTINE trc_lsm
57      !!================
58      !! no passive tracers
59   END  SUBROUTINE  trc_lsm
60
61#endif 
62
63END MODULE trclsm 
Note: See TracBrowser for help on using the repository browser.