/[lmdze]/trunk/Sources/IOIPSL/histwrite.f
ViewVC logotype

Diff of /trunk/Sources/IOIPSL/histwrite.f

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

trunk/libf/IOIPSL/histwrite.f90 revision 62 by guez, Thu Jul 26 14:37:37 2012 UTC trunk/Sources/IOIPSL/histwrite.f revision 178 by guez, Fri Mar 11 18:47:26 2016 UTC
# Line 2  MODULE histwrite_m Line 2  MODULE histwrite_m
2    
3    ! From histcom.f90, version 2.1 2004/04/21 09:27:10    ! From histcom.f90, version 2.1 2004/04/21 09:27:10
4    
5      USE errioipsl, ONLY: histerr
6      use histbeg_totreg_m, ONLY: nb_files, date0, deltat
7      USE histcom_var, ONLY: datasz_in, freq_opp, freq_wrt, fuchnbout, last_opp, &
8           last_opp_chk, last_wrt, last_wrt_chk, missing_val, nb_files_max, &
9           nb_var_max, nbopp, scal, scsize, sopps, topp
10      use histvar_seq_m, only: histvar_seq
11      use histwrite_real_m, only: histwrite_real
12      use isittime_m, only: isittime
13      USE mathop_m, ONLY: mathop
14    
15    implicit none    implicit none
16    
17      INTEGER, SAVE:: datasz_max(nb_files_max, nb_var_max) = -1
18    
19    INTERFACE histwrite    INTERFACE histwrite
20       ! The "histwrite" procedures give the data to the input-output system.       ! The "histwrite" procedures give the data to the input-output system.
21       ! They trigger the operations to be performed and the writing to       ! They trigger the operations to be performed and the writing to
# Line 29  MODULE histwrite_m Line 41  MODULE histwrite_m
41       ! The difference between the procedures is the rank of "pdata".       ! The difference between the procedures is the rank of "pdata".
42    
43       MODULE PROCEDURE histwrite_r1d, histwrite_r2d, histwrite_r3d       MODULE PROCEDURE histwrite_r1d, histwrite_r2d, histwrite_r3d
44    END INTERFACE    END INTERFACE histwrite
45    
46    PRIVATE histwrite_r1d, histwrite_r2d, histwrite_r3d    PRIVATE
47      public histwrite
48    
49  CONTAINS  CONTAINS
50    
51    SUBROUTINE histwrite_r1d(fileid, varname, itau, pdata)    SUBROUTINE histwrite_r1d(fileid, varname, itau, pdata)
52    
     USE errioipsl, ONLY: histerr  
     use calendar, only: isittime  
     USE mathop_m, ONLY: mathop  
     USE histcom_var, ONLY: datasz_in, datasz_max, date0, deltat, &  
          freq_opp, freq_wrt, fuchnbout, last_opp, last_opp_chk, last_wrt, &  
          last_wrt_chk, missing_val, nbopp, nb_files, scal, scsize, sopps, &  
          topp  
     use histvar_seq_m, only: histvar_seq  
     use histwrite_real_m, only: histwrite_real  
   
