/[MITgcm]/MITgcm/pkg/monitor/MONITOR.h
ViewVC logotype

Contents of /MITgcm/pkg/monitor/MONITOR.h

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


Revision 1.10 - (show annotations) (download)
Fri Dec 21 01:00:08 2012 UTC (11 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint65x, checkpoint65r, checkpoint65s, checkpoint65p, checkpoint65q, checkpoint65v, checkpoint65w, checkpoint65t, checkpoint65u, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, checkpoint65, checkpoint65o, checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint64j, checkpoint64m, checkpoint64l, checkpoint64o, checkpoint64n, checkpoint64c, checkpoint64b, checkpoint64e, checkpoint64d, checkpoint64g, checkpoint64f
Changes since 1.9: +5 -2 lines
File MIME type: text/plain
Add monitor of total Angular Momentum (for now, only when
 fluidIsAir and useCoriolis=T and spherical Coriolis)
but scaled by globalArea (so that units become kg/s).

1 C $Header: /u/gcmpack/MITgcm/pkg/monitor/MONITOR.h,v 1.9 2009/07/01 14:49:22 jmc Exp $
2 C $Name: $
3 C
4
5 CBOP
6 C !ROUTINE: MONITOR.h
7
8 C !INTERFACE:
9 C #include "MONITOR.h"
10
11 C !DESCRIPTION:
12 C Contains the state (parameters) for the ``monitor'' package.
13 C
14 C Monitor routines (prefixed MON\_) provide a simple set of
15 C utilities for outputting useful runtime diagnostic
16 C information. They use a standard format so that the monitor output
17 C can be parsed offline to help in trouble shooting.
18 C
19 C Monitor setup params should be set through appropriate MON\_
20 C routines to ensure that changes are made in a thread-safe fashion.
21
22 CEOP
23
24 C-- Monitor head and tail strings
25 CHARACTER*(*) mon_head
26 PARAMETER ( mon_head = '%MON' )
27 CHARACTER*(*) mon_foot_min
28 PARAMETER ( mon_foot_min = '_min' )
29 CHARACTER*(*) mon_foot_max
30 PARAMETER ( mon_foot_max = '_max' )
31 CHARACTER*(*) mon_foot_sd
32 PARAMETER ( mon_foot_sd = '_sd' )
33 CHARACTER*(*) mon_foot_mean
34 PARAMETER ( mon_foot_mean = '_mean' )
35 CHARACTER*(*) mon_foot_volint
36 PARAMETER ( mon_foot_volint = '_volint' )
37 CHARACTER*(*) mon_foot_volmean
38 PARAMETER ( mon_foot_volmean = '_volmean' )
39 CHARACTER*(*) mon_foot_del2
40 PARAMETER ( mon_foot_del2 = '_del2' )
41 CHARACTER*(*) mon_foot_vol
42 PARAMETER ( mon_foot_vol = '_vol' )
43 CHARACTER*(*) mon_string_none
44 PARAMETER ( mon_string_none = 'NONE' )
45
46 C-- COMMON /MON_I/ Monitor integer variables
47 C mon_ioUnit :: Used to specify the output unit for monitor IO.
48 C mon_prefL :: Prefix length of current mon_ prefix
49 COMMON /MON_I/ mon_ioUnit, mon_prefL
50 INTEGER mon_ioUnit
51 INTEGER mon_prefL
52
53 C-- COMMON /MON_C/ Monitor character variables
54 C mon_pref :: Prefix used for monitor output
55 COMMON /MON_C/ mon_pref
56 CHARACTER*(MAX_LEN_MBUF) mon_pref
57
58 C-- COMMON /MON_R/ Monitor real variables
59 C monSolutionMaxRange :: Maximum allowed Range for solution
60 COMMON /MON_R/ monSolutionMaxRange
61 _RL monSolutionMaxRange
62
63 C-- COMMON /MON_L/ Monitor logical variables
64 C mon_overrideStop :: Allow code to continue even if model state is
65 C heading out of bounds
66 C mon_output_AM :: output Angular momentum
67 C mon_write_stdout :: hold True when writing monitor to standard output
68 C mon_write_mnc :: hold True when writing monitor to MNC file
69 COMMON /MON_L/
70 & mon_output_AM,
71 & mon_write_stdout, mon_write_mnc
72 c LOGICAL mon_overrideStop
73 LOGICAL mon_output_AM
74 LOGICAL mon_write_stdout, mon_write_mnc
75
76 C File names and time steps
77 C mon_fname :: monitor file group name
78 COMMON /MON_F/
79 & mon_fname
80 CHARACTER*(MAX_LEN_FNAM) mon_fname
81
82 C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
83
84 CEH3 ;;; Local Variables: ***
85 CEH3 ;;; mode:fortran ***
86 CEH3 ;;; End: ***

  ViewVC Help
Powered by ViewVC 1.1.22