/[MITgcm]/MITgcm/pkg/mnc/mnc_cw_readwrite.template
ViewVC logotype

Diff of /MITgcm/pkg/mnc/mnc_cw_readwrite.template

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

revision 1.4 by edhill, Thu Feb 5 05:42:07 2004 UTC revision 1.19 by edhill, Thu Oct 7 01:48:08 2004 UTC
# Line 4  C $Name$ Line 4  C $Name$
4  #include "MNC_OPTIONS.h"  #include "MNC_OPTIONS.h"
5                
6  C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|  C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
7    CBOP 0
8    C !ROUTINE: MNC_CW_RX_W_S
9    
10        SUBROUTINE MNC_CW_RX_W_YY(  C !INTERFACE:
11       I     myThid,        SUBROUTINE MNC_CW_RX_W_S(
12         I     stype,
13       I     fbname, bi,bj,       I     fbname, bi,bj,
14       I     vtype,       I     vtype,
15       I     indu,       I     var,
16       I     var )       I     myThid )
17    
18    C     !DESCRIPTION:
19    C     A scalar version of MNC_CW_RX_W() for compilers that cannot
20    C     gracefully handle the conversion on their own.
21          
22    C     !USES:
23        implicit none        implicit none
24    
25    C     !INPUT PARAMETERS:
26          integer myThid, bi,bj, indu
27          character*(*) stype, fbname, vtype
28          __V var
29          __V var_arr(1)
30    CEOP
31    
32          var_arr(1) = var
33          CALL MNC_CW_RX_W(stype,fbname,bi,bj,vtype, var_arr, myThid)
34    
35          RETURN
36          END
37    
38    C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
39    CBOP 0
40    C !ROUTINE: MNC_CW_RX_W
41    
42    C !INTERFACE:
43          SUBROUTINE MNC_CW_RX_W(
44         I     stype,
45         I     fbname, bi,bj,
46         I     vtype,
47         I     var,
48         I     myThid )
49    
50    C     !DESCRIPTION:
51    C     This subroutine writes one variable to a file or a file group,
52    C     depending upon the tile indicies.
53          
54    C     !USES:
55          implicit none
56  #include "netcdf.inc"  #include "netcdf.inc"
57  #include "mnc_common.h"  #include "mnc_common.h"
 #include "EEPARAMS.h"  
58  #include "SIZE.h"  #include "SIZE.h"
59    #include "EEPARAMS.h"
60    #include "PARAMS.h"
61    #include "MNC_PARAMS.h"
62    
63  #define mnc_rtype_YY  C     !INPUT PARAMETERS:
   
 C     Arguments  
64        integer myThid, bi,bj, indu        integer myThid, bi,bj, indu
65        character*(*) fbname, vtype        character*(*) stype, fbname, vtype
66        _RX var(*)        __V var(*)
67    CEOP
68    
69  C     Functions  C     !LOCAL VARIABLES:
       integer IFNBLNK, ILNBLNK  
   
 C     Local Variables  
70        integer i,j,k, indv,nvf,nvl, n1,n2, igrid, ntot        integer i,j,k, indv,nvf,nvl, n1,n2, igrid, ntot
71        integer bis,bie, bjs,bje, uniq_tnum, nfname, fid, idv, indvids        integer bis,bie, bjs,bje, uniq_tnum, nfname
72        integer ndim, indf, err, lbi,lbj, bidim,bjdim, unlim_sz, kr        integer fid, idv, indvids, ndim, indf, err
73        integer p(9),s(9),e(9), dimnc(9), vstart(9),vcount(9), udo(9)        integer lbi,lbj, bidim,bjdim, unlim_sz, kr
74          integer p(9),s(9),e(9), dimnc(9)
75          integer vstart(9),vcount(9), udo(9)
76        integer j1,j2,j3,j4,j5,j6,j7, k1,k2,k3,k4,k5,k6,k7        integer j1,j2,j3,j4,j5,j6,j7, k1,k2,k3,k4,k5,k6,k7
77          integer indfg, fg1,fg2, npath
78        character*(MAX_LEN_MBUF) msgbuf        character*(MAX_LEN_MBUF) msgbuf
79        character*(MNC_MAX_CHAR) fname        character*(MNC_MAX_CHAR) fname
80          character*(MNC_MAX_CHAR) path_fname
81          REAL*8  resh_d( sNx + 2*OLx + sNy + 2*OLy )
82          REAL*4  resh_r( sNx + 2*OLx + sNy + 2*OLy )
83          INTEGER resh_i( sNx + 2*OLx + sNy + 2*OLy )
84    
85  C     Temporary storage for the simultaneous type conversion and  C     Functions
86  C     re-shaping before passing to NetCDF        integer IFNBLNK, ILNBLNK
 #ifdef  mnc_rtype_D  
       REAL*8 resh( sNx + 2*OLx + sNy + 2*OLy )  
 #endif  
 #ifdef  mnc_rtype_R  
       REAL*4 resh( sNx + 2*OLx + sNy + 2*OLy )  
 #endif  
