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

Diff of /MITgcm/model/src/write_state.F

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

revision 1.13 by heimbach, Fri Jul 13 14:26:57 2001 UTC revision 1.42 by edhill, Fri Sep 10 12:19:30 2004 UTC
# Line 1  Line 1 
1  C $Header$  C $Header$
2  C $Name$  C $Name$
 #include "CPP_OPTIONS.h"  
   
 C--  File read_write.F: Routines to handle mid-level I/O interface.  
 C--   o WRITE_STATE - Write out model state.  
3    
4  C The following CPP flag (MULTIPLE_RECORD_STATE_FILES) is  #include "PACKAGES_CONFIG.h"
5  C #define/#undefed here since it is specific to this routine and  #include "CPP_OPTIONS.h"
 C very user-preference specific.  
 C  
 C If #undefed (default) the state files are written as in all versions  
 C prior to checkpoint32, where a file is created per variable, per time  
 C and per tile. This *has* to be the default because most users use this  
 C mode and all utilities and scripts (diagnostic) assume this form.  
 C It is also robust, as explained below.  
 C  
 C If #defined, subsequent snap-shots are written as records in the  
 C same file (no iteration number in filenames).  
 C Advantages: - fewer files  
 C             - for small problems, is easy to copy the output around  
 C Disadvantages:  
 C             - breaks a lot of diagnostic scripts  
 C             - for large or long problems this creates huge files  
 C             - is an unexpected, unsolicited change in behaviour which came  
 C               as a surprise (in c32) and inconvenience to several users  
 C             - can not accomodate changing the frequency of output  
 C               after a pickup (this is trivial in previous method  
 C               but needs new code and parameters in this new method)  
 C Known Bugs:  
 C             - if the length of integration is not exactly an integer  
 C               times the output frequency then the last record written  
 C               (at end of integration) overwrites a previously written  
 C               record corresponding to an earier time. *BE WARNED*  
6    
7  #undef  MULTIPLE_RECORD_STATE_FILES  #undef  MULTIPLE_RECORD_STATE_FILES
     
8    
9    C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
10    CBOP
11    C     !ROUTINE: WRITE_STATE
12    
13    C     !INTERFACE:
14          SUBROUTINE WRITE_STATE ( myTime, myIter, myThid )
15    
16    C     !DESCRIPTION:
17    C     This is the controlling routine for writing mid-level IO.  It
18    C     includes code for diagnosing W and RHO for output.
19    
20    C     The CPP flag (MULTIPLE_RECORD_STATE_FILES) is #define/#undefed
21    C     here since it is specific to this routine and very user-preference
22    C     specific. If #undefed (default) the state files are written as in
23    C     all versions prior to checkpoint32, where a file is created per
24    C     variable, per time and per tile. This *has* to be the default
25    C     because most users use this mode and all utilities and scripts
26    C     (diagnostic) assume this form.  It is also robust, as explained
27    C     below.
28    C    
29    C     If #defined, subsequent snap-shots are written as records in the
30    C     same file (no iteration number in filenames). The main advantage
31    C     is fewer files.  The disadvantages are that:
32    C       (1) it breaks a lot of diagnostic scripts,
33    C       (2) for large or long problems this creates huge files,
34    C       (3) its an unexpected, unsolicited change in behaviour which
35    C           came as a surprise (in c32) and is an inconvenience to
36    C           several users
37    C       (4) it can not accomodate changing the frequency of output
38    C           after a pickup (this is trivial in previous method but
39    C           needs new code and parameters in this new method)
40    C
41    C      Known Bugs include:
42    C       (1) if the length of integration is not exactly an integer
43    C           times the output frequency then the last record written
44    C           (at end of integration) overwrites a previously written
45    C           record corresponding to an earier time. *BE WARNED*
46    
47  CStartofinterface  C     !USES:
       SUBROUTINE WRITE_STATE ( myCurrentTime, myIter, myThid )  
 C     /==========================================================\  
 C     | SUBROUTINE WRITE_STATE                                   |  
 C     | o Controlling routine for IO to dump model state.        |  
 C     |==========================================================|  
 C     | Write model state files for post-processing. This file   |  
 C     | includes code for diagnosing W and RHO for output.       |  
 C     \==========================================================/  
