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

source: branches/dev_001_GM/NEMO/TOP_SRC/sms.F90 @ 764

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

dev_001_GM - create new directory and move files only

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1MODULE sms
2   !!======================================================================
3   !!                        ***  sms  ***
4   !! passive tracers :   set the passive tracers variables
5   !!======================================================================
6   !! History :    -   !  2004-03  (C. Ethe)  Free form and module
7   !!----------------------------------------------------------------------
8   !!----------------------------------------------------------------------
9   !! NEMO/TOP 1.0 , LOCEAN-IPSL (2005)
10   !! $Header:$
11   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt)
12   !!----------------------------------------------------------------------
13#if defined key_passivetrc
14   !!----------------------------------------------------------------------
15   !!   'key_passivetrc'                                    Passive tracers
16   !!----------------------------------------------------------------------
17   USE par_oce
18   USE par_trc
19   USE par_sms
20
21   IMPLICIT NONE
22   PUBLIC
23
24# if defined key_trc_lobster1
25   !!----------------------------------------------------------------------
26   !!   'key_trc_lobster1'                        LOBSTER1 biological model 
27   !!----------------------------------------------------------------------
28#  include "sms_lobster1.h90"
29
30# elif defined key_trc_pisces
31   !!----------------------------------------------------------------------
32   !!   'key_trc_pisces'                            PISCES biological model                 
33   !!----------------------------------------------------------------------
34#  include "sms_pisces.h90"
35
36# elif defined key_cfc
37   !!----------------------------------------------------------------------
38   !!   'key_cfc  '                                      CFC chemical model                 
39   !!----------------------------------------------------------------------
40#  include "sms_cfc.h90"
41
42# endif
43
44#else
45   !!----------------------------------------------------------------------
46   !!  Empty module :                                     No passive tracer
47   !!----------------------------------------------------------------------
48#endif
49
50   !!======================================================================
51END MODULE sms
Note: See TracBrowser for help on using the repository browser.