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.
trcctl_my_trc.F90 in trunk/NEMO/TOP_SRC/MY_TRC – NEMO

source: trunk/NEMO/TOP_SRC/MY_TRC/trcctl_my_trc.F90 @ 1069

Last change on this file since 1069 was 1069, checked in by cetlod, 16 years ago

create trcctl_my_trc.F90 module, see ticket:190

File size: 1.9 KB
Line 
1MODULE trcctl_my_trc
2   !!======================================================================
3   !!                         ***  trcctl_my_trc.F90  ***
4   !! TOP :                Control of MY_TRC biogeochemical model
5   !!======================================================================
6   !!----------------------------------------------------------------------
7   !! History :   1.0  !  2000-12 (C. Ethe) assign a parameter to name individual tracers
8   !!----------------------------------------------------------------------
9
10#if defined key_my_trc
11
12   USE oce_trc
13   USE trc
14
15
16   IMPLICIT NONE
17   PRIVATE
18
19   PUBLIC trc_ctl_my_trc     ! called by ???
20
21
22   !!----------------------------------------------------------------------
23   !! NEMO/TOP 1.0 , LOCEAN-IPSL (2005)
24   !! $Id: trcctl.lobster1.h90 764 2007-12-14 06:32:58Z gm $
25   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt)
26   !!----------------------------------------------------------------------
27
28CONTAINS
29
30   SUBROUTINE trc_ctl_my_trc
31      !!----------------------------------------------------------------------
32      !!                     ***  ROUTINE trc_ctl_pisces  ***
33      !!
34      !! ** Purpose :   control the cpp options, namelist and files
35      !!----------------------------------------------------------------------
36
37      IF(lwp) WRITE(numout,*)
38      IF(lwp) WRITE(numout,*) ' use PISCES biological model '
39
40
41   END SUBROUTINE trc_ctl_my_trc
42
43#else
44   !!----------------------------------------------------------------------
45   !!  Empty module :                                            No PISCES
46   !!----------------------------------------------------------------------
47CONTAINS
48   SUBROUTINE trc_ctl_my_trc               ! Dummy routine
49   END SUBROUTINE trc_ctl_my_trc
50#endif
51
52   !!======================================================================
53END MODULE trcctl_my_trc
54     
Note: See TracBrowser for help on using the repository browser.