53      INTEGER, INTENT(IN):: fileid, itau      INTEGER, INTENT(IN):: fileid, itau
54      CHARACTER(LEN=*), INTENT(IN):: varname      CHARACTER(LEN=*), INTENT(IN):: varname
55      REAL, INTENT(IN):: pdata(:)      REAL, INTENT(IN):: pdata(:)
# Line 66  CONTAINS Line 69  CONTAINS
69    
70      ! 1.0 Try to catch errors like specifying the wrong file ID.      ! 1.0 Try to catch errors like specifying the wrong file ID.
71    
72      IF ( (fileid < 1).OR.(fileid > nb_files) ) THEN      IF ((fileid < 1) .OR. (fileid > nb_files)) THEN
73         CALL histerr (3, "histwrite", &         CALL histerr(3, "histwrite", &
74              &    'Illegal file ID in the histwrite of variable', varname, ' ')              'Illegal file ID in the histwrite of variable', varname, ' ')
75      ENDIF      ENDIF
76    
77      ! 1.1 Find the id of the variable to be written and the real time      ! 1.1 Find the id of the variable to be written and the real time
78    
79      CALL histvar_seq (fileid, varname, varid)      CALL histvar_seq(fileid, varname, varid)
80    
81      ! 2.0 do nothing for never operation      ! 2.0 do nothing for never operation
82    
# Line 87  CONTAINS Line 90  CONTAINS
90      ! 3.0 We check if we need to do an operation      ! 3.0 We check if we need to do an operation
91    
92      IF (last_opp_chk(fileid, varid) == itau) THEN      IF (last_opp_chk(fileid, varid) == itau) THEN
93         CALL histerr (3, "histwrite", &         CALL histerr(3, "histwrite", &
94              &    'This variable as already been analysed at the present', &              'This variable as already been analysed at the present', &
95              &    'time step', ' ')              'time step', ' ')
96      ENDIF      ENDIF
97    
98      CALL isittime(itau, date0(fileid), deltat(fileid), &      CALL isittime(itau, date0(fileid), deltat(fileid), &
# Line 99  CONTAINS Line 102  CONTAINS
102      ! 4.0 We check if we need to write the data      ! 4.0 We check if we need to write the data
103    
104      IF (last_wrt_chk(fileid, varid) == itau) THEN      IF (last_wrt_chk(fileid, varid) == itau) THEN
105         CALL histerr (3, "histwrite", &         CALL histerr(3, "histwrite", &
106              &    'This variable as already been written for the present', &              'This variable as already been written for the present', &
107              &    'time step', ' ')              'time step', ' ')
108      ENDIF      ENDIF
109    
110      CALL isittime &      CALL isittime(itau, date0(fileid), deltat(fileid), &
111           &  (itau, date0(fileid), deltat(fileid), freq_wrt(fileid, varid), &           freq_wrt(fileid, varid), last_wrt(fileid, varid), &
112           &   last_wrt(fileid, varid), last_wrt_chk(fileid, varid), do_write)           last_wrt_chk(fileid, varid), do_write)
113    
114      ! 5.0 histwrite called      ! 5.0 histwrite called
115    
116      IF (do_oper.OR.do_write) THEN      IF (do_oper .OR. do_write) THEN
117           ! 5.1 Get the sizes of the data we will handle
        !- 5.1 Get the sizes of the data we will handle  
118    
119         IF (datasz_in(fileid, varid, 1) <= 0) THEN         IF (datasz_in(fileid, varid, 1) <= 0) THEN
120            !--- There is the risk here that the user has over-sized the array.            ! There is the risk here that the user has over-sized the array.
121            !--- But how can we catch this ?            ! But how can we catch this ?
122            !--- In the worst case we will do impossible operations            ! In the worst case we will do impossible operations
123            !--- on part of the data !            ! on part of the data !
124            datasz_in(fileid, varid, 1) = SIZE(pdata)            datasz_in(fileid, varid, 1) = SIZE(pdata)
125            datasz_in(fileid, varid, 2) = -1            datasz_in(fileid, varid, 2) = -1
126            datasz_in(fileid, varid, 3) = -1            datasz_in(fileid, varid, 3) = -1
127         ENDIF         ENDIF
128    
129         !- 5.2 The maximum size of the data will give the size of the buffer         ! 5.2 The maximum size of the data will give the size of the buffer
130    
131         IF (datasz_max(fileid, varid) <= 0) THEN         IF (datasz_max(fileid, varid) <= 0) THEN
132            largebuf = .FALSE.            largebuf = .FALSE.
# Line 134  CONTAINS Line 136  CONTAINS
136               ENDIF               ENDIF
137            ENDDO            ENDDO
138            IF (largebuf) THEN            IF (largebuf) THEN
139               datasz_max(fileid, varid) = &               datasz_max(fileid, varid) = scsize(fileid, varid, 1) &
140                    &        scsize(fileid, varid, 1) &                    * scsize(fileid, varid, 2) *scsize(fileid, varid, 3)
                   &       *scsize(fileid, varid, 2) &  
                   &       *scsize(fileid, varid, 3)  
141            ELSE            ELSE
142               datasz_max(fileid, varid) = &               datasz_max(fileid, varid) = datasz_in(fileid, varid, 1)
                   &        datasz_in(fileid, varid, 1)  
143            ENDIF            ENDIF
144         ENDIF         ENDIF
145    
146         IF (.NOT.ALLOCATED(buff_tmp)) THEN         IF (.NOT.ALLOCATED(buff_tmp)) THEN
147            ALLOCATE (buff_tmp(datasz_max(fileid, varid)))            ALLOCATE(buff_tmp(datasz_max(fileid, varid)))
148            buff_tmp_sz = datasz_max(fileid, varid)            buff_tmp_sz = datasz_max(fileid, varid)
149         ELSE IF (datasz_max(fileid, varid) > buff_tmp_sz) THEN         ELSE IF (datasz_max(fileid, varid) > buff_tmp_sz) THEN
150            DEALLOCATE (buff_tmp)            DEALLOCATE(buff_tmp)
151            ALLOCATE (buff_tmp(datasz_max(fileid, varid)))            ALLOCATE(buff_tmp(datasz_max(fileid, varid)))
152            buff_tmp_sz = datasz_max(fileid, varid)            buff_tmp_sz = datasz_max(fileid, varid)
153         ENDIF         ENDIF
154    
155         !- We have to do the first operation anyway.         ! We have to do the first operation anyway. Thus we do it here
156         !- Thus we do it here and change the ranke         ! and change the ranke of the data at the same time. This
157         !- of the data at the same time. This should speed up things.         ! should speed up things.
158    
159         nbpt_in = datasz_in(fileid, varid, 1)         nbpt_in = datasz_in(fileid, varid, 1)
160         nbpt_out = datasz_max(fileid, varid)         nbpt_out = datasz_max(fileid, varid)
161         CALL mathop (sopps(fileid, varid, 1), nbpt_in, pdata, &         CALL mathop(sopps(fileid, varid, 1), nbpt_in, pdata, missing_val, &
162              &               missing_val, nbindex, nindex, &              nbindex, nindex, scal(fileid, varid, 1), nbpt_out, buff_tmp)
163              &               scal(fileid, varid, 1), nbpt_out, buff_tmp)         CALL histwrite_real(datasz_max, fileid, varid, itau, nbpt_out, &
164         CALL histwrite_real (fileid, varid, itau, nbpt_out, &              buff_tmp, nbindex, nindex, do_oper, do_write)
             &            buff_tmp, nbindex, nindex, do_oper, do_write)  
165      ENDIF      ENDIF
166    
167      ! 6.0 Manage time steps      ! 6.0 Manage time steps
168    
169      IF ((TRIM(tmp_opp) /= "once").AND.(TRIM(tmp_opp) /= "never")) THEN      IF ((TRIM(tmp_opp) /= "once") .AND. (TRIM(tmp_opp) /= "never")) THEN
170         last_opp_chk(fileid, varid) = itau         last_opp_chk(fileid, varid) = itau
171         last_wrt_chk(fileid, varid) = itau         last_wrt_chk(fileid, varid) = itau
172      ELSE      ELSE
# Line 182  CONTAINS Line 180  CONTAINS
180    
181    SUBROUTINE histwrite_r2d (fileid, varname, itau, pdata)    SUBROUTINE histwrite_r2d (fileid, varname, itau, pdata)
182    
     use calendar, only: isittime  
     USE errioipsl, ONLY: histerr  
     USE mathop_m, ONLY: mathop  
     USE histcom_var, ONLY: datasz_in, datasz_max, date0, deltat, &  
          freq_opp, freq_wrt, fuchnbout, last_opp, last_opp_chk, last_wrt, &  
          last_wrt_chk, missing_val, nbopp, nb_files, scal, scsize, sopps, &  
          topp  
     use histvar_seq_m, only: histvar_seq  
     use histwrite_real_m, only: histwrite_real  
   
183      INTEGER, INTENT(IN):: fileid, itau      INTEGER, INTENT(IN):: fileid, itau
184      REAL, INTENT(IN):: pdata(:, :)      REAL, INTENT(IN):: pdata(:, :)
185      CHARACTER(LEN=*), INTENT(IN):: varname      CHARACTER(LEN=*), INTENT(IN):: varname
# Line 212  CONTAINS Line 200  CONTAINS
200    
201      IF ( (fileid < 1).OR.(fileid > nb_files) ) THEN      IF ( (fileid < 1).OR.(fileid > nb_files) ) THEN
202         CALL histerr (3, "histwrite", &         CALL histerr (3, "histwrite", &
203              &    'Illegal file ID in the histwrite of variable', varname, ' ')              'Illegal file ID in the histwrite of variable', varname, ' ')
204      ENDIF      ENDIF
205    
206      ! 1.1 Find the id of the variable to be written and the real time      ! 1.1 Find the id of the variable to be written and the real time
# Line 230  CONTAINS Line 218  CONTAINS
218    
219      ! 3.0 We check if we need to do an operation      ! 3.0 We check if we need to do an operation
220    
221      IF (last_opp_chk(fileid, varid) == itau) THEN      IF (last_opp_chk(fileid, varid) == itau) CALL histerr (3, "histwrite", &
222         CALL histerr (3, "histwrite", &           'This variable as already been analysed at the present', &
223              &    'This variable as already been analysed at the present', &           'time step', ' ')
             &    'time step', ' ')  
     ENDIF  
224    
225      CALL isittime &      CALL isittime(itau, date0(fileid), deltat(fileid), &
226           &  (itau, date0(fileid), deltat(fileid), freq_opp(fileid, varid), &           freq_opp(fileid, varid), last_opp(fileid, varid), &
227           &   last_opp(fileid, varid), last_opp_chk(fileid, varid), do_oper)           last_opp_chk(fileid, varid), do_oper)
228    
229      ! 4.0 We check if we need to write the data      ! 4.0 We check if we need to write the data
230    
231      IF (last_wrt_chk(fileid, varid) == itau) THEN      IF (last_wrt_chk(fileid, varid) == itau) THEN
232         CALL histerr (3, "histwrite", &         CALL histerr (3, "histwrite", &
233              &    'This variable as already been written for the present', &              'This variable as already been written for the present', &
234              &    'time step', ' ')              'time step', ' ')
235      ENDIF      ENDIF
236    
237      CALL isittime &      CALL isittime &
238           &  (itau, date0(fileid), deltat(fileid), freq_wrt(fileid, varid), &           (itau, date0(fileid), deltat(fileid), freq_wrt(fileid, varid), &
239           &   last_wrt(fileid, varid), last_wrt_chk(fileid, varid), do_write)           last_wrt(fileid, varid), last_wrt_chk(fileid, varid), do_write)
240    
241      ! 5.0 histwrite called      ! 5.0 histwrite called
242    
# Line 279  CONTAINS Line 265  CONTAINS
265            ENDDO            ENDDO
266            IF (largebuf) THEN            IF (largebuf) THEN
267               datasz_max(fileid, varid) = &               datasz_max(fileid, varid) = &
268                    &        scsize(fileid, varid, 1) &                    scsize(fileid, varid, 1) &
269                    &       *scsize(fileid, varid, 2) &                    *scsize(fileid, varid, 2) &
270                    &       *scsize(fileid, varid, 3)                    *scsize(fileid, varid, 3)
271            ELSE            ELSE
272               datasz_max(fileid, varid) = &               datasz_max(fileid, varid) = &
273                    &        datasz_in(fileid, varid, 1) &                    datasz_in(fileid, varid, 1) &
274                    &       *datasz_in(fileid, varid, 2)                    *datasz_in(fileid, varid, 2)
275            ENDIF            ENDIF
276         ENDIF         ENDIF
277    
# Line 305  CONTAINS Line 291  CONTAINS
291         nbpt_in(1:2) = datasz_in(fileid, varid, 1:2)         nbpt_in(1:2) = datasz_in(fileid, varid, 1:2)
292         nbpt_out = datasz_max(fileid, varid)         nbpt_out = datasz_max(fileid, varid)
293         CALL mathop (sopps(fileid, varid, 1), nbpt_in, pdata, &         CALL mathop (sopps(fileid, varid, 1), nbpt_in, pdata, &
294              &               missing_val, nbindex, nindex, &              missing_val, nbindex, nindex, &
295              &               scal(fileid, varid, 1), nbpt_out, buff_tmp)              scal(fileid, varid, 1), nbpt_out, buff_tmp)
296         CALL histwrite_real (fileid, varid, itau, nbpt_out, &         CALL histwrite_real (datasz_max, fileid, varid, itau, nbpt_out, &
297              &            buff_tmp, nbindex, nindex, do_oper, do_write)              buff_tmp, nbindex, nindex, do_oper, do_write)
298      ENDIF      ENDIF
299    
300      ! 6.0 Manage time steps      ! 6.0 Manage time steps
# Line 327  CONTAINS Line 313  CONTAINS
313    
314    SUBROUTINE histwrite_r3d (fileid, varname, itau, pdata)    SUBROUTINE histwrite_r3d (fileid, varname, itau, pdata)
315    
     use calendar, only: isittime  
     USE errioipsl, ONLY: histerr  
     USE mathop_m, ONLY: mathop  
     USE histcom_var, ONLY: datasz_in, datasz_max, date0, deltat, &  
          freq_opp, freq_wrt, fuchnbout, last_opp, last_opp_chk, last_wrt, &  
          last_wrt_chk, missing_val, nbopp, nb_files, scal, scsize, sopps, &  
          topp  
     use histvar_seq_m, only: histvar_seq  
     use histwrite_real_m, only: histwrite_real  
   
316      INTEGER, INTENT(IN):: fileid, itau      INTEGER, INTENT(IN):: fileid, itau
317      REAL, DIMENSION(:, :, :), INTENT(IN):: pdata      REAL, DIMENSION(:, :, :), INTENT(IN):: pdata
318      CHARACTER(LEN=*), INTENT(IN):: varname      CHARACTER(LEN=*), INTENT(IN):: varname
# Line 358  CONTAINS Line 334  CONTAINS
334    
335      IF ( (fileid < 1).OR.(fileid > nb_files) ) THEN      IF ( (fileid < 1).OR.(fileid > nb_files) ) THEN
336         CALL histerr (3, "histwrite", &         CALL histerr (3, "histwrite", &
337              &    'Illegal file ID in the histwrite of variable', varname, ' ')              'Illegal file ID in the histwrite of variable', varname, ' ')
338      ENDIF      ENDIF
339    
340      ! 1.1 Find the id of the variable to be written and the real time      ! 1.1 Find the id of the variable to be written and the real time
# Line 378  CONTAINS Line 354  CONTAINS
354    
355      IF (last_opp_chk(fileid, varid) == itau) THEN      IF (last_opp_chk(fileid, varid) == itau) THEN
356         CALL histerr (3, "histwrite", &         CALL histerr (3, "histwrite", &
357              &    'This variable as already been analysed at the present', &              'This variable as already been analysed at the present', &
358              &    'time step', ' ')              'time step', ' ')
359      ENDIF      ENDIF
360    
361      CALL isittime &      CALL isittime &
362           &  (itau, date0(fileid), deltat(fileid), freq_opp(fileid, varid), &           (itau, date0(fileid), deltat(fileid), freq_opp(fileid, varid), &
363           &   last_opp(fileid, varid), last_opp_chk(fileid, varid), do_oper)           last_opp(fileid, varid), last_opp_chk(fileid, varid), do_oper)
364    
365      ! 4.0 We check if we need to write the data      ! 4.0 We check if we need to write the data
366    
367      IF (last_wrt_chk(fileid, varid) == itau) THEN      IF (last_wrt_chk(fileid, varid) == itau) THEN
368         CALL histerr (3, "histwrite", &         CALL histerr (3, "histwrite", &
369              &    'This variable as already been written for the present', &              'This variable as already been written for the present', &
370              &    'time step', ' ')              'time step', ' ')
371      ENDIF      ENDIF
372    
373      CALL isittime &      CALL isittime &
374           &  (itau, date0(fileid), deltat(fileid), freq_wrt(fileid, varid), &           (itau, date0(fileid), deltat(fileid), freq_wrt(fileid, varid), &
375           &   last_wrt(fileid, varid), last_wrt_chk(fileid, varid), do_write)           last_wrt(fileid, varid), last_wrt_chk(fileid, varid), do_write)
376    
377      ! 5.0 histwrite called      ! 5.0 histwrite called
378    
# Line 425  CONTAINS Line 401  CONTAINS
401            ENDDO            ENDDO
402            IF (largebuf) THEN            IF (largebuf) THEN
403               datasz_max(fileid, varid) = &               datasz_max(fileid, varid) = &
404                    &        scsize(fileid, varid, 1) &                    scsize(fileid, varid, 1) &
405                    &       *scsize(fileid, varid, 2) &                    *scsize(fileid, varid, 2) &
406                    &       *scsize(fileid, varid, 3)                    *scsize(fileid, varid, 3)
407            ELSE            ELSE
408               datasz_max(fileid, varid) = &               datasz_max(fileid, varid) = &
409                    &        datasz_in(fileid, varid, 1) &                    datasz_in(fileid, varid, 1) &
410                    &       *datasz_in(fileid, varid, 2) &                    *datasz_in(fileid, varid, 2) &
411                    &       *datasz_in(fileid, varid, 3)                    *datasz_in(fileid, varid, 3)
412            ENDIF            ENDIF
413         ENDIF         ENDIF
414    
# Line 452  CONTAINS Line 428  CONTAINS
428         nbpt_in(1:3) = datasz_in(fileid, varid, 1:3)         nbpt_in(1:3) = datasz_in(fileid, varid, 1:3)
429         nbpt_out = datasz_max(fileid, varid)         nbpt_out = datasz_max(fileid, varid)
430         CALL mathop (sopps(fileid, varid, 1), nbpt_in, pdata, &         CALL mathop (sopps(fileid, varid, 1), nbpt_in, pdata, &
431              &               missing_val, nbindex, nindex, &              missing_val, nbindex, nindex, &
432              &               scal(fileid, varid, 1), nbpt_out, buff_tmp)              scal(fileid, varid, 1), nbpt_out, buff_tmp)
433         CALL histwrite_real (fileid, varid, itau, nbpt_out, &         CALL histwrite_real(datasz_max, fileid, varid, itau, nbpt_out, &
434              &            buff_tmp, nbindex, nindex, do_oper, do_write)              buff_tmp, nbindex, nindex, do_oper, do_write)
435      ENDIF      ENDIF
436    
437      ! 6.0 Manage time steps      ! 6.0 Manage time steps

Legend:
Removed from v.62  
changed lines
  Added in v.178

  ViewVC Help
Powered by ViewVC 1.1.21