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 @ 767

Last change on this file since 767 was 763, checked in by gm, 17 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
RevLine 
[268]1MODULE trclsm
[763]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   !!----------------------------------------------------------------------
[335]12#if defined key_passivetrc
[763]13   !!----------------------------------------------------------------------
14   !!   'key_passivetrc'                                    Passive tracers
15   !!----------------------------------------------------------------------
16   !!   trc_lsm   : eads specific namelist for sms terms
17   !!----------------------------------------------------------------------
[335]18   USE oce_trc
19   USE trc
20   USE sms
[268]21
[335]22   IMPLICIT NONE                             
23   PRIVATE
24
[763]25   PUBLIC   trc_lsm      ! calles in ???
[268]26
[335]27#if defined key_trc_lobster1
28   !!----------------------------------------------------------------------
29   !!   'key_trc_lobster1'                        LOBSTER1 biological model 
30   !!----------------------------------------------------------------------
31#  include "trclsm.lobster1.h90"
[268]32
[335]33#elif defined key_trc_pisces
34   !!----------------------------------------------------------------------
35   !!   'key_trc_pisces'                            PISCES biological model                 
36   !!----------------------------------------------------------------------
37#  include "trclsm.pisces.h90"
[268]38
[335]39#elif defined key_cfc
40   !!----------------------------------------------------------------------
[763]41   !!   'key_cfc'                                                 CFC model                 
[335]42   !!----------------------------------------------------------------------
43#  include "trclsm.cfc.h90"
[268]44
[335]45# endif
[268]46
47#else
[763]48   !!----------------------------------------------------------------------
49   !!  Dummy module :                                     No passive tracer
50   !!----------------------------------------------------------------------
[335]51CONTAINS
[763]52   SUBROUTINE trc_lsm                      ! Empty routine
[335]53   END  SUBROUTINE  trc_lsm
[268]54#endif 
55
[763]56   !!======================================================================
[268]57END MODULE trclsm 
Note: See TracBrowser for help on using the repository browser.