Subversion Repositories lagranto.icon

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 michaesp 1
c     **************************************************************************
2
c     * This library provides subroutines related to time and file name        *
3
c     * handling                                                               *
4
c     *                                                                        *
5
c     **************************************************************************
6
 
7
c     ---------------------------------------------------------------------------
8
c     Concatenate a date string
9
c     ---------------------------------------------------------------------------
10
 
11
      subroutine datestring(datestr,yyyy,mm,dd,hh)
12
 
13
c     Declaration of subroutine parameters
14
      integer yyyy,mm,dd,hh
15
      character*20 datestr
16
 
17
c     Auxiliary parameters
18
      integer f1,f2,i0
19
      integer yy,ce
20
 
21
      i0=ichar('0')
22
      datestr=''
23
 
24
      yy=mod(yyyy,100)
25
      ce=int(yyyy/100)
26
 
27
      if ((ce.ne.19).and.(ce.ne.20)) then
28
         print*,'Invalid year... Stop'
29
         stop
30
      endif
31
 
32
      if (yy.ge.0) then
33
         f1=yy/10
34
         f2=mod(yy,10)
35
         if (ce.eq.19) then
36
            datestr=trim(datestr)//'19'//char(f1+i0)//char(f2+i0)
37
         else if (ce.eq.20) then
38
            datestr=trim(datestr)//'20'//char(f1+i0)//char(f2+i0)
39
         endif
40
      endif
41
      if (mm.gt.0) then
42
         f1=mm/10
43
         f2=mod(mm,10)
44
         datestr=trim(datestr)//char(f1+i0)//char(f2+i0)
45
      endif
46
 
47
      if (dd.gt.0) then
48
         f1=dd/10
49
         f2=mod(dd,10)
50
         datestr=trim(datestr)//char(f1+i0)//char(f2+i0)
51
      endif
52
 
53
      if (hh.ge.0) then
54
         f1=hh/10
55
         f2=mod(hh,10)
56
         datestr=trim(datestr)//'_'//char(f1+i0)//char(f2+i0)
57
      endif
58
 
59
      return
60
      end
61
 
62
 
63
c     ---------------------------------------------------------------------------
64
c     Calculates the new date when diff (in hours) is added to date1.
65
c     ---------------------------------------------------------------------------
66
 
67
      subroutine newdate(date1,diff,date2)
68
C
69
C     date1	int	input	array contains a date in the form
70
C				year,month,day,hour,step
71
C     diff	real	input	timestep in hours to go from date1
72
C     date2	int	output	array contains new date in the same form
73
 
74
      integer   date1(5),date2(5)
75
      integer   idays(12)       ! array containing the days of the monthes
76
      real	diff
77
      logical	yearchange
78
 
79
      data idays/31,28,31,30,31,30,31,31,30,31,30,31/
80
 
81
      yearchange=.false.
82
 
83
      if ((mod(date1(1),4).eq.0).and.(date1(2).le.2)) idays(2)=29
84
 
85
      date2(1)=date1(1)
86
      date2(2)=date1(2)
87
      date2(3)=date1(3)
88
      date2(4)=date1(4)
89
      date2(5)=0
90
      date2(4)=date1(4)+int(diff)+date1(5)
91
 
92
      if (date2(4).ge.24) then
93
        date2(3)=date2(3)+int(date2(4)/24)
94
        date2(4)=date2(4)-int(date2(4)/24)*24
95
      endif
96
      if (date2(4).lt.0) then
97
        if (mod(date2(4),24).eq.0) then
98
          date2(3)=date2(3)-int(abs(date2(4))/24)
99
          date2(4)=date2(4)+int(abs(date2(4))/24)*24
100
        else
101
          date2(3)=date2(3)-(1+int(abs(date2(4))/24))
102
          date2(4)=date2(4)+(1+int(abs(date2(4))/24))*24
103
        endif
104
      endif
105
 
