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

Last change on this file since 935 was 719, checked in by ctlod, 17 years ago

get back to the nemo_v2_3 version for trunk

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 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#if defined key_passivetrc
13   !!----------------------------------------------------------------------
14   !! * Modules used
15 
16   USE trcdit
17
18   IMPLICIT NONE
19   PRIVATE
20
21   !! * Accessibility
22   PUBLIC trc_dia
23
24   !! * Module variables
25
26CONTAINS
27
28   SUBROUTINE trc_dia(kt,kindic) 
29      !!===========================================================================================
30      !!
31      !!                       ROUTINE trcdii_wr
32      !!===========================================================================================
33
34      INTEGER, INTENT( in ) :: kt, kindic
35
36      ! outputs for tracer concentration
37      ! --------------------------------
38
39      CALL trcdit_wr(kt,kindic)
40
41#if defined key_trc_diatrd
42
43      ! outputs for dynamical trends
44      ! ----------------------------
45
46      CALL trcdid_wr(kt,kindic)
47
48#endif
49#if defined key_trc_diaadd
50
51      ! outputs for additional arrays
52      ! -----------------------------
53
54      CALL trcdii_wr(kt,kindic)
55
56#endif
57#if defined key_trc_diabio
58
59      ! outputs for biological trends
60      ! -----------------------------
61
62      CALL trcdib_wr(kt,kindic)
63
64#endif
65
66   END SUBROUTINE trc_dia
67
68#else
69   !!======================================================================
70   !!  Empty module : No passive tracer
71   !!======================================================================
72CONTAINS
73   SUBROUTINE trc_dia
74     
75   END SUBROUTINE trc_dia   
76#endif
77
78END MODULE trcdia
Note: See TracBrowser for help on using the repository browser.