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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088 | #include <stdio.h>
#include "meshkit/AssyMesher.hpp"
#include "meshkit/LocalSet.hpp"
#include "meshkit/MKCore.hpp"
#include "meshkit/ModelEnt.hpp"
#include "meshkit/OneToOneSwept.hpp"
#include "meshkit/RegisterMeshOp.hpp"
#include "meshkit/SizingFunction.hpp"
#include "iMesh_extensions.h"
#include "MBCN.h"
namespace MeshKit
{
// static registration of this mesh scheme
moab::EntityType AssyMesher_tps[] = { moab::MBTET,
moab::MBQUAD,
moab::MBTRI,
moab::MBHEX,
moab::MBMAXTYPE};
const moab::EntityType* AssyMesher::output_types()
{ return AssyMesher_tps; }
AssyMesher::AssyMesher(MKCore *mk, const MEntVector &me_vec)<--- Member variable 'AssyMesher::m_nSides' is not initialized in the constructor.<--- Member variable 'AssyMesher::have_common' is not initialized in the constructor.<--- Member variable 'AssyMesher::m_nAssemblyMat' is not initialized in the constructor.<--- Member variable 'AssyMesher::m_nPincells' is not initialized in the constructor.<--- Member variable 'AssyMesher::m_dPitch' is not initialized in the constructor.
: MeshScheme( mk, me_vec),
igeom(mk->igeom_instance()), imesh(mk->imesh_instance()),
mb (mk->moab_instance())
{
m_nPlanar = 0; //default is 3D
m_nLineNumber = 0;
szComment = "!";<--- Variable 'szComment' is assigned in constructor body. Consider performing initialization in initialization list.
MAXCHARS = 300;
pi = M_PI;
m_dRadialSize = -1.0;
m_dAxialSize = -1.0;
m_dTetMeshSize = -1.0;
m_nDimensions = 0;
m_nMaterialSetId = 1;
m_nNeumannSetId = 1;
m_szEngine = "acis";<--- Variable 'm_szEngine' is assigned in constructor body. Consider performing initialization in initialization list.
m_szMeshType = "hex";<--- Variable 'm_szMeshType' is assigned in constructor body. Consider performing initialization in initialization list.
m_nDuct = 0;
m_nDuctNum = 0;
m_nJouFlag = 0;
m_szSideset = "yes";<--- Variable 'm_szSideset' is assigned in constructor body. Consider performing initialization in initialization list.
m_dMergeTol = 1e-4;
m_GeomFile = "";<--- Variable 'm_GeomFile' is assigned in constructor body. Consider performing initialization in initialization list.
}
AssyMesher::~AssyMesher()
{}
bool AssyMesher::add_modelent(ModelEnt *model_ent)
{
return MeshOp::add_modelent(model_ent);
}
void AssyMesher::setup_this()
{
// populate the model entities based on the geometry
mk_core()->populate_model_ents();
// create a set with the names of materials as std::string
std::set<std::string> allMtrlsSet;
for (int mtrlIndx = 1; mtrlIndx <= m_nAssemblyMat; ++mtrlIndx)
{
allMtrlsSet.insert(m_szAssmMat(mtrlIndx));
}
// get a vector of all surfaces
std::vector<iGeom::EntityHandle> allSurfs;
iGeom::EntitySetHandle rootSetHandle = igeom->getRootSet();
igeom->getEntities(rootSetHandle, iBase_FACE, allSurfs);
// get a vector of all surfaces that have are identified
// as top surfaces for some material
std::vector<iGeom::EntityHandle> *allTopSurfs =
selectByMaterialsAndNameSuffix(allSurfs, allMtrlsSet, "_top");
// get the tag on the geometry that identifies the associated model entity
iGeom::TagHandle meTag = mk_core()->igeom_model_tag();
// sizing function for radial mesh size . . . MeshKit core will delete it
SizingFunction* radialMeshSizePtr;
if (m_dRadialSize <= 0 && m_nDimensions > 0)
{
// the radial size was not specified in the input
// but there are pins
if (m_szGeomType == "hexagonal")
{
double pitch = m_dMAssmPitch(1, m_nDimensions);
radialMeshSizePtr = new SizingFunction(mk_core(), -1, 0.1*pitch);
}
else
{
double pitchX = m_dMAssmPitchX(1, m_nDimensions);
double pitchY = m_dMAssmPitchY(1, m_nDimensions);
radialMeshSizePtr = new SizingFunction(mk_core(), -1,
0.02*0.5*(pitchX + pitchY));
}
}
else if (m_dRadialSize <= 0)
{
// there are no pins and no radial mesh size
radialMeshSizePtr = new SizingFunction(mk_core(), -1, 1.0);
}
else
{
radialMeshSizePtr = new SizingFunction(mk_core(), -1, m_dRadialSize);
}
int radialSizeIndex = radialMeshSizePtr->core_index();
// sizing function for axial mesh size . . . MeshKit core will delete it
// it looks like axial mesh size can be more complicated depending
// on number of ducts but for the moment assume it is uniform
SizingFunction* axialMeshSizePtr;
if (m_dAxialSize <= 0) // the axial size was not specified in the input
{
// in uniform size case, default is 10 intervals, i.e. 10% of height
axialMeshSizePtr = new SizingFunction(mk_core(), 10, -1);
}
else
{
axialMeshSizePtr = new SizingFunction(mk_core(), -1, m_dAxialSize);
}
int axialSizeIndex = axialMeshSizePtr->core_index();
// set the mesh sizes and operations starting from top surfaces
for (unsigned int tsi = 0; tsi < allTopSurfs->size(); ++tsi)
{
// Remark: iterator pattern may perform better that indexed loop here
iGeom::EntityHandle topGeoHandle = (*allTopSurfs)[tsi];
ModelEnt* meTopSurf;
igeom->getData(topGeoHandle, meTag, &meTopSurf);
// TODO: check success
meTopSurf->sizing_function_index(radialSizeIndex);
MEntVector topSurfVec;
topSurfVec.push_back(meTopSurf);
MeshOp* paveOp = mk_core()->construct_meshop("CAMALPaver", topSurfVec);
mk_core()->insert_node(paveOp, (MeshOp*) this, mk_core()->root_node());
double topBBMinX, topBBMinY, topBBMinZ, topBBMaxX, topBBMaxY, topBBMaxZ;
igeom->getEntBoundBox(topGeoHandle,
topBBMinX, topBBMinY, topBBMinZ, topBBMaxX, topBBMaxY, topBBMaxZ);
std::vector<iGeom::EntityHandle> adjRegions;
igeom->getEntAdj(topGeoHandle, iBase_REGION, adjRegions);
for (size_t ari = 0; ari < adjRegions.size(); ++ari)
{
iGeom::EntityHandle adjRegionHandle = adjRegions[ari];
// confirm that the adjacent region is really below the top surface
double arBBMinX, arBBMinY, arBBMinZ, arBBMaxX, arBBMaxY, arBBMaxZ;
igeom->getEntBoundBox(adjRegionHandle,
arBBMinX, arBBMinY, arBBMinZ, arBBMaxX, arBBMaxY, arBBMaxZ);
if (arBBMinZ >= topBBMinZ)
{
// this is not the correct region since it is not below the top surface
continue;
}
ModelEnt* regionME;
igeom->getData(adjRegionHandle, meTag, ®ionME);
// TODO: check success
regionME->sizing_function_index(axialSizeIndex, false);
// examine the faces of the region in order to
// (1) identify indices of the top and bottom face
// (2) set sizes on vertical faces and bottom face as needed
std::vector<iGeom::EntityHandle> regionSurfs;
igeom->getEntAdj(adjRegionHandle, iBase_FACE, regionSurfs);
size_t topFaceIndex, bottomFaceIndex;
for (size_t rfi = 0; rfi < regionSurfs.size(); ++rfi)
{
iGeom::EntityHandle regionFaceHandle = regionSurfs[rfi];
if (regionFaceHandle == topGeoHandle)
{
topFaceIndex = rfi;
continue;
}
// check whether this face shares an edge with the top face
bool commonEdge = false;
std::vector<iGeom::EntityHandle> edgesOfFace;
igeom->getEntAdj(regionFaceHandle, iBase_EDGE, edgesOfFace);
for (size_t eofci = 0; eofci < edgesOfFace.size(); ++eofci)
{
igeom->isEntAdj(topGeoHandle, edgesOfFace[eofci], commonEdge);
if (commonEdge) break;
}
if (commonEdge)
{
// this is a vertical face
ModelEnt* meVertSurf;
igeom->getData(regionFaceHandle, meTag, &meVertSurf);
// TODO: check success
if (meVertSurf->sizing_function_index() == -1)
{
// the vertical surface has not yet been processed, since no
// sizing function index is set on it
meVertSurf->sizing_function_index(axialSizeIndex, false);
// sizing function needs to be set on the vertical edges . . .
// it should be okay to set it on all boundary edges not yet set
MEntVector edgeMEsVec;
std::vector<int> senses;
meVertSurf->boundary(1, edgeMEsVec, &senses);
for (size_t emei = 0; emei < edgeMEsVec.size(); ++emei)
{
if (edgeMEsVec[emei]->sizing_function_index() == -1)
{
edgeMEsVec[emei]->sizing_function_index(axialSizeIndex, false);
}
}
}
}
else
{
// this is the bottom face
bottomFaceIndex = rfi;
ModelEnt* meBottomSurf;
igeom->getData(regionFaceHandle, meTag, &meBottomSurf);
// TODO: check success
if (meBottomSurf->sizing_function_index() == -1)
{
// the bottom surface does not yet have a
// sizing function set on it
meBottomSurf->sizing_function_index(radialSizeIndex);
}
MEntVector edgeMEsVec;
std::vector<int> senses;
meBottomSurf->boundary(1, edgeMEsVec, &senses);
for (size_t emei = 0; emei < edgeMEsVec.size(); ++emei)
{
edgeMEsVec[emei]->constrain_even(true);
}
}
}
MEntVector regionVec;
regionVec.push_back(regionME);
OneToOneSwept *sweepOp = (OneToOneSwept*)
mk_core()->construct_meshop("OneToOneSwept", regionVec);
sweepOp->SetSourceSurface(topFaceIndex);
sweepOp->SetTargetSurface(bottomFaceIndex);
mk_core()->insert_node(sweepOp, (MeshOp*)this, paveOp);
}
}
delete allTopSurfs;
mk_core()->print_graph();
}
void AssyMesher::execute_this()
{
std::cout << "Execute : start meshing the assembly" << std::endl;
// Start doing the steps in .jou file: /MeshKit/rgg/io.cpp:routine:CreateCubitJournal()
// AssyMesher
// 1. Find surfaces with names <pin_material>_top and set radial mesh size, also set mesh scheme to CAMALTriMesher or GRUMMP trimesher
// 2. Sweep the volumes with top surfaces of pins, use bottom surfaces of the pins if required: bottom surfaces are name as <pin_material_bot>
// 3. Find edges in surfaces with names <material_side> set size equal to edge length
// 4. After meshing assign block names for all pins, by filtering using volumes
// 5. Now mesh the top cutout portion using CAMALTriMesher or GRUMMP trimesher (Report if this fails, if this fails change in radial mesh size and edge interval might be needed)
// 6. Now sweep and name blocks.
// 7. Create Neumann Sets
// step 1
}
void AssyMesher::PrepareIO (int argc, char *argv[], std::string TestDir)
// ---------------------------------------------------------------------------
// Function: Obtains file names and opens input/output files
// Input: command line arguments
// Output: none
// ---------------------------------------------------------------------------
{
// set and open input output files
bool bDone = false;
#ifdef HAVE_ACIS
#define EXTENSION ".sat";
#endif
#ifdef HAVE_OCC
#define EXTENSION ".brep";
#endif
do{
if (2 == argc) {
m_InputFile = (std::string)argv[1] + ".inp";
m_LogName = m_InputFile + ".log";
m_GeomFile = (std::string)argv[1] + EXTENSION;
m_szCommonFile = "common.inp";
}
else if (1 == argc){
m_LogFile << "\nRunning default case:\n" << std::endl;
m_GeomFile = TestDir + "/" + (char *)DEFAULT_TEST_AM+ EXTENSION;
m_InputFile = TestDir + "/" + (char *)DEFAULT_TEST_AM + ".inp";
m_LogName = (std::string)DEFAULT_TEST_AM + ".log";
m_szCommonFile = TestDir + "/" + "common.inp";
}
// open input file for reading
m_FileInput.open (m_InputFile.c_str(), std::ios::in);
if (!m_FileInput){
m_LogFile << "Unable to open file: " << m_InputFile << std::endl;
m_FileInput.clear ();
exit(1);
}
else
bDone = true; // file opened successfully
// open common.inp file, if not found do nothing.
m_FileCommon.open (m_szCommonFile.c_str(), std::ios::in);
if (!m_FileCommon){
have_common = false;
std::cout << "common.inp file not specified." << std::endl;
m_FileCommon.clear ();
}
else {
have_common = true;
}
std::cout << " opened file " << m_szCommonFile << " have common is "
<< have_common << std::endl;
// } while (!bDone);
// open the log file for dumping debug/output statements
m_LogFile.coss.open (m_LogName.c_str(), std::ios::out);
if (!m_LogFile.coss){
m_LogFile << "Unable to open file: " << m_LogName << std::endl;
m_LogFile.coss.clear ();
exit(1);
}
else
bDone = true; // file opened successfully
m_LogFile << '\n';
m_LogFile << "\t\t---------------------------------------------------------" << '\n';
m_LogFile << "\t\t Tool to generate assembly mesh " << '\n';
m_LogFile << "\t\t\t\tArgonne National Laboratory" << '\n';
m_LogFile << "\t\t\t\t 2015 " << '\n';
m_LogFile << "\t\t---------------------------------------------------------" << '\n';
m_LogFile << "\nsee README file for using the program and details on various cards.\n"<< std::endl;
}while (!bDone);
/////////////////////////
/////////////////////////
CParser Parse1;
bool found = false;
std::string card;
m_nLineNumber = 0;
std::cout << "Reading from common.inp file." << std::endl;
for(;;){
if (!Parse1.ReadNextLine (m_FileCommon, m_nLineNumber, szInputString,
MAXCHARS, szComment))
IOErrorHandler (INVALIDINPUT);
if (szInputString.substr(0,10) == "geomengine"){
found = true;
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_szEngine;
if( ((strcmp (m_szEngine.c_str(), "acis") != 0) &&
(strcmp (m_szEngine.c_str(), "occ") != 0)) || szFormatString.fail())
IOErrorHandler(EGEOMENGINE);
}
if (szInputString.substr(0,8) == "meshtype"){
found = true;
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_szMeshType;
if( ((strcmp (m_szMeshType.c_str(), "hex") != 0) &&
(strcmp (m_szMeshType.c_str(), "tet") != 0)) || szFormatString.fail())
IOErrorHandler(INVALIDINPUT);
}
// Hex or Rect geometry type
if (szInputString.substr(0,12) == "geometrytype"){
found = true;
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_szGeomType;
if( ((strcmp (m_szGeomType.c_str(), "hexagonal") != 0) &&
(strcmp (m_szGeomType.c_str(), "rectangular") != 0)) || szFormatString.fail())
IOErrorHandler(EGEOMTYPE);
// set the number of sides in the geometry
if(m_szGeomType == "hexagonal")
m_nSides = 6;
else if(m_szGeomType == "rectangular")
m_nSides = 4;
}
// Default if volume, set geometry type to surface for 2D assemblies
if (szInputString.substr(0,8) == "geometry"){
found = true;
std::string outfile;
std::istringstream szFormatString (szInputString);
szFormatString >> card >> outfile;
if(strcmp (outfile.c_str(), "surface") == 0 || szFormatString.fail())
m_nPlanar=1;
}
// breaking condition
if(szInputString.substr(0,3) == "end" || m_nLineNumber == 500){
found = true;
break;
}
if (found == false){
std::cout << "Cannot specify: " << szInputString << " in common.inp files" << std::endl;
}
}
/////////////////////////////////////
/////////////////////////////////////
///
///
// Read AssyGen input file
CParser Parse;
int nCyl =0, nCellMat=0, nInputLines=0;
std::string szVolId, szVolAlias;
// count the total number of cylinder commands in each pincell
for(;;){
if (!Parse.ReadNextLine (m_FileInput, m_nLineNumber, szInputString,
MAXCHARS, szComment))
IOErrorHandler (INVALIDINPUT);
if (szInputString.substr(0,10) == "geomengine"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_szEngine;
if( ((strcmp (m_szEngine.c_str(), "acis") != 0) &&
(strcmp (m_szEngine.c_str(), "occ") != 0)) || szFormatString.fail())
IOErrorHandler(EGEOMENGINE);
}
if (szInputString.substr(0,8) == "meshtype"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_szMeshType;
if( ((strcmp (m_szMeshType.c_str(), "hex") != 0) &&
(strcmp (m_szMeshType.c_str(), "tet") != 0)) || szFormatString.fail())
IOErrorHandler(INVALIDINPUT);
}
if (szInputString.substr(0,4) == "duct" || szInputString.substr(0,10) == "dimensions"){
++m_nDuct;
}
if (szInputString.substr(0,8) == "pincells"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_nPincells;
if(m_nPincells>0)
m_Pincell.SetSize(m_nPincells);
else if(m_nPincells ==0)
m_Pincell.SetSize(1); // assume for using dummy pincell
// count the number of cylinder lines for each pincell
for (int i=1; i<=m_nPincells; i++){
// read the no. of input lines first pincell
if (!Parse.ReadNextLine (m_FileInput, m_nLineNumber, szInputString,
MAXCHARS, szComment))
IOErrorHandler (INVALIDINPUT);
std::istringstream szFormatString1 (szInputString);
szFormatString1 >> szVolId >> szVolAlias >> nInputLines;
if(szFormatString1.fail())
IOErrorHandler(INVALIDINPUT);
// loop thru the input lines of each pincell
for(int l=1; l<=nInputLines; l++){
if (!Parse.ReadNextLine (m_FileInput, m_nLineNumber, szInputString,
MAXCHARS, szComment))
IOErrorHandler (INVALIDINPUT);
if (szInputString.substr(0,8) == "cylinder"){
++nCyl;
}
if (szInputString.substr(0,12) == "cellmaterial"){
++nCellMat;
}
}
// set the sizes
if (nCyl>0) {
if (nCellMat > 0) {
m_Pincell(i).SetCellMatSize(nCellMat);
}
m_Pincell(i).SetNumCyl(nCyl);
}
else if (nCyl ==0) {
// used to be nInputLines > 0 . . . is it an error if
// neither a cylinder nor a material line in the pin cell input?
if (nCellMat > 0)
m_Pincell(i).SetCellMatSize(nCellMat);
}
nCyl = 0;
nCellMat = 0;
}
}
// breaking condition
if(szInputString.substr(0,3) == "end"){
std::istringstream szFormatString (szInputString);<--- Variable 'szFormatString' is assigned a value that is never used.
break;
}
}
// //ACIS ENGINE
//#ifdef HAVE_ACIS
// // if(m_szEngine == "acis"){
// m_szGeomFile = m_InputFile+".sat";
// // }
//#elif defined(HAVE_OCC)
// // OCC ENGINE
// // if (m_szEngine == "occ"){
// m_szG= m_InputFile+".stp";
// // }
//#endif
// std::cout << "\no/p geometry file name: " << m_szGeomFile <<std::endl;
//Rewind the input file
m_FileInput.clear (std::ios_base::goodbit);
m_FileInput.seekg (0L, std::ios::beg);
m_nLineNumber = 0;
// CParser Parse;
// std::string card;
// start reading the input file break when encounter end
for(;;){
if (!Parse.ReadNextLine (m_FileInput, m_nLineNumber, szInputString,
MAXCHARS, szComment))
IOErrorHandler (INVALIDINPUT);
if (szInputString.substr(0,12) == "geometrytype"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_szGeomType;
if( ((strcmp (m_szGeomType.c_str(), "hexagonal") != 0) &&
(strcmp (m_szGeomType.c_str(), "rectangular") != 0)) || szFormatString.fail())
IOErrorHandler(EGEOMTYPE);
// set the number of sides in the geometry
if(m_szGeomType == "hexagonal")
m_nSides = 6;
else if(m_szGeomType == "rectangular")
m_nSides = 4;
}
else if (szInputString.substr(0,8) == "geometry"){
std::string outfile;
std::istringstream szFormatString (szInputString);
szFormatString >> card >> outfile;
if(strcmp (outfile.c_str(), "surface") == 0 || szFormatString.fail())
m_nPlanar=1;
}
if ((szInputString.substr(0,9) == "materials") && (szInputString.substr(0,19) != "materialset_startid")){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_nAssemblyMat;
if(szFormatString.fail())
IOErrorHandler(INVALIDINPUT);
m_szAssmMat.SetSize(m_nAssemblyMat); m_szAssmMatAlias.SetSize(m_nAssemblyMat);
for (int j=1; j<=m_nAssemblyMat; j++){
szFormatString >> m_szAssmMat(j) >> m_szAssmMatAlias(j);
if( (strcmp (m_szAssmMat(j).c_str(), "") == 0) ||
(strcmp (m_szAssmMatAlias(j).c_str(), "") == 0)){
IOErrorHandler(EMAT);
}
// checking if & inserted at the end of the material by mistake
if (j == m_nAssemblyMat){
std::string dummy = "";
szFormatString >> dummy;
if (strcmp (dummy.c_str(), "") != 0)
IOErrorHandler(EMAT);
}
}
}
if( (szInputString.substr(0,10) == "dimensions") ||
(szInputString.substr(0,4) == "duct") ){
++m_nDuctNum;
std::cout << "getting assembly dimensions " << m_nDuctNum << std::endl;
if(m_szGeomType =="hexagonal"){
std::istringstream szFormatString (szInputString);
if(m_nDuctNum == 1){
m_dMXYAssm.SetSize(m_nDuct, 2); m_dMZAssm.SetSize(m_nDuct, 2);
}
szFormatString >> card >> m_nDimensions
>> m_dMXYAssm(m_nDuctNum, 1) >> m_dMXYAssm(m_nDuctNum, 2)
>> m_dMZAssm(m_nDuctNum, 1) >> m_dMZAssm(m_nDuctNum, 2);
if(m_nDuctNum == 1){
m_dMAssmPitch.SetSize(m_nDuct, m_nDimensions); m_szMMAlias.SetSize(m_nDuct, m_nDimensions);
assms.resize(m_nDimensions*m_nDuct); // setup while reading the problem size
}
for (int i=1; i<=m_nDimensions; i++){
szFormatString >> m_dMAssmPitch(m_nDuctNum, i);
if( m_dMAssmPitch(m_nDuctNum, i) < 0 )
IOErrorHandler(ENEGATIVE);
}
for (int i=1; i<=m_nDimensions; i++){
szFormatString >> m_szMMAlias(m_nDuctNum, i);
if(strcmp (m_szMMAlias(m_nDuctNum, i).c_str(), "") == 0)
IOErrorHandler(EALIAS);
}
}
if(m_szGeomType =="rectangular"){
std::istringstream szFormatString (szInputString);
if(m_nDuctNum == 1){
m_dMXYAssm.SetSize(m_nDuct, 2);
m_dMZAssm.SetSize(m_nDuct, 2);
}
szFormatString >> card >> m_nDimensions
>> m_dMXYAssm(m_nDuctNum, 1) >> m_dMXYAssm(m_nDuctNum, 2)
>> m_dMZAssm(m_nDuctNum, 1) >> m_dMZAssm(m_nDuctNum, 2);
if (szFormatString.fail())
IOErrorHandler(INVALIDINPUT);
if(m_nDuctNum == 1){
m_dMAssmPitchX.SetSize(m_nDuct, m_nDimensions);
m_dMAssmPitchY.SetSize(m_nDuct, m_nDimensions);
m_szMMAlias.SetSize(m_nDuct, m_nDimensions);
assms.resize(m_nDimensions*m_nDuct);
}
for (int i=1; i<=m_nDimensions; i++){
szFormatString >> m_dMAssmPitchX(m_nDuctNum, i) >> m_dMAssmPitchY(m_nDuctNum, i);
if( m_dMAssmPitchX(m_nDuctNum, i) < 0 || m_dMAssmPitchY(m_nDuctNum, i) < 0 || szFormatString.fail())
IOErrorHandler(ENEGATIVE);
}
for (int i=1; i<=m_nDimensions; i++){
szFormatString >> m_szMMAlias(m_nDuctNum, i);
if(strcmp (m_szMMAlias(m_nDuctNum, i).c_str(), "") == 0 || szFormatString.fail())
IOErrorHandler(EALIAS);
}
}
}
if (szInputString.substr(0,8) == "pincells"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_nPincells >> m_dPitch;
if(m_nPincells < 0)
IOErrorHandler(ENEGATIVE);
// this is an option if a user wants to specify pitch here
double dTotalHeight = 0.0;
//get the number of cylinder in each pincell
int nTemp = 1;<--- The scope of the variable 'nTemp' can be reduced.
if(m_nDimensions > 0){
dTotalHeight = m_dMZAssm(nTemp, 2)-m_dMZAssm(nTemp, 1);
}
else{
dTotalHeight = 0; // nothing specified only pincells in the model
}
// loop thro' the pincells and read/store pincell data
for (int i=1; i<=m_nPincells; i++){
// set pitch if specified in pincell card
if(m_dPitch > 0.0)
m_Pincell(i).SetPitch(m_dPitch, dTotalHeight);
ReadPinCellData( i);
std::cout << "\nread pincell " << i << std::endl;
}
}
// 'yes' or 'no' for creating sidesets
if (szInputString.substr(0,13) == "createsideset"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_szSideset;
std::cout <<"--------------------------------------------------"<<std::endl;
}
// specify a merge tolerance value for cubit journal file
if (szInputString.substr(0,14) == "mergetolerance"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_dMergeTol;
std::cout <<"--------------------------------------------------"<<std::endl;
} // Handle mesh size inputs
if (szInputString.substr(0,14) == "radialmeshsize"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_dRadialSize;
if(m_dRadialSize < 0 || szFormatString.fail())
IOErrorHandler(ENEGATIVE);
std::cout <<"--------------------------------------------------"<<std::endl;
}
// Handle mesh size inputs
if (szInputString.substr(0,11) == "tetmeshsize"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_dTetMeshSize;
if(m_dTetMeshSize < 0 || szFormatString.fail())
IOErrorHandler(ENEGATIVE);
std::cout <<"--------------------------------------------------"<<std::endl;
}
// Handle mesh size inputs
if (szInputString.substr(0,13) == "axialmeshsize"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_dAxialSize;
if(m_dAxialSize < 0 || szFormatString.fail())
IOErrorHandler(ENEGATIVE);
std::cout <<"--------------------------------------------------"<<std::endl;
}
// Handle mesh size inputs
if (szInputString.substr(0,18) == "neumannset_startid"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_nNeumannSetId;
if(m_nNeumannSetId < 0 || szFormatString.fail())
IOErrorHandler(ENEGATIVE);
std::cout <<"--------------------------------------------------"<<std::endl;
}
// Handle mesh size inputs
if (szInputString.substr(0,19) == "materialset_startid"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> m_nMaterialSetId;
if(m_nMaterialSetId < 0 || szFormatString.fail())
IOErrorHandler(ENEGATIVE);
std::cout <<"--------------------------------------------------"<<std::endl;
}
if (szInputString.substr(0,3) == "end"){
// if ( m_nJouFlag == 0){
// // impring merge before saving
// // Imprint_Merge();
// // save .sat file
// IBERRCHK(igeom->save(m_szGeomFile.c_str()), *igeom);
// std::cout << "Normal Termination.\n"<< "Geometry file: " << m_szGeomFile << " saved." << std::endl;
// }
break;
}
}
// Done reading now load file
IBERRCHK(igeom->load(m_GeomFile.c_str()), *igeom);
}
///////////////////////////////////////////////////////////////////////////////////////////
void AssyMesher::ReadPinCellData ( int i)
//---------------------------------------------------------------------------
//Function: reading pincell i from file and storing the data
//Input: none
//Output: none
//---------------------------------------------------------------------------
{
CParser Parse;
std::string card, szVolId, szVolAlias, szIFlag;
int nInputLines, nMaterials, nCyl = 0, nRadii=0, nCellMat=0;
double dLZ=0.0, dFlatF=0.0, dPX=0.0, dPY=0.0, dPZ=0.0;<--- The scope of the variable 'dLZ' can be reduced.<--- The scope of the variable 'dFlatF' can be reduced.<--- The scope of the variable 'dPX' can be reduced.<--- The scope of the variable 'dPY' can be reduced.<--- The scope of the variable 'dPZ' can be reduced.
CVector <std::string> szVMatName, szVMatAlias, szVCylMat, szVCellMat;
CVector<double> dVCoor(2), dVCylRadii, dVCylZPos, dZVStart, dZVEnd;
//loop over input lines
if (m_szGeomType == "rectangular"){
std::cout << "\ngetting volume id";
if (!Parse.ReadNextLine (m_FileInput, m_nLineNumber, szInputString,
MAXCHARS, szComment))
IOErrorHandler (INVALIDINPUT);
std::istringstream szFormatString (szInputString);
szFormatString >> szVolId >> szVolAlias >> nInputLines >> szIFlag;
// error checking
if( (strcmp (szVolAlias.c_str(), "") == 0) ||
(strcmp (szVolId.c_str(), "") == 0))
IOErrorHandler(EPIN);
if( nInputLines < 0 )
IOErrorHandler(ENEGATIVE);
m_Pincell(i).SetLineOne (szVolId, szVolAlias, nInputLines);
if(szIFlag == "intersect"){
m_Pincell(i).SetIntersectFlag(1);
}
else{
m_Pincell(i).SetIntersectFlag(0);
}
for(int l=1; l<=nInputLines; l++){
if (!Parse.ReadNextLine (m_FileInput, m_nLineNumber, szInputString,
MAXCHARS, szComment))
IOErrorHandler (INVALIDINPUT);
if (szInputString.substr(0,5) == "pitch"){
std::istringstream szFormatString (szInputString);
std::cout << "\ngetting pitch data";
szFormatString >> card >> dPX >> dPY >> dPZ;
if( dPX < 0 || dPY < 0 || dPZ < 0 || szFormatString.fail())
IOErrorHandler(ENEGATIVE);
m_Pincell(i).SetPitch (dPX, dPY, dPZ);
}
if (szInputString.substr(0,9) == "materials"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> nMaterials;
if(szFormatString.fail())
IOErrorHandler(INVALIDINPUT);
//setting local arrays
szVMatName.SetSize(nMaterials);
szVMatAlias.SetSize(nMaterials);
//set class variable sizes
m_Pincell(i).SetMatArray(nMaterials);
std::cout << "\ngetting material data";
for(int j=1; j<= nMaterials; j++){
szFormatString >> szVMatName(j) >> szVMatAlias(j);
if(szFormatString.fail())
IOErrorHandler(INVALIDINPUT);
}
m_Pincell(i).SetMat(szVMatName, szVMatAlias);
}
if (szInputString.substr(0,8) == "cylinder"){
++nCyl;
std::cout << "\ngetting cylinder data";
std::istringstream szFormatString (szInputString);
szFormatString >> card >> nRadii >> dVCoor(1) >> dVCoor(2);
if(szFormatString.fail())
IOErrorHandler(INVALIDINPUT);
m_Pincell(i).SetCylSizes(nCyl, nRadii);
m_Pincell(i).SetCylPos(nCyl, dVCoor);
//set local array
dVCylRadii.SetSize(2*nRadii);
szVCylMat.SetSize(nRadii);
dVCylZPos.SetSize(2);
m_Pincell(i).SetCylSizes(nCyl, nRadii);
// reading ZCoords
for(int k=1; k<=2; k++){
szFormatString >> dVCylZPos(k);
if(szFormatString.fail())
IOErrorHandler(INVALIDINPUT);
}
m_Pincell(i).SetCylZPos(nCyl, dVCylZPos);
// reading Radii
for(int l=1; l<= nRadii; l++){
szFormatString >> dVCylRadii(l);
if( dVCylRadii(l) < 0 || szFormatString.fail())
IOErrorHandler(ENEGATIVE);
}
m_Pincell(i).SetCylRadii(nCyl, dVCylRadii);
// reading Material alias
for(int m=1; m<= nRadii; m++){
szFormatString >> szVCylMat(m);
if(strcmp (szVCylMat(m).c_str(), "") == 0 || szFormatString.fail())
IOErrorHandler(EALIAS);
}
m_Pincell(i).SetCylMat(nCyl, szVCylMat);
}
if (szInputString.substr(0,12) == "cellmaterial"){
std::cout << "\ngetting cell material data\n";
std::istringstream szFormatString (szInputString);
szFormatString >> card;
//set local arrays
m_Pincell(i).GetCellMatSize(nCellMat); // since size of cell material already set equal to number of cylinders
dZVStart.SetSize(nCellMat);
dZVEnd.SetSize(nCellMat);
szVCellMat.SetSize(nCellMat);
for(int k=1; k<=nCellMat; k++){
szFormatString >> dZVStart(k)>> dZVEnd(k) >> szVCellMat(k);
if(strcmp (szVCellMat(k).c_str(), "") == 0 || szFormatString.fail())
IOErrorHandler(EALIAS);
}
m_Pincell(i).SetCellMat(dZVStart, dZVEnd, szVCellMat);
}
}
}//if rectangular ends
if (m_szGeomType == "hexagonal"){
std::cout << "\ngetting volume id";
if (!Parse.ReadNextLine (m_FileInput, m_nLineNumber, szInputString,
MAXCHARS, szComment))
IOErrorHandler (INVALIDINPUT);
std::istringstream szFormatString (szInputString);
szFormatString >> szVolId >> szVolAlias >> nInputLines >> szIFlag;
// error checking
if( (strcmp (szVolAlias.c_str(), "") == 0) ||
(strcmp (szVolId.c_str(), "") == 0))
IOErrorHandler(EPIN);
if( nInputLines < 0 )
IOErrorHandler(ENEGATIVE);
m_Pincell(i).SetLineOne (szVolId, szVolAlias, nInputLines);
if(szIFlag == "intersect"){
m_Pincell(i).SetIntersectFlag(1);
}
else{
m_Pincell(i).SetIntersectFlag(0);
}
for(int l=1; l<=nInputLines; l++){
if (!Parse.ReadNextLine (m_FileInput, m_nLineNumber, szInputString,
MAXCHARS, szComment))
IOErrorHandler (INVALIDINPUT);
if (szInputString.substr(0,5) == "pitch"){
std::istringstream szFormatString (szInputString);
std::cout << "\ngetting pitch data";
szFormatString >> card >> dFlatF >> dLZ;
if( dFlatF < 0 || dLZ < 0 || szFormatString.fail())
IOErrorHandler(ENEGATIVE);
m_Pincell(i).SetPitch (dFlatF, dLZ);
}
if (szInputString.substr(0,9) == "materials"){
std::istringstream szFormatString (szInputString);
szFormatString >> card >> nMaterials;
if(szFormatString.fail())
IOErrorHandler(INVALIDINPUT);
//setting local arrays
szVMatName.SetSize(nMaterials);
szVMatAlias.SetSize(nMaterials);
//set class variable sizes
m_Pincell(i).SetMatArray(nMaterials);
std::cout << "\ngetting material data";
for(int j=1; j<= nMaterials; j++){
szFormatString >> szVMatName(j) >> szVMatAlias(j);
if(szFormatString.fail())
IOErrorHandler(INVALIDINPUT);
}
m_Pincell(i).SetMat(szVMatName, szVMatAlias);
}
if (szInputString.substr(0,8) == "cylinder"){
++nCyl;
std::cout << "\ngetting cylinder data";
std::istringstream szFormatString (szInputString);
szFormatString >> card >> nRadii >> dVCoor(1) >> dVCoor(2);
if(szFormatString.fail())
IOErrorHandler(INVALIDINPUT);
m_Pincell(i).SetCylSizes(nCyl, nRadii);
m_Pincell(i).SetCylPos(nCyl, dVCoor);
//set local array
dVCylRadii.SetSize(nRadii);
szVCylMat.SetSize(nRadii);
dVCylZPos.SetSize(2);
//
m_Pincell(i).SetCylSizes(nCyl, nRadii);
// reading ZCoords - max and min 2 always
for(int k=1; k<=2; k++)
szFormatString >> dVCylZPos(k);
m_Pincell(i).SetCylZPos(nCyl, dVCylZPos);
// reading Radii
for(int l=1; l<= nRadii; l++){
szFormatString >> dVCylRadii(l);
if( dVCylRadii(l) < 0 || szFormatString.fail())
IOErrorHandler(ENEGATIVE);
}
m_Pincell(i).SetCylRadii(nCyl, dVCylRadii);
// reading Material alias
for(int m=1; m<= nRadii; m++){
szFormatString >> szVCylMat(m);
if(strcmp (szVCylMat(m).c_str(), "") == 0 || szFormatString.fail())
IOErrorHandler(EALIAS);
}
m_Pincell(i).SetCylMat(nCyl, szVCylMat);
}
if (szInputString.substr(0,12) == "cellmaterial"){
std::cout << "\ngetting cell material data";
std::istringstream szFormatString (szInputString);
szFormatString >> card;
//set local arrays
m_Pincell(i).GetCellMatSize(nCellMat); // since size of cell material already set equal to number of cylinders
dZVStart.SetSize(nCellMat);
dZVEnd.SetSize(nCellMat);
szVCellMat.SetSize(nCellMat);
for(int k=1; k<=nCellMat; k++){
szFormatString >> dZVStart(k)>> dZVEnd(k) >> szVCellMat(k);
if(strcmp (szVCellMat(k).c_str(), "") == 0 || szFormatString.fail())
IOErrorHandler(EALIAS);
}
m_Pincell(i).SetCellMat(dZVStart, dZVEnd, szVCellMat);
}
}
}// if hexagonal end
}
void AssyMesher::IOErrorHandler (ErrorStates ECode) const
// ---------------------------------------------------------------------------
//! Function: Displays error messages related to input data \n
//! Input: Error code \n
//! Output: none \n
// ---------------------------------------------------------------------------
{
std::cerr << '\n';
if (ECode == PINCELLS) // invalid number of pincells
std::cerr << "Number of pincells must be >= 0.";
else if (ECode == INVALIDINPUT) // invalid input
std::cerr << "Invalid input.";
else if (ECode == EMAT) // invalid input
std::cerr << "Invalid Material Data.";
else if (ECode == EGEOMTYPE) // invalid input
std::cerr << "Invalid GeomType Data.";
else if (ECode == EGEOMENGINE) // invalid input
std::cerr << "Invalid Geometry Engine.";
else if (ECode == EALIAS) // invalid input
std::cerr << "Error Reading Aliases.";
else if (ECode == ENEGATIVE) // invalid input
std::cerr << "Unexpected negative value.";
else if (ECode == EPIN) // invalid input
std::cerr << "Invalid pinCell specs.";
else
std::cerr << "Unknown error ...?";
std::cerr << '\n' << "Error in input file line : " << m_nLineNumber;
std::cerr << std::endl;
exit (1);
}
std::vector<iGeom::EntityHandle>* AssyMesher::selectByMaterialsAndNameSuffix(
std::vector<iGeom::EntityHandle> const &geoEntVec,
std::set<std::string> const &matFilter, const char* suffix) const
{
// get the name tag
iGeom::TagHandle nameTag;
int tagSize;
igeom->getTagHandle("NAME", nameTag);
igeom->getTagSizeBytes(nameTag, tagSize);
// get the length of the suffix
int suffixLen = strlen(suffix);
// allocate space to store the entity name retrieved from geometric entity
char* entName = new char[tagSize];
// allocate the vector that will be recturned
std::vector<iGeom::EntityHandle> *selectedEnts =
new std::vector<iGeom::EntityHandle>;
for (unsigned int ei = 0; ei < geoEntVec.size(); ++ei)
{
entName[0] = 0;
igeom->getData(geoEntVec[ei], nameTag, entName);
// TODO: error check for result == iBase_SUCCESS
// it should always be true for current code of CGM
// the suffix, if present, should end at the first @ character in the
// name or at the end of the name if there are no @ characters
size_t enLen = strlen(entName);
char* endMatchChar = strchr(entName, '@');
if (endMatchChar == NULL)
{
endMatchChar = &entName[enLen];
}
// if the suffix is present
if ((endMatchChar - entName) > suffixLen &&
strncmp(endMatchChar - suffixLen, suffix, suffixLen) == 0)
{
// if the part of the name before the suffix is in the
// set of acceptable materials
std::string matNameStr(entName, endMatchChar - suffixLen);
if (matFilter.find(matNameStr) != matFilter.end())
{
// add it to the vector
selectedEnts->push_back(geoEntVec[ei]);
}
}
}
// release the memory allocated for the entity name
delete[] entName;
return selectedEnts;
}
} // namespace MeshKit
|