106
  100 if (date2(3).gt.idays(date2(2))) then
107
        if ((date2(2).eq.2).and.(mod(date2(1),4).eq.0)) idays(2)=29
108
        date2(3)=date2(3)-idays(date2(2))
109
        if (idays(2).eq.29) idays(2)=28
110
        date2(2)=date2(2)+1
111
        if (date2(2).gt.12) then
112
*         date2(1)=date2(1)+int(date2(2)/12)
113
*         date2(2)=date2(2)-int(date2(2)/12)*12
114
          date2(1)=date2(1)+1
115
          date2(2)=date2(2)-12
116
        endif
117
        if (date2(2).lt.1) then
118
          date2(1)=date2(1)-(1+int(abs(date2(2)/12)))
119
          date2(2)=date2(2)+(1+int(abs(date2(2)/12)))*12
120
        endif
121
        goto 100
122
      endif     
123
  200 if (date2(3).lt.1) then
124
        date2(2)=date2(2)-1
125
        if (date2(2).gt.12) then
126
          date2(1)=date2(1)+int(date2(2)/12)
127
          date2(2)=date2(2)-int(date2(2)/12)*12
128
        endif
129
        if (date2(2).lt.1) then
130
          date2(1)=date2(1)-(1+int(abs(date2(2)/12)))
131
          date2(2)=date2(2)+(1+int(abs(date2(2)/12)))*12
132
        endif
133
        if ((date2(2).eq.2).and.(mod(date2(1),4).eq.0)) idays(2)=29
134
        date2(3)=date2(3)+idays(date2(2))
135
        if (idays(2).eq.29) idays(2)=28
136
        goto 200
137
      endif
138
 
139
      if (date2(2).gt.12) then
140
        date2(1)=date2(1)+int(date2(2)/12)
141
        date2(2)=date2(2)-int(date2(2)/12)*12
142
      endif
143
      if (date2(2).lt.1) then
144
        date2(1)=date2(1)-(1+int(abs(date2(2)/12)))
145
        date2(2)=date2(2)+(1+int(abs(date2(2)/12)))*12
146
      endif
147
 
148
      if (date2(1).lt.1000) then
149
      if (date2(1).ge.100) date2(1)=date2(1)-100
150
      endif
151
 
152
      return
153
      end
154
 
155
c     ---------------------------------------------------------------------------
156
c     Convert <hh.mm> -> <frac> and <frac> -> <hhmm>
157
c     ---------------------------------------------------------------------------
158
 
159
      subroutine hhmm2frac (hhmm,frac)
160
 
161
      real hhmm
162
      real frac
163
 
164
      frac=real(int(hhmm))+
165
     >     100.*(hhmm-real(int(hhmm)))/60.
166
 
167
      end
168
 
169
 
170
      subroutine frac2hhmm (frac,hhmm)
171
 
172
      real hhmm
173
      real frac
174
 
175
      real hh,mm
176
 
177
      hh =  real(int(frac))
178
      mm =  60. * (frac-real(int(frac)))
179
 
180
      hhmm = hh + 0.01 * mm
181
 
182
      end
183
 
184
c     ---------------------------------------------------------------------------
185
c     Time difference between two dates
186
c     ---------------------------------------------------------------------------
187
 
188
      subroutine timediff(date1,date2,diff)
189
 
190
C     New version with hour and minutes! (for hour and step [in hours]
191
C     use the routine oldtimediff!)
192
C
193
C     Calculates the time difference in hours (and minutes) for the two
194
C     dates specified by the two arrays date1 and date2.
195
C     They are expected to contain the following date information:
196
C     year      month   day     hour    minute.
197
C
198
C     date1     array specifying the first date
199
C     date2     array specifying the second date
200
C     diff      time differenc between date1 and date2 in hours
201
C
202
 
203
      integer   date1(5),date2(5)
204
      integer   idays(12)       ! array containing the days of the monthes
205
      real      diff
