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

source: trunk/NEMO/TOP_SRC/trcdia.F90 @ 331

Last change on this file since 331 was 274, checked in by opalod, 19 years ago

nemo_v1_update_005:RB: update headers for the TOP component.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.6 KB
Line 
1MODULE trcdia
2   !!==========================================================================
3   !!
4   !!                       *** MODULE trcdia ***
5   !! Output  for tracer concentration 
6   !! O.Aumont and A.El Moussaoui 03/05 F90
7   !!==========================================================================
8   !!  TOP 1.0,  LOCEAN-IPSL (2005)
9   !! $Header$
10   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
11   !!----------------------------------------------------------------------
12      !!----------------------------------------------------------------------
13      !! * Modules used
14      !! ==============
15   USE trcdit
16
17   IMPLICIT NONE
18   PRIVATE
19
20   !! * Accessibility
21   PUBLIC trc_dia
22
23   !! * Module variables
24
25CONTAINS
26
27SUBROUTINE trc_dia(kt,kindic) 
28   !!===========================================================================================
29   !!
30   !!                       ROUTINE trcdii_wr
31   !!===========================================================================================
32
33       INTEGER, INTENT( in ) :: kt, kindic
34
35   ! outputs for tracer concentration
36   ! --------------------------------
37
38      CALL trcdit_wr(kt,kindic)
39
40#if defined key_trc_diatrd
41
42   ! outputs for dynamical trends
43   ! ----------------------------
44
45      CALL trcdid_wr(kt,kindic)
46
47#endif
48#if defined key_trc_diaadd
49
50   ! outputs for additional arrays
51   ! -----------------------------
52
53      CALL trcdii_wr(kt,kindic)
54
55#endif
56#if defined key_trc_diabio
57
58   ! outputs for biological trends
59   ! -----------------------------
60
61      CALL trcdib_wr(kt,kindic)
62
63#endif
64
65      END SUBROUTINE trc_dia
66
67END MODULE trcdia 
Note: See TracBrowser for help on using the repository browser.