/[MITgcm]/MITgcm/pkg/frazil/frazil_diagnostics_init.F
ViewVC logotype

Annotation of /MITgcm/pkg/frazil/frazil_diagnostics_init.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (hide annotations) (download)
Wed May 8 18:01:40 2013 UTC (11 years ago) by jmc
Branch: MAIN
CVS Tags: checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64o, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint66g, checkpoint66f, checkpoint66e, checkpoint66d, checkpoint66c, checkpoint66b, checkpoint66a, checkpoint64n, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, checkpoint65z, checkpoint65x, checkpoint65y, checkpoint65r, checkpoint65s, checkpoint65p, checkpoint65q, checkpoint65v, checkpoint65w, checkpoint65t, checkpoint65u, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65o, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint65, checkpoint64j, checkpoint64m, checkpoint64l, HEAD
Changes since 1.3: +2 -2 lines
remove unused variable

1 jmc 1.4 C $Header: /u/gcmpack/MITgcm/pkg/frazil/frazil_diagnostics_init.F,v 1.3 2012/03/04 23:11:20 dimitri Exp $
2 dimitri 1.1 C $Name: $
3    
4     #include "FRAZIL_OPTIONS.h"
5    
6     C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
7     CBOP 0
8     C !ROUTINE: FRAZIL_DIAGNOSTICS_INIT
9    
10     C !INTERFACE:
11     SUBROUTINE FRAZIL_DIAGNOSTICS_INIT( myThid )
12    
13     C !DESCRIPTION:
14     C Initialize list of all available diagnostics
15    
16     C !USES:
17     IMPLICIT NONE
18    
19     C !INPUT/OUTPUT PARAMETERS:
20 dimitri 1.3 C myThid :: my Thread Id number
21 dimitri 1.1 INTEGER myThid
22     CEOP
23    
24     #ifdef ALLOW_DIAGNOSTICS
25 dimitri 1.3
26 dimitri 1.1 C !LOCAL VARIABLES:
27     C diagNum :: diagnostics number in the (long) list of available diag.
28     C diagMate :: diag. mate number in the (long) list of available diag.
29     C diagName :: local short name (8c) of a diagnostics
30     C diagCode :: local parser field with characteristics of the diagnostics
31     C cf head of S/R DIAGNOSTICS_INIT_EARLY or DIAGNOSTICS_MAIN_INIT
32     C diagUnits :: local string (16c): physical units of a diagnostic field
33     C diagTitle :: local string (80c): description of field in diagnostic
34     INTEGER diagNum
35 jmc 1.4 c INTEGER diagMate
36 dimitri 1.1 CHARACTER*8 diagName
37     CHARACTER*16 diagCode
38     CHARACTER*16 diagUnits
39     CHARACTER*(80) diagTitle
40    
41 dimitri 1.3 diagName = 'FrzForcT'
42     diagTitle = 'Frazil temperature forcing, > 0 increases theta'
43     diagUnits = 'W/m^2 '
44     diagCode = 'SM MR '
45     CALL DIAGNOSTICS_ADDTOLIST( diagNum,
46     I diagName, diagCode, diagUnits, diagTitle, 0, myThid )
47 dimitri 1.1
48     #endif /* ALLOW_DIAGNOSTICS */
49    
50     RETURN
51     END

  ViewVC Help
Powered by ViewVC 1.1.22