206
      integer   ixday,imdiff,ihdiff,iddiff,j
207
      integer   yy,yy1,yy2
208
 
209
      idays(1)=31
210
      idays(2)=28
211
      idays(3)=31
212
      idays(4)=30
213
      idays(5)=31
214
      idays(6)=30
215
      idays(7)=31
216
      idays(8)=31
217
      idays(9)=30
218
      idays(10)=31
219
      idays(11)=30
220
      idays(12)=31
221
 
222
C     Check format of year (YYYY or YY - in case of YY assume 19YY)
223
 
224
      if (date1(1).lt.100) date1(1)=1900+date1(1)
225
      if (date2(1).lt.100) date2(1)=1900+date2(1)
226
 
227
C     Determine if the period between date1 and date2 contains a Feb.29
228
 
229
      ixday=0   ! extra day flag
230
 
231
      yy1=min(date1(1),date2(1))
232
      yy2=max(date1(1),date2(1))
233
      if (yy1.eq.yy2) then
234
        if (mod(yy1,4).eq.0) then
235
          idays(2)=29
236
        endif
237
      else
238
        if (mod(yy1,4).eq.0) then
239
          if (((yy1.eq.date1(1)).and.(date1(2).le.2)).or.
240
     >        ((yy1.eq.date2(1)).and.(date2(2).le.2))) then
241
            ixday=ixday+1
242
          endif
243
        endif
244
        if (mod(yy2,4).eq.0) then
245
          if (((yy2.eq.date1(1)).and.(date1(2).gt.2)).or.
246
     >        ((yy2.eq.date2(1)).and.(date2(2).gt.2))) then
247
            ixday=ixday+1
248
          endif
249
        endif
250
        if (yy2-yy1.gt.1) then
251
          do yy=yy1+1,yy2-1
252
            if (mod(yy,4).eq.0) then
253
              ixday=ixday+1
254
            endif
255
          enddo
256
        endif
257
      endif
258
 
259
      ihdiff=0  ! diff. in hours between date1/date2
260
      iddiff=0  ! diff. in days  between date1/date2
261
 
262
      if (date1(1).gt.date2(1)) then            ! compare years
263
        do j=date2(1),date1(1)-1
264
          iddiff=iddiff+365
265
        enddo
266
        iddiff=iddiff+ixday
267
      else if (date1(1).lt.date2(1)) then
268
        do j=date1(1),date2(1)-1
269
          iddiff=iddiff-365
270
        enddo
271
        iddiff=iddiff-ixday
272
      endif
273
 
274
      if (date1(2).gt.date2(2)) then            ! compare monthes
275
        do j=date2(2),date1(2)-1
276
          iddiff=iddiff+idays(j)
277
        enddo
278
      else if (date1(2).lt.date2(2)) then
279
        do j=date1(2),date2(2)-1
280
          iddiff=iddiff-idays(j)
281
        enddo
282
      endif
283
 
284
      iddiff=iddiff+date1(3)-date2(3)
285
      ihdiff=iddiff*24+date1(4)-date2(4)
286
      imdiff=ihdiff*60+date1(5)-date2(5)
287
 
288
      ihdiff=imdiff/60
289
      imdiff=mod(imdiff,60)
290
 
291
      diff=real(ihdiff)+real(imdiff)/100.
292
 
293
      return
294
      end
295
 
296
 
297
c     ---------------------------------------------------------------------------
298
c     Time check based on date strings from input files
299
c     ---------------------------------------------------------------------------
300
 
301
      subroutine do_timecheck (datestr,numdat,timeinc,fbflag,refdate)
302
 
303
c     Perform a simple timecheck based on the names of the input files;
304
c     the following tests have to be passed:
305
c        (1) the order of <datestr> must match with <fbflag>
306
c        (2) the step between <datestr> must match with <timeinc>
307
c        (3) <refdate> must match with <datestr(1)>
308
 
309
	  implicit none
310
 