48        IMPLICIT NONE        IMPLICIT NONE
   
 C     == Global variables ===  
49  #include "SIZE.h"  #include "SIZE.h"
50  #include "EEPARAMS.h"  #include "EEPARAMS.h"
51  #include "PARAMS.h"  #include "PARAMS.h"
52    #ifdef ALLOW_MNC
53    #include "MNC_PARAMS.h"
54    #endif
55  #include "DYNVARS.h"  #include "DYNVARS.h"
56    #include "GRID.h"
57    #include "EOS.h"
58    #ifdef ALLOW_PASSIVE_TRACER
59  #include "TR1.h"  #include "TR1.h"
60    #endif
61        LOGICAL  DIFFERENT_MULTIPLE        LOGICAL  DIFFERENT_MULTIPLE
62        EXTERNAL DIFFERENT_MULTIPLE        EXTERNAL DIFFERENT_MULTIPLE
63        INTEGER  IO_ERRCOUNT        INTEGER  IO_ERRCOUNT
64        EXTERNAL IO_ERRCOUNT        EXTERNAL IO_ERRCOUNT
65    
66  C     == Routine arguments ==  C     !INPUT/OUTPUT PARAMETERS:
67  C     myThid - Thread number for this instance of the routine.  C     myThid - Thread number for this instance of the routine.
68  C     myIter - Iteration number  C     myIter - Iteration number
69  C     myCurrentTime - Current time of simulation ( s )  C     myTime - Current time of simulation ( s )
70        _RL     myCurrentTime        _RL     myTime
71        INTEGER myThid        INTEGER myThid
72        INTEGER myIter        INTEGER myIter
 CEndofinterface  
73    
74  C     == Local variables ==  C     !LOCAL VARIABLES:
75        CHARACTER*(MAX_LEN_MBUF) suff        CHARACTER*(MAX_LEN_MBUF) suff
76        INTEGER iRec        INTEGER iRec
77    CEOP
78    
79        IF (        IF (
80       &     DIFFERENT_MULTIPLE(dumpFreq,myCurrentTime,       &     DIFFERENT_MULTIPLE(dumpFreq,myTime,
81       &     myCurrentTime-deltaTClock) .OR.       &     myTime-deltaTClock) .OR.
82       &     myCurrentTime.EQ.endTime .OR.       &     myTime.EQ.endTime .OR.
83       &     myCurrentTime.EQ.startTime       &     myTime.EQ.startTime
84       &     ) THEN       &     ) THEN
85           iRec = int ( (myCurrentTime-startTime) / dumpFreq +1.5 )          IF ( dumpFreq .EQ. 0.0 ) THEN
86              iRec = 1
87            ELSE
88              iRec = int ( (myTime-startTime) / dumpFreq +1.5 )
89            ENDIF
90                    
91  C--   Going to really do some IO. Make everyone except master thread wait.  C       Going to really do some IO. Make everyone except master thread wait.
92           _BARRIER          _BARRIER
93           _BEGIN_MASTER( myThid )          _BEGIN_MASTER( myThid )
94    
95    C       Write model fields
96            IF (snapshot_mdsio) THEN
97    
 C--     Write model fields  
