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

Last change on this file since 339 was 335, checked in by opalod, 19 years ago

nemo_v1_update_023 : CE + RB + CT : new evolution of modules

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