-
Notifications
You must be signed in to change notification settings - Fork 23
/
mod_za_mp1.h
1522 lines (1504 loc) · 40.5 KB
/
mod_za_mp1.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
!
!-----------------------------------------------------------------------
!
! machine dependent I/O routines.
! message passing version, with all I/O from first processor.
! contained in module mod_za.
!
! author: Alan J. Wallcraft, NRL.
!
!-----------------------------------------------------------------------
!
subroutine zagetc(cline,ios, iunit)
implicit none
!
character*80, intent(out) :: cline
integer, intent(out) :: ios
integer, intent(in) :: iunit
!
!**********
!*
! 1) machine specific routine for reading one text line from a file.
!
! 2) The read is performed on the first processor only.
!*
!**********
!
integer iline,ibuf
common/czgetc/ iline(81,0:1),ibuf
save /czgetc/
!
integer i
!
! --- I/O from first processor only
!
ibuf = mod(ibuf+1,2)
!
if (mnproc.eq.1) then
read(iunit,'(a)',iostat=ios) cline
do i= 1,80
iline(i,ibuf) = ichar(cline(i:i))
enddo
iline(81,ibuf) = ios
endif
!
! broadcast to all other processors
!
call xcgetc(iline(:,ibuf))
do i= 1,80
cline(i:i) = char(iline(i,ibuf))
enddo
ios = iline(81,ibuf) ! iostat value
return
end subroutine zagetc
subroutine zaiopn(cstat, iaunit)
implicit none
!
integer, intent(in) :: iaunit
character*(*), intent(in) :: cstat
!
integer iarec
common/czioxx/ iarec(999)
save /czioxx/
!
!**********
!*
! 1) machine specific routine for opening a file for array i/o.
!
! must call zaiost before first call to zaiopn.
! see also 'zaiope' and 'zaiopf'.
!
! 2) the filename is taken from the environment variable FORxxxA,
! where xxx = iaunit, with default fort.xxxa.
!
! array i/o is fortran real*4 direct access i/o to unit iaunit+uaoff.
!
! 3) iaunit+uaoff is the i/o unit used for arrays. array i/o might not
! use fortran i/o units, but, for compatability, assume that
! iaunit+uaoff refers to a fortran i/o unit anyway.
! cstat indicates the file type, it can be 'scratch', 'old', or
! 'new'.
! all i/o to iaunit must be performed by zaiord and zaiowr.
! the file should be closed using zaiocl.
!*
!**********
!
! --- spval = data void marker, 2^100 or about 1.2676506e30
! --- n2drec = size of output 2-d array, multiple of 4096
real*4 spval
parameter (spval=2.0**100)
!
integer ios,nrecl
character cfile*256,cenv*7
character cact*9
#if defined(TIMER)
!
call xctmr0(16)
#endif
!
! test file state.
!
if (iarec(iaunit).ne.-1) then
write(lp,9000) iaunit
call xcstop('(zaiopn)')
stop '(zaiopn)'
endif
!
iarec(iaunit) = 0
!
! --- I/O from first processor only
!
if (mnproc.eq.1) then
!
! write(lp,*) 'zaiopn - iaunit = ',iaunit
! call flush(lp)
!
! get filename.
!
write(cenv,"('FOR',i3.3,'A')") iaunit
cfile = ' '
call getenv(cenv,cfile)
if (cfile.eq.' ') then
write(cfile,"('fort.',i3.3,'a')") iaunit
endif
!
! dummy I/O?
!
if (cfile.eq.'/dev/null' .or. &
cfile.eq.'/dev/zero' ) then
iarec(iaunit) = -99
call xcsync(no_flush)
#if defined(TIMER)
call xctmr1(16)
#endif
return
endif
!
! open file.
!
inquire(iolength=nrecl) w
!
if (cstat.eq.'OLD' .or. &
cstat.eq.'old' ) then
cact = 'READ'
elseif (cstat.eq.'NEW' .or. &
cstat.eq.'new' ) then
cact = 'WRITE'
else
cact = 'READWRITE'
endif
#if defined(X1)
call asnunit(iaunit+uaoff,'-F event,cachea:4096:4:2 -B on',ios)
if (ios.ne.0) then
write(lp,9050) iaunit
write(lp,*) 'ios = ',ios
call flush(lp)
call xchalt('(zaiopn)')
stop '(zaiopn)'
endif !ios
#endif
#if defined(YMP)
if (mod(nrecl,16384).eq.0 .and. nrecl.gt.16384*4) then
call asnunit(iaunit+uaoff,'-F syscall -N ieee',ios)
else
call asnunit(iaunit+uaoff,'-F cachea:8:16:2 -N ieee',ios)
endif
if (ios.ne.0) then
write(lp,9050) iaunit
write(lp,*) 'ios = ',ios
call flush(lp)
call xchalt('(zaiopn)')
stop '(zaiopn)'
endif !ios
#endif
if (cstat.eq.'scratch' .or. &
cstat.eq.'SCRATCH' ) then
open(unit=iaunit+uaoff, &
form='unformatted', status='scratch', &
access='direct', recl=nrecl, action=cact, iostat=ios)
else
open(unit=iaunit+uaoff, file=cfile, &
form='unformatted', status=cstat, &
access='direct', recl=nrecl, action=cact, iostat=ios)
endif
if (ios.ne.0) then
write(lp,9100) iaunit
write(lp,*) 'ios = ',ios
call flush(lp)
if (cstat.eq.'scratch' .or. &
cstat.eq.'SCRATCH' ) then
write(6,'(a)') "status='SCRATCH'"
else
write(6,'(3a)') 'FILENAME="',trim(cfile),'"'
endif
call flush(lp)
call xchalt('(zaiopn)')
stop '(zaiopn)'
endif !ios
!
endif ! I/O from first processor only
call xcsync(no_flush)
#if defined(TIMER)
!
call xctmr1(16)
#endif
return
!
9000 format(/ /10x,'error in zaiopn - array I/O unit ', &
i3,' is not marked as available.'/ /)
#if defined(YMP) || defined(X1)
9050 format(/ /10x,'error in zaiopn - can''t asnunit ',i3, &
', for array I/O.'/ /)
#endif
9100 format(/ /10x,'error in zaiopn - can''t open unit ',i3, &
', for array I/O.'/ /)
end subroutine zaiopn
subroutine zaiope(cenv,cstat, iaunit)
implicit none
!
integer, intent(in) :: iaunit
character*(*), intent(in) :: cenv,cstat
!
integer iarec
common/czioxx/ iarec(999)
save /czioxx/
!
!**********
!*
! 1) machine specific routine for opening a file for array i/o.
!
! must call zaiost before first call to zaiope.
! see also 'zaiopn' and 'zaiopf'.
!
! 2) the filename is taken from environment variable 'cenv'.
!
! array i/o is fortran real*4 direct access i/o to unit iaunit+uaoff.
!
! 3) iaunit+uaoff is the i/o unit used for arrays. array i/o might not
! use fortran i/o units, but, for compatability, assume that
! iaunit+uaoff refers to a fortran i/o unit anyway.
! cstat indicates the file type, it can be 'scratch', 'old', or
! 'new'.
! all i/o to iaunit must be performed by zaiord and zaiowr.
! arrays passed to these routines must conform to 'h'.
! the file should be closed using zaiocl.
!*
!**********
!
! --- spval = data void marker, 2^100 or about 1.2676506e30
! --- n2drec = size of output 2-d array, multiple of 4096
real*4 spval
parameter (spval=2.0**100)
!
integer ios,nrecl
character cfile*256
character cact*9
#if defined(TIMER)
!
call xctmr0(16)
#endif
!
! test file state.
!
if (iarec(iaunit).ne.-1) then
write(lp,9000) iaunit
call xcstop('(zaiope)')
stop '(zaiope)'
endif
!
iarec(iaunit) = 0
!
! --- I/O from first processor only
!
if (mnproc.eq.1) then
!
! write(lp,*) 'zaiope - iaunit = ',iaunit
! call flush(lp)
!
! get filename.
!
cfile = ' '
call getenv(cenv,cfile)
if (cfile.eq.' ') then
write(lp,9300) trim(cenv)
write(lp,*) 'iaunit = ',iaunit
call flush(lp)
call xchalt('(zaiope)')
stop '(zaiope)'
endif
!
! dummy I/O?
!
if (cfile.eq.'/dev/null' .or. &
cfile.eq.'/dev/zero' ) then
iarec(iaunit) = -99
call xcsync(no_flush)
#if defined(TIMER)
call xctmr1(16)
#endif
return
endif
!
! open file.
!
inquire(iolength=nrecl) w
!
if (cstat.eq.'OLD' .or. &
cstat.eq.'old' ) then
cact = 'READ'
elseif (cstat.eq.'NEW' .or. &
cstat.eq.'new' ) then
cact = 'WRITE'
else
cact = 'READWRITE'
endif
!
#if defined(X1)
call asnunit(iaunit+uaoff,'-F event,cachea:4096:4:2 -B on',ios)
if (ios.ne.0) then
write(lp,9050) iaunit,trim(cfile)
write(lp,*) 'ios = ',ios
write(lp,*) 'cenv = ',trim(cenv)
call flush(lp)
call xchalt('(zaiope)')
stop '(zaiope)'
endif !ios
#endif
#if defined(YMP)
if (mod(nrecl,16384).eq.0 .and. nrecl.gt.16384*4) then
call asnunit(iaunit+uaoff,'-F syscall -N ieee',ios)
else
call asnunit(iaunit+uaoff,'-F cachea:8:16:2 -N ieee',ios)
endif
if (ios.ne.0) then
write(lp,9050) iaunit,trim(cfile)
write(lp,*) 'ios = ',ios
write(lp,*) 'cenv = ',trim(cenv)
call flush(lp)
call xchalt('(zaiope)')
stop '(zaiope)'
endif !ios
#endif
open(unit=iaunit+uaoff, file=cfile, &
form='unformatted', status=cstat, &
access='direct', recl=nrecl, action=cact, iostat=ios)
if (ios.ne.0) then
write(lp,9100) iaunit,trim(cfile)
write(lp,*) 'ios = ',ios
write(lp,*) 'cenv = ',trim(cenv)
call flush(lp)
call xchalt('(zaiope)')
stop '(zaiope)'
endif !ios
!
endif ! I/O from first processor only
call xcsync(no_flush)
#if defined(TIMER)
!
call xctmr1(16)
#endif
return
!
9000 format(/ /10x,'error in zaiope - array I/O unit ', &
i3,' is not marked as available.'/ /)
#if defined(YMP) || defined(X1)
9050 format(/ /10x,'error in zaiope - can''t asnunit ',i3, &
', for array I/O.' / &
10x,'cfile = ',a/ /)
#endif
9100 format(/ /10x,'error in zaiope - can''t open unit ',i3, &
', for array I/O.' / &
10x,'cfile = ',a/ /)
9300 format(/ /10x,'error in zaiope - environment variable ',a, &
' not defined'/ /)
end subroutine zaiope
subroutine zaiopf(cfile,cstat, iaunit)
implicit none
!
integer, intent(in) :: iaunit
character*(*), intent(in) :: cfile,cstat
!
integer iarec
common/czioxx/ iarec(999)
save /czioxx/
!
!**********
!*
! 1) machine specific routine for opening a file for array i/o.
!
! must call zaiost before first call to zaiopf.
! see also 'zaiopn' and 'zaiope'.
!
! 2) the filename is taken from 'cfile'.
!
! array i/o is fortran real*4 direct access i/o to unit iaunit+uaoff.
!
! 3) iaunit+uaoff is the i/o unit used for arrays. array i/o might not
! use fortran i/o units, but, for compatability, assume that
! iaunit+uaoff refers to a fortran i/o unit anyway.
! cstat indicates the file type, it can be 'scratch', 'old', or
! 'new'.
! all i/o to iaunit must be performed by zaiord and zaiowr.
! arrays passed to these routines must conform to 'h'.
! the file should be closed using zaiocl.
!*
!**********
!
! --- spval = data void marker, 2^100 or about 1.2676506e30
! --- n2drec = size of output 2-d array, multiple of 4096
real*4 spval
parameter (spval=2.0**100)
!
integer ios,nrecl
character cact*9
#if defined(TIMER)
!
call xctmr0(16)
#endif
!
! test file state.
!
if (iarec(iaunit).ne.-1) then
write(lp,9000) iaunit
call xcstop('(zaiopf)')
stop '(zaiopf)'
endif
!
iarec(iaunit) = 0
!
! --- I/O from first processor only
!
if (mnproc.eq.1) then
!
! write(lp,*) 'zaiopf - iaunit = ',iaunit
! call flush(lp)
!
! dummy I/O?
!
if (cfile.eq.'/dev/null' .or. &
cfile.eq.'/dev/zero' ) then
iarec(iaunit) = -99
call xcsync(no_flush)
#if defined(TIMER)
call xctmr1(16)
#endif
return
endif
!
! open file.
!
inquire(iolength=nrecl) w
!
if (cstat.eq.'OLD' .or. &
cstat.eq.'old' ) then
cact = 'READ'
elseif (cstat.eq.'NEW' .or. &
cstat.eq.'new' ) then
cact = 'WRITE'
else
cact = 'READWRITE'
endif
!
#if defined(X1)
call asnunit(iaunit+uaoff,'-F event,cachea:4096:4:2 -B on',ios)
if (ios.ne.0) then
write(lp,9050) iaunit,trim(cfile)
write(lp,*) 'ios = ',ios
call flush(lp)
call xchalt('(zaiopf)')
stop '(zaiopf)'
endif !ios
#endif
#if defined(YMP)
if (mod(nrecl,16384).eq.0 .and. nrecl.gt.16384*4) then
call asnunit(iaunit+uaoff,'-F syscall -N ieee',ios)
else
call asnunit(iaunit+uaoff,'-F cachea:8:16:2 -N ieee',ios)
endif
if (ios.ne.0) then
write(lp,9050) iaunit,trim(cfile)
write(lp,*) 'ios = ',ios
call flush(lp)
call xchalt('(zaiopf)')
stop '(zaiopf)'
endif !ios
#endif
open(unit=iaunit+uaoff, file=cfile, &
form='unformatted', status=cstat, &
access='direct', recl=nrecl, action=cact, iostat=ios)
if (ios.ne.0) then
write(lp,9100) iaunit,trim(cfile)
write(lp,*) 'ios = ',ios
call flush(lp)
call xchalt('(zaiopf)')
stop '(zaiopf)'
endif !ios
!
endif ! I/O from first processor only
call xcsync(no_flush)
#if defined(TIMER)
!
call xctmr1(16)
#endif
return
!
9000 format(/ /10x,'error in zaiopf - array I/O unit ', &
i3,' is not marked as available.'/ /)
#if defined(YMP) || defined(X1)
9050 format(/ /10x,'error in zaiopf - can''t asnunit ',i3, &
', for array I/O.' / &
10x,'cfile = ',a/ /)
#endif
9100 format(/ /10x,'error in zaiopf - can''t open unit ',i3, &
', for array I/O.' / &
10x,'cfile = ',a/ /)
end subroutine zaiopf
subroutine zaiopi(lopen, iaunit)
implicit none
!
logical, intent(out) :: lopen
integer, intent(in) :: iaunit
!
integer iarec
common/czioxx/ iarec(999)
save /czioxx/
!
!**********
!*
! 1) is an array i/o unit open?
!
! 2) must call zaiost before first call to zaiopi.
!*
!**********
!
lopen = iarec(iaunit).ne.-1
return
end subroutine zaiopi
subroutine zaiost
implicit none
!
integer iarec
common/czioxx/ iarec(999)
save /czioxx/
!
!**********
!*
! 1) machine specific routine for initializing array i/o.
!
! 2) see also zaiopn, zaiord, zaiowr, and zaiocl.
!*
!**********
!
integer i
!
if (mnproc.eq.1) then
write(lp,'(/a/)') &
'zaiost - Array I/O is Fortran DA I/O from the 1st task'
endif
!
do i= 1,999
iarec(i) = -1
enddo
!
! --- w on 1st tile only
!
#if defined(RELO)
!
! --- n2drec = size of output 2-d array, multiple of 4096
n2drec = ((itdm*jtdm+4095)/4096)*4096
!
if (mnproc.eq.1) then
allocate( w(n2drec),wminy(jtdm),wmaxy(jtdm),htmp(idm*jdm) )
call mem_stat_add( (n2drec+2*jtdm+idm*jdm)/2) !real*4, so /2
else
allocate( w(1), wminy(jtdm),wmaxy(jtdm),htmp(idm*jdm) )
call mem_stat_add( ( 1+2*jtdm+idm*jdm)/2) !real*4, so /2
endif !1st tile:else
#else
if (mnproc.eq.1) then
allocate( w(n2drec) )
else
allocate( w(1) )
endif !1st tile:else
#endif
#if defined(TIMER)
!
! initialize timers.
!
call xctmrn(16,'zaio**')
call xctmrn(17,'zaiord')
call xctmrn(18,'zaiowr')
call xctmrn(19,'zaioIO')
#endif
return
end subroutine zaiost
subroutine zaiocl(iaunit)
implicit none
!
integer, intent(in) :: iaunit
!
integer iarec
common/czioxx/ iarec(999)
save /czioxx/
!
!**********
!*
! 1) machine specific routine for array i/o file closing.
!
! must call zaiopn for this array unit before calling zaiocl.
!
! 2) array i/o is fortran real*4 direct access i/o to unit iaunit+uaoff.
!*
!**********
!
integer ios
#if defined(TIMER)
!
call xctmr0(16)
#endif
!
if (iarec(iaunit).eq.-1) then
write(lp,9000) iaunit
call xcstop('(zaiocl)')
stop '(zaiocl)'
endif
!
iarec(iaunit) = -1
!
! --- I/O from first processor only
!
if (mnproc.eq.1) then
!
! write(lp,*) 'zaiocl - iaunit = ',iaunit
! call flush(lp)
!
if (iarec(iaunit).ne.-99) then !standard I/O
close(unit=iaunit+uaoff, status='keep')
#if defined(T3E) || defined(YMP) || defined(X1)
call asnunit(iaunit+uaoff,'-R',ios)
#endif
endif
!
endif ! I/O from first processor only
call xcsync(no_flush)
#if defined(TIMER)
!
call xctmr1(16)
#endif
return
!
9000 format(/ /10x,'error in zaiocl - array I/O unit ', &
i3,' is not marked as open.'/ /)
end subroutine zaiocl
subroutine zaiofl(iaunit)
implicit none
!
integer, intent(in) :: iaunit
!
integer iarec
common/czioxx/ iarec(999)
save /czioxx/
!
!**********
!*
! 1) machine specific routine for array i/o buffer flushing.
!
! must call zaiopn for this array unit before calling zaiocl.
!
! 2) array i/o is fortran real*4 direct access i/o to unit iaunit+uaoff.
!*
!**********
!
integer irlen
character cfile*256
#if defined(TIMER)
!
call xctmr0(16)
#endif
!
if (iarec(iaunit).eq.-1) then
write(lp,9000) iaunit
call xcstop('(zaiofl)')
stop '(zaiofl)'
endif
!
! --- I/O from first processor only
!
if (mnproc.eq.1) then
!
if (iarec(iaunit).ne.-99) then !standard I/O
inquire(unit=iaunit+uaoff, name=cfile, recl=irlen)
close( unit=iaunit+uaoff, status='keep')
open( unit=iaunit+uaoff, file=cfile, form='unformatted', &
access='direct', recl=irlen)
endif
!
endif ! I/O from first processor only
call xcsync(no_flush)
#if defined(TIMER)
!
call xctmr1(16)
#endif
return
!
9000 format(/ /10x,'error in zaiofl - array I/O unit ', &
i3,' is not marked as open.'/ /)
end subroutine zaiofl
subroutine zaioiq(iaunit, irec)
implicit none
!
integer, intent(in) :: iaunit
integer, intent(out) :: irec
!
integer iarec
common/czioxx/ iarec(999)
save /czioxx/
!
!**********
!*
! 1) machine specific routine for array i/o inquiry.
!
! 2) returns the number of records processed, or -1 for a closed file.
!*
!**********
!
irec = iarec(iaunit)
return
end subroutine zaioiq
subroutine zaiorw(iaunit)
implicit none
!
integer, intent(in) :: iaunit
!
integer iarec
common/czioxx/ iarec(999)
save /czioxx/
!
!**********
!*
! 1) machine specific routine for array i/o file rewinding.
!
! must call zaiopn for this array unit before calling zaiocl.
!
! 2) array i/o is fortran real*4 direct access i/o to unit iaunit+uaoff.
!*
!**********
#if defined(TIMER)
!
call xctmr0(16)
#endif
!
if (iarec(iaunit).eq.-1) then
write(lp,9000) iaunit
call xcstop('(zaiorw)')
stop '(zaiorw)'
endif
!
if (iarec(iaunit).ne.-99) then !standard I/O
iarec(iaunit) = 0
endif
!
! --- I/O from first processor only
!
if (mnproc.eq.1) then
!
! write(lp,*) 'zaiorw - iaunit,rec = ',iaunit,iarec(iaunit)
! call flush(lp)
!
endif ! I/O from first processor only
call xcsync(no_flush)
#if defined(TIMER)
!
call xctmr1(16)
#endif
return
!
9000 format(/ /10x,'error in zaiorw - array I/O unit ', &
i3,' is not marked as open.'/ /)
end subroutine zaiorw
subroutine zaiord3(h, l, mask,lmask, hmin,hmax, iaunit)
implicit none
!
logical, intent(in) :: lmask
integer, intent(in) :: l,iaunit
integer, dimension (1-nbdy:idm+nbdy,1-nbdy:jdm+nbdy), &
intent(in) :: mask
#if defined(REAL4)
real*4, intent(out) :: hmin(l),hmax(l)
real*4, dimension (1-nbdy:idm+nbdy,1-nbdy:jdm+nbdy,l), &
intent(out) :: h
#else
real, intent(out) :: hmin(l),hmax(l)
real, dimension (1-nbdy:idm+nbdy,1-nbdy:jdm+nbdy,l), &
intent(out) :: h
#endif
!
!**********
!*
! 1) machine specific routine for 3-d array reading.
!
! must call zaiopn for this array unit before calling zaiord.
!
! 2) array i/o is fortran real*4 direct access i/o to unit iaunit+uaoff.
!
! 3) iaunit+uaoff is the i/o unit used for arrays. array i/o might not
! use fortran i/o units, but, for compatability, assume that
! iaunit+uaoff refers to a fortran i/o unit anyway.
! the array, 'h', must conform to that passed in the associated
! call to zaiopn.
!
! 4) hmin,hmax are returned as the minimum and maximum value in the
! array, ignoring array elements set to 2.0**100.
! if lmask==.true. the range is calculated only where mask.ne.0,
! with all other values unchanged in h on exit. It is then an
! error if mask.ne.0 anywhere the input is 2.0**100.
!*
!**********
!
! this version just calls zaiord l times.
!
integer k
!
do k= 1,l
call zaiord(h(1-nbdy,1-nbdy,k), mask,lmask, &
hmin(k),hmax(k), iaunit)
enddo
!
return
end subroutine zaiord3
subroutine zaiord(h, mask,lmask, hmin,hmax, iaunit)
implicit none
!
logical, intent(in) :: lmask
integer, intent(in) :: iaunit
integer, dimension (1-nbdy:idm+nbdy,1-nbdy:jdm+nbdy), &
intent(in) :: mask
#if defined(REAL4)
real*4, intent(out) :: hmin,hmax
real*4, dimension (1-nbdy:idm+nbdy,1-nbdy:jdm+nbdy), &
intent(out) :: h
#else
real, intent(out) :: hmin,hmax
real, dimension (1-nbdy:idm+nbdy,1-nbdy:jdm+nbdy), &
intent(out) :: h
#endif
!
integer iarec
common/czioxx/ iarec(999)
save /czioxx/
!
!**********
!*
! 1) machine specific routine for array reading.
!
! must call zaiopn for this array unit before calling zaiord.
!
! 2) array i/o is fortran real*4 direct access i/o to unit iaunit+uaoff.
!
! 3) iaunit+uaoff is the i/o unit used for arrays. array i/o might not
! use fortran i/o units, but, for compatability, assume that
! iaunit+uaoff refers to a fortran i/o unit anyway.
! the array, 'h', must conform to that passed in the associated
! call to zaiopn.
!
! 4) hmin,hmax are returned as the minimum and maximum value in the
! array, ignoring array elements set to 2.0**100.
! if lmask==.true. the range is calculated only where mask.ne.0,
! with all other values unchanged in h on exit. It is then an
! error if mask.ne.0 anywhere the input is 2.0**100.
!
! 5) Optimized by Dan Moore, Planning Systems Inc., August 2005.
!*
!**********
!
! --- spval = data void marker, 2^100 or about 1.2676506e30
! --- n2drec = size of output 2-d array, multiple of 4096
real*4 spval
parameter (spval=2.0**100)
!
character cfile*256
integer ios, i,j
real*4 wmin,wmax
real rmin(1),rmax(1)
#if defined(TIMER)
!
call xctmr0(17)
#endif
!
if (iarec(iaunit).eq.-1) then
write(lp,9000) iaunit
call xcstop('(zaiord)')
stop '(zaiord)'
endif
!
if (iarec(iaunit).ne.-99) then !standard I/O
iarec(iaunit) = iarec(iaunit) + 1
endif
!
wmin = spval
wmax = -spval
!
!
! --- I/O from first processor only
!
if (mnproc.eq.1) then
!
! write(lp,*)'In initial proc 1 section'
! write(lp,*) 'zaiord - iaunit,rec = ',iaunit,iarec(iaunit)
! write(lp,*) 'zaiord - mask.1,1 = ',amsk(1,1)
! write(lp,*) 'zaiord - h.1,1 = ',atmp(1,1)
! call flush(lp)
!
if (iarec(iaunit).eq.-99) then !dummy I/O
w(1:n2drec) = 0.0
else !standard I/O
call zaiordd(w,n2drec, iaunit+uaoff,iarec(iaunit),ios)
if (ios.ne.0) then
write(lp,9100) iarec(iaunit),iaunit
write(lp,*) 'ios = ',ios
call flush(lp)
cfile = ' '
inquire(unit=iaunit+uaoff,name=cfile)
write(lp,'(3a)') 'FILENAME="',trim(cfile),'"'
call flush(lp)
call xchalt('(zaiord)')
stop '(zaiord)'
endif !ios
endif ! dummy I/O
! write(lp,*)'I/O on proc 1 finished?'
! write(lp,*)'lmask = ',lmask
!
if (.not.lmask)then
! Get global min and max on first processor.
! must be done here because tiles need not cover the full domain.
!$OMP PARALLEL DO PRIVATE(j,i) &
!$OMP SCHEDULE(STATIC,jblk)
do j= 1,jtdm
#if defined(ENDIAN_IO)
call zaio_endian(w(1+(j-1)*itdm),itdm) !swap to big-endian
#endif
wminy(j) = spval
wmaxy(j) = -spval
do i= 1,itdm
if (w(i+(j-1)*itdm).ne.spval) then
wminy(j) = min( wminy(j), w(i+(j-1)*itdm) )
wmaxy(j) = max( wmaxy(j), w(i+(j-1)*itdm) )
endif
enddo !i
enddo !j
wmin = minval(wminy(1:jtdm))
wmax = maxval(wmaxy(1:jtdm))
endif !Not Lmask (global min,max on processor #1)
!
endif !end I/O from first processor only
!
! --- put field from 1st processor to all tiles
call xcaput4(w,htmp, 1) !w cast to a 2-d array
!
! --- Each processor loads h from htmp (where mask = 1)
! --- Each processor does local min max if lmask is true
!
if (lmask) then
!$OMP PARALLEL DO PRIVATE(j,i) &
!$OMP SCHEDULE(STATIC,jblk)
do j= 1,jj
#if defined(ENDIAN_IO)
call zaio_endian(htmp(1+(j-1)*ii),ii) !swap to big-endian
#endif
wminy(j) = spval
wmaxy(j) = -spval
do i= 1,ii
if (mask(i,j).ne.0) then
h(i,j) = htmp(i+(j-1)*ii)
wminy(j) = min( wminy(j), htmp(i+(j-1)*ii) )
wmaxy(j) = max( wmaxy(j), htmp(i+(j-1)*ii) )
endif
enddo !i
enddo !j
wmin = minval(wminy(1:jj))
wmax = maxval(wmaxy(1:jj))
else
!$OMP PARALLEL DO PRIVATE(j,i) &
!$OMP SCHEDULE(STATIC,jblk)
do j= 1,jj
do i= 1,ii
h(i,j) = htmp(i+(j-1)*ii)
enddo !i
enddo !j
endif !lmask:else
!