98  #ifdef MULTIPLE_RECORD_STATE_FILES  #ifdef MULTIPLE_RECORD_STATE_FILES
99  C       Write each snap-shot as a new record in one file per variable  
100  C       - creates relatively few files but these files can become huge  C         Write each snap-shot as a new record in one file per variable
101          CALL WRITE_REC_XYZ_RL( 'U',  uVel,iRec,myIter,myThid)  C         - creates relatively few files but these files can become huge
102          CALL WRITE_REC_XYZ_RL( 'V',  vVel,iRec,myIter,myThid)            CALL WRITE_REC_XYZ_RL( 'U',  uVel,iRec,myIter,myThid)
103          CALL WRITE_REC_XYZ_RL( 'T', theta,iRec,myIter,myThid)            CALL WRITE_REC_XYZ_RL( 'V',  vVel,iRec,myIter,myThid)
104          CALL WRITE_REC_XYZ_RL( 'S',  salt,iRec,myIter,myThid)            CALL WRITE_REC_XYZ_RL( 'T', theta,iRec,myIter,myThid)
105          CALL WRITE_REC_XY_RL('Eta',etaN,iRec,myIter,myThid)            CALL WRITE_REC_XYZ_RL( 'S',  salt,iRec,myIter,myThid)
106          CALL WRITE_REC_XYZ_RL( 'W',wVel,iRec,myIter,myThid)            CALL WRITE_REC_XY_RL('Eta',etaN,iRec,myIter,myThid)
107          CALL WRITE_REC_XYZ_RL( 'TR1',tr1,iRec,myIter,myThid)            CALL WRITE_REC_XYZ_RL( 'W',wVel,iRec,myIter,myThid)
108  #ifdef ALLOW_NONHYDROSTATIC  #ifdef ALLOW_NONHYDROSTATIC
109          IF (nonHydroStatic) THEN            IF (nonHydroStatic) THEN
110           CALL WRITE_REC_XYZ_RL( 'PNH',phi_nh,iRec,myIter,myThid)              CALL WRITE_REC_XYZ_RL( 'PNH',phi_nh,iRec,myIter,myThid)
111          ENDIF            ENDIF
112  #endif /* ALLOW_NONHYDROSTATIC */  #endif /* ALLOW_NONHYDROSTATIC */
113  #else  #ifdef NONLIN_FRSURF
114  C       Write each snap-shot as a new file (original and default method)  c         CALL WRITE_REC_XYZ_RS('hFacC.',hFacC,iRec,myIter,myThid)
115  C       - creates many files but for large configurations is easier to  c         CALL WRITE_REC_XYZ_RS('hFacW.',hFacW,iRec,myIter,myThid)
116  C         transfer analyse a particular snap-shots  c         CALL WRITE_REC_XYZ_RS('hFacS.',hFacS,iRec,myIter,myThid)
117          WRITE(suff,'(I10.10)') myIter  #endif /* NONLIN_FRSURF */
118          CALL WRITE_FLD_XYZ_RL( 'U.',suff,uVel,myIter,myThid)  
119          CALL WRITE_FLD_XYZ_RL( 'V.',suff,vVel,myIter,myThid)  #else /* MULTIPLE_RECORD_STATE_FILES */
120          CALL WRITE_FLD_XYZ_RL( 'T.',suff,theta,myIter,myThid)  
121          CALL WRITE_FLD_XYZ_RL( 'S.',suff,salt,myIter,myThid)  C         Write each snap-shot as a new file (original and default
122          CALL WRITE_FLD_XY_RL('Eta.',suff,etaN,myIter,myThid)  C         method) -- creates many files but for large configurations is
123          CALL WRITE_FLD_XYZ_RL( 'W.',suff,wVel,myIter,myThid)  C         easier to transfer analyse a particular snap-shots
124          CALL WRITE_FLD_XYZ_RL( 'TR1.',suff,tr1,myIter,myThid)            WRITE(suff,'(I10.10)') myIter
125                      CALL WRITE_FLD_XYZ_RL( 'U.',suff,uVel,myIter,myThid)
126              CALL WRITE_FLD_XYZ_RL( 'V.',suff,vVel,myIter,myThid)
127              CALL WRITE_FLD_XYZ_RL( 'T.',suff,theta,myIter,myThid)
128              CALL WRITE_FLD_XYZ_RL( 'S.',suff,salt,myIter,myThid)
129              CALL WRITE_FLD_XY_RL('Eta.',suff,etaN,myIter,myThid)
130              CALL WRITE_FLD_XYZ_RL( 'W.',suff,wVel,myIter,myThid)
131              IF ( useDynP_inEos_Zc .OR. myIter.NE.nIter0 ) THEN
132                CALL WRITE_FLD_XYZ_RL('PH.',suff,totPhiHyd,myIter,myThid)
133              ENDIF
134              IF ((buoyancyRelation.NE.'ATMOSPHERIC')
135         &         .AND. (myIter.NE.nIter0)) THEN
136                CALL WRITE_FLD_XY_RL('PHL.',suff,phiHydLow,myIter,myThid)
137              ENDIF
138  #ifdef ALLOW_NONHYDROSTATIC  #ifdef ALLOW_NONHYDROSTATIC
139          IF (nonHydroStatic) THEN            IF (nonHydroStatic) THEN
140           CALL WRITE_FLD_XYZ_RL( 'PNH.',suff,phi_nh,myIter,myThid)              CALL WRITE_FLD_XYZ_RL( 'PNH.',suff,phi_nh,myIter,myThid)
141          ENDIF            ENDIF
142  #endif /* ALLOW_NONHYDROSTATIC */  #endif /* ALLOW_NONHYDROSTATIC */
143  #endif /* MULTIPLE_RECORD_STATE_FILES */  #ifdef NONLIN_FRSURF
144    c         CALL WRITE_FLD_XYZ_RS('hFacC.',suff,hFacC,myIter,myThid)
145    c         CALL WRITE_FLD_XYZ_RS('hFacW.',suff,hFacW,myIter,myThid)
146    c         CALL WRITE_FLD_XYZ_RS('hFacS.',suff,hFacS,myIter,myThid)
147    #endif /* NONLIN_FRSURF */
148    
149           _END_MASTER( myThid )  #endif /* MULTIPLE_RECORD_STATE_FILES */
          _BARRIER  
