/[MITgcm]/MITgcm/compare01/src/print.F
ViewVC logotype

Contents of /MITgcm/compare01/src/print.F

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


Revision 1.1 - (show annotations) (download)
Mon May 25 20:21:05 1998 UTC (26 years, 1 month ago) by cnh
Branch: MAIN
CVS Tags: branch-atmos-merge-phase6, checkpoint24, checkpoint4, checkpoint7, checkpoint6, checkpoint26, checkpoint3, branch-atmos-merge-start, checkpoint27, checkpoint9, checkpoint8, checkpoint11, checkpoint10, checkpoint13, checkpoint12, checkpoint15, checkpoint18, checkpoint17, checkpoint16, checkpoint19, checkpoint32, checkpoint31, branch-atmos-merge-zonalfilt, branch-atmos-merge-shapiro, checkpoint5, branch-atmos-merge-freeze, branch-point-rdot, checkpoint14, checkpoint28, checkpoint29, branch-atmos-merge-phase5, branch-atmos-merge-phase4, branch-atmos-merge-phase7, checkpoint23, branch-atmos-merge-phase1, checkpoint25, branch-atmos-merge-phase3, branch-atmos-merge-phase2, checkpoint20, checkpoint21, checkpoint22
Branch point for: branch-atmos-merge, checkpoint7-4degree-ref, branch-rdot
Added version of compare01 reference code to repository.
Code committed is configured to produce same results as MITgcmUV

1 C $Id: print.F,v 1.2 1997/06/10 01:30:50 cnh Exp $
2 #include "CPP_OPTIONS.h"
3 #include "CPP_MACROS.h"
4 C ===========
5 C | print.F |
6 C ===========
7 C Contents
8 C o PRINT_DATAFILE
9 C o PRINT_ERRORS
10 C o PRINT_HEADER_END
11 C o PRINT_HEADER_RECORD
12 C o PRINT_HEADER_START
13 C o PRINT_HEADING
14 C o PRINT_PARAMETERS
15 C o PRINT_SUMMARY
16 C o PRINT_TABLE_END
17 C o
18 C================================================================================
19 C Procedure name: PRINT_DATAFILE |
20 C Function: Echo input data to output file. |
21 C Comments: |
22 C================================================================================
23 CStartofinterface
24 SUBROUTINE PRINT_DATAFILE
25 CEndofinteface
26 IMPLICIT NONE
27 RETURN
28 END
29
30 C================================================================================
31 C Procedure name: PRINT_ERRORS |
32 C Function: Write out the error message buffer to the output file. |
33 C Comments: |
34 C================================================================================
35 CStartofinterface
36 SUBROUTINE PRINT_ERRORS
37 CEndofinteface
38 IMPLICIT NONE
39 RETURN
40 END
41
42 C================================================================================
43 C Procedure name: PRINT_HEADER_END |
44 C Function: Print end record for a table header. |
45 C Comments: |
46 C================================================================================
47 CStartofinterface
48 SUBROUTINE PRINT_HEADER_END
49 CEndofinteface
50 IMPLICIT NONE
51 RETURN
52 END
53
54 C================================================================================
55 C Procedure name: PRINT_HEADER_RECORD |
56 C Function: Print table header record. |
57 C Comments: |
58 C================================================================================
59 CStartofinterface
60 SUBROUTINE PRINT_HEADER_RECORD
61 CEndofinteface
62 IMPLICIT NONE
63 RETURN
64 END
65
66 C================================================================================
67 C Procedure name: PRINT_HEADER_START |
68 C Function: Print header for a table. |
69 C Comments: |
70 C================================================================================
71 CStartofinterface
72 SUBROUTINE PRINT_HEADER_START
73 CEndofinteface
74 IMPLICIT NONE
75 RETURN
76 END
77
78 C================================================================================
79 C Procedure name: PRINT_HEADING |
80 C Function: Print heading information identifying this run. |
81 C Comments: |
82 C================================================================================
83 CStartofinterface
84 SUBROUTINE PRINT_HEADING
85 CEndofinteface
86 IMPLICIT NONE
87 RETURN
88 END
89
90 C================================================================================
91 C Procedure name: PRINT_PARAMETERS |
92 C Function: Print model control parameters. |
93 C Comments: |
94 C================================================================================
95 CStartofinterface
96 SUBROUTINE PRINT_PARAMETERS
97 CEndofinteface
98 IMPLICIT NONE
99 RETURN
100 END
101
102 C================================================================================
103 C Procedure name: PRINT_SUMMARY |
104 C Function: Print tabulated summary of model fields. |
105 C Comments: |
106 C================================================================================
107 CStartofinterface
108 SUBROUTINE PRINT_SUMMARY (
109 O U, V, W, T, S, PH, PS )
110 IMPLICIT NONE
111 C /-------------------------------------------------------------------------\
112 C | Global variable declarations |
113 C \-------------------------------------------------------------------------/
114 #include "SIZE.h"
115 #include "PARAMS.h"
116 #include "STRINGS.h"
117 #include "OPERATORS.h"
118 #include "GRID.h"
119 #include "OLDG.h"
120 #include "MASKS.h"
121 #include "CG2DA.h"
122 #include "CG2DZ.h"
123 #include "AJAINF.h"
124 #include "FORCING.h"
125 C /-------------------------------------------------------------------------\
126 C | Routine argument declarations |
127 C |=========================================================================|
128 C | U, V, W - X,Y,Z Velocity ( m/s, m/s, Pa/s ). |
129 C | T - Potential temperature (oC). |
130 C | S - Salinity (ppt). |
131 C | PH - Hydrostatic pressure perturbation (m). |
132 C | PS - Surface pressure (m). |
133 C \-------------------------------------------------------------------------/
134 REAL U (_I3(nz,nx,ny))
135 REAL V (_I3(nz,nx,ny))
136 REAL W (_I3(nz,nx,ny))
137 REAL T (_I3(nz,nx,ny))
138 REAL S (_I3(nz,nx,ny))
139 REAL PH(_I3(nz,nx,ny))
140 REAL PS(nx, ny )
141 CEndofinteface
142 RETURN
143 END
144
145 C================================================================================
146 C Procedure name: PRINT_TABLE_END |
147 C Function: Print end of table record. |
148 C Comments: |
149 C================================================================================
150 CStartofinterface
151 SUBROUTINE PRINT_TABLE_END
152 CEndofinteface
153 IMPLICIT NONE
154 RETURN
155 END
156

  ViewVC Help
Powered by ViewVC 1.1.22