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.
trcwri.F90 in NEMO/releases/release-4.0/src/TOP – NEMO

source: NEMO/releases/release-4.0/src/TOP/trcwri.F90 @ 10780

Last change on this file since 10780 was 10068, checked in by nicolasmartin, 6 years ago

First part of modifications to have a common default header : fix typos and SVN keywords properties

  • Property svn:keywords set to Id
File size: 3.4 KB
Line 
1MODULE trcwri
2   !!======================================================================
3   !!                       *** MODULE trcwri ***
4   !!    TOP :   Output of passive tracers
5   !!======================================================================
6   !! History :   1.0  !  2009-05 (C. Ethe)  Original code
7   !!----------------------------------------------------------------------
8#if defined key_top && defined key_iomput
9   !!----------------------------------------------------------------------
10   !!   'key_top'                                           TOP models
11   !!----------------------------------------------------------------------
12   !! trc_wri_trc   :  outputs of concentration fields
13   !!----------------------------------------------------------------------
14   USE dom_oce     ! ocean space and time domain variables
15   USE oce_trc     ! shared variables between ocean and passive tracers
16   USE trc         ! passive tracers common variables
17   USE iom         ! I/O manager
18   USE dianam      ! Output file name
19   USE trcwri_pisces
20   USE trcwri_cfc
21   USE trcwri_c14
22   USE trcwri_age
23   USE trcwri_my_trc
24
25   IMPLICIT NONE
26   PRIVATE
27
28   PUBLIC trc_wri     
29
30CONTAINS
31
32   SUBROUTINE trc_wri( kt )
33      !!---------------------------------------------------------------------
34      !!                     ***  ROUTINE trc_wri  ***
35      !!
36      !! ** Purpose :   output passive tracers fields and dynamical trends
37      !!---------------------------------------------------------------------
38      INTEGER, INTENT( in )     :: kt
39      !
40      INTEGER                   :: jn
41      CHARACTER (len=20)        :: cltra
42      CHARACTER (len=40)        :: clhstnam
43      INTEGER ::   inum = 11            ! temporary logical unit
44      !!---------------------------------------------------------------------
45      !
46      IF( ln_timing )   CALL timing_start('trc_wri')
47      !
48      IF( l_offline .AND. kt == nittrc000 .AND. lwp ) THEN    ! WRITE root name in date.file for use by postpro
49         CALL dia_nam( clhstnam, nn_writetrc,' ' )
50         CALL ctl_opn( inum, 'date.file', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, numout, lwp, narea )
51         WRITE(inum,*) clhstnam
52         CLOSE(inum)
53      ENDIF
54      ! write the tracer concentrations in the file
55      ! ---------------------------------------
56      IF( ln_pisces  )   CALL trc_wri_pisces     ! PISCES
57      IF( ll_cfc     )   CALL trc_wri_cfc        ! surface fluxes of CFC
58      IF( ln_c14     )   CALL trc_wri_c14        ! surface fluxes of C14
59      IF( ln_age     )   CALL trc_wri_age        ! AGE tracer
60      IF( ln_my_trc  )   CALL trc_wri_my_trc     ! MY_TRC  tracers
61      !
62      IF( ln_timing )   CALL timing_stop('trc_wri')
63      !
64   END SUBROUTINE trc_wri
65
66#else
67   !!----------------------------------------------------------------------
68   !!  Dummy module :                                     No passive tracer
69   !!----------------------------------------------------------------------
70   PUBLIC trc_wri
71CONTAINS
72   SUBROUTINE trc_wri( kt )                     ! Empty routine   
73   INTEGER, INTENT(in) :: kt
74   END SUBROUTINE trc_wri
75#endif
76
77   !!----------------------------------------------------------------------
78   !! NEMO/TOP 4.0 , NEMO Consortium (2018)
79   !! $Id$
80   !! Software governed by the CeCILL license (see ./LICENSE)
81   !!======================================================================
82END MODULE trcwri
Note: See TracBrowser for help on using the repository browser.