311
c	  Declaration of subroutine parameters
312
      integer      numdat
313
      character*13 datestr(numdat)
314
      real         timeinc
315
      integer      fbflag
316
      integer      refdate(6)
317
 
318
c	  Numerical epsilon
319
	  real        eps
320
	  parameter   (eps=0.0001)
321
 
322
 
323
c     Auxilary variables
324
      integer      yyyy(numdat)
325
      integer      mm  (numdat)
326
      integer      dd  (numdat)
327
      integer      hh  (numdat)
328
      integer      mi  (numdat)
329
      integer      i
330
      character*13 str
331
      integer      date1(5),date2(5)
332
      real         diff,ok
333
      integer      hires
334
 
335
c     Get date mode (including or without minutes)
336
      if ( len_trim(datestr(1)).eq.11 ) then
337
        hires = 0
338
      elseif ( len_trim(datestr(1)).eq.13 )   then
339
        hires = 1
340
      else
341
        hires = -1
342
      endif
343
      do i=2,numdat
344
         if ((len_trim(datestr(i)).eq.11).and.(hires.eq.1)) hires = -1
345
         if ((len_trim(datestr(i)).eq.13).and.(hires.eq.0)) hires = -1
346
      enddo
347
      if ( hires.eq.-1 ) then
348
         print*,' ERROR: string format is wrong:'
349
         print*,'     either {YYYYMMDD_HH} or {YYYYMMDD_HHMM}'
350
         stop
351
      endif
352
 
353
c	  Convert date strings into integers
354
      do i=1,numdat
355
        if (hires.eq.0) then
356
      	   read(datestr(i),'(i4,i2,i2,1x,i2)')
357
     >          	yyyy(i),mm(i),dd(i),hh(i)
358
           mi(i) = 0
359
        else
360
           read(datestr(i),'(i4,i2,i2,1x,i2,i2)')
361
     >              yyyy(i),mm(i),dd(i),hh(i),mi(i)
362
        endif
363
 
364
      enddo
365
 
366
 
367
c	  Check time increment and consistence with time increment
368
      do i=1,numdat-1
369
 
370
          date1(1) = yyyy(i)
371
          date1(2) = mm  (i)
372
          date1(3) = dd  (i)
373
          date1(4) = hh  (i)
374
          date1(5) = mi  (i)
375
          date2(1) = yyyy(i+1)
376
          date2(2) = mm  (i+1)
377
          date2(3) = dd  (i+1)
378
          date2(4) = hh  (i+1)
379
          date2(5) = mi  (i+1)
380
 
381
          call timediff (date2,date1,diff)
382
 
383
          if (abs(diff).lt.(1.-eps)) diff = 100. * diff/60
384
 
385
          if (fbflag.eq.1) then
386
          	ok = diff - timeinc
387
          elseif (fbflag.eq.-1) then
388
          	ok = -diff - timeinc
389
          endif
390
 
391
	      if ( abs(ok).gt.eps ) then
392
	      	print*,' ERROR: timecheck failed !!!! Stop'
393
	      	print*,'   date 1  : ',date1
394
	      	print*,'   date 2  : ',date2
395
	      	print*,'   diff,timeinc : ',diff,timeinc
396
	        stop
397
	      endif
398
 
399
      enddo
400
 
401
c	  Check the reference date
402
      if ( ( refdate(1).ne.yyyy(1) ).or.
403
     >     ( refdate(2).ne.mm  (1) ).or.
404
     >     ( refdate(3).ne.dd  (1) ).or.
405
     >     ( refdate(4).ne.hh  (1) ) )
406
     >then
407
         print*,' ERROR: timecheck failed (refdate) !!!! Stop'
408
         print*,'ref : ',refdate
409
         print*,'P   : ',yyyy(1),mm(1),dd(1),hh(1),mi(1)
410
         stop
411
      endif
412
 
413
      end
414
 
415
 
416
 
417
 
418
 
419
 
420