/usr/share/netgen/libsrc/meshing/meshclass.hpp is in netgen-headers 4.9.13.dfsg-8build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifndef MESHCLASS
#define MESHCLASS
/**************************************************************************/
/* File: meshclass.hpp */
/* Author: Joachim Schoeberl */
/* Date: 20. Nov. 99 */
/**************************************************************************/
/*
The mesh class
*/
enum resthtype { RESTRICTH_FACE, RESTRICTH_EDGE,
RESTRICTH_SURFACEELEMENT, RESTRICTH_POINT, RESTRICTH_SEGMENT };
class HPRefElement;
/// 2d/3d mesh
class Mesh
{
public:
typedef ::netgen::T_POINTS T_POINTS;
// typedef MoveableArray<MeshPoint,PointIndex::BASE> T_POINTS;
// typedef MoveableArray<Element> T_VOLELEMENTS;
// typedef MoveableArray<Element2d> T_SURFELEMENTS;
// typedef Array<MeshPoint,PointIndex::BASE> T_POINTS;
typedef Array<Element> T_VOLELEMENTS;
typedef Array<Element2d> T_SURFELEMENTS;
private:
/// point coordinates
T_POINTS points;
/// type of element, set in calcsurfacesofnode
// Array<ELEMENTTYPE> eltyps;
/// line-segments at edges
Array<Segment> segments;
/// surface elements, 2d-inner elements
T_SURFELEMENTS surfelements;
/// volume elements
T_VOLELEMENTS volelements;
/// points will be fixed forever
Array<PointIndex> lockedpoints;
/// surface indices at boundary nodes
TABLE<int,PointIndex::BASE> surfacesonnode;
/// boundary edges (1..normal bedge, 2..segment)
INDEX_2_CLOSED_HASHTABLE<int> * boundaryedges;
///
INDEX_2_CLOSED_HASHTABLE<int> * segmentht;
///
INDEX_3_CLOSED_HASHTABLE<int> * surfelementht;
/// faces of rest-solid
Array<Element2d> openelements;
/// open segmenets for surface meshing
Array<Segment> opensegments;
/**
Representation of local mesh-size h
*/
LocalH * lochfunc;
///
double hglob;
///
double hmin;
///
Array<double> maxhdomain;
/**
the face-index of the surface element maps into
this table.
*/
Array<FaceDescriptor> facedecoding;
/**
the edge-index of the line element maps into
this table.
*/
Array<EdgeDescriptor> edgedecoding;
/// sub-domain materials
Array<char*> materials;
/// labels for boundary conditions
Array<string*> bcnames;
/// Periodic surface, close surface, etc. identifications
Identifications * ident;
/// number of vertices (if < 0, use np)
int numvertices;
/// geometric search tree for interval intersection search
Box3dTree * elementsearchtree;
/// time stamp for tree
int elementsearchtreets;
/// element -> face, element -> edge etc ...
class MeshTopology * topology;
/// methods for high order elements
class CurvedElements * curvedelems;
/// nodes identified by close points
class AnisotropicClusters * clusters;
/// space dimension (2 or 3)
int dimension;
/// changed by every minor modification (addpoint, ...)
int timestamp;
/// changed after finishing global algorithm (improve, ...)
int majortimestamp;
/// mesh access semaphors.
NgMutex mutex;
/// mesh access semaphors.
NgMutex majormutex;
SYMBOLTABLE< Array<int>* > userdata_int;
SYMBOLTABLE< Array<double>* > userdata_double;
mutable Array< Point3d > pointcurves;
mutable Array<int> pointcurves_startpoint;
mutable Array<double> pointcurves_red,pointcurves_green,pointcurves_blue;
/// start element for point search (GetElementOfPoint)
mutable int ps_startelement;
#ifdef PARALLEL
/// connection to parallel meshes
class ParallelMeshTopology * paralleltop;
#endif
private:
void BuildBoundaryEdges(void);
public:
bool PointContainedIn2DElement(const Point3d & p,
double lami[3],
const int element,
bool consider3D = false) const;
bool PointContainedIn3DElement(const Point3d & p,
double lami[3],
const int element) const;
bool PointContainedIn3DElementOld(const Point3d & p,
double lami[3],
const int element) const;
public:
// store coarse mesh before hp-refinement
Array<HPRefElement> * hpelements;
Mesh * coarsemesh;
/// number of refinement levels
int mglevels;
/// refinement hierarchy
Array<INDEX_2,PointIndex::BASE> mlbetweennodes;
/// parent element of volume element
Array<int> mlparentelement;
/// parent element of surface element
Array<int> mlparentsurfaceelement;
///
Mesh();
///
~Mesh();
Mesh & operator= (const Mesh & mesh2);
///
void DeleteMesh();
///
void ClearSurfaceElements()
{
surfelements.SetSize(0);
timestamp = NextTimeStamp();
}
///
void ClearVolumeElements()
{
volelements.SetSize(0);
timestamp = NextTimeStamp();
}
///
void ClearSegments()
{
segments.SetSize(0);
timestamp = NextTimeStamp();
}
///
bool TestOk () const;
void SetAllocSize(int nnodes, int nsegs, int nsel, int nel);
PointIndex AddPoint (const Point3d & p, int layer = 1);
PointIndex AddPoint (const Point3d & p, int layer, POINTTYPE type);
#ifdef PARALLEL
PointIndex AddPoint (const Point3d & p, bool aisghost, int layer = 1);
PointIndex AddPoint (const Point3d & p, bool aisghost, int layer, POINTTYPE type);
#endif
int GetNP () const { return points.Size(); }
MeshPoint & Point(int i) { return points.Elem(i); }
MeshPoint & Point(PointIndex pi) { return points[pi]; }
const MeshPoint & Point(int i) const { return points.Get(i); }
const MeshPoint & Point(PointIndex pi) const { return points[pi]; }
const MeshPoint & operator[] (PointIndex pi) const { return points[pi]; }
MeshPoint & operator[] (PointIndex pi) { return points[pi]; }
const T_POINTS & Points() const { return points; }
T_POINTS & Points() { return points; }
SegmentIndex AddSegment (const Segment & s);
void DeleteSegment (int segnr)
{
segments.Elem(segnr)[0] = PointIndex::BASE-1;
segments.Elem(segnr)[1] = PointIndex::BASE-1;
}
void FullDeleteSegment (int segnr) // von wem ist das ???
{
segments.Delete(segnr-PointIndex::BASE);
}
int GetNSeg () const { return segments.Size(); }
Segment & LineSegment(int i) { return segments.Elem(i); }
const Segment & LineSegment(int i) const { return segments.Get(i); }
Segment & LineSegment(SegmentIndex si) { return segments[si]; }
const Segment & LineSegment(SegmentIndex si) const { return segments[si]; }
const Segment & operator[] (SegmentIndex si) const { return segments[si]; }
Segment & operator[] (SegmentIndex si) { return segments[si]; }
SurfaceElementIndex AddSurfaceElement (const Element2d & el);
void DeleteSurfaceElement (int eli)
{
surfelements.Elem(eli).Delete();
surfelements.Elem(eli).PNum(1) = -1;
surfelements.Elem(eli).PNum(2) = -1;
surfelements.Elem(eli).PNum(3) = -1;
timestamp = NextTimeStamp();
}
void DeleteSurfaceElement (SurfaceElementIndex eli)
{
DeleteSurfaceElement (int(eli)+1);
}
int GetNSE () const { return surfelements.Size(); }
Element2d & SurfaceElement(int i) { return surfelements.Elem(i); }
const Element2d & SurfaceElement(int i) const { return surfelements.Get(i); }
Element2d & SurfaceElement(SurfaceElementIndex i) { return surfelements[i]; }
const Element2d & SurfaceElement(SurfaceElementIndex i) const { return surfelements[i]; }
const Element2d & operator[] (SurfaceElementIndex ei) const
{ return surfelements[ei]; }
Element2d & operator[] (SurfaceElementIndex ei)
{ return surfelements[ei]; }
void RebuildSurfaceElementLists ();
void GetSurfaceElementsOfFace (int facenr, Array<SurfaceElementIndex> & sei) const;
ElementIndex AddVolumeElement (const Element & el);
int GetNE () const { return volelements.Size(); }
Element & VolumeElement(int i) { return volelements.Elem(i); }
const Element & VolumeElement(int i) const { return volelements.Get(i); }
Element & VolumeElement(ElementIndex i) { return volelements[i]; }
const Element & VolumeElement(ElementIndex i) const { return volelements[i]; }
const Element & operator[] (ElementIndex ei) const
{ return volelements[ei]; }
Element & operator[] (ElementIndex ei)
{ return volelements[ei]; }
ELEMENTTYPE ElementType (ElementIndex i) const
{ return (volelements[i].flags.fixed) ? FIXEDELEMENT : FREEELEMENT; }
const T_VOLELEMENTS & VolumeElements() const { return volelements; }
T_VOLELEMENTS & VolumeElements() { return volelements; }
///
double ElementError (int eli) const;
///
void AddLockedPoint (PointIndex pi);
///
void ClearLockedPoints ();
const Array<PointIndex> & LockedPoints() const
{ return lockedpoints; }
/// Returns number of domains
int GetNDomains() const;
///
int GetDimension() const
{ return dimension; }
void SetDimension(int dim)
{ dimension = dim; }
/// sets internal tables
void CalcSurfacesOfNode ();
/// additional (temporarily) fix points
void FixPoints (const BitArray & fixpoints);
/**
finds elements without neighbour and
boundary elements without inner element.
Results are stored in openelements.
if dom == 0, all sub-domains, else subdomain dom */
void FindOpenElements (int dom = 0);
/**
finds segments without surface element,
and surface elements without neighbours.
store in opensegmentsy
*/
void FindOpenSegments (int surfnr = 0);
/**
remove one layer of surface elements
*/
void RemoveOneLayerSurfaceElements ();
int GetNOpenSegments () { return opensegments.Size(); }
const Segment & GetOpenSegment (int nr) { return opensegments.Get(nr); }
/**
Checks overlap of boundary
return == 1, iff overlap
*/
int CheckOverlappingBoundary ();
/**
Checks consistent boundary
return == 0, everything ok
*/
int CheckConsistentBoundary () const;
/*
checks element orientation
*/
int CheckVolumeMesh () const;
/**
finds average h of surface surfnr if surfnr > 0,
else of all surfaces.
*/
double AverageH (int surfnr = 0) const;
/// Calculates localh
void CalcLocalH ();
///
void SetLocalH (const Point3d & pmin, const Point3d & pmax, double grading);
///
void RestrictLocalH (const Point3d & p, double hloc);
///
void RestrictLocalHLine (const Point3d & p1, const Point3d & p2,
double hloc);
/// number of elements per radius
void CalcLocalHFromSurfaceCurvature(double elperr);
///
void CalcLocalHFromPointDistances(void);
///
void RestrictLocalH (resthtype rht, int nr, double loch);
///
void LoadLocalMeshSize (const char * meshsizefilename);
///
void SetGlobalH (double h);
///
void SetMinimalH (double h);
///
double MaxHDomain (int dom) const;
///
void SetMaxHDomain (const Array<double> & mhd);
///
double GetH (const Point3d & p) const;
///
double GetMinH (const Point3d & pmin, const Point3d & pmax);
///
LocalH & LocalHFunction () { return * lochfunc; }
///
bool LocalHFunctionGenerated(void) const { return (lochfunc != NULL); }
/// Find bounding box
void GetBox (Point3d & pmin, Point3d & pmax, int dom = -1) const;
/// Find bounding box of points of typ ptyp or less
void GetBox (Point3d & pmin, Point3d & pmax, POINTTYPE ptyp ) const;
///
int GetNOpenElements() const
{ return openelements.Size(); }
///
const Element2d & OpenElement(int i) const
{ return openelements.Get(i); }
/// are also quads open elements
bool HasOpenQuads () const;
/// split into connected pieces
void SplitIntoParts ();
///
void SplitSeparatedFaces ();
/// Refines mesh and projects points to true surface
// void Refine (int levels, const CSGeometry * geom);
bool BoundaryEdge (PointIndex pi1, PointIndex pi2) const
{
if(!boundaryedges)
const_cast<Mesh *>(this)->BuildBoundaryEdges();
INDEX_2 i2 (pi1, pi2);
i2.Sort();
return boundaryedges->Used (i2);
}
bool IsSegment (PointIndex pi1, PointIndex pi2) const
{
INDEX_2 i2 (pi1, pi2);
i2.Sort();
return segmentht->Used (i2);
}
SegmentIndex SegmentNr (PointIndex pi1, PointIndex pi2) const
{
INDEX_2 i2 (pi1, pi2);
i2.Sort();
return segmentht->Get (i2);
}
/**
Remove unused points. etc.
*/
void Compress ();
///
void Save (ostream & outfile) const;
///
void Load (istream & infile);
///
void Merge (istream & infile, const int surfindex_offset = 0);
///
void Save (const string & filename) const;
///
void Load (const string & filename);
///
void Merge (const string & filename, const int surfindex_offset = 0);
///
void ImproveMesh (OPTIMIZEGOAL goal = OPT_QUALITY);
///
void ImproveMeshJacobian (OPTIMIZEGOAL goal = OPT_QUALITY, const BitArray * usepoint = NULL);
///
void ImproveMeshJacobianOnSurface (const BitArray & usepoint,
const Array< Vec<3>* > & nv,
OPTIMIZEGOAL goal = OPT_QUALITY,
const Array< Array<int,PointIndex::BASE>* > * idmaps = NULL);
/**
free nodes in environment of openelements
for optimiztion
*/
void FreeOpenElementsEnvironment (int layers);
///
bool LegalTet (Element & el) const
{
if (el.IllegalValid())
return !el.Illegal();
return LegalTet2 (el);
}
///
bool LegalTet2 (Element & el) const;
///
bool LegalTrig (const Element2d & el) const;
/**
if values non-null, return values in 4-double array:
triangle angles min/max, tetangles min/max
if null, output results on cout
*/
void CalcMinMaxAngle (double badellimit, double * retvalues = NULL);
/*
Marks elements which are dangerous to refine
return: number of illegal elements
*/
int MarkIllegalElements ();
/// orient surface mesh, for one sub-domain only
void SurfaceMeshOrientation ();
/// convert mixed element mesh to tet-mesh
void Split2Tets();
/// build box-search tree
void BuildElementSearchTree ();
void SetPointSearchStartElement(const int el) const {ps_startelement = el;}
/// gives element of point, barycentric coordinates
int GetElementOfPoint (const Point3d & p,
double * lami,
bool build_searchtree = 0,
const int index = -1,
const bool allowindex = true) const;
int GetElementOfPoint (const Point3d & p,
double * lami,
const Array<int> * const indices,
bool build_searchtree = 0,
const bool allowindex = true) const;
int GetSurfaceElementOfPoint (const Point3d & p,
double * lami,
bool build_searchtree = 0,
const int index = -1,
const bool allowindex = true) const;
int GetSurfaceElementOfPoint (const Point3d & p,
double * lami,
const Array<int> * const indices,
bool build_searchtree = 0,
const bool allowindex = true) const;
/// give list of vol elements which are int the box(p1,p2)
void GetIntersectingVolEls(const Point3d& p1, const Point3d& p2,
Array<int> & locels) const;
///
int AddFaceDescriptor(const FaceDescriptor& fd)
{ return facedecoding.Append(fd); }
int AddEdgeDescriptor(const EdgeDescriptor & fd)
{ return edgedecoding.Append(fd) - 1; }
///
void SetMaterial (int domnr, const char * mat);
///
const char * GetMaterial (int domnr) const;
void SetNBCNames ( int nbcn );
void SetBCName ( int bcnr, const string & abcname );
string GetBCName ( int bcnr ) const;
string * GetBCNamePtr ( int bcnr )
{ return bcnames[bcnr]; }
///
void ClearFaceDescriptors()
{ facedecoding.SetSize(0); }
///
int GetNFD () const
{ return facedecoding.Size(); }
const FaceDescriptor & GetFaceDescriptor (int i) const
{ return facedecoding.Get(i); }
const EdgeDescriptor & GetEdgeDescriptor (int i) const
{ return edgedecoding[i]; }
///
FaceDescriptor & GetFaceDescriptor (int i)
{ return facedecoding.Elem(i); }
// #ifdef NONE
// /*
// Identify points pi1 and pi2, due to
// identification nr identnr
// */
// void AddIdentification (int pi1, int pi2, int identnr);
// int GetIdentification (int pi1, int pi2) const;
// int GetIdentificationSym (int pi1, int pi2) const;
// ///
// INDEX_2_HASHTABLE<int> & GetIdentifiedPoints ()
// {
// return *identifiedpoints;
// }
// ///
// void GetIdentificationMap (int identnr, Array<int> & identmap) const;
// ///
// void GetIdentificationPairs (int identnr, Array<INDEX_2> & identpairs) const;
// ///
// int GetMaxIdentificationNr () const
// {
// return maxidentnr;
// }
// #endif
/// return periodic, close surface etc. identifications
Identifications & GetIdentifications () { return *ident; }
/// return periodic, close surface etc. identifications
const Identifications & GetIdentifications () const { return *ident; }
void InitPointCurve(double red = 1, double green = 0, double blue = 0) const;
void AddPointCurvePoint(const Point3d & pt) const;
int GetNumPointCurves(void) const;
int GetNumPointsOfPointCurve(int curve) const;
Point3d & GetPointCurvePoint(int curve, int n) const;
void GetPointCurveColor(int curve, double & red, double & green, double & blue) const;
/// find number of vertices
void ComputeNVertices ();
/// number of vertices (no edge-midpoints)
int GetNV () const;
/// remove edge points
void SetNP (int np);
/*
/// build connected nodes along prism stack
void BuildConnectedNodes ();
void ConnectToNodeRec (int node, int tonode,
const TABLE<int> & conto);
*/
bool PureTrigMesh (int faceindex = 0) const;
bool PureTetMesh () const;
const class MeshTopology & GetTopology () const
{ return *topology; }
void UpdateTopology();
class CurvedElements & GetCurvedElements () const
{ return *curvedelems; }
const class AnisotropicClusters & GetClusters () const
{ return *clusters; }
int GetTimeStamp() const { return timestamp; }
void SetNextTimeStamp()
{ timestamp = NextTimeStamp(); }
int GetMajorTimeStamp() const { return majortimestamp; }
void SetNextMajorTimeStamp()
{ majortimestamp = timestamp = NextTimeStamp(); }
/// return mutex
NgMutex & Mutex () { return mutex; }
NgMutex & MajorMutex () { return majormutex; }
///
void SetUserData(const char * id, Array<int> & data);
///
bool GetUserData(const char * id, Array<int> & data, int shift = 0) const;
///
void SetUserData(const char * id, Array<double> & data);
///
bool GetUserData(const char * id, Array<double> & data, int shift = 0) const;
///
friend void OptimizeRestart (Mesh & mesh3d);
///
void PrintMemInfo (ostream & ost) const;
///
friend class Meshing3;
enum GEOM_TYPE { NO_GEOM = 0, GEOM_2D = 1, GEOM_CSG = 10, GEOM_STL = 11, GEOM_OCC = 12, GEOM_ACIS = 13 };
GEOM_TYPE geomtype;
#ifdef PARALLEL
/// returns parallel topology
class ParallelMeshTopology & GetParallelTopology () const
{ return *paralleltop; }
/// distributes the master-mesh to local meshes
void Distribute ();
/// loads a mesh sent from master processor
void ReceiveParallelMesh ();
/// find connection to parallel meshes
// void FindExchangePoints () ;
// void FindExchangeEdges ();
// void FindExchangeFaces ();
/// use metis to decompose master mesh
void ParallelMetis (); // Array<int> & neloc );
void PartHybridMesh (); // Array<int> & neloc );
void PartDualHybridMesh (); // Array<int> & neloc );
void PartDualHybridMesh2D (); // ( Array<int> & neloc );
/// send mesh to parallel machine, keep global mesh at master
void SendMesh ( ) const; // Mesh * mastermesh, Array<int> & neloc) const;
void UpdateOverlap ();
#endif
};
inline ostream& operator<<(ostream& ost, const Mesh& mesh)
{
ost << "mesh: " << endl;
mesh.Save(ost);
return ost;
}
#endif
|