-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplot3d.cpp
1496 lines (1202 loc) · 52.8 KB
/
plot3d.cpp
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
/* An open source Plot3D ascii to binary converter.
Copyright (C) 2015 Michael Nucci ([email protected])
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "plot3d.hpp"
#include <fstream>
#include <iostream>
#include <cstdlib>
#include <string>
#include <sstream> //istringstream
#include <iterator> //istring_iterator
using std::cout;
using std::cerr;
using std::endl;
using std::vector;
using std::ifstream;
using std::ofstream;
using std::ios;
using std::istringstream;
using std::istream_iterator;
//----------------------------------------------------------------------------------------------------------------//
//plot 3d block constructor, member functions
//constructor -- assign passed variables to create plot3d block
plot3dBlock::plot3dBlock( const int &i, const int &j, const int &k, const vector<double> &xCoord, const vector<double> &yCoord, const vector<double> &zCoord){
numi = i;
numj = j;
numk = k;
x = xCoord;
y = yCoord;
z = zCoord;
}
plot3dBlock::plot3dBlock( const int &i, const int &j, const int &k ){
numi = i;
numj = j;
numk = k;
int numPts = i * j * k;
vector<double> initial(numPts, 0.0);
x = initial;
y = initial;
z = initial;
}
//constructor with no arguments
plot3dBlock::plot3dBlock(){
numi = 0;
numj = 0;
numk = 0;
vector<double> xCoord(1,0);
vector<double> yCoord(1,0);
vector<double> zCoord(1,0);
x = xCoord;
y = yCoord;
z = zCoord;
}
//plot3dBlock member function that calcualtes the volume of each cell
/*
All cells are assumed to be hexahedra. The 8 points that make up each hexahedron are used to
split the cell into 3 pyramids. The area of each pyramid is then calculated and the volume of the
3 pyramids are summed to get the volume of the hexahedra. This method is outlined in Hirsch.
Vp = Havg * (D1 (cross) D2))
The equation above shows how the volume of a pyramid (Vp) is calculated. Havg is the average distance from
the four base points to the top of the pyramid. D1 and D2 are the diagonal distances of the four base points.
*/
const vector<double> plot3dBlock::Volume() const {
int len = (numi-1)*(numj-1)*(numk-1); //number of cells in the block
vector<double> vol; //declare vector and reserve necessary space
vol.reserve(len);
//each hex cell is broken up into 3 pyramids and the volume of each pyramid is calculated
double pyramid1 = 0;
double pyramid2 = 0;
double pyramid3 = 0;
//vectors of coordinates of the 8 points that make up each hex cell
vector3d<double> botStarAft(0,0,0);
vector3d<double> botStarFore(0,0,0);
vector3d<double> botPortFore(0,0,0);
vector3d<double> botPortAft(0,0,0);
vector3d<double> topStarAft(0,0,0);
vector3d<double> topStarFore(0,0,0);
vector3d<double> topPortFore(0,0,0);
vector3d<double> topPortAft(0,0,0);
//vectors of the components that go into calculating the volume of each pyramid
vector3d<double> xp(0,0,0); //average vector from 4 base points to peak point
vector3d<double> xac(0,0,0); //vector along diagonal of base
vector3d<double> xbd(0,0,0); //vector along diagonal of base
int index = 0; //cell index counter
for ( int kk = 0; kk < numk-1; kk++){
for ( int jj = 0; jj < numj-1; jj++){
for ( int ii = 0; ii < numi-1; ii++){
//assign coordinates to 8 points that make up the cell being analyzed
int loc = GetLoc1D(ii, jj, kk, numi, numj);
//baseline location
botStarAft.SetX(x[loc]);
botStarAft.SetY(y[loc]);
botStarAft.SetZ(z[loc]);
//up 1 in the i-direction
botStarFore.SetX(x[loc+1]);
botStarFore.SetY(y[loc+1]);
botStarFore.SetZ(z[loc+1]);
//up 1 in the j-direction
botPortAft.SetX(x[loc+numi]);
botPortAft.SetY(y[loc+numi]);
botPortAft.SetZ(z[loc+numi]);
//up 1 in the i and j directions
botPortFore.SetX(x[loc+numi+1]);
botPortFore.SetY(y[loc+numi+1]);
botPortFore.SetZ(z[loc+numi+1]);
//up 1 in the k direction
topStarAft.SetX(x[loc+numi*numj]);
topStarAft.SetY(y[loc+numi*numj]);
topStarAft.SetZ(z[loc+numi*numj]);
//up 1 in the i and k directions
topStarFore.SetX(x[loc+numi*numj+1]);
topStarFore.SetY(y[loc+numi*numj+1]);
topStarFore.SetZ(z[loc+numi*numj+1]);
//up 1 in the j and k directions
topPortAft.SetX(x[loc+numi+numi*numj]);
topPortAft.SetY(y[loc+numi+numi*numj]);
topPortAft.SetZ(z[loc+numi+numi*numj]);
//up 1 in the i, j, and k directions
topPortFore.SetX(x[loc+numi+numi*numj+1]);
topPortFore.SetY(y[loc+numi+numi*numj+1]);
topPortFore.SetZ(z[loc+numi+numi*numj+1]);
//Point of all three pyramids is located at the top, starboard, aft corner of the cell
//Calculate volume for pyramid 1 - quad face is bottom side
xp = 0.25*((botStarAft-topStarAft) + (botPortAft-topStarAft) + (botStarFore-topStarAft) + (botPortFore-topStarAft));
xac = botPortFore - botStarAft;
xbd = botStarFore - botPortAft;
pyramid1 = 1.0/6.0 * xp.DotProd(xac.CrossProd(xbd));
//Calculate volume for pyramid2 - quad face is fore side
xp = 0.25*((botStarFore-topStarAft) + (botPortFore-topStarAft) + (topStarFore-topStarAft) + (topPortFore-topStarAft));
xac = topPortFore - botStarFore;
xbd = topStarFore - botPortFore;
pyramid2 = 1.0/6.0 * xp.DotProd(xac.CrossProd(xbd));
//Calculate volume for pyramid3 - quad face is port side
xp = 0.25*((botPortFore-topStarAft) + (botPortAft-topStarAft) + (topPortFore-topStarAft) + (topPortAft-topStarAft));
xac = topPortFore - botPortAft;
xbd = botPortFore - topPortAft;
pyramid3 = 1.0/6.0 * xp.DotProd(xac.CrossProd(xbd));
//vol[index] = pyramid1 + pyramid2 + pyramid3;
vol.push_back( pyramid1 + pyramid2 + pyramid3 );
if (vol[index] == 0){
cerr << "ERROR: Negative volume in PLOT3D block at index " << index << "!!!" << endl;
cerr << "i-dim = " << ii+1 << ", j-dim = " << jj+1 << ", k-dim = " << kk+1 << endl;
exit(1);
}
index++;
}
}
}
return vol;
}
//plot3dBlock member function that calcualtes the centroid of each cell
//the centroid of the hexahedron is the average of the 8 points that define it
const vector<vector3d<double> > plot3dBlock::Centroid() const {
int len = (numi-1)*(numj-1)*(numk-1); //number of cells in the block
vector<vector3d<double> > centroid; //declare and preallocate centroid vector
centroid.reserve(len);
//vectors of coordinates of the 8 points that make up each hex cell
vector3d<double> botStarAft(0,0,0);
vector3d<double> botStarFore(0,0,0);
vector3d<double> botPortFore(0,0,0);
vector3d<double> botPortAft(0,0,0);
vector3d<double> topStarAft(0,0,0);
vector3d<double> topStarFore(0,0,0);
vector3d<double> topPortFore(0,0,0);
vector3d<double> topPortAft(0,0,0);
//int index = 0; //cell index counter
for ( int kk = 0; kk < numk-1; kk++){
for ( int jj = 0; jj < numj-1; jj++){
for ( int ii = 0; ii < numi-1; ii++){
//assign coordinates to 8 points that make up the cell being analyzed
int loc = GetLoc1D(ii, jj, kk, numi, numj);
//baseline location
botStarAft.SetX(x[loc]);
botStarAft.SetY(y[loc]);
botStarAft.SetZ(z[loc]);
//up 1 in the i direction
botStarFore.SetX(x[loc+1]);
botStarFore.SetY(y[loc+1]);
botStarFore.SetZ(z[loc+1]);
//up 1 in the j direction
botPortAft.SetX(x[loc+numi]);
botPortAft.SetY(y[loc+numi]);
botPortAft.SetZ(z[loc+numi]);
//up 1 in the i and j directions
botPortFore.SetX(x[loc+numi+1]);
botPortFore.SetY(y[loc+numi+1]);
botPortFore.SetZ(z[loc+numi+1]);
//up 1 in the k direction
topStarAft.SetX(x[loc+numi*numj]);
topStarAft.SetY(y[loc+numi*numj]);
topStarAft.SetZ(z[loc+numi*numj]);
//up 1 in the i and k directions
topStarFore.SetX(x[loc+numi*numj+1]);
topStarFore.SetY(y[loc+numi*numj+1]);
topStarFore.SetZ(z[loc+numi*numj+1]);
//up 1 in the j and k directions
topPortAft.SetX(x[loc+numi+numi*numj]);
topPortAft.SetY(y[loc+numi+numi*numj]);
topPortAft.SetZ(z[loc+numi+numi*numj]);
//up 1 in the i, j, and k directions
topPortFore.SetX(x[loc+numi+numi*numj+1]);
topPortFore.SetY(y[loc+numi+numi*numj+1]);
topPortFore.SetZ(z[loc+numi+numi*numj+1]);
//Calculate the centroid of the cell
//centroid[index] = 0.125 * (botStarAft + botStarFore + botPortAft + botPortFore + topStarAft + topStarFore + topPortAft + topPortFore);
centroid.push_back( 0.125 * (botStarAft + botStarFore + botPortAft + botPortFore + topStarAft + topStarFore + topPortAft + topPortFore) );
//index++;
}
}
}
return centroid;
}
//plot3dBlock member function that calcualtes the area of each face normal to the i-direction
//the area is calculated as half the cross product of the diagonal vectors of the 4-sided face
/*
A---------------B
| |
| |
| |
| |
C---------------D
A = 0.5 * rAD (cross) rCB
In the equation above rAD is the vector from D to A and rCD is the vector from B to C. The normal vector
points in the direction of increasing i.
*/
const vector<vector3d<double> > plot3dBlock::FaceAreaI() const {
int len = numi * (numj - 1) * (numk - 1); //number of i-faces in the block
vector<vector3d<double> > fArea; //declare and reserve space for vector
fArea.reserve(len);
//vectors of coordinates of the 4 points that make up each face
vector3d<double> botStarAft(0,0,0);
vector3d<double> botPortAft(0,0,0);
vector3d<double> topStarAft(0,0,0);
vector3d<double> topPortAft(0,0,0);
int index = 0; //cell index counter
for ( int kk = 0; kk < numk-1; kk++){
for ( int jj = 0; jj < numj-1; jj++){
for ( int ii = 0; ii < numi; ii++){
//assign coordinates to 4 points that make up the face being analyzed
int loc = GetLoc1D(ii, jj, kk, numi, numj);
//baseline location
botStarAft.SetX(x[loc]);
botStarAft.SetY(y[loc]);
botStarAft.SetZ(z[loc]);
//up 1 in j direction
botPortAft.SetX(x[loc+numi]);
botPortAft.SetY(y[loc+numi]);
botPortAft.SetZ(z[loc+numi]);
//up 1 in k direction
topStarAft.SetX(x[loc+numi*numj]);
topStarAft.SetY(y[loc+numi*numj]);
topStarAft.SetZ(z[loc+numi*numj]);
//up 1 in j and k directions
topPortAft.SetX(x[loc+numi+numi*numj]);
topPortAft.SetY(y[loc+numi+numi*numj]);
topPortAft.SetZ(z[loc+numi+numi*numj]);
//Calculate area for face by taking 1/2 of the cross product between opposite diagonals
vector3d<double> xac = topPortAft - botStarAft; //vector from opposite corners of face
vector3d<double> xbd = botPortAft - topStarAft; //vector from opposite corners of face
//fArea[index] = 0.5 * xbd.CrossProd(xac); //area vector is calculated so that normal points nominally in direction of increasing i-coordinate
fArea.push_back( 0.5 * xbd.CrossProd(xac) ); //area vector is calculated so that normal points nominally in direction of increasing i-coordinate
if (fArea[index].Mag() <= 0){
cerr << "ERROR: Negative face area in PLOT3D block at index " << index << "!!!" << endl;
cerr << "Face area = " << fArea[index].Mag() << endl;
cerr << "i-dim = " << ii << ", j-dim = " << jj << ", k-dim = " << kk << endl;
cerr << "Vectors to opposite diagonals are : " << xac << " and " << xbd << endl;
exit(0);
}
index++;
}
}
}
return fArea;
}
//plot3dBlock member function that calcualtes the center of each face normal to the i-direction
//the face center is calculated as the average of the 4 points that comprise it
const vector<vector3d<double> > plot3dBlock::FaceCenterI() const {
int len = numi * (numj - 1) * (numk - 1); //number of i-faces in the block
vector<vector3d<double> > fCenter; //declare and reserve space for vector
fCenter.reserve(len);
//vectors of coordinates of the 4 points that make up each face
vector3d<double> botStarAft(0,0,0);
vector3d<double> botPortAft(0,0,0);
vector3d<double> topStarAft(0,0,0);
vector3d<double> topPortAft(0,0,0);
//int index = 0; //cell index counter
for ( int kk = 0; kk < numk-1; kk++){
for ( int jj = 0; jj < numj-1; jj++){
for ( int ii = 0; ii < numi; ii++){
//assign coordinates to 4 points that make up the face being analyzed
int loc = GetLoc1D(ii, jj, kk, numi, numj);
//baseline location
botStarAft.SetX(x[loc]);
botStarAft.SetY(y[loc]);
botStarAft.SetZ(z[loc]);
//up 1 in j direction
botPortAft.SetX(x[loc+numi]);
botPortAft.SetY(y[loc+numi]);
botPortAft.SetZ(z[loc+numi]);
//up 1 in k direction
topStarAft.SetX(x[loc+numi*numj]);
topStarAft.SetY(y[loc+numi*numj]);
topStarAft.SetZ(z[loc+numi*numj]);
//up 1 in j and k directions
topPortAft.SetX(x[loc+numi+numi*numj]);
topPortAft.SetY(y[loc+numi+numi*numj]);
topPortAft.SetZ(z[loc+numi+numi*numj]);
//Calculate face center by averaging four points that make up the face
//fCenter[index] = 0.25 * (botStarAft + botPortAft + topStarAft + topPortAft);
fCenter.push_back( 0.25 * (botStarAft + botPortAft + topStarAft + topPortAft) );
//index++;
}
}
}
return fCenter;
}
//plot3dBlock member function that calcualtes the area of each face normal to the j-direction
//the area is calculated as half the cross product of the diagonal vectors of the 4-sided face
/*
A---------------B
| |
| |
| |
| |
C---------------D
A = 0.5 * rAD (cross) rCB
In the equation above rAD is the vector from D to A and rCD is the vector from B to C. The normal
points in the direction of increasing j.
*/
const vector<vector3d<double> > plot3dBlock::FaceAreaJ() const {
int len = (numi -1) * numj * (numk - 1); //number of i-faces in the block
vector<vector3d<double> > fArea; //declare and reserve space for vector
fArea.reserve(len);
//vectors of coordinates of the 4 points that make up each face
vector3d<double> botStarAft(0,0,0);
vector3d<double> botPortAft(0,0,0);
vector3d<double> topStarAft(0,0,0);
vector3d<double> topPortAft(0,0,0);
int index = 0; //cell index counter
for ( int kk = 0; kk < numk-1; kk++){
for ( int jj = 0; jj < numj; jj++){
for ( int ii = 0; ii < numi-1; ii++){
//assign coordinates to 4 points that make up the face being analyzed
int loc = GetLoc1D(ii, jj, kk, numi, numj);
//up 1 in i direction
botStarAft.SetX(x[loc+1]);
botStarAft.SetY(y[loc+1]);
botStarAft.SetZ(z[loc+1]);
//baseline location
botPortAft.SetX(x[loc]);
botPortAft.SetY(y[loc]);
botPortAft.SetZ(z[loc]);
//up 1 in i and k directions
topStarAft.SetX(x[loc+numi*numj+1]);
topStarAft.SetY(y[loc+numi*numj+1]);
topStarAft.SetZ(z[loc+numi*numj+1]);
//up 1 in k direction
topPortAft.SetX(x[loc+numi*numj]);
topPortAft.SetY(y[loc+numi*numj]);
topPortAft.SetZ(z[loc+numi*numj]);
//Calculate area for face by taking 1/2 of the cross product between opposite diagonals
vector3d<double> xac = topPortAft - botStarAft; //vector from opposite corners of face
vector3d<double> xbd = botPortAft - topStarAft; //vector from opposite corners of face
//fArea[index] = 0.5 * xbd.CrossProd(xac); //area vector is calculated so that normal nominally points in direction of increasing j-coordinate
fArea.push_back( 0.5 * xbd.CrossProd(xac) ); //area vector is calculated so that normal nominally points in direction of increasing j-coordinate
if (fArea[index].Mag() <= 0){
cerr << "ERROR: Negative face area in PLOT3D block at index " << index << "!!!" << endl;
cerr << "Face area = " << fArea[index].Mag() << endl;
cerr << "i-dim = " << ii+1 << ", j-dim = " << jj+1 << ", k-dim = " << kk+1 << endl;
cerr << "Vectors to opposite diagonals are : " << xac << " and " << xbd << endl;
exit(0);
}
index++;
}
}
}
return fArea;
}
//plot3dBlock member function that calcualtes the area of each face normal to the j-direction
//the face center is calculated as the average of the 4 points that comprise it
const vector<vector3d<double> > plot3dBlock::FaceCenterJ() const {
int len = (numi -1) * numj * (numk - 1); //number of i-faces in the block
vector<vector3d<double> > fCenter; //declare and reserve space for vector
fCenter.reserve(len);
//vectors of coordinates of the 4 points that make up each face
vector3d<double> botStarAft(0,0,0);
vector3d<double> botPortAft(0,0,0);
vector3d<double> topStarAft(0,0,0);
vector3d<double> topPortAft(0,0,0);
//int index = 0; //cell index counter
for ( int kk = 0; kk < numk-1; kk++){
for ( int jj = 0; jj < numj; jj++){
for ( int ii = 0; ii < numi-1; ii++){
//assign coordinates to 4 points that make up the face being analyzed
int loc = GetLoc1D(ii, jj, kk, numi, numj);
//up 1 in i direction
botStarAft.SetX(x[loc+1]);
botStarAft.SetY(y[loc+1]);
botStarAft.SetZ(z[loc+1]);
//baseline location
botPortAft.SetX(x[loc]);
botPortAft.SetY(y[loc]);
botPortAft.SetZ(z[loc]);
//up 1 in i and k directions
topStarAft.SetX(x[loc+numi*numj+1]);
topStarAft.SetY(y[loc+numi*numj+1]);
topStarAft.SetZ(z[loc+numi*numj+1]);
//up 1 in k direction
topPortAft.SetX(x[loc+numi*numj]);
topPortAft.SetY(y[loc+numi*numj]);
topPortAft.SetZ(z[loc+numi*numj]);
//Calculate face center by averaging the four points that make up the face
//fCenter[index] = 0.25 * (botStarAft + botPortAft + topStarAft + topPortAft);
fCenter.push_back( 0.25 * (botStarAft + botPortAft + topStarAft + topPortAft) );
//index++;
}
}
}
return fCenter;
}
//plot3dBlock member function that calcualtes the area of each face normal to the k-direction
//the area is calculated as half the cross product of the diagonal vectors of the 4-sided face
/*
A---------------B
| |
| |
| |
| |
C---------------D
A = 0.5 * rAD (cross) rCB
In the equation above rAD is the vector from D to A and rCD is the vector from B to C. The normal vector
points in the direction of increasing k.
*/
const vector<vector3d<double> > plot3dBlock::FaceAreaK() const {
int len = (numi - 1) * (numj - 1) * numk; //number of i-faces in the block
vector<vector3d<double> > fArea; //declare and reserve space for vector
fArea.reserve(len);
//vectors of coordinates of the 4 points that make up each face
vector3d<double> botStarAft(0,0,0);
vector3d<double> botPortAft(0,0,0);
vector3d<double> topStarAft(0,0,0);
vector3d<double> topPortAft(0,0,0);
int index = 0; //cell index counter
for ( int kk = 0; kk < numk; kk++){
for ( int jj = 0; jj < numj-1; jj++){
for ( int ii = 0; ii < numi-1; ii++){
//assign coordinates to 4 points that make up the face being analyzed
int loc = GetLoc1D(ii, jj, kk, numi, numj);
//baseline location
botStarAft.SetX(x[loc]);
botStarAft.SetY(y[loc]);
botStarAft.SetZ(z[loc]);
//up 1 in j direction
botPortAft.SetX(x[loc+numi]);
botPortAft.SetY(y[loc+numi]);
botPortAft.SetZ(z[loc+numi]);
//up 1 in i direction
topStarAft.SetX(x[loc+1]);
topStarAft.SetY(y[loc+1]);
topStarAft.SetZ(z[loc+1]);
//up 1 in i and j directions
topPortAft.SetX(x[loc+numi+1]);
topPortAft.SetY(y[loc+numi+1]);
topPortAft.SetZ(z[loc+numi+1]);
//Calculate area for face by taking 1/2 of the cross product between opposite diagonals
vector3d<double> xac = topPortAft - botStarAft; //vector from opposite corners of face
vector3d<double> xbd = botPortAft - topStarAft; //vector from opposite corners of face
//fArea[index] = 0.5 * xac.CrossProd(xbd); //area vector is calculated so that normal nominally points in direction of increasing k-coordinate
fArea.push_back( 0.5 * xac.CrossProd(xbd) ); //area vector is calculated so that normal nominally points in direction of increasing k-coordinate
if (fArea[index].Mag() <= 0){
cerr << "ERROR: Negative face area in PLOT3D block at index " << index << "!!!" << endl;
cerr << "Face area = " << fArea[index].Mag() << endl;
cerr << "i-dim = " << ii+1 << ", j-dim = " << jj+1 << ", k-dim = " << kk+1 << endl;
cerr << "Vectors to opposite diagonals are : " << xac << " and " << xbd << endl;
exit(0);
}
index++;
}
}
}
return fArea;
}
//plot3dBlock member function that calcualtes the area of each face normal to the k-direction
//the face center is calculated as the average of the 4 points that comprise it
const vector<vector3d<double> > plot3dBlock::FaceCenterK() const {
int len = (numi - 1) * (numj - 1) * numk; //number of i-faces in the block
vector<vector3d<double> > fCenter; //declare and reserve space for vector
fCenter.reserve(len);
//vectors of coordinates of the 8 points that make up each hex cell
vector3d<double> botStarAft(0,0,0);
vector3d<double> botPortAft(0,0,0);
vector3d<double> topStarAft(0,0,0);
vector3d<double> topPortAft(0,0,0);
//int index = 0; //cell index counter
for ( int kk = 0; kk < numk; kk++){
for ( int jj = 0; jj < numj-1; jj++){
for ( int ii = 0; ii < numi-1; ii++){
//assign coordinates to 8 points that make up the cell being analyzed
int loc = GetLoc1D(ii, jj, kk, numi, numj);
//baseline location
botStarAft.SetX(x[loc]);
botStarAft.SetY(y[loc]);
botStarAft.SetZ(z[loc]);
//up 1 in j direction
botPortAft.SetX(x[loc+numi]);
botPortAft.SetY(y[loc+numi]);
botPortAft.SetZ(z[loc+numi]);
//up 1 in i direction
topStarAft.SetX(x[loc+1]);
topStarAft.SetY(y[loc+1]);
topStarAft.SetZ(z[loc+1]);
//up 1 in i and j directions
topPortAft.SetX(x[loc+numi+1]);
topPortAft.SetY(y[loc+numi+1]);
topPortAft.SetZ(z[loc+numi+1]);
//Calculate face center by averaging four points that make up cell face
//fCenter[index] = 0.25 * (botStarAft + botPortAft + topStarAft + topPortAft);
fCenter.push_back( 0.25 * (botStarAft + botPortAft + topStarAft + topPortAft) );
//index++;
}
}
}
return fCenter;
}
//---------------------------------------------------------------------------------------------------------------//
//function to read in a plot3d grid and assign it to a plot3dMesh data type
vector<plot3dBlock> ReadP3dGrid(const string &gridName, const double &LRef, double &numCells) {
//open binary plot3d grid file
ifstream fName;
string fPostfix = ".xyz";
string readName = gridName + fPostfix;
fName.open(readName.c_str(), ios::in | ios::binary);
//check to see if file opened correctly
if (fName.fail()) {
cerr << "ERROR: Error in plot3d.cpp:ReadP3dGrid(). Grid file " << readName << " did not open correctly!!!" << endl;
exit(0);
}
//read the number of plot3d blocks in the file
cout << "Reading grid file..." << endl << endl;
int numBlks;
fName.read(reinterpret_cast<char *>(&numBlks), sizeof(numBlks));
cout << "Number of blocks: " << numBlks << endl << endl;
//read the number of i, j, k coordinates in each plot3d block
cout << "Size of each block is..." << endl;
vector<int> vecI(numBlks,0);
vector<int> vecJ(numBlks,0);
vector<int> vecK(numBlks,0);
int tempInt = 0;
numCells = 0;
//loop over all blocks and fill i, j, k vectors with block sizes
for ( int ii=0; ii < numBlks; ii++){
cout << "Block Number: " << ii << " ";
fName.read(reinterpret_cast<char *>(&tempInt), sizeof(tempInt));
vecI[ii] = tempInt;
cout << "I-DIM: " << tempInt << " ";
fName.read(reinterpret_cast<char *>(&tempInt), sizeof(tempInt));
vecJ[ii] = tempInt;
cout << "J-DIM: " << tempInt << " ";
fName.read(reinterpret_cast<char *>(&tempInt), sizeof(tempInt));
vecK[ii] = tempInt;
cout << "K-DIM: " << tempInt << endl;
//calculate total number of cells (subtract 1 because number of cells is 1 less than number of points)
numCells += (vecI[ii] - 1) * (vecJ[ii] - 1) * (vecK[ii] - 1);
}
cout << endl;
//read each block and add it to the vector of plot3dBlocks
double tempDouble=0;
vector<plot3dBlock> mesh;
mesh.reserve(numBlks);
for ( int ii=0; ii < numBlks; ii++){
int size = vecI[ii]*vecJ[ii]*vecK[ii];
vector<double> tempX(size,0.0);
vector<double> tempY(size,0.0);
vector<double> tempZ(size,0.0);
for (int jj=0; jj < size; jj++){
fName.read(reinterpret_cast<char *>(&tempDouble), sizeof(tempDouble));
tempX[jj] = tempDouble / LRef;
}
for (int jj=0; jj < size; jj++){
fName.read(reinterpret_cast<char *>(&tempDouble), sizeof(tempDouble));
tempY[jj] = tempDouble / LRef;
}
for (int jj=0; jj < size; jj++){
fName.read(reinterpret_cast<char *>(&tempDouble), sizeof(tempDouble));
tempZ[jj] = tempDouble / LRef;
}
//create single plot3dBlock and assign it appropriate location in vector
plot3dBlock singleBlock(vecI[ii],vecJ[ii],vecK[ii],tempX,tempY,tempZ);
mesh.push_back(singleBlock);
cout << "Block " << ii << " read" << endl;
}
cout << endl << "Grid file read" << endl;
cout << "Total number of cells is " << numCells << endl;
//close plot3d grid file
fName.close();
return mesh;
}
//function to trim leading and trailing whitespace from a string, and also remove data after a comment
string Trim(const string &s, const string &whitespace){
const string comment = "#"; //# is comment character for input file
if (s.empty()){
return ""; //string is empty
}
else{
const unsigned int sBegin = s.find_first_not_of(whitespace); //find index of first non whitespace character
const int sEnd = s.find_last_not_of(whitespace); //find index of last non whitespace character
const int sRange = sEnd - sBegin +1; //range to trim string to
string temp = s.substr(sBegin,sRange);
const int tempComment = temp.find(comment); //find index of first comment character
const int tempRange = tempComment - 0; //find range of string to return
return temp.substr(0,tempRange);
}
}
//---------------------------------------------------------------------------------------------------------------//
//function to read in a plot3d grid and assign it to a plot3dMesh data type
vector<plot3dBlock> ReadP3dGridAscii(const string &gridName, const double &LRef, double &numCells) {
//open binary plot3d grid file
ifstream fName;
string fPostfix = ".xyz";
string readName = gridName + fPostfix;
fName.open(readName.c_str(), ios::in);
//check to see if file opened correctly
if (fName.fail()) {
cerr << "ERROR: Error in plot3d.cpp:ReadP3dGridAscii(). Grid file " << readName << " did not open correctly!!!" << endl;
exit(0);
}
cout << "Reading grid " << readName << endl;
string line;
int lCounter = 0;
int numBlks = 0;
vector<int> vecI, vecJ, vecK;
vector<double> tempX, tempY, tempZ;
vector<plot3dBlock> mesh;
int blkCounter = 0;
int nodeCounter = 0;
int size = 0;
while(getline(fName,line)){ //while there are still lines in the input file, execute loop
line = Trim(line); //remove leading and trailing whitespace and ignore comments
//split line into words
istringstream buf(line);
istream_iterator<string> beg(buf), end;
vector<string> tokens(beg,end);
if ( lCounter == 0 ){
numBlks = atoi(tokens[0].c_str());
//read the number of i, j, k coordinates in each plot3d block
cout << "Grid has " << numBlks << " blocks" << endl;
cout << "Size of each block is..." << endl;
vecI.resize(numBlks);
vecJ.resize(numBlks);
vecK.resize(numBlks);
mesh.reserve(numBlks);
lCounter++;
}
else if ( lCounter <= numBlks ){
cout << "Block Number: " << lCounter - 1 << " ";
vecI[lCounter - 1] = atoi(tokens[0].c_str());
cout << "I-DIM: " << atoi(tokens[0].c_str()) << " ";
vecJ[lCounter - 1] = atoi(tokens[1].c_str());
cout << "J-DIM: " << atoi(tokens[1].c_str()) << " ";
vecK[lCounter - 1] = atoi(tokens[2].c_str());
cout << "K-DIM: " << atoi(tokens[2].c_str()) << endl;
//calculate total number of cells (subtract 1 because number of cells is 1 less than number of points)
numCells += (vecI[lCounter - 1] - 1) * (vecJ[lCounter - 1] - 1) * (vecK[lCounter - 1] - 1);
cout << endl;
lCounter++;
}
else{
//read each block and add it to the vector of plot3dBlocks
for ( int ii = 0; ii < 3; ii++ ){ //loop over number of variables on a line
if ( nodeCounter == 0 ){
size = vecI[blkCounter]*vecJ[blkCounter]*vecK[blkCounter];
tempX.resize(size);
tempY.resize(size);
tempZ.resize(size);
}
if ( nodeCounter < size ){ //reading x-coord
tempX[nodeCounter] = atof(tokens[ii].c_str()) / LRef;
nodeCounter++;
}
else if ( nodeCounter < 2 * size ){ //reading y-coord
tempY[nodeCounter - size] = atof(tokens[ii].c_str()) / LRef;
nodeCounter++;
}
else if ( nodeCounter < 3 * size ){ //reading z-coord
tempZ[nodeCounter - 2 * size] = atof(tokens[ii].c_str()) / LRef;
nodeCounter++;
}
if ( nodeCounter == 3 * size ){
//create single plot3dBlock and assign it appropriate location in vector
plot3dBlock singleBlock(vecI[blkCounter],vecJ[blkCounter],vecK[blkCounter],tempX,tempY,tempZ);
mesh.push_back(singleBlock);
blkCounter++;
nodeCounter = 0;
cout << "Block " << blkCounter << " read" << endl;
}
}
lCounter++;
}
}
cout << endl << "Grid file read" << endl;
cout << "Total number of cells is " << numCells << endl;
//close plot3d grid file
fName.close();
return mesh;
}
//---------------------------------------------------------------------------------------------------------------//
//function to write a plot3d grid to file
void WriteP3dGrid(const vector<plot3dBlock> &mesh, const string &gridName, const double &LRef) {
//open binary plot3d grid file
ofstream outFile;
string fPostfix = ".xyz";
string writeName = gridName + fPostfix;
outFile.open(writeName.c_str(), ios::out | ios::binary);
//check to see if file opened correctly
if (outFile.fail()) {
cerr << "ERROR: Error in plot3d.cpp:ReadP3dGrid(). Grid file " << writeName << " did not open correctly!!!" << endl;
exit(0);
}
//write the number of plot3d blocks in the file
cout << "Writing grid file..." << endl << endl;
int numBlks = mesh.size();
outFile.write(reinterpret_cast<char *>(&numBlks), sizeof(numBlks));
//write i, j, k dimension for each block
int dumInt = 0;
double dumDouble=0.0;
for ( int ll=0; ll < numBlks; ll++ ){ //loop over all blocks
dumInt = mesh[ll].NumI();
outFile.write(reinterpret_cast<char *>(&dumInt), sizeof(dumInt));
dumInt = mesh[ll].NumJ();
outFile.write(reinterpret_cast<char *>(&dumInt), sizeof(dumInt));
dumInt = mesh[ll].NumK();
outFile.write(reinterpret_cast<char *>(&dumInt), sizeof(dumInt));
}
//write out x, y, z coordinates of nodes
for ( int ll = 0; ll < numBlks; ll++ ){ //loop over all blocks
for ( int nn = 0; nn < 3; nn++ ){ //loop over dimensions (3)
for ( int cc = 0; cc < mesh[ll].NumNodes(); cc++ ){ //loop over all grid points
//for a given block, first write out all x coordinates, then all y coordinates, then all z coordinates
if (nn == 0 ) {
dumDouble = mesh[ll].XLoc(cc) * LRef;
}
else if (nn == 1){
dumDouble = mesh[ll].YLoc(cc) * LRef;
}
else {
dumDouble = mesh[ll].ZLoc(cc) * LRef;
}
//write to file
outFile.write(reinterpret_cast<char *>(&dumDouble), sizeof(dumDouble));
}
}
}
//close plot3d grid file
outFile.close();
}
//function to take in imax, jmax, kmax, and vector index and return the i, j, k indices of that cell
vector3d<int> GetIJK(const int &imax, const int &jmax, const int &kmax, const int &index){
vector3d<int> ijk;
bool breakFlag = false;
//Loop over all possible i, j, k combinations. When calculated index matches given index, i, j, k location
//is found. Once found, break out of loops and return
for ( int kk = 0; kk < kmax; kk++ ){
for ( int jj = 0; jj < jmax; jj++ ){
for ( int ii = 0; ii < imax; ii++ ){
int loc = GetLoc1D(ii, jj, kk, imax, jmax);
if ( loc == index ){
ijk.SetX(ii);
ijk.SetY(jj);
ijk.SetZ(kk);
breakFlag = true;
break;
}
}
if (breakFlag) break;
}
if (breakFlag) break;
}
return ijk;
}
//------------------------------------------------------------------------------------------------------------------
//functions to take in i, j, k indexes of a cell and return the 1D index of the face belonging to that cell
/*
_________________________________________
| | | | |