/[MITgcm]/MITgcm/pkg/grdchk/grdchk_summary.F
ViewVC logotype

Contents of /MITgcm/pkg/grdchk/grdchk_summary.F

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


Revision 1.10 - (show annotations) (download)
Fri Aug 12 18:31:15 2011 UTC (12 years, 9 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65d, checkpoint65e, checkpoint63g, checkpoint64, checkpoint65, checkpoint63p, checkpoint63q, checkpoint63r, checkpoint63s, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63h, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint63d, checkpoint63e, checkpoint63f, checkpoint63b, checkpoint63c, checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint64j, checkpoint64m, checkpoint64l, checkpoint64o, checkpoint64n, checkpoint64a, checkpoint64c, checkpoint64b, checkpoint64e, checkpoint64d, checkpoint64g, checkpoint64f
Changes since 1.9: +9 -1 lines
- print Tile Local-Indices and proc. number

1 C $Header: /u/gcmpack/MITgcm/pkg/grdchk/grdchk_summary.F,v 1.9 2011/05/24 22:41:12 jmc Exp $
2 C $Name: $
3
4 #include "GRDCHK_OPTIONS.h"
5
6 subroutine grdchk_Summary(
7 I mythid
8 & )
9
10 c ==================================================================
11 c SUBROUTINE grdchk_Summary
12 c ==================================================================
13 c
14 c o Summarize the settings for doing gradient checks.
15 c
16 c started: Christian Eckert eckert@mit.edu 06-Mar-2000
17 c continued: heimbach@mit.edu: 13-Jun-2001
18 c
19 c ==================================================================
20 c SUBROUTINE grdchk_Summary
21 c ==================================================================
22
23 implicit none
24
25 c == global variables ==
26
27 #include "EEPARAMS.h"
28 #include "SIZE.h"
29 #include "GRID.h"
30 #include "grdchk.h"
31
32 c == routine arguments ==
33
34 integer mythid
35
36 #ifdef ALLOW_GRDCHK
37 c == local variables ==
38
39 character*(max_len_mbuf) msgbuf
40
41 c == end of interface ==
42
43 write(msgbuf,'(a)')
44 &' '
45 call print_message( msgbuf, standardmessageunit,
46 & SQUEEZE_RIGHT , mythid)
47 write(msgbuf,'(a)')
48 &'// ======================================================='
49 call print_message( msgbuf, standardmessageunit,
50 & SQUEEZE_RIGHT , mythid)
51 write(msgbuf,'(a)')
52 &'// Gradient check configuration >>> START <<<'
53 call print_message( msgbuf, standardmessageunit,
54 & SQUEEZE_RIGHT , mythid)
55 write(msgbuf,'(a)')
56 &'// ======================================================='
57 call print_message( msgbuf, standardmessageunit,
58 & SQUEEZE_RIGHT , mythid)
59 write(msgbuf,'(a)')
60 &' '
61 call print_message( msgbuf, standardmessageunit,
62 & SQUEEZE_RIGHT , mythid)
63
64 write(msgbuf,'(a,e10.3)')
65 &' eps: ',grdchk_eps
66 call print_message( msgbuf, standardmessageunit,
67 & SQUEEZE_RIGHT , mythid)
68 write(msgbuf,'(a,i10)')
69 &' First location: ',nbeg
70 call print_message( msgbuf, standardmessageunit,
71 & SQUEEZE_RIGHT , mythid)
72 write(msgbuf,'(a,i10)')
73 &' Last location: ',nend
74 call print_message( msgbuf, standardmessageunit,
75 & SQUEEZE_RIGHT , mythid)
76 write(msgbuf,'(a,i10)')
77 &' Increment: ',nstep
78 call print_message( msgbuf, standardmessageunit,
79 & SQUEEZE_RIGHT , mythid)
80 write(msgbuf,'(a,i10)')
81 &' grdchkWhichProc: ',grdchkwhichproc
82 call print_message( msgbuf, standardmessageunit,
83 & SQUEEZE_RIGHT , mythid)
84 write(msgbuf,'(2(A,I8))') ' iLocTile =', iLocTile,
85 & ' , jLocTile =', jLocTile
86 call print_message( msgbuf, standardmessageunit,
87 & SQUEEZE_RIGHT , mythid)
88
89 write(msgbuf,'(a)')
90 &' '
91 call print_message( msgbuf, standardmessageunit,
92 & SQUEEZE_RIGHT , mythid)
93 write(msgbuf,'(a)')
94 &'// ======================================================='
95 call print_message( msgbuf, standardmessageunit,
96 & SQUEEZE_RIGHT , mythid)
97 write(msgbuf,'(a)')
98 &'// Gradient check configuration >>> END <<<'
99 call print_message( msgbuf, standardmessageunit,
100 & SQUEEZE_RIGHT , mythid)
101 write(msgbuf,'(a)')
102 &'// ======================================================='
103 call print_message( msgbuf, standardmessageunit,
104 & SQUEEZE_RIGHT , mythid)
105 write(msgbuf,'(a)')
106 &' '
107 call print_message( msgbuf, standardmessageunit,
108 & SQUEEZE_RIGHT , mythid)
109
110 #endif /* ALLOW_GRDCHK */
111
112 return
113 end

  ViewVC Help
Powered by ViewVC 1.1.22