/[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.14 by edhill, Wed Mar 24 15:29:33 2004 UTC revision 1.31 by edhill, Mon Jun 27 20:19:52 2005 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    C !INTERFACE:
11          SUBROUTINE MNC_CW_RX_W_S(
12         I     stype,
13         I     fbname, bi,bj,
14         I     vtype,
15         I     var,
16         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
24    
25    C     !INPUT PARAMETERS:
26          integer myThid, bi,bj
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(        SUBROUTINE MNC_CW_RX_W(
44       I     stype,       I     stype,
45       I     fbname, bi,bj,       I     fbname, bi,bj,
# Line 12  C---+----1----+----2----+----3----+----4 Line 47  C---+----1----+----2----+----3----+----4
47       I     var,       I     var,
48       I     myThid )       I     myThid )
49    
50    C     !DESCRIPTION:
51    C     A scalar version of MNC_CW_RX_W() for compilers that cannot
52    C     gracefully handle the conversion on their own.
53          
54    C     !USES:
55        implicit none        implicit none
56    
57    C     !INPUT PARAMETERS:
58          integer myThid, bi,bj
59          character*(*) stype, fbname, vtype
60          __V var(*)
61          INTEGER offsets(9)
62    CEOP
63          INTEGER i
64    
65          DO i = 1,9
66            offsets(i) = 0
67          ENDDO
68          CALL MNC_CW_RX_W_OFFSET(stype,fbname,bi,bj,vtype, var,
69         &     offsets, myThid)
70    
71          RETURN
72          END
73    
74    C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
75    CBOP 0
76    C !ROUTINE: MNC_CW_RX_W_OFFSET
77    
78    C !INTERFACE:
79          SUBROUTINE MNC_CW_RX_W_OFFSET(
80         I     stype,
81         I     fbname, bi,bj,
82         I     vtype,
83         I     var,
84         I     offsets,
85         I     myThid )
86    
87    C     !DESCRIPTION:
88    C     This subroutine writes one variable to a file or a file group,
89    C     depending upon the tile indicies.
90          
91    C     !USES:
92          implicit none
93  #include "netcdf.inc"  #include "netcdf.inc"
94  #include "mnc_common.h"  #include "mnc_common.h"
95  #include "SIZE.h"  #include "SIZE.h"
96    #include "MNC_SIZE.h"
97  #include "EEPARAMS.h"  #include "EEPARAMS.h"
98  #include "PARAMS.h"  #include "PARAMS.h"
99    #include "MNC_PARAMS.h"
100    
101  C     Arguments  C     !INPUT PARAMETERS:
102        integer myThid, bi,bj, indu        integer myThid, bi,bj
103        character*(*) stype, fbname, vtype        character*(*) stype, fbname, vtype
104        __V var(*)        __V var(*)
105          INTEGER offsets(*)
106    CEOP
107    
108  C     Functions  C     !LOCAL VARIABLES:
109        integer IFNBLNK, ILNBLNK        integer i,j,k, indv,nvf,nvl, n1,n2, igrid, ntot, indu
110          integer bis,bie, bjs,bje, uniq_tnum, nfname, iseq
111  C     Local Variables        integer fid, idv, indvids, ndim, indf, err
112        integer i,j,k, indv,nvf,nvl, n1,n2, igrid, ntot        integer lbi,lbj, bidim,bjdim, unlim_sz, kr
113        integer bis,bie, bjs,bje, uniq_tnum, nfname, fid, idv, indvids        integer p(9),s(9),e(9), dimnc(9)
114        integer ndim, indf, err, lbi,lbj, bidim,bjdim, unlim_sz, kr        integer vstart(9),vcount(9), udo(9)
       integer p(9),s(9),e(9), dimnc(9), vstart(9),vcount(9), udo(9)  
115        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
116        integer indfg, fg1,fg2, npath        integer indfg, fg1,fg2, npath
117        character*(MAX_LEN_MBUF) msgbuf        character*(MAX_LEN_MBUF) msgbuf
118        character*(MNC_MAX_CHAR) fname        character*(MNC_MAX_CHAR) fname
119        character*(MNC_MAX_CHAR) path_fname        character*(MNC_MAX_CHAR) path_fname
120          REAL*8  resh_d( MNC_MAX_BUFF )
121          REAL*4  resh_r( MNC_MAX_BUFF )
122          INTEGER resh_i( MNC_MAX_BUFF )
123    #ifdef HAVE_STAT
124          integer ntotenc, ncenc, nbytes, fs_isdone
125          character*(200) cenc
126          integer ienc(200)
127          REAL*8  fsnu
128    #endif
129    
130  C     Temporary storage for the simultaneous type conversion and  C     Functions
131  C     re-shaping before passing to NetCDF        integer IFNBLNK, ILNBLNK
       REAL*8  resh_d( sNx + 2*OLx + sNy + 2*OLy )  
       REAL*4  resh_r( sNx + 2*OLx + sNy + 2*OLy )  
       INTEGER resh_i( sNx + 2*OLx + sNy + 2*OLy )  
132    
133  C     Only do I/O if I am the master thread  C     Only do I/O if I am the master thread
134        _BEGIN_MASTER( myThid )        _BEGIN_MASTER( myThid )
# Line 61  C     group (or base) name Line 146  C     group (or base) name
146          STOP 'ABNORMAL END: S/R MNC_CW_RX_W'          STOP 'ABNORMAL END: S/R MNC_CW_RX_W'
147        ENDIF        ENDIF
148        indu = mnc_cw_fgud(indfg)        indu = mnc_cw_fgud(indfg)
149          iseq = mnc_cw_fgis(indfg)
150    C     write(*,*) 'indu,iseq = ', indu, iseq
151    
152  C     Check that the Variable Type exists  C     Check that the Variable Type exists
153        nvf = IFNBLNK(vtype)        nvf = IFNBLNK(vtype)
# Line 91  C     Set the bi,bj indicies Line 178  C     Set the bi,bj indicies
178        DO lbj = bjs,bje        DO lbj = bjs,bje
179          DO lbi = bis,bie          DO lbi = bis,bie
180    
181    #ifdef HAVE_STAT
182              fs_isdone = 0
183    #endif
184     10       CONTINUE
185    
186  C         Create the file name  C         Create the file name
187            CALL MNC_CW_GET_TILE_NUM(lbi,lbj, uniq_tnum, myThid)            CALL MNC_CW_GET_TILE_NUM(lbi,lbj, uniq_tnum, myThid)
188            fname(1:MNC_MAX_CHAR) = mnc_blank_name(1:MNC_MAX_CHAR)            fname(1:MNC_MAX_CHAR) = mnc_blank_name(1:MNC_MAX_CHAR)
# Line 100  C         Create the file name Line 192  C         Create the file name
192            fname(1:ntot) = fbname(n1:n2)            fname(1:ntot) = fbname(n1:n2)
193            ntot = ntot + 1            ntot = ntot + 1
194            fname(ntot:ntot) = '.'            fname(ntot:ntot) = '.'
195            write(fname((ntot+1):(ntot+9)),'(i6.6,a3)') uniq_tnum, '.nc'            IF ( mnc_use_name_ni0 ) THEN
196            nfname = ntot+9              write(fname((ntot+1):(ntot+17)),'(i10.10,a1,i6.6)')
197         &           nIter0,'.',uniq_tnum
198                write(fname((ntot+18):(ntot+25)),'(a1,i4.4,a3)')
199         &           '.', iseq, '.nc'
200                nfname = ntot + 25
201              ELSE
202                write(fname((ntot+1):(ntot+14)),'(i4.4,a1,i6.6,a3)')
203         &           iseq,'.',uniq_tnum, '.nc'
204                nfname = ntot + 14
205              ENDIF
206    
207  C         Add the path to the file name  C         Add the path to the file name
208            IF (mnc_use_outdir) THEN            IF (mnc_use_outdir) THEN
# Line 114  C         Add the path to the file name Line 215  C         Add the path to the file name
215            ENDIF            ENDIF
216    
217  C         Append to an existing or create a new file  C         Append to an existing or create a new file
218            CALL MNC_CW_FILE_AORC(fname, indf, myThid)            CALL MNC_CW_FILE_AORC(fname,indf, lbi,lbj,uniq_tnum, myThid)
219            fid = mnc_f_info(indf,2)            fid = mnc_f_info(indf,2)
220    
221    #ifdef HAVE_STAT
222              IF ((mnc_cw_fgig(indfg) .EQ. 1)
223         &         .AND. (fs_isdone .EQ. 0)) THEN
224    C           Decide whether to append to the existing or create a new
225    C           file based on the byte count per unlimited dimension
226                ncenc = 70
227                cenc(1:26)  = 'abcdefghijklmnopqrstuvwxyz'
228                cenc(27:52) = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
229                cenc(53:70) = '0123456789_.,+-=/~'
230                k = nfname
231                IF (k .GT. 200)  k = 200
232                ntotenc = 0
233                DO i = 1,k
234                  DO j = 1,ncenc
235                    IF (fname(i:i) .EQ. cenc(j:j)) THEN
236                      ntotenc = ntotenc + 1
237                      ienc(ntotenc) = j
238                      GOTO 20
239                    ENDIF
240                  ENDDO
241     20           CONTINUE
242                ENDDO
243                CALL mncfsize(ntotenc, ienc, nbytes)
244                IF (nbytes .GT. 0) THEN
245                  CALL MNC_DIM_UNLIM_SIZE(fname, unlim_sz, myThid)
246                  fsnu = (1.0 _d 0 + 1.0 _d 0 / DBLE(unlim_sz))
247         &             * DBLE(nbytes)
248                  IF (fsnu .GT. mnc_max_fsize) THEN
249    C               Delete the now-full fname from the lookup tables since
250    C               we are all done writing to it.
251                    CALL MNC_FILE_CLOSE(fname, myThid)
252                    iseq = iseq + 1
253                    indu = 1
254                    mnc_cw_fgud(indfg) = 1
255                    mnc_cw_fgis(indfg) = iseq
256                    fs_isdone = 1
257                    GOTO 10
258                  ENDIF
259                ENDIF
260              ENDIF
261    #endif  /*  HAVE_STAT  */
262    
263  C         Ensure that all the NetCDF dimensions are defined and create a  C         Ensure that all the NetCDF dimensions are defined and create a
264  C         local copy of them  C         local copy of them
265            DO i = 1,9            DO i = 1,9
# Line 128  C         local copy of them Line 271  C         local copy of them
271              ELSE              ELSE
272                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
273              ENDIF              ENDIF
274              CALL MNC_DIM_INIT(fname,  
275       &           mnc_cw_dn(i,igrid), dimnc(i), myThid)  C           Add the coordinate variables
276                CALL MNC_DIM_INIT_ALL_CV(fname,
277         &           mnc_cw_dn(i,igrid), dimnc(i), 'Y', lbi,lbj, myThid)
278    
279            ENDDO            ENDDO
280    
281  C         Ensure that the "grid" is defined  C         Ensure that the "grid" is defined
# Line 153  C         Ensure that the variable is de Line 299  C         Ensure that the variable is de
299                idv = mnc_fv_ids(indf,j+1)                idv = mnc_fv_ids(indf,j+1)
300                indvids = mnc_fd_ind(indf, mnc_f_info(indf,                indvids = mnc_fd_ind(indf, mnc_f_info(indf,
301       &             (mnc_fv_ids(indf,j+2) + 1)) )       &             (mnc_fv_ids(indf,j+2) + 1)) )
302                GOTO 10                GOTO 30
303              ENDIF              ENDIF
304            ENDDO            ENDDO
305            write(msgbuf,'(4a)') 'MNC_MNC_CW_RX_W ERROR: ',            write(msgbuf,'(4a)') 'MNC_MNC_CW_RX_W ERROR: ',
306       &         'cannot reference variable ''', vtype, ''''       &         'cannot reference variable ''', vtype, ''''
307            CALL print_error(msgbuf, mythid)            CALL print_error(msgbuf, mythid)
308            STOP 'ABNORMAL END: package MNC'            STOP 'ABNORMAL END: package MNC'
309   10       CONTINUE   30       CONTINUE
310    
311  C         Check for bi,bj indicies  C         Check for bi,bj indicies
312            bidim = mnc_cw_vbij(1,indv)            bidim = mnc_cw_vbij(1,indv)
# Line 187  C         Set the dimensions for the in- Line 333  C         Set the dimensions for the in-
333              ELSE              ELSE
334                p(i) = k * p(i-1)                p(i) = k * p(i-1)
335              ENDIF              ENDIF
336                IF (offsets(i) .GT. 0) THEN
337                  k = 1
338                  p(i) = k * p(i-1)
339                ENDIF
340            ENDDO            ENDDO
341    
342  C         Set starting and ending indicies for the in-memory array and  C         Set starting and ending indicies for the in-memory array and
# Line 224  C               Use the current unlimite Line 374  C               Use the current unlimite
374              s(bjdim) = lbj              s(bjdim) = lbj
375              e(bjdim) = lbj              e(bjdim) = lbj
376            ENDIF            ENDIF
377  CEH3      DO i = 1,9            
378  CEH3        write(*,*) 'i,p(i),s(i),e(i) = ', i,p(i),s(i),e(i)  C         Check the offsets
379  CEH3      ENDDO            DO i = 1,9
380                IF (offsets(i) .GT. 0) THEN
381  C         Add the global attributes                udo(i) = udo(i) + offsets(i) - 1
382            CALL MNC_CW_SET_GATTR( fname, lbi,lbj, uniq_tnum, myThid)                s(i) = 1
383                  e(i) = 1
384                ENDIF
385              ENDDO
386    
387  C         Add the per-variable attributes  C         Add the per-variable attributes
388            DO i = 1,mnc_cw_vnat(1,indv)            DO i = 1,mnc_cw_vnat(1,indv)
# Line 251  C         Add the per-variable attribute Line 404  C         Add the per-variable attribute
404       &         vtype(nvf:nvl), ''' within file ''',       &         vtype(nvf:nvl), ''' within file ''',
405       &         fname(1:nfname), ''''       &         fname(1:nfname), ''''
406    
407    C         DO i = 1,9
408    C         write(*,*) 'i,p(i),s(i),e(i),udo(i),offsets(i) = ',
409    C         &        i,p(i),s(i),e(i),udo(i),offsets(i)
410    C         ENDDO
411    
412  C         Write the variable one vector at a time  C         Write the variable one vector at a time
413            DO j7 = s(7),e(7)            DO j7 = s(7),e(7)
414              k7 = (j7 - 1)*p(6)              k7 = (j7 - 1)*p(6)
# Line 281  C         Write the variable one vector Line 439  C         Write the variable one vector
439        vstart(1) = udo(1) + 1        vstart(1) = udo(1) + 1
440        vcount(1) = e(1) - s(1) + 1        vcount(1) = e(1) - s(1) + 1
441    
442          IF (vcount(1) .GT. MNC_MAX_BUFF) THEN
443            write(msgbuf,'(2a,I7,a)') 'MNC_MAX_BUFF is too small',
444         &       '--please increase to at least ',
445         &       vcount(1), ' in ''MNC_SIZE.h'''
446            CALL PRINT_ERROR(msgBuf , 1)
447            STOP 'ABNORMAL END: S/R MNC_CW_RX_W_OFFSET'
448          ENDIF
449    
450        IF (stype(1:1) .EQ. 'D') THEN        IF (stype(1:1) .EQ. 'D') THEN
451          DO j1 = s(1),e(1)          DO j1 = s(1),e(1)
452            k1 = k2 + j1            k1 = k2 + j1
# Line 301  C         Write the variable one vector Line 467  C         Write the variable one vector
467          DO j1 = s(1),e(1)          DO j1 = s(1),e(1)
468            k1 = k2 + j1            k1 = k2 + j1
469            kr = kr + 1            kr = kr + 1
470            resh_i(kr) = var(k1)            resh_i(kr) = MNC2I( var(k1) )
471          ENDDO          ENDDO
472          err = NF_PUT_VARA_INT(fid, idv, vstart, vcount, resh_i)          err = NF_PUT_VARA_INT(fid, idv, vstart, vcount, resh_i)
473        ENDIF        ENDIF
# Line 331  C         Sync the file Line 497  C         Sync the file
497                
498    
499  C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|  C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
500    CBOP 0
501    C !ROUTINE: MNC_CW_RX_R_S
502    
503    C !INTERFACE:
504          SUBROUTINE MNC_CW_RX_R_S(
505         I     stype,
506         I     fbname, bi,bj,
507         I     vtype,
508         I     var,
509         I     myThid )
510    
511    C     !DESCRIPTION:
512    C     A scalar version of MNC_CW_RX_R() for compilers that cannot
513    C     gracefully handle the conversion on their own.
514          
515    C     !USES:
516          implicit none
517    
518    C     !INPUT PARAMETERS:
519          integer myThid, bi,bj
520          character*(*) stype, fbname, vtype
521          __V var
522          __V var_arr(1)
523    CEOP
524          var_arr(1) = var
525    
526          CALL MNC_CW_RX_R(stype,fbname,bi,bj,vtype, var_arr, myThid)
527    
528          RETURN
529          END
530    
531    
532    C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
533    CBOP 0
534    C !ROUTINE: MNC_CW_RX_R
535    
536    C !INTERFACE:
537        SUBROUTINE MNC_CW_RX_R(        SUBROUTINE MNC_CW_RX_R(
538       I     stype,       I     stype,
539       I     fbname, bi,bj,       I     fbname, bi,bj,
# Line 340  C---+----1----+----2----+----3----+----4 Line 541  C---+----1----+----2----+----3----+----4
541       I     var,       I     var,
542       I     myThid )       I     myThid )
543    
544    C     !DESCRIPTION:
545    C     This subroutine reads one variable from a file or a file group,
546    C     depending upon the tile indicies.
547          
548    C     !USES:
549        implicit none        implicit none
   
550  #include "netcdf.inc"  #include "netcdf.inc"
551  #include "mnc_common.h"  #include "mnc_common.h"
552  #include "SIZE.h"  #include "SIZE.h"
553    #include "MNC_SIZE.h"
554  #include "EEPARAMS.h"  #include "EEPARAMS.h"
555  #include "PARAMS.h"  #include "PARAMS.h"
556    #include "MNC_PARAMS.h"
557    
558  C     Arguments  C     !INPUT PARAMETERS:
559        integer myThid, bi,bj, indu        integer myThid, bi,bj
560        character*(*) stype, fbname, vtype        character*(*) stype, fbname, vtype
561        __V var(*)        __V var(*)
562    CEOP
563    
564  C     Functions  C     !LOCAL VARIABLES:
565        integer IFNBLNK, ILNBLNK        integer i,k, nvf,nvl, n1,n2, igrid, ntot, indu
   
 C     Local Variables  
       integer i,k, nvf,nvl, n1,n2, igrid, ntot  
566        integer bis,bie, bjs,bje, uniq_tnum, nfname, fid, idv        integer bis,bie, bjs,bje, uniq_tnum, nfname, fid, idv
567        integer ndim, indf, err, lbi,lbj, bidim,bjdim, unlim_sz, kr        integer ndim, err, lbi,lbj, bidim,bjdim, unlim_sz, kr
568        integer ind_fv_ids, ind_vt, ierr, atype, alen        integer ind_vt, npath, unlid
569        integer f_sNx,f_sNy, npath  C     integer f_sNx,f_sNy, alen, atype, ind_fv_ids, ierr, indf
570        integer p(9),s(9),e(9), vstart(9),vcount(9), udo(9)        integer p(9),s(9),e(9), vstart(9),vcount(9), udo(9)
571        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
572        character*(MAX_LEN_MBUF) msgbuf        character*(MAX_LEN_MBUF) msgbuf
573        character*(MNC_MAX_CHAR) fname        character*(MNC_MAX_CHAR) fname
574          character*(MNC_MAX_CHAR) fname_zs
575        character*(MNC_MAX_CHAR) path_fname        character*(MNC_MAX_CHAR) path_fname
576        integer indfg, fg1,fg2        integer indfg, fg1,fg2
577          REAL*8  resh_d( MNC_MAX_BUFF )
578          REAL*4  resh_r( MNC_MAX_BUFF )
579          INTEGER resh_i( MNC_MAX_BUFF )
580    
581  C     Temporary storage for the simultaneous type conversion and  C     Functions
582  C     re-shaping before passing to NetCDF        integer IFNBLNK, ILNBLNK
       REAL*8  resh_d( sNx + 2*OLx + sNy + 2*OLy )  
       REAL*4  resh_r( sNx + 2*OLx + sNy + 2*OLy )  
       INTEGER resh_i( sNx + 2*OLx + sNy + 2*OLy )  
583    
584  C     Only do I/O if I am the master thread  C     Only do I/O if I am the master thread
585        _BEGIN_MASTER( myThid )        _BEGIN_MASTER( myThid )
# Line 447  C         Add the path to the file name Line 653  C         Add the path to the file name
653              nfname = npath + nfname              nfname = npath + nfname
654            ENDIF            ENDIF
655    
656  C         Open the existing file            WRITE(fname_zs,'(2a,i4.4,a1,i6.6,a3)')
657            CALL MNC_FILE_TRY_READ( fname, ierr, indf, myThid)       &         mnc_indir_str(1:npath), fbname(n1:n2),
658         &         0, '.', uniq_tnum, '.nc'
659  C         Check that the variable (VType) is defined within the file  
660            CALL MNC_GET_FVINDS( fname, vtype, indf, ind_fv_ids, myThid)  C         The steps are:
661            IF ((indf .LT. 1) .OR. (ind_fv_ids .LT. 1)) THEN  C         (1) open the file in a READ-ONLY mode,
662              write(msgbuf,'(4a)') 'MNC_CW_RX_R ERROR: vtype ''',  C         (2) get the var id for the current variable,
663       &           vtype(nvf:nvl), ''' is not defined within file ''',  C         (3) read the data, and then
664       &           fname(1:nfname)  C         (4) close the file--theres no need to keep it open!
665              CALL print_error(msgbuf, mythid)  
666              STOP 'ABNORMAL END: S/R MNC_CW_RX_R'            write(msgbuf,'(4a)') 'MNC_CW_RX_R: cannot open',
667         &         ' file ''', fname(1:nfname), ''' in read-only mode'
668              err = NF_OPEN(fname, NF_NOWRITE, fid)
669              IF ( err .NE. NF_NOERR ) THEN
670    C           If the initial open fails, try again using a name with a
671    C           zero sequence number inserted
672                err = NF_OPEN(fname_zs, NF_NOWRITE, fid)
673            ENDIF            ENDIF
674            fid = mnc_f_info(indf,2)            CALL MNC_HANDLE_ERR(err, msgbuf, myThid)
675            idv = mnc_fv_ids(indf,ind_fv_ids+1)  
676              write(msgbuf,'(6a)')
677         &         'MNC_CW_RX_R: cannot get id for variable ''',
678         &         vtype(nvf:nvl), '''in file ''', fname(1:nfname), ''''
679              err = NF_INQ_VARID(fid, vtype, idv)
680              CALL MNC_HANDLE_ERR(err, msgbuf, myThid)
681    
682  C         Check that the current sNy,sNy values and the in-file values  C         Check that the current sNy,sNy values and the in-file values
683  C         are compatible and WARN (only warn) if not  C         are compatible and WARN (only warn) if not
684            f_sNx = -1  C           f_sNx = -1
685            f_sNy = -1  C           f_sNy = -1
686            err = NF_INQ_ATT(fid,NF_GLOBAL, 'sNx',atype,alen)  C           err = NF_INQ_ATT(fid,NF_GLOBAL, 'sNx',atype,alen)
687            IF ((err .EQ. NF_NOERR) .AND. (alen .EQ. 1)) THEN  C           IF ((err .EQ. NF_NOERR) .AND. (alen .EQ. 1)) THEN
688              err = NF_GET_ATT_INT(fid, NF_GLOBAL, 'sNx', f_sNx)  C             err = NF_GET_ATT_INT(fid, NF_GLOBAL, 'sNx', f_sNx)
689              CALL MNC_HANDLE_ERR(err,  C             CALL MNC_HANDLE_ERR(err,
690       &           'reading attribute ''sNx'' in S/R MNC_CW_RX_R',  C      &           'reading attribute ''sNx'' in S/R MNC_CW_RX_R',
691       &           myThid)  C      &           myThid)
692            ENDIF  C           ENDIF
693            err = NF_INQ_ATT(fid,NF_GLOBAL, 'sNy',atype,alen)  C           err = NF_INQ_ATT(fid,NF_GLOBAL, 'sNy',atype,alen)
694            IF ((err .EQ. NF_NOERR) .AND. (alen .EQ. 1)) THEN  C           IF ((err .EQ. NF_NOERR) .AND. (alen .EQ. 1)) THEN
695              err = NF_GET_ATT_INT(fid, NF_GLOBAL, 'sNy', f_sNy)  C             err = NF_GET_ATT_INT(fid, NF_GLOBAL, 'sNy', f_sNy)
696              CALL MNC_HANDLE_ERR(err,  C             CALL MNC_HANDLE_ERR(err,
697       &           'reading attribute ''sNy'' in S/R MNC_CW_RX_R',  C      &           'reading attribute ''sNy'' in S/R MNC_CW_RX_R',
698       &           myThid)  C      &           myThid)
699            ENDIF  C           ENDIF
700            IF ((f_sNx .NE. sNx) .OR. (f_sNy .NE. sNy)) THEN  C           IF ((f_sNx .NE. sNx) .OR. (f_sNy .NE. sNy)) THEN
701              write(msgbuf,'(5a)') 'MNC_CW_RX_R WARNING: the ',  C             write(msgbuf,'(5a)') 'MNC_CW_RX_R WARNING: the ',
702       &           'attributes ''sNx'' and ''sNy'' within the file ''',  C      &           'attributes ''sNx'' and ''sNy'' within the file ''',
703       &           fname(1:nfname), ''' do not exist or do not match ',  C      &           fname(1:nfname), ''' do not exist or do not match ',
704       &           'the current sizes within the model'  C      &           'the current sizes within the model'
705              CALL print_error(msgbuf, mythid)  C             CALL print_error(msgbuf, mythid)
706            ENDIF  C           ENDIF
707    
708  C         Check that the in-memory variable and the in-file variables  C         Check that the in-memory variable and the in-file variables
709  C         are of compatible sizes  C         are of compatible sizes
# Line 545  C           Check for the unlimited dime Line 762  C           Check for the unlimited dime
762                IF (indu .GT. 0) THEN                IF (indu .GT. 0) THEN
763  C               Use the indu value  C               Use the indu value
764                  udo(i) = indu - 1                  udo(i) = indu - 1
               ELSEIF (indu .EQ. -1) THEN  
 C               Append one to the current unlimited dim size  
                 CALL MNC_DIM_UNLIM_SIZE( fname, unlim_sz, myThid)  
                 udo(i) = unlim_sz  
765                ELSE                ELSE
766  C               Use the current unlimited dim size  C               We need the current unlim dim size
767                  CALL MNC_DIM_UNLIM_SIZE( fname, unlim_sz, myThid)                  write(msgbuf,'(5a)') 'MNC_CW_RX_R: getting the ',
768                  udo(i) = unlim_sz - 1       &               'unlim dim id within file ''',
769         &               fname(1:nfname), ''''
770                    err = NF_INQ_UNLIMDIM(fid, unlid)
771                    CALL MNC_HANDLE_ERR(err, msgbuf, myThid)
772                    write(msgbuf,'(5a)') 'MNC_CW_RX_R: getting the ',
773         &               'unlim dim size within file ''',
774         &               fname(1:nfname), ''''
775                    err = NF_INQ_DIMLEN(fid, unlid, unlim_sz)
776                    CALL MNC_HANDLE_ERR(err, msgbuf, myThid)
777                    udo(i) = unlim_sz
778                ENDIF                ENDIF
779              ENDIF              ENDIF
780            ENDDO            ENDDO
# Line 569  C     DO i = 9,1,-1 Line 791  C     DO i = 9,1,-1
791  C     write(*,*) 'i,p(i),s(i),e(i) = ', i,': ',p(i),s(i),e(i)  C     write(*,*) 'i,p(i),s(i),e(i) = ', i,': ',p(i),s(i),e(i)
792  C     ENDDO  C     ENDDO
793                        
           CALL MNC_FILE_ENDDEF(fname, myThid)  
   
794            write(msgbuf,'(5a)') 'reading variable type ''',            write(msgbuf,'(5a)') 'reading variable type ''',
795       &         vtype(nvf:nvl), ''' within file ''',       &         vtype(nvf:nvl), ''' within file ''',
796       &         fname(1:nfname), ''''       &         fname(1:nfname), ''''
# Line 604  C         Read the variable one vector a Line 824  C         Read the variable one vector a
824        kr = 0        kr = 0
825        vstart(1) = udo(1) + 1        vstart(1) = udo(1) + 1
826        vcount(1) = e(1) - s(1) + 1        vcount(1) = e(1) - s(1) + 1
827          
828          IF (vcount(1) .GT. MNC_MAX_BUFF) THEN
829            write(msgbuf,'(2a,I7,a)') 'MNC_MAX_BUFF is too small',
830         &       '--please increase to at least ',
831         &       vcount(1), ' in ''MNC_SIZE.h'''
832            CALL PRINT_ERROR(msgBuf , 1)
833            STOP 'ABNORMAL END: S/R MNC_CW_RX_R_OFFSET'
834          ENDIF
835    
836        IF (stype(1:1) .EQ. 'D') THEN        IF (stype(1:1) .EQ. 'D') THEN
837          err = NF_GET_VARA_DOUBLE(fid, idv, vstart, vcount, resh_d)          err = NF_GET_VARA_DOUBLE(fid, idv, vstart, vcount, resh_d)
838          CALL MNC_HANDLE_ERR(err, msgbuf, myThid)          CALL MNC_HANDLE_ERR(err, msgbuf, myThid)
839          DO j1 = s(1),e(1)          DO j1 = s(1),e(1)
840            k1 = k2 + j1            k1 = k2 + j1
841            kr = kr + 1            kr = kr + 1
842            var(k1) = resh_d(kr)            var(k1) = MNCI2( resh_d(kr) )
843          ENDDO          ENDDO
844        ENDIF        ENDIF
845        IF (stype(1:1) .EQ. 'R') THEN        IF (stype(1:1) .EQ. 'R') THEN
# Line 620  C         Read the variable one vector a Line 848  C         Read the variable one vector a
848          DO j1 = s(1),e(1)          DO j1 = s(1),e(1)
849            k1 = k2 + j1            k1 = k2 + j1
850            kr = kr + 1            kr = kr + 1
851            var(k1) = resh_r(kr)            var(k1) = MNCI2( resh_r(kr) )
852          ENDDO          ENDDO
853        ENDIF        ENDIF
854        IF (stype(1:1) .EQ. 'I') THEN        IF (stype(1:1) .EQ. 'I') THEN
# Line 633  C         Read the variable one vector a Line 861  C         Read the variable one vector a
861          ENDDO          ENDDO
862        ENDIF        ENDIF
863    
         
864    
865                      ENDDO                      ENDDO
866                    ENDDO                    ENDDO
# Line 643  C         Read the variable one vector a Line 870  C         Read the variable one vector a
870            ENDDO            ENDDO
871    
872  C         Close the file  C         Close the file
873            CALL MNC_FILE_CLOSE(fname, myThid)  C         CALL MNC_FILE_CLOSE(fname, myThid)
874              err = NF_CLOSE(fid)
875              write(msgbuf,'(3a)') 'MNC_CW_RX_R:  cannot close file ''',
876         &         fname(1:nfname), ''''
877              CALL MNC_HANDLE_ERR(err, msgbuf, myThid)
878    
879    
880  C         End the lbj,lbi loops  C         End the lbj,lbi loops
881          ENDDO          ENDDO

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.31

  ViewVC Help
Powered by ViewVC 1.1.22