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

source: branches/dev_001_GM/NEMO/TOP_SRC/par_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.1 KB
Line 
1MODULE par_sms
2   !!======================================================================
3   !!                         ***  MODULE par_sms  ***
4   !! TOP :   parameters of passive tracers
5   !!======================================================================
6   !! History :   1.0  !  2005-03 (O. Aumont, A. El Moussaoui) F90
7   !!----------------------------------------------------------------------
8   !! NEMO/TOP 1.0 , LOCEAN-IPSL (2005)
9   !! $Id$
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   USE par_trc_trp
17
18   IMPLICIT NONE
19
20#if defined key_trc_lobster1
21   !!----------------------------------------------------------------------
22   !!   'key_trc_lobster1'                        LOBSTER1 biological model 
23   !!----------------------------------------------------------------------
24#  include "par_sms_lobster1.h90"
25
26#elif defined key_trc_pisces
27   !!----------------------------------------------------------------------
28   !!   'key_trc_pisces'                            PISCES biological model                 
29   !!----------------------------------------------------------------------
30#  include "par_sms_pisces.h90"
31
32#elif defined key_cfc
33   !!----------------------------------------------------------------------
34   !!   'key_cfc  '                                      CFC chemical model                 
35   !!----------------------------------------------------------------------
36#  include "par_sms_cfc.h90"
37
38#else
39   !!----------------------------------------------------------------------
40   !!  Empty module :                                     No passive tracer
41   !!----------------------------------------------------------------------
42#endif
43
44   !!======================================================================
45END MODULE par_sms
Note: See TracBrowser for help on using the repository browser.