Ice Sheet System Model  4.18
Code documentation
Mesh.h
Go to the documentation of this file.
1 #ifndef _MESH_H_
2 #define _MESH_H_
3 
4 #include "./include.h"
5 #include "./BamgOpts.h"
6 #include "./BamgMesh.h"
7 #include "./BamgGeom.h"
8 #include "./Triangle.h"
9 #include "./VertexOnGeom.h"
10 #include "./VertexOnVertex.h"
11 #include "./VertexOnEdge.h"
13 
14 namespace bamg {
15 
16  class Geometry;
17  class CrackedEdge;
18  class BamgQuadtree;
19  class SubDomain;
20 
21  class Mesh {
22 
23  public:
24 
25  Geometry & Gh; // Geometry
26  Mesh & BTh; // Background Mesh Bth== *this =>no background
33  long NbRef; // counter of ref on the this class if 0 we can delete
34  long maxnbv,maxnbt; // nombre max de sommets , de triangles
35  long nbv,nbt,nbe; // nb of vertices, of triangles and edges
37  long nbtout; // Nb of oudeside triangle
38 
39  R2 pmin,pmax; // extrema
40  double coefIcoor; // coef to integer
42  long randomseed; //used for random number generation
43 
56 
57  //Constructors/Destructors
58  Mesh(BamgGeom* bamggeom,BamgMesh* bamgmesh,BamgOpts* bamgopts);
59  Mesh(int* index,double* x,double* y,int nods,int nels,BamgOpts* bamgopts);/*MeshConvert*/
60  Mesh(double* x,double* y,int nods,BamgOpts* bamgopts); /*BamgTriangulate*/
61  Mesh(Mesh &,Geometry * pGh=0,Mesh* pBTh=0,long maxnbv_in=0 ); //copy operator
62  Mesh(const Mesh &,const int *flag,const int *bb,BamgOpts* bamgopts); // truncature
63  Mesh(long maxnbv,Mesh & BT,BamgOpts* bamgopts,int keepBackVertices=1);
64  Mesh(long maxnbv,Geometry & G,BamgOpts* bamgopts);
65  ~Mesh();
66 
67  //Operators
68  const BamgVertex &operator[](long i) const { return vertices[i]; };
69  BamgVertex &operator[](long i) { return vertices[i]; };
70  const Triangle &operator()(long i) const { return triangles[i]; };
71  Triangle &operator()(long i) { return triangles[i]; };
72 
73  //Methods
74  void SetIntCoor(const char * from =0);
75  double MinimalHmin();
76  double MaximalHmax();
77  I2 R2ToI2(const R2 & P) const;
78  R2 I2ToR2(const I2 & P) const;
79  void AddVertex(BamgVertex & s,Triangle * t,long long * =0) ;
80  void Insert(BamgOpts* bamgopts);
81  void Echo(void);
82  void ForceBoundary(BamgOpts* bamgopts);
83  void FindSubDomain(BamgOpts* bamgopts,int OutSide=0);
84  long TriangleReferenceList(long*) const;
85  void TriangleIntNumbering(long* renumbering);
86  void CrackMesh(BamgOpts* bamgopts);
87  void SmoothMetric(BamgOpts* bamgopts,double raisonmax) ;
88  void BoundAnisotropy(BamgOpts* bamgopts,double anisomax,double hminaniso= 1e-100) ;
91  void MakeBamgQuadtree();
92  void MaxSubDivision(BamgOpts* bamgopts,double maxsubdiv);
93  void NewPoints(Mesh &,BamgOpts* bamgopts,int KeepVertices=1);
94  long InsertNewPoints(long nbvold,long & NbTSwap,BamgOpts* bamgopts);
95  void TrianglesRenumberBySubDomain(bool justcompress=false);
96  void SmoothingVertex(BamgOpts* bamgopts,int =3,double=0.3);
97  Metric MetricAt (const R2 &);
98  GeomEdge* ProjectOnCurve( Edge & AB, BamgVertex & A, BamgVertex & B,double theta, BamgVertex & R,VertexOnEdge & BR,VertexOnGeom & GR);
99  long GetId(const Triangle & t) const;
100  long GetId(const Triangle * t) const;
101  long GetId(const BamgVertex & t) const;
102  long GetId(const BamgVertex * t) const;
103  long GetId(const Edge & t) const;
104  long GetId(const Edge * t) const;
105  BamgVertex* NearestVertex(int i,int j) ;
106  Triangle* TriangleFindFromCoord(const I2 & ,long long [3],Triangle *tstart=0);
107  void ReadMesh(int* index,double* x,double* y,int nods,int nels,BamgOpts* bamgopts);
108  void ReadMesh(BamgMesh* bamgmesh, BamgOpts* bamgopts);
109  void WriteMesh(BamgMesh* bamgmesh,BamgOpts* bamgopts);
110  void ReadMetric(const BamgOpts* bamgopts);
111  void WriteMetric(BamgOpts* bamgopts);
112  void WriteIndex(int** pindex,int* pnels);
113  void AddMetric(BamgOpts* bamgopts);
114  void BuildMetric0(BamgOpts* bamgopts);
115  void BuildMetric1(BamgOpts* bamgopts);
116  void BuildGeometryFromMesh(BamgOpts* bamgopts=NULL);
117  long RandomNumber(long max);
118  void ReconstructExistingMesh(BamgOpts* bamgopts);
119 
120  //Inline methods
122  for (int i=0;i<nbv;i++) vertices[i].IndexInTriangle=0, vertices[i].t=NULL;
123  for (int i=0;i<nbt;i++) triangles[i].SetSingleVertexToTriangleConnectivity();
124  }
125  inline void UnMarkUnSwapTriangle(){
126  for (int i=0;i<nbt;i++)
127  for(int j=0;j<3;j++)
128  triangles[i].SetUnMarkUnSwap(j);
129  }
130  inline void SetVertexFieldOn(){
131  for (int i=0;i<nbv;i++) vertices[i].GeomEdgeHook=NULL;
132  for (int j=0;j<NbVerticesOnGeomVertex;j++) VerticesOnGeomVertex[j].SetOn();
133  for (int k=0;k<NbVerticesOnGeomEdge;k++ ) VerticesOnGeomEdge[k].SetOn();
134  }
135  inline void SetVertexFieldOnBTh(){
136  for (int i=0;i<nbv;i++) vertices[i].GeomEdgeHook=NULL;
137  for (int j=0;j<NbVertexOnBThVertex;j++) VertexOnBThVertex[j].SetOnBTh();
138  for (int k=0;k<NbVertexOnBThEdge;k++ ) VertexOnBThEdge[k].SetOnBTh();
139  }
140 
141  private:
142  void TriangulateFromGeom1(BamgOpts* bamgopts,int KeepVertices=1);// the real constructor mesh adaption
143  void TriangulateFromGeom0(BamgOpts* bamgopts);// the real constructor mesh generator
144  void Triangulate(double* x,double* y,int nods,BamgOpts* bamgopts);
145  void Init(long);
146  int ForceEdge(BamgVertex &a, BamgVertex & b,AdjacentTriangle & taret) ;
147  int SwapForForcingEdge(BamgVertex * & pva ,BamgVertex * & pvb ,
148  AdjacentTriangle & tt1,long long & dets1,
149  long long & detsa,long long & detsb, int & nbswap);
150  };
151 
152  /*Intermediary*/
153  AdjacentTriangle CloseBoundaryEdge(I2 ,Triangle *, double &,double &) ;
154  void swap(Triangle *t1,short a1,
155  Triangle *t2,short a2,
156  BamgVertex *s1,BamgVertex *s2,long long det1,long long det2);
157 
159  return AdjacentTriangle(ta.t,PreviousEdge[ta.a]);
160  }
162  return AdjacentTriangle(ta.t,NextEdge[ta.a]);
163  }
165  return a.Adj();
166  }
167  inline void Adj(GeomEdge * & on,int &i){
168  int j=i;i=on->AdjVertexIndex[i];on=on->Adj[j];
169  }
170 }
171 #endif
bamg::Mesh::coefIcoor
double coefIcoor
Definition: Mesh.h:40
bamg::Mesh::subdomains
SubDomain * subdomains
Definition: Mesh.h:32
bamg::Mesh::GetId
long GetId(const Triangle &t) const
Definition: Mesh.cpp:2608
bamg::BamgVertex
Definition: BamgVertex.h:15
bamg::Mesh::MakeGeomEdgeToEdge
Edge ** MakeGeomEdgeToEdge()
Definition: Mesh.cpp:2899
bamg::Mesh::MinimalHmin
double MinimalHmin()
Definition: Mesh.cpp:3031
bamg::Mesh::NbVerticesOnGeomVertex
long NbVerticesOnGeomVertex
Definition: Mesh.h:44
bamg::AdjacentTriangle::a
int a
Definition: AdjacentTriangle.h:16
bamg::PreviousEdge
static const short PreviousEdge[3]
Definition: macros.h:18
bamg::Mesh::operator[]
BamgVertex & operator[](long i)
Definition: Mesh.h:69
bamg::Mesh::Triangulate
void Triangulate(double *x, double *y, int nods, BamgOpts *bamgopts)
Definition: Mesh.cpp:4084
bamg::Geometry
Definition: Geometry.h:18
bamg::Mesh::NearestVertex
BamgVertex * NearestVertex(int i, int j)
Definition: Mesh.cpp:3035
BamgOpts.h
place holder for optimization function arguments
bamg
Definition: AdjacentTriangle.cpp:9
bamg::Mesh::SetVertexFieldOn
void SetVertexFieldOn()
Definition: Mesh.h:130
bamg::Mesh::Echo
void Echo(void)
Definition: Mesh.cpp:2296
bamg::Mesh::Mesh
Mesh(BamgGeom *bamggeom, BamgMesh *bamgmesh, BamgOpts *bamgopts)
Definition: Mesh.cpp:13
bamg::Mesh::RandomNumber
long RandomNumber(long max)
Definition: Mesh.cpp:4756
BamgGeom.h
bamg::AdjacentTriangle::Adj
AdjacentTriangle Adj() const
Definition: AdjacentTriangle.cpp:28
bamg::Mesh::ForceEdge
int ForceEdge(BamgVertex &a, BamgVertex &b, AdjacentTriangle &taret)
Definition: Mesh.cpp:4763
bamg::Mesh::ReadMesh
void ReadMesh(int *index, double *x, double *y, int nods, int nels, BamgOpts *bamgopts)
Definition: Mesh.cpp:249
bamg::Mesh::NbRef
long NbRef
Definition: Mesh.h:33
bamg::Mesh::NbCrackedVertices
long NbCrackedVertices
Definition: Mesh.h:52
bamg::Adj
AdjacentTriangle Adj(const AdjacentTriangle &a)
Definition: Mesh.h:164
bamg::Mesh::CrackedEdges
CrackedEdge * CrackedEdges
Definition: Mesh.h:55
bamg::Mesh::pmax
R2 pmax
Definition: Mesh.h:39
bamg::Mesh::VertexOnBThEdge
VertexOnEdge * VertexOnBThEdge
Definition: Mesh.h:51
BamgMesh
Definition: BamgMesh.h:7
bamg::Mesh::MetricAt
Metric MetricAt(const R2 &)
Definition: Mesh.cpp:3011
bamg::Mesh::AddVertex
void AddVertex(BamgVertex &s, Triangle *t, long long *=0)
Definition: Mesh.cpp:1020
bamg::GeomEdge
Definition: GeomEdge.h:11
bamg::Triangle
Definition: Triangle.h:13
bamg::Mesh::ForceBoundary
void ForceBoundary(BamgOpts *bamgopts)
Definition: Mesh.cpp:2318
bamg::Mesh::CrackMesh
void CrackMesh(BamgOpts *bamgopts)
Definition: Mesh.cpp:2148
VertexOnVertex.h
bamg::Mesh::VerticesOnGeomVertex
VertexOnGeom * VerticesOnGeomVertex
Definition: Mesh.h:45
bamg::Mesh::maxnbv
long maxnbv
Definition: Mesh.h:34
VertexOnGeom.h
bamg::Mesh::nbtout
long nbtout
Definition: Mesh.h:37
ListofIntersectionTriangles.h
bamg::Mesh::lIntTria
ListofIntersectionTriangles lIntTria
Definition: Mesh.h:41
bamg::GeomEdge::AdjVertexIndex
int AdjVertexIndex[2]
Definition: GeomEdge.h:19
bamg::ListofIntersectionTriangles
Definition: ListofIntersectionTriangles.h:10
bamg::Mesh::SmoothMetric
void SmoothMetric(BamgOpts *bamgopts, double raisonmax)
Definition: Mesh.cpp:3785
bamg::Mesh::SetIntCoor
void SetIntCoor(const char *from=0)
Definition: Mesh.cpp:3678
bamg::VertexOnEdge
Definition: VertexOnEdge.h:12
bamg::Mesh::TriangulateFromGeom0
void TriangulateFromGeom0(BamgOpts *bamgopts)
Definition: Mesh.cpp:4112
bamg::AdjacentTriangle
Definition: AdjacentTriangle.h:12
bamg::Mesh::SetVertexFieldOnBTh
void SetVertexFieldOnBTh()
Definition: Mesh.h:135
bamg::Mesh::triangles
Triangle * triangles
Definition: Mesh.h:28
bamg::Mesh::BoundAnisotropy
void BoundAnisotropy(BamgOpts *bamgopts, double anisomax, double hminaniso=1e-100)
Definition: Mesh.cpp:1155
bamg::Mesh::BuildMetric1
void BuildMetric1(BamgOpts *bamgopts)
Definition: Mesh.cpp:1845
bamg::CrackedEdge
Definition: CrackedEdge.h:12
bamg::Mesh::BuildGeometryFromMesh
void BuildGeometryFromMesh(BamgOpts *bamgopts=NULL)
Definition: Mesh.cpp:1197
bamg::Mesh::NbVertexOnBThVertex
long NbVertexOnBThVertex
Definition: Mesh.h:48
bamg::VertexOnGeom
Definition: VertexOnGeom.h:13
bamg::Mesh::ReconstructExistingMesh
void ReconstructExistingMesh(BamgOpts *bamgopts)
Definition: Mesh.cpp:3302
bamg::Mesh::CrackedVertices
long * CrackedVertices
Definition: Mesh.h:53
bamg::Mesh::WriteMetric
void WriteMetric(BamgOpts *bamgopts)
Definition: Mesh.cpp:948
bamg::Mesh::NbVertexOnBThEdge
long NbVertexOnBThEdge
Definition: Mesh.h:50
bamg::Next
AdjacentTriangle Next(const AdjacentTriangle &ta)
Definition: Mesh.h:161
bamg::Mesh::CreateSingleVertexToTriangleConnectivity
void CreateSingleVertexToTriangleConnectivity()
Definition: Mesh.h:121
bamg::BamgQuadtree
Definition: BamgQuadtree.h:10
bamg::Mesh::MaximalHmax
double MaximalHmax()
Definition: Mesh.cpp:2949
bamg::I2
P2< int, long long > I2
Definition: typedefs.h:11
bamg::Mesh::BuildMetric0
void BuildMetric0(BamgOpts *bamgopts)
Definition: Mesh.cpp:1638
bamg::Mesh::nbe
long nbe
Definition: Mesh.h:35
bamg::Mesh::ProjectOnCurve
GeomEdge * ProjectOnCurve(Edge &AB, BamgVertex &A, BamgVertex &B, double theta, BamgVertex &R, VertexOnEdge &BR, VertexOnGeom &GR)
Definition: Mesh.cpp:3174
bamg::Mesh::maxnbt
long maxnbt
Definition: Mesh.h:34
bamg::AdjacentTriangle::t
Triangle * t
Definition: AdjacentTriangle.h:15
BamgOpts
Definition: BamgOpts.h:8
bamg::Metric
Definition: Metric.h:17
bamg::Mesh::MaxSubDivision
void MaxSubDivision(BamgOpts *bamgopts, double maxsubdiv)
Definition: Mesh.cpp:2953
bamg::Mesh::Init
void Init(long)
Definition: Mesh.cpp:2632
bamg::Mesh::nbt
long nbt
Definition: Mesh.h:35
bamg::Edge
Definition: Edge.h:12
bamg::GeomEdge::Adj
GeomEdge * Adj[2]
Definition: GeomEdge.h:18
bamg::Mesh::SmoothingVertex
void SmoothingVertex(BamgOpts *bamgopts, int=3, double=0.3)
Definition: Mesh.cpp:3740
bamg::Mesh::WriteIndex
void WriteIndex(int **pindex, int *pnels)
Definition: Mesh.cpp:960
bamg::Mesh::NewPoints
void NewPoints(Mesh &, BamgOpts *bamgopts, int KeepVertices=1)
Definition: Mesh.cpp:3040
bamg::Mesh::TriangleIntNumbering
void TriangleIntNumbering(long *renumbering)
Definition: Mesh.cpp:4036
bamg::Mesh::BTh
Mesh & BTh
Definition: Mesh.h:26
bamg::Mesh::edges
Edge * edges
Definition: Mesh.h:29
bamg::Mesh::UnMarkUnSwapTriangle
void UnMarkUnSwapTriangle()
Definition: Mesh.h:125
bamg::Mesh::pmin
R2 pmin
Definition: Mesh.h:39
bamg::Mesh
Definition: Mesh.h:21
bamg::Mesh::~Mesh
~Mesh()
Definition: Mesh.cpp:224
R
const double R
Definition: Gembx.cpp:30
BamgGeom
Definition: BamgGeom.h:7
bamg::Mesh::I2ToR2
R2 I2ToR2(const I2 &P) const
Definition: Mesh.cpp:3941
include.h
prototypes for include.h
bamg::CloseBoundaryEdge
AdjacentTriangle CloseBoundaryEdge(I2 A, Triangle *t, double &a, double &b)
Definition: Mesh.cpp:4927
bamg::VertexOnVertex
Definition: VertexOnVertex.h:11
bamg::Mesh::R2ToI2
I2 R2ToI2(const R2 &P) const
Definition: Mesh.cpp:3937
bamg::Mesh::ReadMetric
void ReadMetric(const BamgOpts *bamgopts)
Definition: Mesh.cpp:904
bamg::Mesh::NbVerticesOnGeomEdge
long NbVerticesOnGeomEdge
Definition: Mesh.h:46
bamg::Mesh::SplitInternalEdgeWithBorderVertices
long SplitInternalEdgeWithBorderVertices()
Definition: Mesh.cpp:3867
bamg::Mesh::SwapForForcingEdge
int SwapForForcingEdge(BamgVertex *&pva, BamgVertex *&pvb, AdjacentTriangle &tt1, long long &dets1, long long &detsa, long long &detsb, int &nbswap)
Definition: Mesh.cpp:4838
bamg::Mesh::FindSubDomain
void FindSubDomain(BamgOpts *bamgopts, int OutSide=0)
Definition: Mesh.cpp:2363
bamg::Mesh::WriteMesh
void WriteMesh(BamgMesh *bamgmesh, BamgOpts *bamgopts)
Definition: Mesh.cpp:493
bamg::Mesh::TriangleReferenceList
long TriangleReferenceList(long *) const
Definition: Mesh.cpp:4046
bamg::Mesh::Gh
Geometry & Gh
Definition: Mesh.h:25
bamg::SubDomain
Definition: SubDomain.h:12
BamgMesh.h
bamg::Mesh::nbsubdomains
long nbsubdomains
Definition: Mesh.h:36
VertexOnEdge.h
bamg::Mesh::operator()
Triangle & operator()(long i)
Definition: Mesh.h:71
bamg::Mesh::AddMetric
void AddMetric(BamgOpts *bamgopts)
Definition: Mesh.cpp:999
bamg::Mesh::InsertNewPoints
long InsertNewPoints(long nbvold, long &NbTSwap, BamgOpts *bamgopts)
Definition: Mesh.cpp:2815
bamg::Mesh::nbv
long nbv
Definition: Mesh.h:35
bamg::P2< double, double >
bamg::Mesh::TriangleFindFromCoord
Triangle * TriangleFindFromCoord(const I2 &, long long[3], Triangle *tstart=0)
Definition: Mesh.cpp:3945
bamg::swap
void swap(Triangle *t1, short a1, Triangle *t2, short a2, BamgVertex *s1, BamgVertex *s2, long long det1, long long det2)
Definition: Mesh.cpp:4966
bamg::Mesh::MakeBamgQuadtree
void MakeBamgQuadtree()
Definition: Mesh.cpp:2944
max
IssmDouble max(IssmDouble a, IssmDouble b)
Definition: extrema.cpp:24
bamg::Mesh::TriangulateFromGeom1
void TriangulateFromGeom1(BamgOpts *bamgopts, int KeepVertices=1)
Definition: Mesh.cpp:4426
bamg::Previous
AdjacentTriangle Previous(const AdjacentTriangle &ta)
Definition: Mesh.h:158
bamg::Mesh::orderedvertices
BamgVertex ** orderedvertices
Definition: Mesh.h:31
Triangle.h
bamg::Mesh::operator()
const Triangle & operator()(long i) const
Definition: Mesh.h:70
bamg::Mesh::vertices
BamgVertex * vertices
Definition: Mesh.h:27
bamg::Mesh::quadtree
BamgQuadtree * quadtree
Definition: Mesh.h:30
bamg::Mesh::NbCrackedEdges
long NbCrackedEdges
Definition: Mesh.h:54
bamg::Mesh::TrianglesRenumberBySubDomain
void TrianglesRenumberBySubDomain(bool justcompress=false)
Definition: Mesh.cpp:3611
bamg::Mesh::Insert
void Insert(BamgOpts *bamgopts)
Definition: Mesh.cpp:2679
bamg::Mesh::VertexOnBThVertex
VertexOnVertex * VertexOnBThVertex
Definition: Mesh.h:49
bamg::Mesh::operator[]
const BamgVertex & operator[](long i) const
Definition: Mesh.h:68
bamg::Mesh::randomseed
long randomseed
Definition: Mesh.h:42
bamg::NextEdge
static const short NextEdge[3]
Definition: macros.h:17
bamg::Mesh::VerticesOnGeomEdge
VertexOnGeom * VerticesOnGeomEdge
Definition: Mesh.h:47