-
Notifications
You must be signed in to change notification settings - Fork 0
/
ModPLOT3D_IO.f90
1377 lines (1143 loc) · 41.6 KB
/
ModPLOT3D_IO.f90
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
! Copyright (c) 2015, University of Illinois at Urbana-Champaign, XPACC
! License: MIT, http://opensource.org/licenses/MIT
Module ModPLOT3D_IO
Implicit None
Contains
Subroutine Read_Grid_Size(NDIM, ngrid, ND, file, OUTPUT_FLAG, ib)
Implicit None
Character(LEN=2), Intent(out), Optional :: ib
Real(KIND=8), Dimension(:,:,:,:,:), Pointer :: X
Integer, Dimension(:,:,:,:), Pointer :: IBLANK
Character(LEN=2) :: prec, gf, vf, iblocal
Character(LEN=*) :: file
Integer :: ngrid, I, J, K, L, Nx, Ny, Nz, NDIM, M, ftype
Integer, Pointer :: ND(:,:)
Integer :: OMap(3), NMap(3), ND_copy(3)
Real(KIND=4), Dimension(:,:,:,:), Pointer :: fX
Logical :: gf_exists
Integer :: OUTPUT_FLAG
Inquire(file=Trim(file),exist=gf_exists)
If (.NOT.(gf_exists.eqv..true.)) Then
Write (*,'(A,A,A)') 'File ', file(1:LEN_TRIM(file)), ' is not readable'
Stop
End If
Call p3d_detect(LEN(Trim(file)),Trim(file),prec,NDIM,gf,vf,iblocal,ftype)
If (OUTPUT_FLAG .gt. 0) Call output_format(file,prec,NDIM,gf,vf,iblocal,ftype)
If (PRESENT(ib) .eqv. .true.) ib(1:1) = iblocal(1:1)
Open (unit=10, file=trim(file), form='unformatted', status='old')
! Read number of grids
If (gf(1:1) .eq. 's') Then
ngrid = 1
Else
Read (10) ngrid
End If
Allocate(ND(ngrid,3))
If (OUTPUT_FLAG > 0) Then
Write (*,'(A)') ' '
Write (*,'(A,I2)') 'RFLOCM: Number of grids: ', ngrid
End If
! Read grid sizes
ND(:,3) = 1
Read (10) ((ND(I,J),J=1,NDIM),I=1,ngrid)
If (OUTPUT_FLAG > 0) Then
Do I = 1, ngrid
Write (*,'(A,I2,A,3(I5,1X))') 'RFLOCM: Grid ', I, ' is ', (ND(I,J),J=1,NDIM)
End Do
End IF
close (10)
End Subroutine Read_Grid_Size
Subroutine Read_Soln_Header(NDIM, ngrid, ND, fname, tau)
Implicit None
! ... function call variables
Integer :: NDIM, ngrid
Integer, Dimension(:,:), Pointer :: ND
Character(LEN=*) :: fname
Real(KIND=8) :: tau(4)
! ... local variables
Integer :: ibuf, I, J
! ... open the file
Open (Unit=10, file=trim(fname), form='unformatted', status='old')
! ... read the number of grids, exit if error
Read (10) ibuf
! If (ibuf /= ngrid) Then
! Write (*,*) 'RFLOCM: ERROR: assumed and read ngrid do not match for file '//trim(fname)
! Write (*,'(A,I4)') 'RFLOCM: ERROR: assumed ngrid = ', ngrid
! Write (*,'(A,I4)') 'RFLOCM: ERROR: read ngrid = ', ibuf
! STOP 'RFLOCM: ERROR: Stopping in read_soln_header()'
! End If
! ... read the size of each grid, throw value away
Read (10) ((ibuf,J=1,NDIM),I=1,ngrid)
! ... read the header
Read (10) tau
! ... close and exit
Close (10)
End Subroutine Read_Soln_Header
Subroutine Read_Func_Header(NDIM, ngrid, fname, nvar)
Implicit None
Character(LEN=*) :: fname
Integer :: ngrid, I, J, NDIM, nvar, ibuf
Integer :: ND2(ngrid, NDIM+1)
Integer, Parameter :: funit = 10
Open (unit=funit, file=trim(fname), form='unformatted', status='old')
! Write number of grids
Read (funit) ibuf
! Read grid sizes & nvars
Read (funit) ((ND2(I,J),J=1,NDIM+1),I=1,ngrid)
! Save nvar
nvar = ND2(ngrid,NDIM+1)
Close (funit)
End Subroutine Read_Func_Header
Subroutine Read_Grid(NDIM, ngrid, ND, X, IBLANK, prec, gf, vf, ib, file, OF)
Implicit None
Real(KIND=8), Dimension(:,:,:,:,:), Pointer :: X
Integer, Dimension(:,:,:,:), Pointer :: IBLANK
Character(LEN=2) :: prec, gf, vf, ib
Character(LEN=80) :: file
Integer :: ngrid, I, J, K, L, Nx, Ny, Nz, NDIM, M, ftype
Integer, Dimension(:,:), Pointer :: ND
Integer :: OMap(3), NMap(3), ND_copy(3)
Real(KIND=4), Dimension(:,:,:,:), Pointer :: fX
Logical :: gf_exists
Integer :: OF
Inquire(file=Trim(file),exist=gf_exists)
If (.NOT.gf_exists) Then
Write (*,'(A,A,A)') 'File ', file(1:LEN_TRIM(file)), ' is not readable'
Stop
End If
Call p3d_detect(LEN(Trim(file)),Trim(file),prec,NDIM,gf,vf,ib,ftype)
If (OF > 0) Call output_format(file,prec,NDIM,gf,vf,ib,ftype)
Open (unit=10, file=trim(file), form='unformatted', status='old')
! Read number of grids
If (gf(1:1) .eq. 's') Then
ngrid = 1
Else
Read (10) ngrid
End If
Allocate(ND(ngrid,3))
If (OF > 0) Write (*,'(A)') ' '
If (OF > 0)Write (*,'(A,I2)') 'RFLOCM: Number of grids: ', ngrid
! Read grid sizes
ND(:,3) = 1
Read (10) ((ND(I,J),J=1,NDIM),I=1,ngrid)
If (OF > 0) Then
Do I = 1, ngrid
Write (*,'(A,I2,A,3(I5,1X))') 'RFLOCM: Grid ', I, ' is ', (ND(I,J),J=1,NDIM)
End Do
End If
! Allocate grid memory
Nx = MAXVAL(ND(:,1))
Ny = MAXVAL(ND(:,2))
Nz = MAXVAL(ND(:,3))
Allocate(X(ngrid,Nx,Ny,Nz,NDIM))
If (prec(1:1) .eq. 's') Allocate(fX(Nx,Ny,Nz,NDIM))
Allocate(IBLANK(ngrid,Nx,Ny,Nz))
! Read grid values
If (vf(1:1) .eq. 'w') Then
If (prec(1:1) .eq. 'd') Then
If (ib(1:1) .eq. 'n') Then
Do L = 1, ngrid
Read (10) ((((X(L,I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM)
End Do
Else
Do L = 1, ngrid
Read (10) ((((X(L,I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM), &
(((IBLANK(L,I,J,K),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3))
End Do
End If
Else
If (ib(1:1) .eq. 'n') Then
Do L = 1, ngrid
Read (10) ((((fX(I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM)
X(L,:,:,:,:) = Dble(fX(:,:,:,:))
End Do
Else
Do L = 1, ngrid
Read (10) ((((fX(I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM), &
(((IBLANK(L,I,J,K),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3))
X(L,:,:,:,:) = Dble(fX(:,:,:,:))
End Do
End If
End If
Else
If (NDIM .EQ. 3) Then
If (prec(1:1) .eq. 'd') Then
If (ib(1:1) .eq. 'n') Then
Do L = 1, ngrid
Do K = 1, ND(L,3)
Read (10) ((X(L,I,J,K,1),I=1,ND(L,1)),J=1,ND(L,2)), &
((X(L,I,J,K,2),I=1,ND(L,1)),J=1,ND(L,2)), &
((X(L,I,J,K,3),I=1,ND(L,1)),J=1,ND(L,2))
End Do
End Do
Else
Do L = 1, ngrid
Do K = 1, ND(L,3)
Read (10) ((X(L,I,J,K,1),I=1,ND(L,1)),J=1,ND(L,2)), &
((X(L,I,J,K,2),I=1,ND(L,1)),J=1,ND(L,2)), &
((X(L,I,J,K,3),I=1,ND(L,1)),J=1,ND(L,2)), &
((IBLANK(L,I,J,K),I=1,ND(L,1)),J=1,ND(L,2))
End Do
End Do
End If
Else
If (ib(1:1) .eq. 'n') Then
Do L = 1, ngrid
Do K = 1, ND(L,3)
Read (10) ((fX(I,J,K,1),I=1,ND(L,1)),J=1,ND(L,2)), &
((fX(I,J,K,2),I=1,ND(L,1)),J=1,ND(L,2)), &
((fX(I,J,K,3),I=1,ND(L,1)),J=1,ND(L,2))
End Do
X(L,:,:,:,:) = Dble(fX(:,:,:,:))
End Do
Else
Do L = 1, ngrid
Do K = 1, ND(L,3)
Read (10) ((fX(I,J,K,1),I=1,ND(L,1)),J=1,ND(L,2)), &
((fX(I,J,K,2),I=1,ND(L,1)),J=1,ND(L,2)), &
((fX(I,J,K,3),I=1,ND(L,1)),J=1,ND(L,2)), &
((IBLANK(L,I,J,K),I=1,ND(L,1)),J=1,ND(L,2))
End Do
X(L,:,:,:,:) = Dble(fX(:,:,:,:))
End Do
End If
End If
Else
If (prec(1:1) .eq. 'd') Then
If (ib(1:1) .eq. 'n') Then
Do L = 1, ngrid
Do J = 1, ND(L,2)
Read (10) (X(L,I,J,1,1),I=1,ND(L,1)), &
(X(L,I,J,1,2),I=1,ND(L,1))
End Do
End Do
Else
Do L = 1, ngrid
Do J = 1, ND(L,2)
Read (10) (X(L,I,J,1,1),I=1,ND(L,1)), &
(X(L,I,J,1,2),I=1,ND(L,1)), &
(IBLANK(L,I,J,1),I=1,ND(L,1))
End Do
End Do
End If
Else
If (ib(1:1) .eq. 'n') Then
Do L = 1, ngrid
Do K = J, ND(L,2)
Read (10) (fX(I,J,1,1),I=1,ND(L,1)), &
(fX(I,J,1,2),I=1,ND(L,1))
End Do
X(L,:,:,:,:) = Dble(fX(:,:,:,:))
End Do
Else
Do L = 1, ngrid
Do K = J, ND(L,2)
Read (10) (fX(I,J,1,1),I=1,ND(L,1)), &
(fX(I,J,1,2),I=1,ND(L,1)), &
(IBLANK(L,I,J,1),I=1,ND(L,1))
End Do
X(L,:,:,:,:) = Dble(fX(:,:,:,:))
End Do
End If
End If
End If
End If
Close (10)
If (prec(1:1) .eq. 's') Deallocate(fX)
If (ib(1:1) .eq. 'n') IBLANK = 1
Return
End Subroutine Read_Grid
Subroutine Write_Grid(NDIM, ngrid, ND, X, IBLANK, prec, gf, vf, ib, file)
Implicit None
Real(KIND=8), Dimension(:,:,:,:,:), Pointer :: X
Integer, Dimension(:,:,:,:), Pointer :: IBLANK
Character(LEN=2) :: prec, gf, vf, ib
Character(LEN=80) :: file
Integer :: ngrid, I, J, K, L, Nx, Ny, Nz, NDIM, M, ftype
Integer, Dimension(:,:), Pointer :: ND
Integer :: OMap(3), NMap(3), ND_copy(3)
Real(KIND=4), Dimension(:,:,:,:), Pointer :: fX
ftype = 0
Call output_format(file,prec,NDIM,gf,vf,ib,ftype)
Open (unit=10, file=trim(file), form='unformatted', status='unknown')
! Write number of grids
If (gf(1:1) .eq. 'm') Then
Write (10) ngrid
End If
! Write grid sizes
Write (10) ((ND(I,J),J=1,NDIM),I=1,ngrid)
! Read grid values
If (vf(1:1) .eq. 'w') Then
If (prec(1:1) .eq. 'd') Then
If (ib(1:1) .eq. 'n') Then
Do L = 1, ngrid
Write (10) ((((X(L,I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM)
End Do
Else
Do L = 1, ngrid
Write (10) ((((X(L,I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM), &
(((IBLANK(L,I,J,K),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3))
End Do
End If
Else
If (ib(1:1) .eq. 'n') Then
Do L = 1, ngrid
Write (10) ((((Real(X(L,I,J,K,M)),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM)
End Do
Else
Do L = 1, ngrid
Write (10) ((((Real(X(L,I,J,K,M)),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM), &
(((IBLANK(L,I,J,K),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3))
End Do
End If
End If
Else
If (NDIM .EQ. 3) Then
If (prec(1:1) .eq. 'd') Then
If (ib(1:1) .eq. 'n') Then
Do L = 1, ngrid
Do K = 1, ND(L,3)
Write (10) ((X(L,I,J,K,1),I=1,ND(L,1)),J=1,ND(L,2)), &
((X(L,I,J,K,2),I=1,ND(L,1)),J=1,ND(L,2)), &
((X(L,I,J,K,3),I=1,ND(L,1)),J=1,ND(L,2))
End Do
End Do
Else
Do L = 1, ngrid
Do K = 1, ND(L,3)
Write (10) ((X(L,I,J,K,1),I=1,ND(L,1)),J=1,ND(L,2)), &
((X(L,I,J,K,2),I=1,ND(L,1)),J=1,ND(L,2)), &
((X(L,I,J,K,3),I=1,ND(L,1)),J=1,ND(L,2)), &
((IBLANK(L,I,J,K),I=1,ND(L,1)),J=1,ND(L,2))
End Do
End Do
End If
Else
If (ib(1:1) .eq. 'n') Then
Do L = 1, ngrid
Do K = 1, ND(L,3)
Write (10) ((Real(X(L,I,J,K,1)),I=1,ND(L,1)),J=1,ND(L,2)), &
((Real(X(L,I,J,K,2)),I=1,ND(L,1)),J=1,ND(L,2)), &
((Real(X(L,I,J,K,3)),I=1,ND(L,1)),J=1,ND(L,2))
End Do
End Do
Else
Do L = 1, ngrid
Do K = 1, ND(L,3)
Write (10) ((Real(X(L,I,J,K,1)),I=1,ND(L,1)),J=1,ND(L,2)), &
((Real(X(L,I,J,K,2)),I=1,ND(L,1)),J=1,ND(L,2)), &
((Real(X(L,I,J,K,3)),I=1,ND(L,1)),J=1,ND(L,2)), &
((IBLANK(L,I,J,K),I=1,ND(L,1)),J=1,ND(L,2))
End Do
End Do
End If
End If
Else
If (prec(1:1) .eq. 'd') Then
If (ib(1:1) .eq. 'n') Then
Do L = 1, ngrid
Do J = 1, ND(L,2)
Write (10) (X(L,I,J,1,1),I=1,ND(L,1)), &
(X(L,I,J,1,2),I=1,ND(L,1))
End Do
End Do
Else
Do L = 1, ngrid
Do J = 1, ND(L,2)
Write (10) (X(L,I,J,1,1),I=1,ND(L,1)), &
(X(L,I,J,1,2),I=1,ND(L,1)), &
(IBLANK(L,I,J,1),I=1,ND(L,1))
End Do
End Do
End If
Else
If (ib(1:1) .eq. 'n') Then
Do L = 1, ngrid
Do K = J, ND(L,2)
Write (10) (Real(X(L,I,J,1,1)),I=1,ND(L,1)), &
(Real(X(L,I,J,1,2)),I=1,ND(L,1))
End Do
End Do
Else
Do L = 1, ngrid
Do K = J, ND(L,2)
Write (10) (Real(X(L,I,J,1,1)),I=1,ND(L,1)), &
(Real(X(L,I,J,1,2)),I=1,ND(L,1)), &
(IBLANK(L,I,J,1),I=1,ND(L,1))
End Do
End Do
End If
End If
End If
End If
Close (10)
Return
End Subroutine Write_Grid
Subroutine Read_Soln(NDIM, ngrid, ND, X, tau, prec, gf, vf, file, OF)
Implicit None
Real(KIND=8), Dimension(:,:,:,:,:), Pointer :: X
Real(KIND=8) :: tau(4)
Character(LEN=2) :: prec, gf, vf, ib
Character(LEN=80) :: file
Integer :: ngrid, I, J, K, L, M, Nx, Ny, Nz, NDIM, ftype
Integer, Dimension(:,:), Pointer :: ND
Real(KIND=4), Dimension(:,:,:,:), Pointer :: fX
Real(KIND=4) :: ftau(4)
Logical :: gf_exists
Integer :: OF
Inquire(file=Trim(file),exist=gf_exists)
If (.NOT.gf_exists) Then
Write (*,'(A,A,A)') 'File ', file(1:LEN_TRIM(file)), ' is not readable'
Stop
End If
Call p3d_detect(LEN(Trim(file)),Trim(file),prec,NDIM,gf,vf,ib,ftype)
If (OF > 0) Call output_format(file,prec,NDIM,gf,vf,ib,ftype)
Open (unit=10, file=trim(file), form='unformatted', status='old')
! Read number of grids
If (gf(1:1) .eq. 's') Then
ngrid = 1
Else
Read (10) ngrid
End If
If (OF > 0) Then
Write (*, *) ' '
Write (*,'(A,I2)') 'RFLOCM: Number of grids: ', ngrid
End If
! Read grid sizes
Allocate(ND(ngrid,3))
ND(:,3) = 1
Read (10) ((ND(I,J),J=1,NDIM),I=1,ngrid)
If (OF > 0) Then
Do I = 1, ngrid
Write (*,'(A,I2,A,3(I5,1X))') 'RFLOCM: Grid ', I, ' is ', (ND(I,J),J=1,NDIM)
End Do
End If
! Allocate soln memory
Nx = MAXVAL(ND(:,1))
Ny = MAXVAL(ND(:,2))
If (NDIM .EQ. 3) Then
Nz = MAXVAL(ND(:,3))
Else
Nz = 1
End If
If (associated(X)) deallocate(X)
Allocate(X(ngrid,Nx,Ny,Nz,NDIM+2))
If (prec(1:1) .eq. 's') Allocate(fX(Nx,Ny,Nz,NDIM+2))
X = 0D0
! Read soln values
If (vf(1:1) .eq. 'w') Then
If (prec(1:1) .eq. 'd') Then
Do L = 1, ngrid
Read (10) tau(1), tau(2), tau(3), tau(4)
Read (10) ((((X(L,I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM+2)
End Do
Else
Do L = 1, ngrid
Read (10) ftau(1), ftau(2), ftau(3), ftau(4)
Read (10) ((((fX(I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM+2)
X(L,:,:,:,:) = Dble(fX(:,:,:,:))
tau = Dble(ftau)
End Do
End If
Else
If (prec(1:1) .eq. 'd') Then
Do L = 1, ngrid
Read (10) tau(1), tau(2), tau(3), tau(4)
Do K = 1, ND(L,3)
print*, K
Read (10) (((X(L,I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),M=1,NDIM+2)
End Do
End Do
Else
Do L = 1, ngrid
Read (10) ftau(1), ftau(2), ftau(3), ftau(4)
Do K = 1, ND(L,3)
Read (10) (((fX(I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),M=1,NDIM+2)
End Do
X(L,:,:,:,:) = Dble(fX(:,:,:,:))
tau = Dble(ftau)
End Do
End If
End If
Close (10)
If (prec(1:1) .eq. 's') Deallocate(fX)
Return
End Subroutine Read_Soln
Subroutine Write_Soln(NDIM, ngrid, ND, X, tau, prec, gf, vf, file)
Implicit None
Real(KIND=8), Dimension(:,:,:,:,:), Pointer :: X
Real(KIND=8) :: tau(4)
Character(LEN=2) :: prec, gf, vf
Character(LEN=80) :: file, ib
Integer :: ngrid, I, J, K, L, M, NDIM, ftype
Integer, Dimension(:,:), Pointer :: ND
Integer, Dimension(5) :: OMap(3), NMap(3), ND_copy(3)
ftype = 1
Call output_format(file,prec,NDIM,gf,vf,ib,ftype)
Open (unit=10, file=trim(file), form='unformatted', status='unknown')
! Write number of grids
If (gf(1:1) .eq. 'm') Then
Write (10) ngrid
End If
! Write grid sizes
Write (10) ((ND(I,J),J=1,NDIM),I=1,ngrid)
! Write soln values
If (vf(1:1) .eq. 'w') Then
If (prec(1:1) .eq. 'd') Then
Do L = 1, ngrid
Write (10) ((tau(i)),i=1,4)
Write (10) ((((X(L,I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM+2)
End Do
Else
Do L = 1, ngrid
Write (10) (Real(tau(i)),i=1,4)
Write (10) ((((Real(X(L,I,J,K,M)),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM+2)
End Do
End If
Else
If (prec(1:1) .eq. 'd') Then
Do L = 1, ngrid
Write (10) ((tau(i)),i=1,4)
Do K = 1, ND(L,3)
Write (10) (((X(L,I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),M=1,NDIM+2)
End Do
End Do
Else
Do L = 1, ngrid
Write (10) (Real(tau(i)),i=1,4)
Do K = 1, ND(L,3)
Write (10) (((Real(X(L,I,J,K,M)),I=1,ND(L,1)),J=1,ND(L,2)),M=1,NDIM+2)
End Do
End Do
End If
End If
Close (10)
Return
End Subroutine Write_Soln
Subroutine Read_Single_Grid(NDIM, ngrid, ND, X, IBLANK, prec, gf, vf, ib, file, gridID, OF)
Implicit None
Real(KIND=8), Dimension(:,:,:,:), Pointer :: X ! ... reduction in rank, JKim 04/2008
Integer, Dimension(:,:,:), Pointer :: IBLANK ! ... reduction in rank, JKim 04/2008
Character(LEN=2) :: prec, gf, vf, ib
Character(LEN=80) :: file
Integer :: ngrid, I, J, K, L, Nx, Ny, Nz, NDIM, M, ftype
Integer, Dimension(:,:), Pointer :: ND
Integer :: OMap(3), NMap(3), ND_copy(3)
Real(KIND=4), Dimension(:,:,:,:), Pointer :: fX
integer :: gridID ! ... specify which grid we want to read, JKim 04/2008
Logical :: gf_exists
Integer :: OF
Inquire(file=Trim(file),exist=gf_exists)
If (.NOT.gf_exists) Then
Write (*,'(A,A,A)') 'RFLOCM: File ', file(1:LEN_TRIM(file)), ' is not readable'
Stop
End If
Call p3d_detect(LEN(Trim(file)),Trim(file),prec,NDIM,gf,vf,ib,ftype)
If (OF > 0) Call output_format(file,prec,NDIM,gf,vf,ib,ftype)
Open (unit=10, file=trim(file), form='unformatted', status='old')
! Read number of grids
If (gf(1:1) .eq. 's') Then
ngrid = 1
Else
Read (10) ngrid
End If
Allocate(ND(ngrid,3))
If (OF > 0) Write (*,'(A)') ' '
If (OF > 0) Write (*,'(A,I2)') 'RFLOCM: Number of grids: ', ngrid
! Read grid sizes
ND(:,3) = 1
Read (10) ((ND(I,J),J=1,NDIM),I=1,ngrid)
If (OF > 0) Then
Do I = 1, ngrid
Write (*,'(A,I2,A,3(I5,1X))') 'RFLOCM: Grid ', I, ' is ', (ND(I,J),J=1,NDIM)
End Do
End If
! Allocate grid memory
Nx = MAXVAL(ND(:,1))
Ny = MAXVAL(ND(:,2))
Nz = MAXVAL(ND(:,3))
Allocate(X(Nx,Ny,Nz,NDIM)) ! ... reduction in rank, JKim 04/2008
If (prec(1:1) .eq. 's') Allocate(fX(Nx,Ny,Nz,NDIM))
Allocate(IBLANK(Nx,Ny,Nz)) ! ... reduction in rank, JKim 04/2008
! Read grid values
If (vf(1:1) .eq. 'w') Then
If (prec(1:1) .eq. 'd') Then
If (ib(1:1) .eq. 'n') Then
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Read (10) ((((X(I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM)
End Do
Else
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Read (10) ((((X(I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM), &
(((IBLANK(I,J,K),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3))
End Do
End If
Else
If (ib(1:1) .eq. 'n') Then
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Read (10) ((((fX(I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM)
X(:,:,:,:) = Dble(fX(:,:,:,:))
End Do
Else
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Read (10) ((((fX(I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM), &
(((IBLANK(I,J,K),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3))
X(:,:,:,:) = Dble(fX(:,:,:,:))
End Do
End If
End If
Else
If (NDIM .EQ. 3) Then
If (prec(1:1) .eq. 'd') Then
If (ib(1:1) .eq. 'n') Then
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Do K = 1, ND(L,3)
Read (10) ((X(I,J,K,1),I=1,ND(L,1)),J=1,ND(L,2)), &
((X(I,J,K,2),I=1,ND(L,1)),J=1,ND(L,2)), &
((X(I,J,K,3),I=1,ND(L,1)),J=1,ND(L,2))
End Do
End Do
Else
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Do K = 1, ND(L,3)
Read (10) ((X(I,J,K,1),I=1,ND(L,1)),J=1,ND(L,2)), &
((X(I,J,K,2),I=1,ND(L,1)),J=1,ND(L,2)), &
((X(I,J,K,3),I=1,ND(L,1)),J=1,ND(L,2)), &
((IBLANK(I,J,K),I=1,ND(L,1)),J=1,ND(L,2))
End Do
End Do
End If
Else
If (ib(1:1) .eq. 'n') Then
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Do K = 1, ND(L,3)
Read (10) ((fX(I,J,K,1),I=1,ND(L,1)),J=1,ND(L,2)), &
((fX(I,J,K,2),I=1,ND(L,1)),J=1,ND(L,2)), &
((fX(I,J,K,3),I=1,ND(L,1)),J=1,ND(L,2))
End Do
X(:,:,:,:) = Dble(fX(:,:,:,:))
End Do
Else
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Do K = 1, ND(L,3)
Read (10) ((fX(I,J,K,1),I=1,ND(L,1)),J=1,ND(L,2)), &
((fX(I,J,K,2),I=1,ND(L,1)),J=1,ND(L,2)), &
((fX(I,J,K,3),I=1,ND(L,1)),J=1,ND(L,2)), &
((IBLANK(I,J,K),I=1,ND(L,1)),J=1,ND(L,2))
End Do
X(:,:,:,:) = Dble(fX(:,:,:,:))
End Do
End If
End If
Else
If (prec(1:1) .eq. 'd') Then
If (ib(1:1) .eq. 'n') Then
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Do J = 1, ND(L,2)
Read (10) (X(I,J,1,1),I=1,ND(L,1)), &
(X(I,J,1,2),I=1,ND(L,1))
End Do
End Do
Else
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Do J = 1, ND(L,2)
Read (10) (X(I,J,1,1),I=1,ND(L,1)), &
(X(I,J,1,2),I=1,ND(L,1)), &
(IBLANK(I,J,1),I=1,ND(L,1))
End Do
End Do
End If
Else
If (ib(1:1) .eq. 'n') Then
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Do K = J, ND(L,2)
Read (10) (fX(I,J,1,1),I=1,ND(L,1)), &
(fX(I,J,1,2),I=1,ND(L,1))
End Do
X(:,:,:,:) = Dble(fX(:,:,:,:))
End Do
Else
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Do K = J, ND(L,2)
Read (10) (fX(I,J,1,1),I=1,ND(L,1)), &
(fX(I,J,1,2),I=1,ND(L,1)), &
(IBLANK(I,J,1),I=1,ND(L,1))
End Do
X(:,:,:,:) = Dble(fX(:,:,:,:))
End Do
End If
End If
End If
End If
Close (10)
If (prec(1:1) .eq. 's') Deallocate(fX)
If (ib(1:1) .eq. 'n') IBLANK = 1
Return
End Subroutine Read_Single_Grid
Subroutine Read_Single_Soln(NDIM, ngrid, ND, X, tau, prec, gf, vf, file, gridID, OF)
Implicit None
Real(KIND=8), Dimension(:,:,:,:), Pointer :: X ! ... reduction in rank, JKim 04/2008
Real(KIND=8) :: tau(4)
Character(LEN=2) :: prec, gf, vf, ib
Character(LEN=80) :: file
Integer :: ngrid, I, J, K, L, M, Nx, Ny, Nz, NDIM, ftype
Integer, Dimension(:,:), Pointer :: ND
Real(KIND=4), Dimension(:,:,:,:), Pointer :: fX
Real(KIND=4) :: ftau(4)
Logical :: gf_exists
Integer :: OF, gridID ! ... specify which grid we want to read, JKim 04/2008
Inquire(file=Trim(file),exist=gf_exists)
If (.NOT.gf_exists) Then
Write (*,'(A,A,A)') 'File ', file(1:LEN_TRIM(file)), ' is not readable'
Stop
End If
Call p3d_detect(LEN(Trim(file)),Trim(file),prec,NDIM,gf,vf,ib,ftype)
If (OF > 0) Call output_format(file,prec,NDIM,gf,vf,ib,ftype)
Open (unit=10, file=trim(file), form='unformatted', status='old')
! Read number of grids
If (gf(1:1) .eq. 's') Then
ngrid = 1
Else
Read (10) ngrid
End If
If (OF > 0) Then
Write (*, *) ' '
Write (*,'(A,I2)') 'RFLOCM: Number of grids: ', ngrid
End If
! Read grid sizes
Allocate(ND(ngrid,3))
ND(:,3) = 1
Read (10) ((ND(I,J),J=1,NDIM),I=1,ngrid)
If (OF > 0) Then
Do I = 1, ngrid
Write (*,'(A,I2,A,3(I5,1X))') 'RFLOCM: Grid ', I, ' is ', (ND(I,J),J=1,NDIM)
End Do
End If
! Allocate soln memory
Nx = MAXVAL(ND(:,1))
Ny = MAXVAL(ND(:,2))
If (NDIM .EQ. 3) Then
Nz = MAXVAL(ND(:,3))
Else
Nz = 1
End If
Allocate(X(Nx,Ny,Nz,NDIM+2)) ! ... reduction in rank, JKim 04/2008
If (prec(1:1) .eq. 's') Allocate(fX(Nx,Ny,Nz,NDIM+2))
X = 0D0
! Read soln values
If (vf(1:1) .eq. 'w') Then
If (prec(1:1) .eq. 'd') Then
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Read (10) tau(1), tau(2), tau(3), tau(4)
Read (10) ((((X(I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM+2)
End Do
Else
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Read (10) ftau(1), ftau(2), ftau(3), ftau(4)
Read (10) ((((fX(I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),K=1,ND(L,3)),M=1,NDIM+2)
X(:,:,:,:) = Dble(fX(:,:,:,:))
tau = Dble(ftau)
End Do
End If
Else
If (prec(1:1) .eq. 'd') Then
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Read (10) tau(1), tau(2), tau(3), tau(4)
Do K = 1, ND(L,3)
Read (10) (((X(I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),M=1,NDIM+2)
End Do
End Do
Else
Do L = 1, gridID ! ... stop after reading the desired grid, JKim 04/2008
Read (10) ftau(1), ftau(2), ftau(3), ftau(4)
Do K = 1, ND(L,3)
Read (10) (((fX(I,J,K,M),I=1,ND(L,1)),J=1,ND(L,2)),M=1,NDIM+2)
End Do
X(:,:,:,:) = Dble(fX(:,:,:,:))
tau = Dble(ftau)
End Do
End If
End If
Close (10)
If (prec(1:1) .eq. 's') Deallocate(fX)
Return
End Subroutine Read_Single_Soln
Subroutine output_format(file,prec,NDIM,gf,vf,ib,ftype)
Character(LEN=80) :: file
Character(LEN=2) :: prec, gf, vf, ib
Integer :: NDIM, ftype
Write (*,'(A)') ""
Write (*,'(A)') 'File "'//file(1:LEN_TRIM(file))//'" is '
If (ftype .eq. 0) Then
Write (*,'(5X,A)') 'a grid file'
Else
Write (*,'(5X,A)') 'a solution file'
End If
Write (*,'(5X,I1,A)') NDIM, 'D'
If (prec(1:1) .eq. 'd') Then
Write (*,'(5X,A)') 'double precision'
Else
Write (*,'(5X,A)') 'single precision'
End If
If (gf(1:1) .eq. 's') Then
Write (*,'(5X,A)') 'single grid'
Else
Write (*,'(5X,A)') 'multi-block'
End If
If (vf(1:1) .eq. 'w') Then
Write (*,'(5X,A)') 'whole'
Else
Write (*,'(5X,A)') 'planes'
End If
If (ib(1:1) .eq. 'y') Then
Write (*,'(5X,A)') 'with IBLANK'
Else
Write (*,'(5X,A)') 'without IBLANK'
End If
Return
End Subroutine output_format
Subroutine Write_Soln_Single_Grid(NDIM, ND, X, tau, fnamei, fnameleni, funit)
Implicit None
Real(KIND=8), Dimension(:,:,:,:), Pointer :: X
Real(KIND=8) :: tau(4)
Character(LEN=80) :: fnamei
Integer :: I, J, K, L, M, NDIM, funit, fnameleni
Integer, Dimension(:), Pointer :: ND
! ... open
Open (unit=funit, file=fnamei(1:fnameleni), form='unformatted', status='unknown', position='append')
! ... Write soln values
Write (funit) ((tau(i)),i=1,4)
if (NDIM == 3) then
Write (funit) ((((X(I,J,K,M),I=1,ND(1)),J=1,ND(2)),K=1,ND(3)),M=1,size(X,4))
else if (NDIM == 2) Then
Write (funit) ((((X(I,J,K,M),I=1,ND(1)),J=1,ND(2)),K=1,ND(3)),M=1,3), &
((((0.0_8,I=1,ND(1)),J=1,ND(2)),K=1,ND(3)),M=1,1), &
((((X(I,J,K,M),I=1,ND(1)),J=1,ND(2)),K=1,ND(3)),M=4,4)
else if (NDIM == 1) Then
Write (funit) ((((X(I,J,K,M),I=1,ND(1)),J=1,ND(2)),K=1,ND(3)),M=1,2), &
((((0.0_8,I=1,ND(1)),J=1,ND(2)),K=1,ND(3)),M=1,2), &
((((X(I,J,K,M),I=1,ND(1)),J=1,ND(2)),K=1,ND(3)),M=3,3)
end if
! ... close
Close (funit)
Return
End Subroutine Write_Soln_Single_Grid
Subroutine Write_Func_Single_Grid(NDIM, ND, X, fnamei, fnameleni, funit)
Implicit None
Real(KIND=8), Dimension(:,:,:,:), Pointer :: X
Character(LEN=80) :: fnamei
Integer :: I, J, K, L, M, NDIM, funit, fnameleni
Integer, Dimension(:), Pointer :: ND
! ... open
Open (unit=funit, file=fnamei(1:fnameleni), form='unformatted', status='unknown', position='append')
! ... Write soln values
Write (funit) ((((X(I,J,K,M),I=1,ND(1)),J=1,ND(2)),K=1,ND(3)),M=1,size(X,4))
! ... close
Close (funit)
Return
End Subroutine Write_Func_Single_Grid
Subroutine Write_Grid_Single_Grid(NDIM, ND, X, IB, fnamei, fnameleni, funit)
Implicit None
Real(KIND=8), Dimension(:,:,:,:), Pointer :: X
Integer, Pointer :: IB(:,:,:)
Real(KIND=8) :: tau(4)
Character(LEN=80) :: fnamei
Integer :: I, J, K, L, M, NDIM, funit, fnameleni
Integer, Dimension(:), Pointer :: ND
! ... open
Open (unit=funit, file=fnamei(1:fnameleni), form='unformatted', status='unknown', position='append')
! ... Write grid values
if (NDIM == 3) then
Write (funit) ((((X(I,J,K,M),I=1,ND(1)),J=1,ND(2)),K=1,ND(3)),M=1,size(X,4)), &
(((IB(I,J,K),I=1,ND(1)),J=1,ND(2)),K=1,ND(3))
else if (NDIM == 2) then
Write (funit) ((((X(I,J,K,M),I=1,ND(1)),J=1,ND(2)),K=1,ND(3)),M=1,2), &
((((0.0_8,I=1,ND(1)),J=1,ND(2)),K=1,ND(3)),M=1,1), &
(((IB(I,J,K),I=1,ND(1)),J=1,ND(2)),K=1,ND(3))