/[MITgcm]/MITgcm/model/src/do_the_model_io.F
ViewVC logotype

Contents of /MITgcm/model/src/do_the_model_io.F

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


Revision 1.29 - (show annotations) (download)
Thu Jun 19 15:00:45 2003 UTC (21 years ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint51, checkpoint50h_post, checkpoint50i_post
Changes since 1.28: +6 -1 lines
Preparing next round of sync MAIN vs. ecco-branch
and adjoint of next checkpoint.
o somewhat cleaned package initialisation sequence for
  ctrl/ cost/ ecco/

1 C $Header: /u/gcmpack/MITgcm/model/src/do_the_model_io.F,v 1.28 2003/06/12 18:29:35 jmc Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: DO_THE_MODEL_IO
8 C !INTERFACE:
9 SUBROUTINE DO_THE_MODEL_IO(myCurrentTime, myIter, myThid)
10 C !DESCRIPTION: \bv
11 C *==========================================================*
12 C | SUBROUTINE DO_THE_MODEL_IO
13 C | o Controlling routine for IO in model main time-stepping
14 C | loop.
15 C *==========================================================*
16 C | Many systems do not have thread safe IO so it is easier
17 C | to lump everything together and do dumping of fields
18 C | and updating of forcing terms in a single place.
19 C | The approach to IO used here is that writes are only
20 C | performed by thread 1 and that a process only writes out
21 C | its data ( it does not know about anyone elses data!)
22 C | Reading on the other hand is assumed to be from a file
23 C | containing all the data for all the processes. Only the
24 C | portion of data of interest to this process is actually
25 C | loaded. To work well this assumes the existence of some
26 C | reliable tool to join datasets together at the end of a
27 C | run - see joinds.p
28 C *==========================================================*
29 C \ev
30
31 C !USES:
32 IMPLICIT NONE
33 C == Global variables ===
34 #include "SIZE.h"
35 #include "EEPARAMS.h"
36 #include "PARAMS.h"
37 #include "DYNVARS.h"
38 cswdblk --- add ---
39 #ifdef ALLOW_BULK_FORCE
40 #include "BULKF.h"
41 #include "FFIELDS.h"
42 #endif
43 cswdblk -- end add ---
44 cswdice -- add ---
45 #ifdef ALLOW_THERM_SEAICE
46 #include "ICE.h"
47 #include "ICE_DIAGS.h"
48 #endif
49 cswdice -- end add ---
50
51
52
53 LOGICAL DIFFERENT_MULTIPLE
54 EXTERNAL DIFFERENT_MULTIPLE
55
56 C !INPUT/OUTPUT PARAMETERS:
57 C == Routine arguments ==
58 C myThid - Thread number for this instance of the routine.
59 C myIter - Iteration number
60 C myCurrentTime - Current time of simulation ( s )
61 INTEGER myThid
62 INTEGER myIter
63 _RL myCurrentTime
64
65 CEOP
66
67 C-- Generaly only thread 1 does IO here. It can not start until
68 C-- all threads fields are ready.
69 IF (
70 & DIFFERENT_MULTIPLE(dumpFreq,myCurrentTime,
71 & myCurrentTime-deltaTClock)
72 & ) THEN
73
74 _BARRIER
75
76 IF (debugMode) THEN
77 C-- Write "text-plots" of certain fields
78 CALL PLOT_FIELD_XYZRL( uVel , 'Current uVel ' ,
79 & Nr, myIter, myThid )
80 CALL PLOT_FIELD_XYZRL( vVel , 'Current vVel ' ,
81 & Nr, myIter, myThid )
82 CALL PLOT_FIELD_XYZRL( theta, 'Current theta ' ,
83 & Nr, myIter, myThid )
84 CALL PLOT_FIELD_XYRL( etaN , 'Current etaN ' ,
85 & myIter, myThid )
86 ENDIF
87
88 ENDIF
89
90 C-- Write model state to binary file
91 CALL WRITE_STATE( myCurrentTime, myIter, myThid )
92
93 #ifdef ALLOW_TIMEAVE
94 C-- Do time averages
95 IF (taveFreq.GT.0.) THEN
96 CALL TIMEAVE_STATV_WRITE( myCurrentTime, myIter, myThid )
97 ENDIF
98 #endif
99 #ifdef ALLOW_AIM
100 C-- Do AIM time averages
101 IF (useAIM)
102 & CALL AIM_WRITE_TAVE( myCurrentTime, myIter, myThid )
103 #endif
104 #ifdef ALLOW_LAND
105 C-- Do LAND time averages
106 IF (useLAND)
107 & CALL LAND_WRITE_TAVE( myCurrentTime, myIter, myThid )
108 #endif
109
110 #ifdef ALLOW_OBCS
111 IF (useOBCS)
112 & CALL OBCS_DIAGS( myCurrentTime, myIter, myThid )
113 #endif
114
115 #ifdef ALLOW_GMREDI
116 C-- Do KPP diagnostics.
117 IF (useGMRedi)
118 & CALL GMREDI_DIAGS( myCurrentTime, myIter, myThid )
119 #endif
120
121 #ifdef ALLOW_KPP
122 C-- Do KPP diagnostics.
123 IF (useKPP)
124 & CALL KPP_DO_DIAGS( myCurrentTime, myIter, myThid )
125 #endif
126
127 #ifdef ALLOW_SBO
128 C-- Do SBO diagnostics.
129 IF (useSBO) THEN
130 CALL SBO_CALC ( myCurrentTime, myIter, myThid )
131 CALL SBO_DIAGS( myCurrentTime, myIter, myThid )
132 ENDIF
133 #endif
134
135 cswdblk --- add ---
136 #ifdef ALLOW_BULK_FORCE
137 C-- Do bulkf diagnostics.
138 IF (useBulkforce)
139 & CALL BULKF_DIAGS( myCurrentTime, myIter, myThid )
140 #endif
141 cswdblk -- end add ---
142
143 cswdice --- add ---
144 #ifdef ALLOW_THERM_SEAICE
145 C-- Do seaice diagnostics.
146 IF (useThermSeaice)
147 & CALL ICE_DIAGS( myCurrentTime, myIter, myThid )
148 #endif
149 cswdice -- end add ---
150
151 RETURN
152 END
153

  ViewVC Help
Powered by ViewVC 1.1.22