/[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.8 - (show annotations) (download)
Tue Oct 9 00:05:45 2007 UTC (16 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint62v, checkpoint62u, checkpoint62t, checkpoint62c, checkpoint62s, checkpoint62r, checkpoint62q, checkpoint62p, checkpoint62a, checkpoint62g, checkpoint62f, checkpoint62e, checkpoint62d, checkpoint62k, checkpoint62j, checkpoint62i, checkpoint62h, checkpoint62o, checkpoint62n, checkpoint62m, checkpoint62l, checkpoint62w, checkpoint62x, checkpoint60, checkpoint61, checkpoint62, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59k, checkpoint62b, checkpoint61f, checkpoint61n, checkpoint59j, checkpoint61q, checkpoint61e, checkpoint61g, checkpoint61d, checkpoint61b, checkpoint61c, checkpoint61a, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i, checkpoint61v, checkpoint61w, checkpoint61t, checkpoint61u, checkpoint61r, checkpoint61s, checkpoint61p, checkpoint61z, checkpoint61x, checkpoint61y
Changes since 1.7: +3 -2 lines
add missing cvs $Header:$ or $Name:$

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

  ViewVC Help
Powered by ViewVC 1.1.22