150    
151            ENDIF
152            
153    #ifdef ALLOW_PTRACERS
154            IF (usePTRACERS) THEN
155              CALL PTRACERS_WRITE_STATE(myIter,myTime,myThid)
156            ENDIF
157    #endif /* ALLOW_PTRACERS */
158            _END_MASTER( myThid )
159            _BARRIER
160    
161    #ifdef ALLOW_MNC
162            IF (useMNC .AND. snapshot_mnc) THEN
163    C         Write dynvars using the MNC package
164              CALL MNC_CW_SET_UDIM('state', -1, myThid)
165              CALL MNC_CW_I_W('I','state',0,0,'iter', myIter, myThid)
166              CALL MNC_CW_SET_UDIM('state', 0, myThid)
167              CALL MNC_CW_RL_W('D','state',0,0,'model_time',myTime,myThid)
168              CALL MNC_CW_RL_W('D','state',0,0,'U', uVel, myThid)
169              CALL MNC_CW_RL_W('D','state',0,0,'V', vVel, myThid)
170              CALL MNC_CW_RL_W('D','state',0,0,'T', theta, myThid)
171              CALL MNC_CW_RL_W('D','state',0,0,'S', salt, myThid)
172              CALL MNC_CW_RL_W('D','state',0,0,'Eta', etaN, myThid)
173              CALL MNC_CW_RL_W('D','state',0,0,'W', wVel, myThid)
174              IF ( useDynP_inEos_Zc .OR. myIter.NE.nIter0 ) THEN
175                CALL MNC_CW_SET_UDIM('phiHyd', -1, myThid)
176                CALL MNC_CW_I_W('I','phiHyd',0,0,'iter',myIter,myThid)
177                CALL MNC_CW_SET_UDIM('phiHyd', 0, myThid)
178                CALL MNC_CW_RL_W('D','phiHyd',0,0,'phiHyd',
179         &           totPhiHyd, myThid)
180              ENDIF
181              IF ((buoyancyRelation .NE. 'ATMOSPHERIC')
182         &         .AND. (myIter .NE. nIter0)) THEN
183                CALL MNC_CW_SET_UDIM('phiHydLow', -1, myThid)
184                CALL MNC_CW_I_W('I','phiHydLow',0,0,'iter',myIter,myThid)
185                CALL MNC_CW_SET_UDIM('phiHydLow', 0, myThid)
186                CALL MNC_CW_RL_W('D','phiHydLow',0,0,'phiHydLow',
187         &           phiHydLow, myThid)
188              ENDIF
189    #ifdef ALLOW_NONHYDROSTATIC
190              IF (nonHydroStatic) THEN
191                CALL MNC_CW_RL_W('D','state',0,0,'phi_nh',phi_nh,myThid)
192              ENDIF
193    #endif /* ALLOW_NONHYDROSTATIC */
194            ENDIF
195    #endif /*  ALLOW_MNC  */
196            
197        ENDIF        ENDIF
198    
199        RETURN        RETURN

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.42

  ViewVC Help
Powered by ViewVC 1.1.22