-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpatch_kernel.hpp
1179 lines (964 loc) · 44.4 KB
/
patch_kernel.hpp
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
/*---------------------------------------------------------------------------*\
*
* bitpit
*
* Copyright (C) 2015-2021 OPTIMAD engineering Srl
*
* -------------------------------------------------------------------------
* License
* This file is part of bitpit.
*
* bitpit is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License v3 (LGPL)
* as published by the Free Software Foundation.
*
* bitpit 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 Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with bitpit. If not, see <http://www.gnu.org/licenses/>.
*
\*---------------------------------------------------------------------------*/
#ifndef __BITPIT_PATCH_KERNEL_HPP__
#define __BITPIT_PATCH_KERNEL_HPP__
#include <cstddef>
#include <deque>
#include <iostream>
#include <memory>
#if BITPIT_ENABLE_MPI==1
# include <mpi.h>
#endif
#include <set>
#include <string>
#include <vector>
#include <unordered_map>
#include "bitpit_IO.hpp"
#if BITPIT_ENABLE_MPI==1
# include "bitpit_communications.hpp"
#endif
#include "bitpit_containers.hpp"
#include "adaption.hpp"
#include "cell.hpp"
#include "compiler.hpp"
#include "interface.hpp"
#include "vertex.hpp"
namespace bitpit {
class PatchKernel : public VTKBaseStreamer {
friend class PatchInfo;
friend class PatchNumberingInfo;
#if BITPIT_ENABLE_MPI==1
friend class PatchGlobalInfo;
#endif
friend class PatchManager;
public:
typedef PiercedVector<Vertex>::iterator VertexIterator;
typedef PiercedVector<Cell>::iterator CellIterator;
typedef PiercedVector<Interface>::iterator InterfaceIterator;
typedef PiercedVector<Vertex>::const_iterator VertexConstIterator;
typedef PiercedVector<Cell>::const_iterator CellConstIterator;
typedef PiercedVector<Interface>::const_iterator InterfaceConstIterator;
typedef PiercedVector<Vertex>::range VertexRange;
typedef PiercedVector<Cell>::range CellRange;
typedef PiercedVector<Interface>::range InterfaceRange;
typedef PiercedVector<Vertex>::const_range VertexConstRange;
typedef PiercedVector<Cell>::const_range CellConstRange;
typedef PiercedVector<Interface>::const_range InterfaceConstRange;
enum WriteTarget {
WRITE_TARGET_CELLS_ALL
#if BITPIT_ENABLE_MPI
, WRITE_TARGET_CELLS_INTERNAL
#endif
};
/*!
Functional for comparing the position of two points.
To identify the order of the two points, their coordinates will be
compared. Before comparing the coordinates, it is necessary check
if the two points are coincident within the specified tolerance.
*/
struct PointPositionLess
{
PointPositionLess(double tolerance)
: m_tolerance(tolerance)
{
}
virtual ~PointPositionLess() = default;
bool operator()(std::array<double, 3> point_1, std::array<double, 3> point_2) const
{
// Check if the points are coincident
//
// To check if two points are coincident, the specified tolerance
// will be used.
bool coincident = true;
for (int k = 0; k < 3; ++k) {
if (!utils::DoubleFloatingEqual()(point_1[k], point_2[k], m_tolerance)) {
coincident = false;
break;
}
}
if (coincident) {
return false;
}
// Compare the position of the points
//
// If the points are not coincident, we loop over the coordinates
// and we compare the first non-coincident coordinate.
//
// In order to guarantee a consistent ordering, the test to check
// if two coordinates are coincident should be performed with no
// tolerance.
for (int k = 0; k < 3; ++k) {
if (point_1[k] == point_2[k]) {
continue;
}
return (point_1[k] < point_2[k]);
}
return false;
}
const double m_tolerance;
};
/*!
Functional for comparing the position of two vertices.
The comparison is made with respect to the vertex coordinates.
*/
struct VertexPositionLess : private PointPositionLess
{
VertexPositionLess(const PatchKernel &patch)
: PointPositionLess(patch.getTol()), m_patch(patch)
{
}
virtual ~VertexPositionLess() = default;
bool operator()(long id_1, long id_2) const
{
if (id_1 == id_2) {
return false;
}
const std::array<double, 3> &coords_1 = m_patch.getVertexCoords(id_1);
const std::array<double, 3> &coords_2 = m_patch.getVertexCoords(id_2);
return PointPositionLess::operator()(coords_1, coords_2);
}
const PatchKernel &m_patch;
};
/*!
Functional for comparing the position of two vertices.
The comparison is made with respect to the vertex coordinates.
*/
struct VertexPositionGreater : private VertexPositionLess
{
VertexPositionGreater(const PatchKernel &patch)
: VertexPositionLess(patch)
{
}
bool operator()(long id_1, long id_2) const
{
return !VertexPositionLess::operator()(id_1, id_2);
}
};
/*!
Functional for comparing the position of two cells.
The comparison is made with respect to the cell centroid.
*/
struct CellPositionLess : private PointPositionLess
{
CellPositionLess(const PatchKernel &patch, bool native = true)
: PointPositionLess(patch.getTol()), m_patch(patch), m_native(native)
{
}
virtual ~CellPositionLess() = default;
bool operator()(long id_1, long id_2) const
{
if (id_1 == id_2) {
return false;
}
std::array<double, 3> centroid_1;
std::array<double, 3> centroid_2;
if (m_native) {
centroid_1 = m_patch.evalCellCentroid(id_1);
centroid_2 = m_patch.evalCellCentroid(id_2);
} else {
centroid_1 = m_patch.PatchKernel::evalCellCentroid(id_1);
centroid_2 = m_patch.PatchKernel::evalCellCentroid(id_2);
}
return PointPositionLess::operator()(centroid_1, centroid_2);
}
const PatchKernel &m_patch;
bool m_native;
};
/*!
Functional for comparing the position of two cells.
The comparison is made with respect to the cell centroid.
*/
struct CellPositionGreater : private CellPositionLess
{
CellPositionGreater(const PatchKernel &patch, bool native = true)
: CellPositionLess(patch, native)
{
}
bool operator()(long id_1, long id_2) const
{
return !CellPositionLess::operator()(id_1, id_2);
}
};
/*!
Functional for comparing the position of two cells.
WARNING: the function is faster than the comparison based on cell
centroid but its result is not indepenedent of the vertex order.
The comparison is made with respect to the position of cell vertices.
*/
struct CellFuzzyPositionLess : private PointPositionLess
{
CellFuzzyPositionLess(PatchKernel &patch)
: PointPositionLess(patch.getTol()), m_patch(patch)
{
}
virtual ~CellFuzzyPositionLess() = default;
bool operator()(long id_1, long id_2) const
{
if (id_1 == id_2) {
return false;
}
// Select the first vertex of the first cell
long vertexId_1 = m_patch.getCell(id_1).getVertexId(0);
// The vertex of the second cell is choosen as the first vertex on
// that cell not equal to the selected vertex of the first cell.
long vertexId_2 = Vertex::NULL_ID;
for (long candidateVertexId_2 : m_patch.getCell(id_2).getVertexIds()) {
if (vertexId_1 != candidateVertexId_2) {
vertexId_2 = candidateVertexId_2;
break;
}
}
if (vertexId_2 == Vertex::NULL_ID) {
return false;
}
// Compare the two vertices
const std::array<double, 3> &vertexCoords_1 = m_patch.getVertex(vertexId_1).getCoords();
const std::array<double, 3> &vertexCoords_2 = m_patch.getVertex(vertexId_2).getCoords();
return PointPositionLess::operator()(vertexCoords_1, vertexCoords_2);
}
PatchKernel &m_patch;
};
/*!
Functional for comparing the position of two cells.
WARNING: the function is faster than the comparison based on cell
centroid but its result is not indepenedent of the vertex order.
The comparison is made with respect to the position of cell vertices.
*/
struct CellFuzzyPositionGreater : private CellFuzzyPositionLess
{
CellFuzzyPositionGreater(PatchKernel &patch)
: CellFuzzyPositionLess(patch)
{
}
bool operator()(long id_1, long id_2) const
{
return !CellFuzzyPositionLess::operator()(id_1, id_2);
}
};
/*!
Adjacencies build strategy
*/
enum AdjacenciesBuildStrategy {
ADJACENCIES_NONE = -1,
ADJACENCIES_AUTOMATIC
};
/*!
Interfaces build strategy
*/
enum InterfacesBuildStrategy {
INTERFACES_NONE = -1,
INTERFACES_AUTOMATIC
};
/*!
Adaption mode
*/
enum AdaptionMode {
ADAPTION_DISABLED = -1, //! No adaption can be performed
ADAPTION_AUTOMATIC, //! Adaption is performed specifying which cells should be
//! refined/coarsen and then the patch will perform all the
//! alterations needed to fulfill the adaption requests
ADAPTION_MANUAL, //! Allows to use low level function to add and delete individual
//! cells and vertices. It's up to the user to guarantee the
//! consistency of the patch
};
/*!
Adaption status
*/
enum AdaptionStatus {
ADAPTION_CLEAN,
ADAPTION_DIRTY,
ADAPTION_PREPARED,
ADAPTION_ALTERED
};
/*!
Partitioning mode
*/
enum PartitioningMode {
PARTITIONING_DISABLED = -1, //! No partitioning can be performed
PARTITIONING_ENABLED //! The patch can be partitioned across the processes
};
/*!
Partitioning status
*/
enum PartitioningStatus {
PARTITIONING_CLEAN,
PARTITIONING_PREPARED,
PARTITIONING_ALTERED
};
PatchKernel(PatchKernel &&other);
PatchKernel & operator=(PatchKernel &&other);
virtual ~PatchKernel();
template<typename patch_t>
static std::unique_ptr<patch_t> clone(const patch_t *original);
virtual std::unique_ptr<PatchKernel> clone() const = 0;
void setId(int id);
virtual void reset();
virtual void resetVertices();
virtual void resetCells();
virtual void resetInterfaces();
bool reserveVertices(size_t nVertices);
bool reserveCells(size_t nCells);
bool reserveInterfaces(size_t nInterfaces);
std::vector<adaption::Info> update(bool trackAdaption = true, bool squeezeStorage = false);
virtual void simulateCellUpdate(const long id, adaption::Marker marker, std::vector<Cell> *virtualCells, PiercedVector<Vertex, long> *virtualVertices) const;
bool isAdaptionSupported() const;
AdaptionMode getAdaptionMode() const;
AdaptionStatus getAdaptionStatus(bool global = false) const;
std::vector<adaption::Info> adaption(bool trackAdaption = true, bool squeezeStorage = false);
std::vector<adaption::Info> adaptionPrepare(bool trackAdaption = true);
std::vector<adaption::Info> adaptionAlter(bool trackAdaption = true, bool squeezeStorage = false);
void adaptionCleanup();
virtual void settleAdaptionMarkers();
void markCellForRefinement(long id);
void markCellForCoarsening(long id);
void resetCellAdaptionMarker(long id);
adaption::Marker getCellAdaptionMarker(long id);
void enableCellBalancing(long id, bool enabled);
bool isDirty(bool global = false) const;
BITPIT_DEPRECATED(bool isExpert() const);
int getId() const;
int getDimension() const;
virtual void setDimension(int dimension);
bool isThreeDimensional() const;
virtual int getVolumeCodimension() const = 0;
virtual int getSurfaceCodimension() const = 0;
virtual int getLineCodimension() const = 0;
virtual int getPointCodimension() const = 0;
bool empty(bool global = true) const;
bool isVertexAutoIndexingEnabled() const;
void setVertexAutoIndexing(bool enabled);
virtual long getVertexCount() const;
long getInternalVertexCount() const;
#if BITPIT_ENABLE_MPI==1
long getGhostVertexCount() const;
#endif
PiercedVector<Vertex> &getVertices();
const PiercedVector<Vertex> &getVertices() const;
Vertex &getVertex(long id);
const Vertex & getVertex(long id) const;
Vertex &getLastInternalVertex();
const Vertex &getLastInternalVertex() const;
#if BITPIT_ENABLE_MPI==1
Vertex &getFirstGhostVertex();
const Vertex &getFirstGhostVertex() const;
#endif
const std::array<double, 3> & getVertexCoords(long id) const;
void getVertexCoords(std::size_t nVertices, const long *ids, std::unique_ptr<std::array<double, 3>[]> *coordinates) const;
void getVertexCoords(std::size_t nVertices, const long *ids, std::array<double, 3> *coordinates) const;
VertexIterator addVertex(const Vertex &source, long id = Vertex::NULL_ID);
VertexIterator addVertex(Vertex &&source, long id = Vertex::NULL_ID);
VertexIterator addVertex(const std::array<double, 3> &coords, long id = Vertex::NULL_ID);
BITPIT_DEPRECATED(long countFreeVertices() const);
long countBorderVertices() const;
long countOrphanVertices() const;
std::vector<long> findOrphanVertices();
bool deleteOrphanVertices();
std::vector<long> collapseCoincidentVertices();
bool deleteCoincidentVertices();
VertexIterator getVertexIterator(long id);
VertexIterator vertexBegin();
VertexIterator vertexEnd();
VertexIterator internalVertexBegin();
VertexIterator internalVertexEnd();
#if BITPIT_ENABLE_MPI==1
VertexIterator ghostVertexBegin();
VertexIterator ghostVertexEnd();
#endif
VertexConstIterator getVertexConstIterator(long id) const;
VertexConstIterator vertexConstBegin() const;
VertexConstIterator vertexConstEnd() const;
VertexConstIterator internalVertexConstBegin() const;
VertexConstIterator internalVertexConstEnd() const;
#if BITPIT_ENABLE_MPI==1
VertexConstIterator ghostVertexConstBegin() const;
VertexConstIterator ghostVertexConstEnd() const;
#endif
bool isCellAutoIndexingEnabled() const;
void setCellAutoIndexing(bool enabled);
virtual long getCellCount() const;
long getInternalCellCount() const;
BITPIT_DEPRECATED(long getInternalCount() const);
#if BITPIT_ENABLE_MPI==1
long getGhostCellCount() const;
BITPIT_DEPRECATED(long getGhostCount() const);
#endif
PiercedVector<Cell> &getCells();
const PiercedVector<Cell> &getCells() const;
Cell &getCell(long id);
const Cell &getCell(long id) const;
virtual ElementType getCellType(long id) const;
Cell &getLastInternalCell();
const Cell &getLastInternalCell() const;
#if BITPIT_ENABLE_MPI==1
Cell & getFirstGhostCell();
BITPIT_DEPRECATED(Cell & getFirstGhost());
const Cell & getFirstGhostCell() const;
BITPIT_DEPRECATED(const Cell & getFirstGhost() const);
#endif
CellIterator addCell(const Cell &source, long id = Element::NULL_ID);
CellIterator addCell(Cell &&source, long id = Element::NULL_ID);
CellIterator addCell(ElementType type, long id = Element::NULL_ID);
CellIterator addCell(ElementType type, const std::vector<long> &connectivity, long id = Element::NULL_ID);
CellIterator addCell(ElementType type, std::unique_ptr<long[]> &&connectStorage, long id = Element::NULL_ID);
#if BITPIT_ENABLE_MPI==1
CellIterator addCell(const Cell &source, int owner, long id = Element::NULL_ID);
CellIterator addCell(const Cell &source, int owner, int haloLayer, long id = Element::NULL_ID);
CellIterator addCell(Cell &&source, int owner, long id = Element::NULL_ID);
CellIterator addCell(Cell &&source, int owner, int haloLayer, long id = Element::NULL_ID);
CellIterator addCell(ElementType type, int owner, long id = Element::NULL_ID);
CellIterator addCell(ElementType type, int owner, int haloLayer, long id = Element::NULL_ID);
CellIterator addCell(ElementType type, const std::vector<long> &connectivity, int owner, long id = Element::NULL_ID);
CellIterator addCell(ElementType type, const std::vector<long> &connectivity, int owner, int haloLayer, long id = Element::NULL_ID);
CellIterator addCell(ElementType type, std::unique_ptr<long[]> &&connectStorage, int owner, long id = Element::NULL_ID);
CellIterator addCell(ElementType type, std::unique_ptr<long[]> &&connectStorage, int owner, int haloLayer, long id = Element::NULL_ID);
#endif
bool deleteCell(long id);
template<typename IdStorage>
bool deleteCells(const IdStorage &ids);
#if BITPIT_ENABLE_MPI==1
CellIterator ghostCell2InternalCell(long id);
CellIterator internalCell2GhostCell(long id, int owner, int haloLayer);
#endif
virtual double evalCellSize(long id) const = 0;
BITPIT_DEPRECATED(long countFreeCells() const);
long countBorderCells() const;
long countOrphanCells() const;
std::vector<long> findOrphanCells() const;
long countDuplicateCells() const;
std::vector<long> findDuplicateCells() const;
virtual std::array<double, 3> evalCellCentroid(long id) const;
virtual void evalCellBoundingBox(long id, std::array<double,3> *minPoint, std::array<double,3> *maxPoint) const;
BITPIT_DEPRECATED(ConstProxyVector<std::array<double BITPIT_COMMA 3>> getCellVertexCoordinates(long id) const);
void getCellVertexCoordinates(long id, std::unique_ptr<std::array<double, 3>[]> *coordinates) const;
void getCellVertexCoordinates(long id, std::array<double, 3> *coordinates) const;
std::vector<long> findCellNeighs(long id) const;
void findCellNeighs(long id, std::vector<long> *neighs) const;
std::vector<long> findCellNeighs(long id, int codimension, bool complete = true) const;
void findCellNeighs(long id, int codimension, bool complete, std::vector<long> *neighs) const;
std::vector<long> findCellFaceNeighs(long id) const;
void findCellFaceNeighs(long id, std::vector<long> *neighs) const;
std::vector<long> findCellFaceNeighs(long id, int face) const;
void findCellFaceNeighs(long id, int face, std::vector<long> *neighs) const;
std::vector<long> findCellEdgeNeighs(long id, bool complete = true) const;
void findCellEdgeNeighs(long id, bool complete, std::vector<long> *neighs) const;
std::vector<long> findCellEdgeNeighs(long id, int edge) const;
void findCellEdgeNeighs(long id, int edge, std::vector<long> *neighs) const;
std::vector<long> findCellVertexNeighs(long id, bool complete = true) const;
void findCellVertexNeighs(long id, bool complete, std::vector<long> *neighs) const;
std::vector<long> findCellVertexNeighs(long id, int vertex) const;
void findCellVertexNeighs(long id, int vertex, std::vector<long> *neighs) const;
std::vector<long> findCellVertexOneRing(long id, int vertex) const;
void findCellVertexOneRing(long id, int vertex, std::vector<long> *neighs) const;
bool findFaceNeighCell(long cellId, long neighId, int *cellFace, int *cellAdjacencyId) const;
std::set<int> getInternalCellPIDs();
std::vector<long> getInternalCellsByPID(int pid);
std::vector<long> findVertexOneRing(long vertexId) const;
void findVertexOneRing(long vertexId, std::vector<long> *ring) const;
CellIterator getCellIterator(long id);
CellIterator cellBegin();
CellIterator cellEnd();
CellIterator internalCellBegin();
BITPIT_DEPRECATED(CellIterator internalBegin());
CellIterator internalCellEnd();
BITPIT_DEPRECATED(CellIterator internalEnd());
#if BITPIT_ENABLE_MPI==1
CellIterator ghostCellBegin();
BITPIT_DEPRECATED(CellIterator ghostBegin());
CellIterator ghostCellEnd();
BITPIT_DEPRECATED(CellIterator ghostEnd());
#endif
CellConstIterator getCellConstIterator(long id) const;
CellConstIterator cellConstBegin() const;
CellConstIterator cellConstEnd() const;
CellConstIterator internalCellConstBegin() const;
BITPIT_DEPRECATED(CellConstIterator internalConstBegin() const);
CellConstIterator internalCellConstEnd() const;
BITPIT_DEPRECATED(CellConstIterator internalConstEnd() const);
#if BITPIT_ENABLE_MPI==1
CellConstIterator ghostCellConstBegin() const;
BITPIT_DEPRECATED(CellConstIterator ghostConstBegin() const);
CellConstIterator ghostCellConstEnd() const;
BITPIT_DEPRECATED(CellConstIterator ghostConstEnd() const);
#endif
bool isInterfaceAutoIndexingEnabled() const;
void setInterfaceAutoIndexing(bool enabled);
virtual long getInterfaceCount() const;
PiercedVector<Interface> &getInterfaces();
const PiercedVector<Interface> & getInterfaces() const;
Interface &getInterface(long id);
const Interface &getInterface(long id) const;
virtual ElementType getInterfaceType(long id) const;
InterfaceIterator addInterface(const Interface &source, long id = Element::NULL_ID);
InterfaceIterator addInterface(Interface &&source, long id = Element::NULL_ID);
InterfaceIterator addInterface(ElementType type, long id = Element::NULL_ID);
InterfaceIterator addInterface(ElementType type, const std::vector<long> &connectivity, long id = Element::NULL_ID);
InterfaceIterator addInterface(ElementType type, std::unique_ptr<long[]> &&connectStorage, long id = Element::NULL_ID);
bool deleteInterface(long id);
template<typename IdStorage>
bool deleteInterfaces(const IdStorage &ids);
BITPIT_DEPRECATED(long countFreeInterfaces() const);
long countBorderInterfaces() const;
long countOrphanInterfaces() const;
std::vector<long> findOrphanInterfaces() const;
bool deleteOrphanInterfaces();
bool isInterfaceOrphan(long id) const;
virtual std::array<double, 3> evalInterfaceCentroid(long id) const;
virtual void evalInterfaceBoundingBox(long id, std::array<double,3> *minPoint, std::array<double,3> *maxPoint) const;
BITPIT_DEPRECATED(ConstProxyVector<std::array<double BITPIT_COMMA 3>> getInterfaceVertexCoordinates(long id) const);
void getInterfaceVertexCoordinates(long id, std::unique_ptr<std::array<double, 3>[]> *coordinates) const;
void getInterfaceVertexCoordinates(long id, std::array<double, 3> *coordinates) const;
InterfaceIterator getInterfaceIterator(long id);
InterfaceIterator interfaceBegin();
InterfaceIterator interfaceEnd();
InterfaceConstIterator getInterfaceConstIterator(long id) const;
InterfaceConstIterator interfaceConstBegin() const;
InterfaceConstIterator interfaceConstEnd() const;
long countFaces() const;
long countBorderFaces() const;
BITPIT_DEPRECATED(long countFreeFaces() const);
bool sort();
bool sortVertices();
bool sortCells();
bool sortInterfaces();
bool squeeze();
bool squeezeVertices();
bool squeezeCells();
bool squeezeInterfaces();
long locatePoint(double x, double y, double z) const;
virtual long locatePoint(const std::array<double, 3> &point) const = 0;
AdjacenciesBuildStrategy getAdjacenciesBuildStrategy() const;
bool areAdjacenciesDirty(bool global = false) const;
BITPIT_DEPRECATED(void buildAdjacencies());
void initializeAdjacencies(AdjacenciesBuildStrategy strategy = ADJACENCIES_AUTOMATIC);
void updateAdjacencies(bool forcedUpdated = false);
void destroyAdjacencies();
InterfacesBuildStrategy getInterfacesBuildStrategy() const;
bool areInterfacesDirty(bool global = false) const;
BITPIT_DEPRECATED(void buildInterfaces());
void initializeInterfaces(InterfacesBuildStrategy strategy = INTERFACES_AUTOMATIC);
void updateInterfaces(bool forcedUpdated = false);
void destroyInterfaces();
void getBoundingBox(std::array<double, 3> &minPoint, std::array<double, 3> &maxPoint) const;
void getBoundingBox(bool global, std::array<double, 3> &minPoint, std::array<double, 3> &maxPoint) const;
bool isBoundingBoxDirty(bool global = false) const;
void updateBoundingBox(bool forcedUpdated = false);
virtual void translate(const std::array<double, 3> &translation);
void translate(double sx, double sy, double sz);
virtual void rotate(const std::array<double, 3> &n0, const std::array<double, 3> &n1, double angle);
void rotate(double n0x, double n0y, double n0z, double n1x, double n1y, double n1z, double angle);
void scale(const std::array<double, 3> &scaling);
virtual void scale(const std::array<double, 3> &scaling, const std::array<double, 3> &origin);
void scale(double scaling);
void scale(double scaling, const std::array<double, 3> &origin);
void scale(double sx, double sy, double sz);
void scale(double sx, double sy, double sz, const std::array<double, 3> &origin);
void setTol(double tolerance);
double getTol() const;
void resetTol();
bool isTolCustomized() const;
void displayTopologyStats(std::ostream &out, unsigned int padding = 0) const;
void displayVertices(std::ostream &out, unsigned int padding = 0) const;
void displayCells(std::ostream &out, unsigned int padding = 0) const;
void displayInterfaces(std::ostream &out, unsigned int padding = 0) const;
VTKUnstructuredGrid & getVTK();
const VTKUnstructuredGrid & getVTK() const;
WriteTarget getVTKWriteTarget() const;
void setVTKWriteTarget(WriteTarget targetCells);
const CellConstRange getVTKCellWriteRange() const;
void write(VTKWriteMode mode = VTKWriteMode::DEFAULT);
void write(VTKWriteMode mode, double time);
void write(const std::string &name, VTKWriteMode mode = VTKWriteMode::DEFAULT);
void write(const std::string &name, VTKWriteMode mode, double time);
void flushData(std::fstream &stream, const std::string &name, VTKFormat format) override;
int getDumpVersion() const;
bool dump(std::ostream &stream);
bool dump(std::ostream &stream) const;
void restore(std::istream &stream, bool reregister = false);
void consecutiveRenumberVertices(long offset = 0);
void consecutiveRenumberCells(long offset = 0);
void consecutiveRenumberInterfaces(long offset = 0);
void consecutiveRenumber(long offsetVertices, long offsetCells, long offsetInterfaces);
#if BITPIT_ENABLE_MPI==1
const MPI_Comm & getCommunicator() const;
int getRank() const;
int getProcessorCount() const;
bool isDistributed(bool allowDirty = false) const;
int getOwner(bool allowDirty = false) const;
void setHaloSize(std::size_t haloSize);
std::size_t getHaloSize() const;
int getCellOwner(long id) const;
BITPIT_DEPRECATED(int getCellRank(long id) const);
int getCellHaloLayer(long id) const;
int getVertexOwner(long id) const;
BITPIT_DEPRECATED(int getVertexRank(long id) const);
bool isRankNeighbour(int rank);
std::vector<int> getNeighbourRanks();
const std::unordered_map<int, std::vector<long>> & getGhostVertexExchangeTargets() const;
const std::vector<long> & getGhostVertexExchangeTargets(int rank) const;
const std::unordered_map<int, std::vector<long>> & getGhostVertexExchangeSources() const;
const std::vector<long> & getGhostVertexExchangeSources(int rank) const;
const std::unordered_map<int, std::vector<long>> & getGhostCellExchangeTargets() const;
BITPIT_DEPRECATED(const std::unordered_map<int BITPIT_COMMA std::vector<long>> & getGhostExchangeTargets() const);
const std::vector<long> & getGhostCellExchangeTargets(int rank) const;
BITPIT_DEPRECATED(const std::vector<long> & getGhostExchangeTargets(int rank) const);
const std::unordered_map<int, std::vector<long>> & getGhostCellExchangeSources() const;
BITPIT_DEPRECATED(const std::unordered_map<int BITPIT_COMMA std::vector<long>> & getGhostExchangeSources() const);
const std::vector<long> & getGhostCellExchangeSources(int rank) const;
BITPIT_DEPRECATED(const std::vector<long> & getGhostExchangeSources(int rank) const);
bool isPartitioned() const;
bool isPartitioningSupported() const;
bool arePartitioningInfoDirty(bool global = true) const;
PartitioningMode getPartitioningMode() const;
PartitioningStatus getPartitioningStatus(bool global = false) const;
double evalPartitioningUnbalance() const;
double evalPartitioningUnbalance(const std::unordered_map<long, double> &cellWeights) const;
BITPIT_DEPRECATED(std::vector<adaption::Info> partition(MPI_Comm communicator, const std::unordered_map<long, int> &cellRanks, bool trackPartitioning, bool squeezeStorage = false, std::size_t haloSize = 1));
std::vector<adaption::Info> partition(const std::unordered_map<long, int> &cellRanks, bool trackPartitioning, bool squeezeStorage = false);
BITPIT_DEPRECATED(std::vector<adaption::Info> partition(MPI_Comm communicator, const std::unordered_map<long, double> &cellWeights, bool trackPartitioning, bool squeezeStorage = false, std::size_t haloSize = 1));
std::vector<adaption::Info> partition(const std::unordered_map<long, double> &cellWeights, bool trackPartitioning, bool squeezeStorage = false);
BITPIT_DEPRECATED(std::vector<adaption::Info> partition(MPI_Comm communicator, bool trackPartitioning, bool squeezeStorage = false, std::size_t haloSize = 1));
std::vector<adaption::Info> partition(bool trackPartitioning, bool squeezeStorage = false);
BITPIT_DEPRECATED(std::vector<adaption::Info> partitioningPrepare(MPI_Comm communicator, const std::unordered_map<long, int> &cellRanks, bool trackPartitioning, std::size_t haloSize = 1));
std::vector<adaption::Info> partitioningPrepare(const std::unordered_map<long, int> &cellRanks, bool trackPartitioning);
BITPIT_DEPRECATED(std::vector<adaption::Info> partitioningPrepare(MPI_Comm communicator, const std::unordered_map<long, double> &cellWeights, bool trackPartitioning, std::size_t haloSize = 1));
std::vector<adaption::Info> partitioningPrepare(const std::unordered_map<long, double> &cellWeights, bool trackPartitioning);
BITPIT_DEPRECATED(std::vector<adaption::Info> partitioningPrepare(MPI_Comm communicator, bool trackPartitioning, std::size_t haloSize = 1));
std::vector<adaption::Info> partitioningPrepare(bool trackPartitioning);
std::vector<adaption::Info> partitioningAlter(bool trackPartitioning = true, bool squeezeStorage = false);
void partitioningCleanup();
#endif
template<typename Function>
void processCellNeighbours(long seedId, int nLayers, Function function) const;
template<typename Selector, typename Function>
void processCellNeighbours(long seedId, int nLayers, Selector isSelected, Function function) const;
template<typename Function, typename SeedContainer>
void processCellsNeighbours(const SeedContainer &seedIds, int nLayers, Function function) const;
template<typename Selector, typename Function, typename SeedContainer>
void processCellsNeighbours(const SeedContainer &seedIds, int nLayers, Selector isSelected, Function function) const;
template<typename Function>
void processCellFaceNeighbours(long seedId, int nLayers, Function function) const;
template<typename Selector, typename Function>
void processCellFaceNeighbours(long seedId, int nLayers, Selector isSelected, Function function) const;
template<typename Function, typename SeedContainer>
void processCellsFaceNeighbours(const SeedContainer &seedIds, int nLayers, Function function) const;
template<typename Selector, typename Function, typename SeedContainer>
void processCellsFaceNeighbours(const SeedContainer &seedIds, int nLayers, Selector isSelected, Function function) const;
std::array<double, 3> evalElementCentroid(const Element &element) const;
void evalElementBoundingBox(const Element &element, std::array<double,3> *minPoint, std::array<double,3> *maxPoint) const;
BITPIT_DEPRECATED(ConstProxyVector<std::array<double BITPIT_COMMA 3>> getElementVertexCoordinates(const Element &element) const);
void getElementVertexCoordinates(const Element &element, std::unique_ptr<std::array<double, 3>[]> *coordinates) const;
void getElementVertexCoordinates(const Element &element, std::array<double, 3> *coordinates) const;
protected:
typedef uint16_t AlterationFlags;
typedef std::unordered_map<long, AlterationFlags> AlterationFlagsStorage;
#if BITPIT_ENABLE_MPI==1
const static double DEFAULT_PARTITIONING_WEIGTH;
#endif
const static AlterationFlags FLAG_NONE = 0x0;
const static AlterationFlags FLAG_DELETED = (1u << 0);
const static AlterationFlags FLAG_ADJACENCIES_DIRTY = (1u << 1);
const static AlterationFlags FLAG_INTERFACES_DIRTY = (1u << 2);
const static AlterationFlags FLAG_DANGLING = (1u << 3);
PiercedVector<Vertex> m_vertices;
PiercedVector<Cell> m_cells;
PiercedVector<Interface> m_interfaces;
AlterationFlagsStorage m_alteredCells;
AlterationFlagsStorage m_alteredInterfaces;
#if BITPIT_ENABLE_MPI==1
PatchKernel(MPI_Comm communicator, std::size_t haloSize, AdaptionMode adaptionMode, PartitioningMode partitioningMode);
PatchKernel(int dimension, MPI_Comm communicator, std::size_t haloSize, AdaptionMode adaptionMode, PartitioningMode partitioningMode);
PatchKernel(int id, int dimension, MPI_Comm communicator, std::size_t haloSize, AdaptionMode adaptionMode, PartitioningMode partitioningMode);
#else
PatchKernel(AdaptionMode adaptionMode);
PatchKernel(int dimension, AdaptionMode adaptionMode);
PatchKernel(int id, int dimension, AdaptionMode adaptionMode);
#endif
PatchKernel(const PatchKernel &other);
PatchKernel & operator=(const PatchKernel &other) = delete;
void clearBoundingBox();
bool isBoundingBoxFrozen() const;
void setBoundingBoxFrozen(bool frozen);
void setBoundingBoxDirty(bool dirty);
void setBoundingBox(const std::array<double, 3> &minPoint, const std::array<double, 3> &maxPoint);
#if BITPIT_ENABLE_MPI==1
bool isCommunicatorSet() const;
virtual void setCommunicator(MPI_Comm communicator);
#endif
#if BITPIT_ENABLE_MPI==1
CellIterator restoreCell(ElementType type, std::unique_ptr<long[]> &&connectStorage, int owner, int haloLayer, long id);
#else
CellIterator restoreCell(ElementType type, std::unique_ptr<long[]> &&connectStorage, long id);
#endif
InterfaceIterator restoreInterface(ElementType type, std::unique_ptr<long[]> &&connectStorage, long id);
#if BITPIT_ENABLE_MPI==1
VertexIterator restoreVertex(const std::array<double, 3> &coords, int owner, long id);
#else
VertexIterator restoreVertex(const std::array<double, 3> &coords, long id);
#endif
bool deleteVertex(long id);
template<typename IdStorage>
bool deleteVertices(const IdStorage &ids);
#if BITPIT_ENABLE_MPI==1
VertexIterator ghostVertex2InternalVertex(long id);
VertexIterator internalVertex2GhostVertex(long id, int owner);
#endif
void dumpVertices(std::ostream &stream) const;
void restoreVertices(std::istream &stream);
void dumpCells(std::ostream &stream) const;
void restoreCells(std::istream &stream);
void dumpInterfaces(std::ostream &stream) const;
void restoreInterfaces(std::istream &stream);
void updateLastInternalVertexId();
#if BITPIT_ENABLE_MPI==1
void updateFirstGhostVertexId();
#endif
void updateLastInternalCellId();
#if BITPIT_ENABLE_MPI==1
void updateFirstGhostCellId();
#endif
std::unordered_map<long, std::vector<long>> binGroupVertices(const PiercedVector<Vertex> &vertices, int nBins);
std::unordered_map<long, std::vector<long>> binGroupVertices(int nBins);
void setAdjacenciesBuildStrategy(AdjacenciesBuildStrategy status);
void resetAdjacencies();
void pruneStaleAdjacencies();
virtual void _resetAdjacencies(bool release);
virtual void _updateAdjacencies();
void setInterfacesBuildStrategy(InterfacesBuildStrategy status);
void pruneStaleInterfaces();
virtual void _resetInterfaces(bool release);
virtual void _updateInterfaces();
bool testCellAlterationFlags(long id, AlterationFlags flags) const;
AlterationFlags getCellAlterationFlags(long id) const;
void resetCellAlterationFlags(long id, AlterationFlags flags = FLAG_NONE);
void setCellAlterationFlags(AlterationFlags flags);
void setCellAlterationFlags(long id, AlterationFlags flags);
void unsetCellAlterationFlags(AlterationFlags flags);
void unsetCellAlterationFlags(long id, AlterationFlags flags);
bool testInterfaceAlterationFlags(long id, AlterationFlags flags) const;
AlterationFlags getInterfaceAlterationFlags(long id) const;
void resetInterfaceAlterationFlags(long id, AlterationFlags flags = FLAG_NONE);
void setInterfaceAlterationFlags(AlterationFlags flags);
void setInterfaceAlterationFlags(long id, AlterationFlags flags);
void unsetInterfaceAlterationFlags(AlterationFlags flags);
void unsetInterfaceAlterationFlags(long id, AlterationFlags flags);
bool testAlterationFlags(AlterationFlags availableFlags, AlterationFlags requestedFlags) const;
void setAdaptionMode(AdaptionMode mode);
void setAdaptionStatus(AdaptionStatus status);
virtual std::vector<adaption::Info> _adaptionPrepare(bool trackAdaption);
virtual std::vector<adaption::Info> _adaptionAlter(bool trackAdaption);
virtual void _adaptionCleanup();
virtual bool _markCellForRefinement(long id);
virtual bool _markCellForCoarsening(long id);
virtual bool _resetCellAdaptionMarker(long id);
virtual adaption::Marker _getCellAdaptionMarker(long id);
virtual bool _enableCellBalancing(long id, bool enabled);
virtual void _setTol(double tolerance);
virtual void _resetTol();
virtual int _getDumpVersion() const = 0;
virtual void _dump(std::ostream &stream) const = 0;
virtual void _restore(std::istream &stream) = 0;
virtual long _getCellNativeIndex(long id) const;
virtual void _findCellNeighs(long id, const std::vector<long> *blackList, std::vector<long> *neighs) const;
virtual void _findCellFaceNeighs(long id, int face, const std::vector<long> *blackList, std::vector<long> *neighs) const;
virtual void _findCellEdgeNeighs(long id, int edge, const std::vector<long> *blackList, std::vector<long> *neighs) const;
virtual void _findCellVertexNeighs(long id, int vertex, const std::vector<long> *blackList, std::vector<long> *neighs) const;
virtual void _writePrepare();
virtual void _writeFinalize();
BITPIT_DEPRECATED(void setExpert(bool expert));
void extractEnvelope(PatchKernel &envelope) const;
void addPointToBoundingBox(const std::array<double, 3> &point);
void removePointFromBoundingBox(const std::array<double, 3> &point);
#if BITPIT_ENABLE_MPI==1
virtual std::size_t _getMaxHaloSize();
virtual void _setHaloSize(std::size_t haloSize);
void setPartitioned(bool partitioned);
void setPartitioningMode(PartitioningMode mode);
void setPartitioningStatus(PartitioningStatus status);
virtual std::vector<adaption::Info> _partitioningPrepare(const std::unordered_map<long, double> &cellWeights, double defaultWeight, bool trackPartitioning);
virtual std::vector<adaption::Info> _partitioningPrepare(const std::unordered_map<long, int> &cellRanks, bool trackPartitioning);
virtual std::vector<adaption::Info> _partitioningAlter(bool trackPartitioning);
virtual void _partitioningCleanup();
virtual std::vector<long> _findGhostCellExchangeSources(int rank);
#endif
template<typename item_t, typename id_t = long>
std::unordered_map<id_t, id_t> consecutiveItemRenumbering(PiercedVector<item_t, id_t> &container, long offset);
template<typename item_t, typename id_t = long>
void mappedItemRenumbering(PiercedVector<item_t, id_t> &container, const std::unordered_map<id_t, id_t> &renumberMap);
virtual int findAdjoinNeighFace(const Cell &cell, int cellFace, const Cell &neigh) const;
virtual bool isSameFace(const Cell &cell_A, int face_A, const Cell &cell_B, int face_B) const;
private:
struct GhostVertexInfo {
int owner;
};
struct GhostCellInfo {
int owner;
int haloLayer;
};
std::unique_ptr<IndexGenerator<long>> m_vertexIdGenerator;
std::unique_ptr<IndexGenerator<long>> m_interfaceIdGenerator;
std::unique_ptr<IndexGenerator<long>> m_cellIdGenerator;
long m_nInternalVertices;
#if BITPIT_ENABLE_MPI==1
long m_nGhostVertices;
#endif
long m_lastInternalVertexId;
#if BITPIT_ENABLE_MPI==1
long m_firstGhostVertexId;
#endif
long m_nInternalCells;
#if BITPIT_ENABLE_MPI==1
long m_nGhostCells;
#endif
long m_lastInternalCellId;
#if BITPIT_ENABLE_MPI==1
long m_firstGhostCellId;
#endif
VTKUnstructuredGrid m_vtk ;