87    
88  C     Only do I/O if I am the master thread  C     Only do I/O if I am the master thread
89        _BEGIN_MASTER( myThid )        _BEGIN_MASTER( myThid )
90    
91    C     Get the current index for the unlimited dimension from the file
92    C     group (or base) name
93          fg1 = IFNBLNK(fbname)
94          fg2 = ILNBLNK(fbname)
95          CALL MNC_GET_IND(MNC_MAX_ID, fbname, mnc_cw_fgnm, indfg, myThid)
96          IF (indfg .LT. 1) THEN
97            write(msgbuf,'(3a)')
98         &       'MNC_CW_RX_W ERROR: file group name ''',
99         &       fbname(fg1:fg2), ''' is not defined'
100            CALL print_error(msgbuf, mythid)
101            STOP 'ABNORMAL END: S/R MNC_CW_RX_W'
102          ENDIF
103          indu = mnc_cw_fgud(indfg)
104    
105  C     Check that the Variable Type exists  C     Check that the Variable Type exists
106        nvf = IFNBLNK(vtype)        nvf = IFNBLNK(vtype)
107        nvl = ILNBLNK(vtype)        nvl = ILNBLNK(vtype)
108        CALL MNC_GET_IND(myThid, MNC_MAX_ID, vtype, mnc_cw_vname, indv)        CALL MNC_GET_IND(MNC_MAX_ID, vtype, mnc_cw_vname, indv, myThid)
109        IF (indv .LT. 1) THEN        IF (indv .LT. 1) THEN
110          write(msgbuf,'(3a)') 'MNC_CW_RX_WRITES_YY ERROR: vtype ''',          write(msgbuf,'(3a)') 'MNC_CW_RX_W ERROR: vtype ''',
111       &       vtype(nvf:nvl), ''' is not defined'       &       vtype(nvf:nvl), ''' is not defined'
112          CALL print_error(msgbuf, mythid)          CALL print_error(msgbuf, mythid)
113          stop 'ABNORMAL END: S/R MNC_CW_RX_WRITES_YY'          STOP 'ABNORMAL END: S/R MNC_CW_RX_W'
114        ENDIF        ENDIF
115        igrid = mnc_cw_vgind(indv)        igrid = mnc_cw_vgind(indv)
116    
117  C      C     Set the bi,bj indicies
118        bis = bi        bis = bi
119        bie = bi        bie = bi
120        IF (bi .LT. 1) THEN        IF (bi .LT. 1) THEN
# Line 80  C Line 132  C
132          DO lbi = bis,bie          DO lbi = bis,bie
133    
134  C         Create the file name  C         Create the file name
135            CALL MNC_CW_GET_TILE_NUM(myThid, lbi,lbj, uniq_tnum)            CALL MNC_CW_GET_TILE_NUM(lbi,lbj, uniq_tnum, myThid)
136            fname(1:MNC_MAX_CHAR) = mnc_blank_name(1:MNC_MAX_CHAR)            fname(1:MNC_MAX_CHAR) = mnc_blank_name(1:MNC_MAX_CHAR)
137            n1 = IFNBLNK(fbname)            n1 = IFNBLNK(fbname)
138            n2 = ILNBLNK(fbname)            n2 = ILNBLNK(fbname)
# Line 91  C         Create the file name Line 143  C         Create the file name
143            write(fname((ntot+1):(ntot+9)),'(i6.6,a3)') uniq_tnum, '.nc'            write(fname((ntot+1):(ntot+9)),'(i6.6,a3)') uniq_tnum, '.nc'
144            nfname = ntot+9            nfname = ntot+9
145    
146    C         Add the path to the file name
147              IF (mnc_use_outdir) THEN
148                path_fname(1:MNC_MAX_CHAR) = mnc_blank_name(1:MNC_MAX_CHAR)
149                npath = ILNBLNK(mnc_out_path)
150                path_fname(1:npath) = mnc_out_path(1:npath)
151                path_fname((npath+1):(npath+nfname)) = fname(1:nfname)
152                fname(1:MNC_MAX_CHAR) = path_fname(1:MNC_MAX_CHAR)
153                nfname = npath + nfname
154              ENDIF
155    
156  C         Append to an existing or create a new file  C         Append to an existing or create a new file
157            CALL MNC_CW_FILE_AORC(myThid, fname, indf)            CALL MNC_CW_FILE_AORC(fname, indf, myThid)
158            fid = mnc_f_info(indf,2)            fid = mnc_f_info(indf,2)
159    
160  C         Ensure that all the NetCDF dimensions are defined and create a  C         Ensure that all the NetCDF dimensions are defined and create a
# Line 106  C         local copy of them Line 168  C         local copy of them
168              ELSE              ELSE
169                dimnc(i) = mnc_cw_ie(i,igrid) - mnc_cw_is(i,igrid) + 1                dimnc(i) = mnc_cw_ie(i,igrid) - mnc_cw_is(i,igrid) + 1
170              ENDIF              ENDIF
171              CALL MNC_DIM_INIT(myThid,fname,              CALL MNC_DIM_INIT(fname,
172       &           mnc_cw_dn(i,igrid), dimnc(i) )       &           mnc_cw_dn(i,igrid), dimnc(i), myThid)
173            ENDDO            ENDDO
174    
175  C         Ensure that the "grid" is defined  C         Ensure that the "grid" is defined
176            CALL MNC_GRID_INIT(myThid,fname, mnc_cw_gname(igrid),            CALL MNC_GRID_INIT(fname, mnc_cw_gname(igrid),
177       &        mnc_cw_ndim(igrid), mnc_cw_dn(1,igrid))       &        mnc_cw_ndim(igrid), mnc_cw_dn(1,igrid), myThid)
178    
179  C         Ensure that the variable is defined  C         Ensure that the variable is defined
180  #ifdef  mnc_rtype_D            IF (stype(1:1) .EQ. 'D')
181        CALL MNC_VAR_INIT_DBL(myThid,fname,mnc_cw_gname(igrid),vtype)       &         CALL MNC_VAR_INIT_DBL(
182  #endif       &         fname, mnc_cw_gname(igrid), vtype, myThid)
183  #ifdef  mnc_rtype_R            IF (stype(1:1) .EQ. 'R')
184        CALL MNC_VAR_INIT_REAL(myThid,fname,mnc_cw_gname(igrid),vtype)       &         CALL MNC_VAR_INIT_REAL(
185  #endif       &         fname, mnc_cw_gname(igrid), vtype, myThid)
186              IF (stype(1:1) .EQ. 'I')
187         &         CALL MNC_VAR_INIT_INT(
188         &         fname, mnc_cw_gname(igrid), vtype, myThid)
189    
190            DO i = 1,mnc_fv_ids(indf,1)            DO i = 1,mnc_fv_ids(indf,1)
191              j = 2 + 3*(i - 1)              j = 2 + 3*(i - 1)
192              IF (mnc_v_names(mnc_fv_ids(indf,j)) .EQ. vtype) THEN              IF (mnc_v_names(mnc_fv_ids(indf,j)) .EQ. vtype) THEN
# Line 130  C         Ensure that the variable is de Line 196  C         Ensure that the variable is de
196                GOTO 10                GOTO 10
197              ENDIF              ENDIF
198            ENDDO            ENDDO
199            write(msgbuf,'(4a)') 'MNC_MNC_CW_RX_WRITES_YY ERROR: ',            write(msgbuf,'(4a)') 'MNC_MNC_CW_RX_W ERROR: ',
200       &         'cannot reference variable ''', vtype, ''''       &         'cannot reference variable ''', vtype, ''''
201            CALL print_error(msgbuf, mythid)            CALL print_error(msgbuf, mythid)
202            stop 'ABNORMAL END: package MNC'            STOP 'ABNORMAL END: package MNC'
203   10       CONTINUE   10       CONTINUE
204    
205  C         Check for bi,bj indicies  C         Check for bi,bj indicies
# Line 181  C               Use the indu value Line 247  C               Use the indu value
247                  udo(i) = indu - 1                  udo(i) = indu - 1
248                ELSEIF (indu .EQ. -1) THEN                ELSEIF (indu .EQ. -1) THEN
249  C               Append one to the current unlimited dim size  C               Append one to the current unlimited dim size
250                  CALL MNC_DIM_UNLIM_SIZE(myThid, fname, unlim_sz)                  CALL MNC_DIM_UNLIM_SIZE( fname, unlim_sz, myThid)
251                  udo(i) = unlim_sz                  udo(i) = unlim_sz
252                ELSE                ELSE
253  C               Use the current unlimited dim size  C               Use the current unlimited dim size
254                  CALL MNC_DIM_UNLIM_SIZE(myThid, fname, unlim_sz)                  CALL MNC_DIM_UNLIM_SIZE( fname, unlim_sz, myThid)
255                  udo(i) = unlim_sz - 1                  udo(i) = unlim_sz - 1
256                ENDIF                ENDIF
257              ENDIF              ENDIF
# Line 203  CEH3        write(*,*) 'i,p(i),s(i),e(i) Line 269  CEH3        write(*,*) 'i,p(i),s(i),e(i)
269  CEH3      ENDDO  CEH3      ENDDO
270    
271  C         Add the global attributes  C         Add the global attributes
272            CALL MNC_CW_SET_GATTR(myThid, fname, lbi,lbj, uniq_tnum)            CALL MNC_CW_SET_GATTR( fname, lbi,lbj, uniq_tnum, myThid)
273    
274  C         Add the per-variable attributes  C         Add the per-variable attributes
275            DO i = 1,mnc_cw_vnat(1,indv)            DO i = 1,mnc_cw_vnat(1,indv)
276              CALL MNC_VAR_ADD_ATTR_STR(myThid, fname, vtype,              CALL MNC_VAR_ADD_ATTR_STR( fname, vtype,
277       &           mnc_cw_vtnm(i,indv), mnc_cw_vtat(i,indv))       &           mnc_cw_vtnm(i,indv), mnc_cw_vtat(i,indv), myThid)
278            ENDDO            ENDDO
279            DO i = 1,mnc_cw_vnat(2,indv)            DO i = 1,mnc_cw_vnat(2,indv)
280              CALL MNC_VAR_ADD_ATTR_INT(myThid, fname, vtype,              CALL MNC_VAR_ADD_ATTR_INT( fname, vtype,
281       &           mnc_cw_vinm(i,indv), 1, mnc_cw_viat(i,indv))       &           mnc_cw_vinm(i,indv), 1, mnc_cw_viat(i,indv), myThid)
282            ENDDO            ENDDO
283            DO i = 1,mnc_cw_vnat(3,indv)            DO i = 1,mnc_cw_vnat(3,indv)
284              CALL MNC_VAR_ADD_ATTR_DBL(myThid, fname, vtype,              CALL MNC_VAR_ADD_ATTR_DBL( fname, vtype,
285       &           mnc_cw_vdnm(i,indv), 1, mnc_cw_vdat(i,indv))       &           mnc_cw_vdnm(i,indv), 1, mnc_cw_vdat(i,indv), myThid)
286            ENDDO            ENDDO
287    
288            CALL MNC_FILE_ENDDEF(myThid,fname)            CALL MNC_FILE_ENDDEF(fname, myThid)
289    
290              write(msgbuf,'(5a)') 'writing variable type ''',
291         &         vtype(nvf:nvl), ''' within file ''',
292         &         fname(1:nfname), ''''
293    
294  C         Write the variable one vector at a time  C         Write the variable one vector at a time
295            DO j7 = s(7),e(7)            DO j7 = s(7),e(7)
# Line 247  C         Write the variable one vector Line 317  C         Write the variable one vector
317                        vstart(2) = udo(2) + j2 - s(2) + 1                        vstart(2) = udo(2) + j2 - s(2) + 1
318                        vcount(2) = 1                        vcount(2) = 1
319    
 CEH3      write(*,*) 's/e: ', k2+s(1), k2+e(1)  
         
320        kr = 0        kr = 0
       DO j1 = s(1),e(1)  
         k1 = k2 + j1  
         kr = kr + 1  
         resh(kr) = var(k1)  
       ENDDO  
         
321        vstart(1) = udo(1) + 1        vstart(1) = udo(1) + 1
322        vcount(1) = e(1) - s(1) + 1        vcount(1) = e(1) - s(1) + 1
323    
324  #ifdef  mnc_rtype_D        IF (stype(1:1) .EQ. 'D') THEN
325        err = NF_PUT_VARA_DOUBLE(fid, idv, vstart, vcount, resh)          DO j1 = s(1),e(1)
326  #endif            k1 = k2 + j1
327  #ifdef  mnc_rtype_R            kr = kr + 1
328        err = NF_PUT_VARA_REAL(fid, idv, vstart, vcount, resh)            resh_d(kr) = var(k1)
329  #endif          ENDDO
330            err = NF_PUT_VARA_DOUBLE(fid, idv, vstart, vcount, resh_d)
331          ENDIF
332          IF (stype(1:1) .EQ. 'R') THEN
333            DO j1 = s(1),e(1)
334              k1 = k2 + j1
335              kr = kr + 1
336              resh_r(kr) = var(k1)
337            ENDDO
338            err = NF_PUT_VARA_REAL(fid, idv, vstart, vcount, resh_r)
339          ENDIF
340          IF (stype(1:1) .EQ. 'I') THEN
341            DO j1 = s(1),e(1)
342              k1 = k2 + j1
343              kr = kr + 1
344              resh_i(kr) = var(k1)
345            ENDDO
346            err = NF_PUT_VARA_INT(fid, idv, vstart, vcount, resh_i)
347          ENDIF
348    
349          CALL MNC_HANDLE_ERR(err, msgbuf, myThid)
350    
351                      ENDDO                      ENDDO
352                    ENDDO                    ENDDO
# Line 276  CEH3      write(*,*) 's/e: ', k2+s(1), k Line 358  CEH3      write(*,*) 's/e: ', k2+s(1), k
358  C         Sync the file  C         Sync the file
359            err = NF_SYNC(fid)            err = NF_SYNC(fid)
360            write(msgbuf,'(3a)') 'sync for file ''', fname,            write(msgbuf,'(3a)') 'sync for file ''', fname,
361       &         ''' in S/R MNC_CW_RX_WRITES_YY'       &         ''' in S/R MNC_CW_RX_W'
362            CALL MNC_HANDLE_ERR(myThid, err, msgbuf)            CALL MNC_HANDLE_ERR(err, msgbuf, myThid)
363    
364            ENDDO
365          ENDDO
366    
367          _END_MASTER( myThid )
368    
369          RETURN
370          END
371          
372    
373    C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
374    CBOP 0
375    C !ROUTINE: MNC_CW_RX_R_S
376    
377    C !INTERFACE:
378          SUBROUTINE MNC_CW_RX_R_S(
379         I     stype,
380         I     fbname, bi,bj,
381         I     vtype,
382         I     var,
383         I     myThid )
384    
385    C     !DESCRIPTION:
386    C     A scalar version of MNC_CW_RX_R() for compilers that cannot
387    C     gracefully handle the conversion on their own.
388          
389    C     !USES:
390          implicit none
391    
392    C     !INPUT PARAMETERS:
393          integer myThid, bi,bj, indu
394          character*(*) stype, fbname, vtype
395          __V var
396          __V var_arr(1)
397    CEOP
398          var_arr(1) = var
399    
400          CALL MNC_CW_RX_R(stype,fbname,bi,bj,vtype, var_arr, myThid)
401    
402          RETURN
403          END
404    
405    
406    C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
407    CBOP 0
408    C !ROUTINE: MNC_CW_RX_R
409    
410    C !INTERFACE:
411          SUBROUTINE MNC_CW_RX_R(
412         I     stype,
413         I     fbname, bi,bj,
414         I     vtype,
415         I     var,
416         I     myThid )
417    
418    C     !DESCRIPTION:
419    C     This subroutine reads one variable from a file or a file group,
420    C     depending upon the tile indicies.
421          
422    C     !USES:
423          implicit none
424    #include "netcdf.inc"
425    #include "mnc_common.h"
426    #include "SIZE.h"
427    #include "EEPARAMS.h"
428    #include "PARAMS.h"
429    #include "MNC_PARAMS.h"
430    
431    C     !INPUT PARAMETERS:
432          integer myThid, bi,bj, indu
433          character*(*) stype, fbname, vtype
434          __V var(*)
435    CEOP
436    
437    C     !LOCAL VARIABLES:
438          integer i,k, nvf,nvl, n1,n2, igrid, ntot
439          integer bis,bie, bjs,bje, uniq_tnum, nfname, fid, idv
440          integer ndim, indf, err, lbi,lbj, bidim,bjdim, unlim_sz, kr
441          integer ind_fv_ids, ind_vt, ierr, atype, alen
442          integer f_sNx,f_sNy, npath
443          integer p(9),s(9),e(9), vstart(9),vcount(9), udo(9)
444          integer j1,j2,j3,j4,j5,j6,j7, k1,k2,k3,k4,k5,k6,k7
445          character*(MAX_LEN_MBUF) msgbuf
446          character*(MNC_MAX_CHAR) fname
447          character*(MNC_MAX_CHAR) path_fname
448          integer indfg, fg1,fg2
449          REAL*8  resh_d( sNx + 2*OLx + sNy + 2*OLy )
450          REAL*4  resh_r( sNx + 2*OLx + sNy + 2*OLy )
451          INTEGER resh_i( sNx + 2*OLx + sNy + 2*OLy )
452    
453    C     Functions
454          integer IFNBLNK, ILNBLNK
455    
456    C     Only do I/O if I am the master thread
457          _BEGIN_MASTER( myThid )
458    
459    C     Get the current index for the unlimited dimension from the file
460    C     group (or base) name
461          fg1 = IFNBLNK(fbname)
462          fg2 = ILNBLNK(fbname)
463          CALL MNC_GET_IND(MNC_MAX_ID, fbname, mnc_cw_fgnm, indfg, myThid)
464          IF (indfg .LT. 1) THEN
465            write(msgbuf,'(3a)')
466         &       'MNC_CW_RX_W ERROR: file group name ''',
467         &       fbname(fg1:fg2), ''' is not defined'
468            CALL print_error(msgbuf, mythid)
469            STOP 'ABNORMAL END: S/R MNC_CW_RX_W'
470          ENDIF
471          indu = mnc_cw_fgud(indfg)
472    
473    C     Check that the Variable Type exists
474          nvf = IFNBLNK(vtype)
475          nvl = ILNBLNK(vtype)
476          CALL MNC_GET_IND( MNC_MAX_ID, vtype, mnc_cw_vname, ind_vt, myThid)
477          IF (ind_vt .LT. 1) THEN
478            write(msgbuf,'(3a)') 'MNC_CW_RX_R ERROR: vtype ''',
479         &       vtype(nvf:nvl), ''' is not defined'
480            CALL print_error(msgbuf, mythid)
481            STOP 'ABNORMAL END: S/R MNC_CW_RX_R'
482          ENDIF
483          igrid = mnc_cw_vgind(ind_vt)
484    
485    C     Check for bi,bj indicies
486          bidim = mnc_cw_vbij(1,ind_vt)
487          bjdim = mnc_cw_vbij(2,ind_vt)
488    
489    C     Set the bi,bj indicies
490          bis = bi
491          bie = bi
492          IF (bi .LT. 1) THEN
493            bis = 1
494            bie = nSx
495          ENDIF
496          bjs = bj
497          bje = bj
498          IF (bj .LT. 1) THEN
499            bjs = 1
500            bje = nSy
501          ENDIF
502    
503          DO lbj = bjs,bje
504            DO lbi = bis,bie
505    
506    C         Create the file name
507              CALL MNC_CW_GET_TILE_NUM( lbi,lbj, uniq_tnum, myThid)
508              fname(1:MNC_MAX_CHAR) = mnc_blank_name(1:MNC_MAX_CHAR)
509              n1 = IFNBLNK(fbname)
510              n2 = ILNBLNK(fbname)
511              ntot = n2 - n1 + 1
512              fname(1:ntot) = fbname(n1:n2)
513              ntot = ntot + 1
514              fname(ntot:ntot) = '.'
515              write(fname((ntot+1):(ntot+9)),'(i6.6,a3)') uniq_tnum, '.nc'
516              nfname = ntot+9
517    
518    C         Add the path to the file name
519              IF (mnc_use_indir) THEN
520                path_fname(1:MNC_MAX_CHAR) = mnc_blank_name(1:MNC_MAX_CHAR)
521                npath = ILNBLNK(mnc_indir_str)
522                path_fname(1:npath) = mnc_indir_str(1:npath)
523                path_fname((npath+1):(npath+nfname)) = fname(1:nfname)
524                fname(1:MNC_MAX_CHAR) = path_fname(1:MNC_MAX_CHAR)
525                nfname = npath + nfname
526              ENDIF
527    
528    C         Open the existing file
529              CALL MNC_FILE_TRY_READ( fname, ierr, indf, myThid)
530    
531    C         Check that the variable (VType) is defined within the file
532              CALL MNC_GET_FVINDS( fname, vtype, indf, ind_fv_ids, myThid)
533              IF ((indf .LT. 1) .OR. (ind_fv_ids .LT. 1)) THEN
534                write(msgbuf,'(4a)') 'MNC_CW_RX_R ERROR: vtype ''',
535         &           vtype(nvf:nvl), ''' is not defined within file ''',
536         &           fname(1:nfname)
537                CALL print_error(msgbuf, mythid)
538                STOP 'ABNORMAL END: S/R MNC_CW_RX_R'
539              ENDIF
540              fid = mnc_f_info(indf,2)
541              idv = mnc_fv_ids(indf,ind_fv_ids+1)
542    
543    C         Check that the current sNy,sNy values and the in-file values
544    C         are compatible and WARN (only warn) if not
545              f_sNx = -1
546              f_sNy = -1
547              err = NF_INQ_ATT(fid,NF_GLOBAL, 'sNx',atype,alen)
548              IF ((err .EQ. NF_NOERR) .AND. (alen .EQ. 1)) THEN
549                err = NF_GET_ATT_INT(fid, NF_GLOBAL, 'sNx', f_sNx)
550                CALL MNC_HANDLE_ERR(err,
551         &           'reading attribute ''sNx'' in S/R MNC_CW_RX_R',
552         &           myThid)
553              ENDIF
554              err = NF_INQ_ATT(fid,NF_GLOBAL, 'sNy',atype,alen)
555              IF ((err .EQ. NF_NOERR) .AND. (alen .EQ. 1)) THEN
556                err = NF_GET_ATT_INT(fid, NF_GLOBAL, 'sNy', f_sNy)
557                CALL MNC_HANDLE_ERR(err,
558         &           'reading attribute ''sNy'' in S/R MNC_CW_RX_R',
559         &           myThid)
560              ENDIF
561              IF ((f_sNx .NE. sNx) .OR. (f_sNy .NE. sNy)) THEN
562                write(msgbuf,'(5a)') 'MNC_CW_RX_R WARNING: the ',
563         &           'attributes ''sNx'' and ''sNy'' within the file ''',
564         &           fname(1:nfname), ''' do not exist or do not match ',
565         &           'the current sizes within the model'
566                CALL print_error(msgbuf, mythid)
567              ENDIF
568    
569    C         Check that the in-memory variable and the in-file variables
570    C         are of compatible sizes
571    C           ires = 1
572    C           CALL MNC_CHK_VTYP_R_NCVAR( ind_vt,
573    C      &         indf, ind_fv_ids, indu, ires)
574    C           IF (ires .LT. 0) THEN
575    C             write(msgbuf,'(7a)') 'MNC_CW_RX_R WARNING: the sizes ',
576    C      &           'of the in-program variable ''', vtype(nvf:nvl),
577    C      &           ''' and the corresponding variable within file ''',
578    C      &           fname(1:nfname), ''' are not compatible -- please ',
579    C      &           'check the sizes'
580    C             CALL print_error(msgbuf, mythid)
581    C             STOP 'ABNORMAL END: S/R MNC_CW_RX_R'
582    C           ENDIF
583    
584    C         Check for bi,bj indicies
585              bidim = mnc_cw_vbij(1,ind_vt)
586              bjdim = mnc_cw_vbij(2,ind_vt)
587    
588    C         Set the dimensions for the in-memory array
589              ndim = mnc_cw_ndim(igrid)
590              k = mnc_cw_dims(1,igrid)
591              IF (k .GT. 0) THEN
592                p(1) = k
593              ELSE
594                p(1) = 1
595              ENDIF
596              DO i = 2,9
597                k = mnc_cw_dims(i,igrid)
598                IF (k .LT. 1) THEN
599                  k = 1
600                ENDIF
601                IF ((bidim .GT. 0) .AND. (i .EQ. bidim)) THEN
602                  p(i) = nSx * p(i-1)
603                ELSEIF ((bjdim .GT. 0) .AND. (i .EQ. bjdim)) THEN
604                  p(i) = nSy * p(i-1)
605                ELSE
606                  p(i) = k * p(i-1)
607                ENDIF
608              ENDDO
609    
610    C         Set starting and ending indicies for the in-memory array and
611    C         the unlimited dimension offset for the NetCDF array
612              DO i = 1,9
613                udo(i) = 0
614                s(i) = 1
615                e(i) = 1
616                IF (i .LE. ndim) THEN
617                  s(i) = mnc_cw_is(i,igrid)
618                  e(i) = mnc_cw_ie(i,igrid)
619                ENDIF
620    C           Check for the unlimited dimension
621                IF ((i .EQ. ndim)
622         &           .AND. (mnc_cw_dims(i,igrid) .EQ. -1)) THEN
623                  IF (indu .GT. 0) THEN
624    C               Use the indu value
625                    udo(i) = indu - 1
626                  ELSEIF (indu .EQ. -1) THEN
627    C               Append one to the current unlimited dim size
628                    CALL MNC_DIM_UNLIM_SIZE( fname, unlim_sz, myThid)
629                    udo(i) = unlim_sz
630                  ELSE
631    C               Use the current unlimited dim size
632                    CALL MNC_DIM_UNLIM_SIZE( fname, unlim_sz, myThid)
633                    udo(i) = unlim_sz - 1
634                  ENDIF
635                ENDIF
636              ENDDO
637              IF (bidim .GT. 0) THEN
638                s(bidim) = lbi
639                e(bidim) = lbi
640              ENDIF
641              IF (bjdim .GT. 0) THEN
642                s(bjdim) = lbj
643                e(bjdim) = lbj
644              ENDIF
645    
646    C     DO i = 9,1,-1
647    C     write(*,*) 'i,p(i),s(i),e(i) = ', i,': ',p(i),s(i),e(i)
648    C     ENDDO
649              
650              CALL MNC_FILE_ENDDEF(fname, myThid)
651    
652              write(msgbuf,'(5a)') 'reading variable type ''',
653         &         vtype(nvf:nvl), ''' within file ''',
654         &         fname(1:nfname), ''''
655    
656    C         Read the variable one vector at a time
657              DO j7 = s(7),e(7)
658                k7 = (j7 - 1)*p(6)
659                vstart(7) = udo(7) + j7 - s(7) + 1
660                vcount(7) = 1
661                DO j6 = s(6),e(6)
662                  k6 = (j6 - 1)*p(5) + k7
663                  vstart(6) = udo(6) + j6 - s(6) + 1
664                  vcount(6) = 1
665                  DO j5 = s(5),e(5)
666                    k5 = (j5 - 1)*p(4) + k6
667                    vstart(5) = udo(5) + j5 - s(5) + 1
668                    vcount(5) = 1
669                    DO j4 = s(4),e(4)
670                      k4 = (j4 - 1)*p(3) + k5
671                      vstart(4) = udo(4) + j4 - s(4) + 1
672                      vcount(4) = 1
673                      DO j3 = s(3),e(3)
674                        k3 = (j3 - 1)*p(2) + k4
675                        vstart(3) = udo(3) + j3 - s(3) + 1
676                        vcount(3) = 1
677                        DO j2 = s(2),e(2)
678                          k2 = (j2 - 1)*p(1) + k3
679                          vstart(2) = udo(2) + j2 - s(2) + 1
680                          vcount(2) = 1
681    
682          kr = 0
683          vstart(1) = udo(1) + 1
684          vcount(1) = e(1) - s(1) + 1
685          
686          IF (stype(1:1) .EQ. 'D') THEN
687            err = NF_GET_VARA_DOUBLE(fid, idv, vstart, vcount, resh_d)
688            CALL MNC_HANDLE_ERR(err, msgbuf, myThid)
689            DO j1 = s(1),e(1)
690              k1 = k2 + j1
691              kr = kr + 1
692              var(k1) = resh_d(kr)
693            ENDDO
694          ENDIF
695          IF (stype(1:1) .EQ. 'R') THEN
696            err = NF_GET_VARA_REAL(fid, idv, vstart, vcount, resh_r)
697            CALL MNC_HANDLE_ERR(err, msgbuf, myThid)
698            DO j1 = s(1),e(1)
699              k1 = k2 + j1
700              kr = kr + 1
701              var(k1) = resh_r(kr)
702            ENDDO
703          ENDIF
704          IF (stype(1:1) .EQ. 'I') THEN
705            err = NF_GET_VARA_INT(fid, idv, vstart, vcount, resh_i)
706            CALL MNC_HANDLE_ERR(err, msgbuf, myThid)
707            DO j1 = s(1),e(1)
708              k1 = k2 + j1
709              kr = kr + 1
710              var(k1) = resh_i(kr)
711            ENDDO
712          ENDIF
713    
714          
715    
716                        ENDDO
717                      ENDDO
718                    ENDDO
719                  ENDDO
720                ENDDO
721              ENDDO
722    
723    C         Close the file
724              CALL MNC_FILE_CLOSE(fname, myThid)
725    
726    C         End the lbj,lbi loops
727          ENDDO          ENDDO
728        ENDDO        ENDDO
729    

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.19

  ViewVC Help
Powered by ViewVC 1.1.22